@charset "UTF-8";

/*===========================
reset
===========================*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  font-size: 100%;
}
body {
  line-height: 1;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a,
a:visited {
  color: inherit;
}

ol, ul {
  list-style: none;
}
img, video {
  max-width: 100%;
}
img {
  border-style: none;
  vertical-align: bottom;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*===========================
tap-on-mobile
===========================*/

@media print, screen and (min-width: 768px) {
  body {
    min-width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    font-family: "Noto Sans JP", Arial, Hiragino Sans, "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', Meiryo, "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
  }
}

#tom {
  font-family: "Noto Sans JP", Arial, Hiragino Sans, "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', Meiryo, "メイリオ", sans-serif;
}

/* -- link -- */

a:link,
a:visited {
  color: #2080C4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:link:hover,
a:visited:hover {
  text-decoration: none;
}

a.link__external {
  position: relative;
  padding-right: 20px;
}

a.link__external::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: .1em;
  display: inline-block;
  width: 16px;
  height: 14px;
  margin-left: 0.3em;
}


/* -- list__notes -- */

.list__notes {
    display: block;
    font-size: 12px;
    line-height: 1.8;
    margin: 8px 0 0;
}

.list__notes li {
  margin: 0 0 .3em 1em;
  text-indent: -1em;
}

/* -- btn__medium -- */

.btn__medium {
  font-size: 15px;
  line-height: 1.6;
  margin: 16px 0 40px;
}

.btn__medium a {
  position: relative;
  display: inline-block;
  padding: 14px 44px 14px 24px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border: 1px solid #2080C4;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn__medium a::after {
  content: '';
  background-image: url(../images/arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.btn__medium a:hover::after {
  right: 12px;
  text-decoration: none;
  background-image: url(../images/arrow_right_white.svg);
}

.btn__medium a:hover {
  color: #fff;
  background: #2080C4;
}

.btn__medium span.btn__medium__notes {
  display: block;
  font-size: 11px;
  font-weight: normal;
  font-feature-settings: 'palt';
}


.btn__medium.link__external a::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.btn__medium.link__external a:hover::after {
  right: 12px;
  text-decoration: none;
  background-image: url(../images/icon_external_white.svg);
}



/* link__pdf */

.btn__medium.link__pdf a::after {
  content: '';
  background-image: url(../images/icon_pdf_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 12px);
  right: 16px;
  width: 20px;
  height: 24px;
  transition: all 0.2s ease;
}

.btn__medium.link__pdf a:hover::after {
  right: 12px;
  text-decoration: none;
  background-image: url(../images/icon_pdf_white.svg);
}


/* -- btn__large -- */

.btn__large {
  font-size: 16px;
  line-height: 1.6;
  margin: 16px 0 40px;
  box-sizing: border-box;
}

.btn__large a {
  position: relative;
  display: inline-block;
  padding: 14px 64px 14px 48px;
  background: #fff;
  color: #000;
  text-align: center;
  font-weight: 600;
  border: 1px solid #2080C4;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn__large a::after {
  content: '';
  background-image: url(../images/arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.btn__large a:hover::after {
  right: 12px;
  text-decoration: none;
  background-image: url(../images/arrow_right_white.svg);
}

.btn__large a:hover {
  color: #fff;
  background: #2080C4;
}

.btn__large span.btn__large__notes {
  display: block;
  font-size: 11px;
  font-weight: normal;
  font-feature-settings: 'palt';
  margin-top: 0.3em;
}

/* link__external */

.btn__large.link__external a::after {
  content: '';
  background-image: url(../images/icon_external_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 20px;
  height: 18px;
  transition: all 0.2s ease;
}

.btn__large.link__external a:hover::after {
  right: 12px;
  text-decoration: none;
  background-image: url(../images/icon_external_white.svg);
}


/* -- br -- */

.br__sp {
  display: none;
}


/*===========================
header
===========================*/

header {
  background: #fff;
}

.header__inner {
  position: relative;
  max-width: 1272px;
  height: auto;
  margin: 0 auto;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.header__logo {
  width: 84px;
  margin: 0;
  padding: 0;
}

.header__logo a {
  display: block;
}

.header__nav {
  margin-bottom: 8px;
}

.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 48px;
}

.header__nav ul li {
  display: inline-flex;
}

.header__nav ul li a {
  position: relative;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__nav ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.header__nav ul .header__nav__iphone {
  position: absolute;
  top: 0;
  right: 16px;
}

.header__nav ul .header__nav__iphone a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  padding: 8px 40px 10px 16px;
  background: #2080C4;
  border-radius: 0px 0px 8px 8px;
  transition: all 0.2s ease;
}

.header__nav ul .header__nav__iphone a::after {
  content: '';
  background-image: url(../images/icon_external_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  position: absolute;
  top: calc(50% - 7px);
  right: 16px;
  width: 16px;
  height: 14px;
  display: block;
  transition: all 0.2s ease;
}

.header__nav ul .header__nav__iphone a:hover::after {
  right: 12px;
  text-decoration: none;
}

.header__nav ul .header__nav__iphone a:hover {
  text-decoration: none;
}


/*===========================
fixed-header
===========================*/

.fixed-header {
  background: #fff;
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.fixed-header.show {
  opacity: 1;
  visibility: visible;
}

.fixed-header .header__inner {
  position: relative;
  max-width: 1272px;
  height: auto;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-header .header__logo {
  width: 48px;
  margin: 0;
  padding: 0;
}

.fixed-header .header__logo a {
  display: block;
}

.fixed-header .header__nav {
  margin-bottom: 0;
}


/*===========================
footer
===========================*/

footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
}

footer .footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

footer .footer__inner .footer__nav ul {
  width: 600px;
  margin: 0 auto 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

footer .footer__inner .footer__nav ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}

footer .footer__inner .footer__nav ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

footer .footer__inner .footer__nav ul li:first-child {
  width: 100%;
  margin-bottom: 24px;
}
footer .footer__inner .footer__nav ul li:nth-child(2) {
  width: 50%;
}
footer .footer__inner .footer__nav ul li:nth-child(3) {
  width: 50%;
}

footer .footer__inner .footer__copyright {
  font-size: 13px;
  font-weight: normal;
}


/* ===========================
mainvisual
=========================== */

.mainvisual {
  position: relative;
  width: 100%;
  background: #fff;
}

.mainvisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #69bef4;
  z-index: 1;
}

.mainvisual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #d0629f;
  z-index: 1;
}

.mainvisual__inner {
  position: relative;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  z-index: 10;
}



/* ===========================
section
=========================== */

section {
  margin: 0;
  padding: 0;
}

.section__inner {
  max-width: 912px;
  margin: 0 auto;
  padding: 0 16px;
}

.section__title {
  position: relative;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin: 0 0 40px;
  padding: 0;
}

.section__title__en {
  font-size: 46px;
  font-family: 'outfit', sans-serif;
}

.section__title::after {
  content: '';
  background-image: url(../images/section_title_underline.svg);
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 96px;
  height: 4px;
}

section .section__lead {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: .04em;
  margin-bottom: 40px;
  text-align: center;
}


/* ---------------------------
overview
--------------------------- */

.overview {
  position: relative;
  padding: 80px 0 200px;
  background: url(../images/overview_bg_pc.jpg);
  background-size: cover;
  background-position: top center;
}

.overview_title_en {
  font-size: 48px;
  font-family: 'outfit', sans-serif;
}

.overview__lead__wrapper {
  max-width: 1072px;
  margin: 48px auto 0;
  padding: 0 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.overview__lead__wrapper .overview__lead {
  max-width: 38%;
  font-size: 16px;
  line-height: 2.2;
  text-align: left;
  margin: 0;
}

.overview__lead__wrapper .youtube {
  position: relative;
  width: 580px;
  aspect-ratio: 16 / 9;
  margin-top: 0;
}

.overview__lead__wrapper .youtube iframe {
  width: 100%;
  height: 100%;
}

.overview__lead {
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  margin: 64px 0 32px 0;
}

.overview__contents {
  display: block;
  max-width: 1072px;
  margin: 96px auto 0;
  padding: 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.overview__contents .overview__item {
  width: 30%;
  text-align: center;
  margin-bottom: 80px;
}

.overview__item:nth-child(1),
.overview__item:nth-child(2) {
  width: 44%;
}

.overview__item:nth-child(1) {
  /* padding-right: 5.4%; */
  padding-right: 6%;
}

.overview__item:nth-child(2) {
  /* padding-left: 5.4%; */
  padding-left: 6%;
}

.overview__item:nth-child(3) {
  width: 1040px;
}

.overview__item:nth-child(4) {
  width: 1040px;
}

.overview__item .overview__item__heading {
  display: block;
  font-family: 'outfit', sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .04em;
  height: 80px;
  margin-bottom: 16px;
}

.overview__item:nth-child(2) .overview__item__heading {
  line-height: 80px;
}

.overview__item .overview__heading__en {
  display: inline;
  font-size: 32px;
  margin-right: .1em;
}

.overview__item .overview__item__img {
  display: block;
  margin: 24px 0 16px;
}

.overview__item .overview__item__text {
  display: block;
  font-size: 15px;
  line-height: 2;
  text-align: left;
  margin: 18px 0 0;
}

.overview__item .overview__item__text.overview__text__center {
  text-align: center;
}

.overview__item:nth-child(3) .overview__item__img {
  display: block;
  width: 580px;
  margin: 24px auto 0;
}

.overview__purpose ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.overview__purpose__item {
  max-width: 240px;
  background: #fff;
  border-radius: 24px;
  margin: 0 8px 0;
  overflow: hidden;
  box-shadow: 0px 8px 32px 4px #CCE6F7;
}

.overview__purpose__item:nth-child(1),
.overview__purpose__item:nth-child(4) {
  margin-top: 100px;
}

.overview__purpose__item p {
  font-size: 15px;
  color: #376BB4;
  line-height: 1.6;
  font-weight: bold;
  padding: 10px 0 12px;
  text-align: center;
}

/* カード決済 */

.overview__card {
  /* width: 100%; */
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  margin: 24px auto 0;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.overview__card__heading {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 16px;
}

.overview__card__left,
.overview__card__right {
  width: 47.2%;
}

.overview__card img {
  margin-bottom: 32px;
}

.overview__card__left .card__left__img__02 {
  margin-bottom: 16px;
}

.overview__card__right img:nth-of-type(1) {
  margin-bottom: 24px;
}

.overview__card__right img:nth-of-type(2) {
  margin-bottom: 8px;
}

.overview__right__note {
  font-size: 11px;
  text-align: right;
}


/* ---------------------------
present
--------------------------- */

.present {
  position: relative;
  margin-top: -200px;
  padding: 80px 0 32px;
  background: url(../images/present_bg_pc.png);
  background-size: cover;
  background-position: top center;
}

.present__heading {
  display: block;
  max-width: 674px;
  height: auto;
  margin: 0 auto 4px;
}

.present__heading__campaign {
  display: block;
  max-width: 620px;
  height: auto;
  margin: 0 auto 4px;
}

.present__lead {
  font-size: 15px;
  line-height: 2.1;
  text-align: center;
  margin-bottom: 32px;
}

.present__box {
  max-width: 580px;
  margin: 0 auto 24px;
  padding: 24px 24px;
  background: rgba(255, 255, 255, 0.3);
  border: 1.6px solid #FFFFFF;
  box-shadow: 0px 8px 40px #9DC9E1;
  border-radius: 16px;
}

.present__box .present__campaigncode__lead {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 32px;
}

.present__box .present__campaigncode__code {
  font-size: 16px;
  line-height: 100%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

.present__box .present__campaigncode__code span {
  display: inline-block;
  font-size: 32px;
  color: #2D77DE;
  vertical-align: bottom;
}

.present__more {
  display: block;
  max-width: 276px;
  margin: 0 auto 60px;
}

.present__more__heading {
  display: block;
  margin: -70px auto 8px;
}

.present__more__heading img {
  width: 100%;
  height: auto;
}

.present__more__text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 20px;
}

.present .btn__large a {
  display: table;
  margin: 40px auto 0;
}


/* ---------------------------
process
--------------------------- */

.process {
  position: relative;
  padding: 80px 0;
  background: #fff;
}

.process__steps {
  max-width: 1030px;
  margin: 48px auto 0;
  padding: 0 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 8%;
}

.process__step {
  position: relative;
  width: 280px;
  padding: 0;
}

.process__step::after {
  content: url(../images/process_step_arrow.svg);
  position: absolute;
  top: 20%;
  right: -21%;
  width: 24px;
  height: 40px;
  z-index: 2;
}

.process__step:last-child::after {
  display: none;
}

.process__step__img {
  width: 100%;
  height: auto;
  filter: drop-shadow(-12px -12px 16px rgba(255, 227, 249, 0.9)) drop-shadow(12px 12px 16px rgba(205, 237, 255, 0.9));
  z-index: 1;
}

.process__step__number {
  font-size: 22px;
  font-weight: 600;
  color: #2080C4;
  line-height: 100%;
  font-family: 'outfit', sans-serif;
  border: 2px solid #2080C4;
  border-radius: 20px;
  display: inline-block;
  padding: 6px 16px 4px;
  position: relative;
  z-index: 2;
  top: -15px;
  left: -6px;
}

.process__step__number span {
  font-size: 32px;
  padding-left: .12em;
}

.process__step__heading {
  font-size: 18px;
  font-weight: bold;
  margin: -12px 0 8px;
}

.process__step__text {
  font-size: 15px;
  line-height: 1.8;
}


/* ---------------------------
terms-of-use
--------------------------- */

.terms-of-use {
  padding: 80px 0 40px;
  background: #EEF6EB;
}

.section__heading__line {
  width: 100%;
  margin: 0 auto 40px;
  font-size: 20px;
  letter-spacing: .04em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section__heading__line::before,
.section__heading__line::after {
  background-color: #222;
  content: "";
  flex-grow: 1;
  height: 1px;
}

.section__heading__line::before {
    margin-right: 16px;
}

.section__heading__line::after {
    margin-left: 16px;
}

.section__heading-3 {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .08em;
  font-feature-settings: 'palt';
  margin-bottom: 16px;
}

.terms-of-use p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}


/* ---------------------------
faq
--------------------------- */

.faq {
  padding: 80px 0;
  background: #fff;
}

/* -- accordion -- */ 

.faq__accordion {
  max-width: 880px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
}

.faq__accordion__item {
  background-color: #fff;
  overflow: hidden;
}

.faq__accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px 16px 24px;
  background: none;
  border-top: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.faq__accordion__header:hover {
  background-color: #fff5fb;
}

.faq__accordion__title {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;

}

.faq__accordion__title::before {
  content: 'Q';
  display: block;
  width: 1em;
  height: auto;
  font-family: 'outfit', sans-serif;
  font-size: 40px;
  color: #E875BB;
  font-weight: 600;
  line-height: 1;
}

.faq__accordion__icon {
  width: 3rem;
  height: 3rem;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__accordion__icon.rotate {
  transform: rotate(180deg);
}

.faq__accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq__accordion__content.open {
  max-height: 500px;
}

.faq__accordion__body {
  padding: 16px 32px 24px;
  color: #000;
  background: #E9F2FA;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
  font-feature-settings: 'palt';
  letter-spacing: .04em;
}

.faq__accordion__body::before {
  content: 'A';
  display: block;
  width: 1em;
  height: auto;
  font-family: 'outfit', sans-serif;
  font-size: 40px;
  color: #72BEE6;
  font-weight: 600;
  line-height: 1;
}

.faq__accordion__bodyText {
  flex: 1;
}

.icon {
  display: inline-block;
  width: 100%;
  height: 100%;
}


/* ---------------------------
fixed-banner
--------------------------- */

#fixed-banner__pc {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
}

#fixed-banner__pc a {
  display: block;
  width: 100%;
  height: auto;
  margin: 16px 0;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

#fixed-banner__pc a:nth-child(1):hover {
  transform: translateY(4px);
}

#fixed-banner__pc a:nth-child(2):hover {
  transform: translateX(4px);
}

#fixed-banner__sp {
  display: none;
}


/* ---------------------------
copyright
--------------------------- */

section.copyright {
  padding: 0 0 48px;
}

section.copyright .list__notes {
  margin-top: 0;
}



@media screen and (max-width: 1279px) {

/* ===========================
mainvisual
=========================== */

  .mainvisual__inner {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 7;
    background: #fff;
  }

}



@media screen and (max-width: 767px) {


  .list__notes {
    font-size: calc(100vw / (390 / 11));
    margin: 8px 0 0;
  }

  .list__notes li {
    margin: 0 0 .3em 1em;
    text-indent: -1em;
  }


  /* -- btn__medium -- */

  .btn__medium {
    font-size: calc(100vw / (390 / 14));
    margin: 4.1vw 0 10.2vw;
  }

  .btn__medium a {
    padding: 4vw 12vw 4.1vw 6.1vw;
    border-radius: 50px;
    font-feature-settings: 'palt';
  }


  /* -- btn__large -- */

  .btn__large {
    font-size: calc(100vw / (390 / 15));
    margin: 4.1vw 0 10.2vw;
  }

  .btn__large a {
    padding: 3.2vw 16vw 3.2vw 12vw;
    border-radius: 50px;
  }

  .btn__large span.btn__large__notes {
    font-size: calc(100vw / (390 / 11));
  }


  /* -- br -- */

  .br__pc {
    display: none;
  }

  .br__sp {
    display: block;
  }


  /*===========================
  header
  ===========================*/

  .header__inner {
    /* width: 100%; */
    padding: 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    /* height: 17vw; */
  }

  .header__logo {
    display: block;
    width: 12.3vw;
  }

  .header__logo a img {
    margin-bottom: 1vw;
  }

  .header__nav {
    margin-bottom: .4vw;
  }

  .header__nav ul {
    gap: 32px;
  }

  .header__nav ul li a {
    font-size: calc(100vw / (390 / 13));
  }

  .header__nav ul .header__nav__iphone {
    right: 8px;
  }

  .header__nav ul .header__nav__iphone a {
    font-size: calc(100vw / (390 / 12));
    padding: 6px 32px 6px 10px;
    border-radius: 0 0px 4px 4px;
  }

  .header__nav ul .header__nav__iphone a::after {
    right: 8px;
  }

  .header__nav ul .header__nav__iphone a:hover::after {
      right: 6px;
  }


  /*===========================
  fixed-header
  ===========================*/

  .fixed-header.show {
    opacity: 1;
    visibility: visible;
  }

  .fixed-header .header__inner {
    max-width: 100%;
    padding: 2vw 3vw;
  }

  .fixed-header .header__logo {
    width: 12.3vw;
    margin: 0;
    padding: 0;
  }

  .fixed-header .header__logo a img {
    margin-bottom: 0;
  }


  /*===========================
  footer
  ===========================*/

  footer {
    padding: 6.1vw 0 32vw;
  }

  footer .footer__inner {
    max-width: 100%;
    padding: 0 4.1vw;
    text-align: left;
  }

  footer .footer__inner .footer__nav ul {
    width: 100%;
    margin: 0 auto 12vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }

  footer .footer__inner .footer__nav ul li:first-child {
    margin-bottom: auto;
  }

  footer .footer__inner .footer__nav ul li:nth-child(2),
  footer .footer__inner .footer__nav ul li:nth-child(3) {
    width: 100%;
  }

  footer .footer__inner .footer__nav ul li a {
    font-size: calc(100vw / (390 / 12));
  }

  footer .footer__inner .footer__copyright {
    font-size: calc(100vw / (390 / 11));
  }


  /* ===========================
  mainvisual
  =========================== */

  .mainvisual__inner {
    width: 100%;
    height: 100%;
    aspect-ratio: 39 / 46;
  }


  /* ===========================
  section
  =========================== */

  .section__inner {
      max-width: 100%;
      padding: 0 4.1vw;
  }

  .section__title {
    font-size: calc(100vw / (390 / 28));
    margin: 0 0 10.2vw;
  }

  .overview_title_en {
    font-size: calc(100vw / (390 / 32));
  }

  section .section__lead {
    font-size: calc(100vw / (390 / 16));
    line-height: 1.8;
    letter-spacing: .04em;
    margin-bottom: 6.2vw;
  }


  /* ===========================
  overview
  =========================== */

  .overview {
    padding: 12.3vw 0 40vw;
    background: url(../images/overview_bg_sp.jpg);
    background-size: cover;
    background-position: top center;
  }

  .overview__lead {
    font-size: calc(100vw / (390 / 14));
    text-align: left;
    margin: 6.1vw 6.2vw 14vw;
  }

  .overview__lead__wrapper {
    margin: 12.3vw auto 0;
    padding: 0 6.1vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.1vw;
  }

  .overview__lead__wrapper .overview__lead {
    max-width: 100%;
    font-size: calc(100vw / (390 / 14));
    margin: 0;
  }

  .overview__lead__wrapper .youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 0;
  }

  .overview__contents {
    max-width: 100%;
    margin: 15vw auto 0;
    padding: 0 6.1vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .overview__contents .overview__item {
    width: 100%;
    margin-bottom: 12.3vw;
  }

  .overview__item:nth-child(1),
  .overview__item:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
  }

  .overview__item .overview__item__heading {
    font-size: calc(100vw / (390 / 20));
    height: auto;
    margin-bottom: 4.1vw;
  }

  .overview__item:nth-child(2) .overview__item__heading {
    line-height: 1.5;
  }

  .overview__item .overview__heading__en {
      font-size: calc(100vw / (390 / 24));
      margin-right: .1em;
  }

  .overview__item .overview__item__img {
    margin: 4.1vw 0;
  }

  .overview__item .overview__item__text {
    font-size: calc(100vw / (390 / 14));
    line-height: 2;
    text-align: left !important;
    margin: 4.1vw 0 0;
  }

  .overview__purpose ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: normal;
    gap: 5vw;
  }

  .overview__purpose__item {
    max-width: 47%;
    border-radius: 24px;
    margin: 0 0 0;
    box-shadow: 0px 8px 32px 4px #CCE6F7;
  }

  .overview__purpose__item:nth-child(1),
  .overview__purpose__item:nth-child(4) {
      margin-top: 0;
  }

  .overview__purpose__item p {
    font-size: calc(100vw / (390 / 15));
    padding: 2.4vw 0 3vw;
  }

  /* -- カード決済 -- */

  .overview__card {
    border-radius: 16px;
    margin: 24px auto 0;
    padding: 4.1vw;
    display: flex;
    flex-direction: column;
  }

  .overview__card__left,
  .overview__card__right {
    width: 100%;
  }

  .overview__card__left {
    margin-bottom: 6.1vw;
  }

  .overview__card__heading {
    font-size: calc(100vw / (390 / 13));
    font-feature-settings: 'palt';
    margin-bottom: 4.1vw;
  }

  .overview__card img {
    margin-bottom: 6.1vw;
  }

  .overview__card__left .card__left__img__02 {
      margin-bottom: 2vw;
  }


  /* ---------------------------
  present
  --------------------------- */

  .present {
    margin-top: -40vw;
    padding: 12vw 0 3vw;
    background: url(../images/present_bg_sp.png);
    background-size: cover;
    background-position: top center;
  }

  .present__heading {
    max-width: 77vw;
    margin: 0 auto 3vw;
  }

  .present__heading__campaign {
    max-width: 90vw;
    margin: 0 auto 6.1vw;
  }

  .present__lead {
    font-size: calc(100vw / (390 / 14));
    text-align: left;
    margin-bottom: 6.2vw;
    padding: 0 2vw;
  }

  .present__box {
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 4.1vw 4.1vw;
    box-shadow: 0px 8px 40px #9DC9E1;
    border-radius: 16px;
  }

  .present__box .present__campaigncode__lead {
    font-size: calc(100vw / (390 / 14));
    margin-bottom: 6.1vw;
  }

  .present__box .present__campaigncode__code {
    font-size: calc(100vw / (390 / 13));
    margin-bottom: 8px;
  }

  .present__box .present__campaigncode__code span {
    font-size: calc(100vw / (390 / 24));
  }

  .present__more {
    max-width: 54vw;
    margin: 0 auto 15vw;
  }

  .present__more__heading {
    margin: -15vw auto 0;
  }

  .present__more__text {
    font-size: calc(100vw / (390 / 14));
    margin-top: 4.1vw;
  }


/* ---------------------------
  process
  --------------------------- */

  .process {
    padding: 12.3vw 0;
  }

  .process__steps {
    max-width: 100%;
    margin: 4.1vw auto 0;
    padding: 0 6.1vw 0;
    display: flex;
    flex-direction: column;
    gap: 16.4vw;
  }

  .process__step {
    width: 100%;
  }

  .process__step::after {
    content: url(../images/process_step_arrow.svg);
    position: absolute;
    top: auto;
    bottom: -13vw;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 24px;
    height: 40px;
  }

  .process__step__img {
    display: block;
    width: 41vw;
    margin: 0 auto 0;
    filter: drop-shadow(-12px -12px 16px rgba(255, 227, 249, 0.9)) drop-shadow(12px 12px 16px rgba(205, 237, 255, 0.9));
  }

  .process__step__number {
    font-size: calc(100vw / (390 / 18));
    border-radius: 20px;
    padding: 2vw 3.6vw 1.2vw;
    top: -4.7vw;
    left: -1vw;
  }

  .process__step__number span {
    font-size: calc(100vw / (390 / 28));
    padding-left: .12em;
  }

  .process__step__heading {
    font-size: calc(100vw / (390 / 17));
    margin: -2vw 0 4.1vw;
  }

  .process__step__text {
    font-size: calc(100vw / (390 / 14));
  }


/* ---------------------------
  terms-of-use
  --------------------------- */

  .terms-of-use {
    padding: 12.3vw 2vw 4.1vw;
  }

  .section__heading__line {
    margin: 0 auto 8.2vw;
    font-size: calc(100vw / (390 / 18));
  }

  .terms-of-use p {
    font-size: calc(100vw / (390 / 14));
    margin-bottom: 4.1vw;
  }



  /* ---------------------------
  faq
  --------------------------- */

  .faq {
    padding: 12.3vw 4.1vw 12.3vw;
  }

  .faq__accordion {
    max-width: 100%;
    margin: 14.3vw auto 0;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #E5E5E5;
  }

  .faq__accordion__header {
    padding: 3.1vw 1vw 3.1vw 4.1vw;
    font-feature-settings: 'palt';
  }

  .faq__accordion__title {
    font-size: calc(100vw / (390 / 14));
    letter-spacing: .08em;
    align-items: flex-start;
    gap: 3vw;
  }

  .faq__accordion__title::before {
    width: .8em;
    font-size: calc(100vw / (390 / 28));
    line-height: 64%;
  }

  .faq__accordion__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: .2rem;
  }

  .faq__accordion__body {
    padding: 4.1vw 4.1vw 4.1vw 5vw;
    gap: 3vw;
    font-size: calc(100vw / (390 / 14));
  }

  .faq__accordion__body::before {
    width: .8em;
    font-size: calc(100vw / (390 / 24));
  }


  /* ---------------------------
  copyright
  --------------------------- */

  section.copyright {
    padding: 0 0 6.1vw;
  }


  /* ---------------------------
  fixed-banner
  --------------------------- */

  #fixed-banner__pc {
    display: none;
  }

  #fixed-banner__sp {
    position: fixed;
    bottom: 4.1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4vw;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.4vw;
    border-radius: 4.5vw;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.25);
    /* opacity: 0;
    visibility: hidden; */
    z-index: 100;
  }

  /* #fixed-banner__sp.show {
    opacity: 1;
    visibility: visible;
  } */

  #fixed-banner__sp a:nth-child(1) {
    width: 45.6vw;
  }

  #fixed-banner__sp a:nth-child(2) {
    width: 40.48vw;
  }

}