@charset "UTF-8";
/* ========================================
   entry.html 専用スタイル
   ======================================== */
/* ========================================
   追従設定（個別設定）
   ======================================== */
.floating__movie, .floating__campaign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #272727;
  background-color: #fff;
  color: #272727;
  text-decoration: none;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 20px 10px;
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .floating__movie:hover, .floating__campaign:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 767px) {
  .floating__movie, .floating__campaign {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: initial;
    width: 100%;
    height: 13.3333333333vw;
    padding: 1.3333333333vw 1.3333333333vw;
    font-size: 3.2vw;
    text-align: center;
    line-height: 1.5;
  }
}
.floating__movie {
  position: relative;
  line-height: 1.2;
  padding-bottom: 30px;
}
.floating__movie::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 11px;
  height: 10px;
  background: url(../img/icon-arrow-down-double.svg) no-repeat 0 0/100% auto;
}
.floating__movie span {
  display: inline-block;
  padding-bottom: 8px;
  letter-spacing: 0.08em;
}
.floating__movie small {
  display: inline-block;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .floating__movie {
    padding-bottom: 0;
  }
  .floating__movie::after {
    bottom: inherit;
    left: inherit;
    right: 2vw;
    -webkit-transform: none;
            transform: none;
    width: 1.9733333333vw;
    height: 2.32vw;
  }
  .floating__movie span {
    padding-bottom: 0;
  }
  .floating__movie small {
    font-size: 2.4vw;
    margin-bottom: 1.0666666667vw;
    letter-spacing: -0.03em;
  }
}
.floating__campaign {
  color: #fff;
  line-height: 1.07;
  background-color: #272727;
  position: relative;
  padding-bottom: 30px;
}
.floating__campaign::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: url(../img/icon-modal-side.svg) no-repeat 0 0/100% auto;
}
.floating__campaign span {
  display: inline-block;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .floating__campaign {
    padding-bottom: 1.3333333333vw;
    line-height: 1.3;
  }
  .floating__campaign::after {
    bottom: inherit;
    left: inherit;
    right: 5.3333333333vw;
    width: 1.9733333333vw;
    height: 2.32vw;
  }
  .floating__campaign span {
    padding-bottom: 0;
  }
}
.floating__brand-select {
  position: fixed;
  bottom: 0;
  z-index: 401;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 70px;
  background-color: #c80019;
  color: #fff;
  border: 2px solid #c80019;
  font-size: 21px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.floating__brand-select span {
  display: inline-block;
  position: relative;
  padding-right: 38px;
  font-weight: 600;
}
.floating__brand-select span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 11px;
  background: url(../img/icon-arrow-left-double.svg) no-repeat 0 0/100% auto;
}
@media (hover: hover) and (pointer: fine) {
  .floating__brand-select:hover {
    background-color: #fff;
    color: #c80019;
  }
  .floating__brand-select:hover span::before {
    background: url(../img/icon-arrow-left-double-red.svg) no-repeat 0 0/100% auto;
  }
}
@media screen and (max-width: 767px) {
  .floating__brand-select {
    width: 55%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 13.3333333333vw;
    font-size: 4vw;
  }
  .floating__brand-select span {
    display: inline-block;
    position: relative;
    padding-right: 8vw;
  }
  .floating__brand-select span::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    background: url(../img/icon-arrow-down-double-white.svg) no-repeat 0 0/100% auto;
  }
}

/* ========================================
   コンテンツ領域のセクション
   ======================================== */
.features {
  background-color: #fde8de;
  margin-bottom: 92px;
  padding: 40px 40px 50px;
  border-radius: 10px;
}
.features p {
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}
.features__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.features__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 209px;
  height: auto;
  border-radius: 10px;
  background-color: #fff;
}
.features__list li i {
  width: 53.2617px;
}
.features__list li p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.features__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .features {
    margin-bottom: 8.2666666667vw;
    padding: 6.2666666667vw;
    border-radius: 10px;
  }
  .features p {
    font-size: 2.5333333333vw;
    text-align: center;
    margin-top: 2vw;
  }
  .features__list {
    -ms-grid-columns: 1fr 1.7333333333vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7333333333vw;
  }
  .features__list li {
    max-width: 100%;
  }
}

.more-link {
  font-size: 21px;
  font-weight: 600;
  padding-bottom: 6px;
  padding-right: 26px;
  color: #c80019;
  position: relative;
  margin-top: 18px;
}
.more-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 46%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/icon-modal.svg) no-repeat 0 0/100% auto;
}
.more-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 2px;
  width: 100%;
  background-color: #c80019;
}
@media screen and (max-width: 767px) {
  .more-link {
    font-size: 4.2666666667vw;
    padding-bottom: 1.3333333333vw;
    padding-right: 4.5333333333vw;
    margin-top: 0.8em;
  }
  .more-link::after {
    width: 3.2vw;
    height: 3.2vw;
  }
}

.step {
  margin-bottom: 105px;
  padding: 70px 0 100px;
  border: 20px solid #fde8de;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .step {
    margin-bottom: 9.3333333333vw;
    padding: 8vw 13.3333333333vw 8vw 10.6666666667vw;
    border: 2.6666666667vw solid #fde8de;
  }
}
.step__list {
  width: 522px;
  margin: 75px auto 0;
}
@media screen and (max-width: 767px) {
  .step__list {
    width: 100%;
    margin: 6.4vw auto 0;
  }
}
.step__item {
  position: relative;
  padding-left: 100px;
}
.step__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.step__item.num01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: url(../img/step-num01-select.svg) no-repeat 0 0/100% auto;
}
.step__item.num01::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 40px;
  width: 2px;
  height: 96%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(249, 180, 144)), color-stop(99.92%, rgb(239, 76, 115)));
  background: linear-gradient(90deg, rgb(249, 180, 144) 0%, rgb(239, 76, 115) 99.92%);
}
.step__item.num02::before {
  background: url(../img/step-num02.svg) no-repeat 0 0/100% auto;
}
.step__item.num02::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 40px;
  width: 2px;
  height: 96%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(249, 180, 144)), color-stop(99.92%, rgb(239, 76, 115)));
  background: linear-gradient(90deg, rgb(249, 180, 144) 0%, rgb(239, 76, 115) 99.92%);
}
.step__item.num03::before {
  background: url(../img/step-num03.svg) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 767px) {
  .step__item {
    padding-left: 13.3333333333vw;
  }
  .step__item::before {
    left: 1.6vw;
    width: 8vw;
    height: 8vw;
  }
  .step__item.num01::before {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .step__item.num01::after {
    top: 10.6666666667vw;
    left: 5.3333333333vw;
  }
  .step__item.num02::after {
    top: 8vw;
    left: 5.3333333333vw;
  }
}
.step__title {
  margin-bottom: 15px;
  padding-top: 10px;
  font-size: 26px;
  font-weight: 600;
}
.num01 .step__title {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .step__title {
    margin-bottom: 2vw;
    padding-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .num01 .step__title {
    padding-top: 2.6666666667vw;
  }
}
.num01 .step__content {
  width: 386px;
  padding-bottom: 25px;
}
.num02 .step__content {
  width: 418px;
  padding-bottom: 66px;
}
.num03 .step__content {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .num01 .step__content {
    width: 32vw;
    padding-bottom: 3.4666666667vw;
  }
  .num02 .step__content {
    width: 33.0666666667vw;
    padding-bottom: 6.1333333333vw;
  }
  .num03 .step__content {
    font-size: 3.2vw;
  }
}

/* --- 提携ブランド選択 --- */
.sec-brand {
  padding: 100px 0 80px;
  background-color: #fde8de;
}
.sec-brand h2.ttl-underline {
  margin-bottom: 5rem;
}
.sec-brand__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec-brand {
    padding: 10.6666666667vw 0 8.6666666667vw;
  }
  .sec-brand h2.ttl-underline {
    margin-bottom: 8vw;
  }
}

.brand-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 206.6px 12px 206.6px 12px 206.6px 12px 316px;
  grid-template-columns: 206.6px 206.6px 206.6px 316px;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brand-list--row2 {
  -ms-grid-columns: 316px 316px 316px;
  grid-template-columns: 316px 316px 316px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .brand-list {
    -ms-grid-columns: 21.2551440329% 10px 21.2551440329% 10px 21.2551440329% 10px 32.5102880658%;
    grid-template-columns: 21.2551440329% 21.2551440329% 21.2551440329% 32.5102880658%;
    gap: 10px;
  }
  .brand-list--row2 {
    -ms-grid-columns: 32.5102880658% 32.5102880658% 32.5102880658%;
    grid-template-columns: 32.5102880658% 32.5102880658% 32.5102880658%;
  }
}
@media screen and (max-width: 767px) {
  .brand-list {
    -ms-grid-columns: 18.9333333333vw 0.56vw 18.9333333333vw 0.56vw 18.9333333333vw 0.56vw 28.8vw;
    grid-template-columns: 18.9333333333vw 18.9333333333vw 18.9333333333vw 28.8vw;
    gap: 0.56vw;
  }
  .brand-list--row2 {
    -ms-grid-columns: 28.8vw 28.8vw 28.8vw;
    grid-template-columns: 28.8vw 28.8vw 28.8vw;
    margin-top: 0.8vw;
  }
}

.brand-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 114px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
  gap: 1.4rem;
}
.brand-btn__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brand-btn__logo.visa {
  width: 84px;
}
.brand-btn__logo.mastercard {
  width: 79px;
}
.brand-btn__logo.jcb {
  width: 52px;
}
.brand-btn__logo.view-suica-jcb {
  width: 181px;
}
.brand-btn__logo.american-express {
  width: 51px;
}
.brand-btn__logo.diners-club {
  width: 126px;
}
.brand-btn__logo.op {
  width: 63px;
}
.brand-btn__arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 14px;
  height: 8px;
  background: url(../img/icon-arrow-down.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 767px) {
  .brand-btn {
    height: 17.0666666667vw;
    padding: 1em;
    border-radius: 1.3333333333vw;
    gap: 1.4rem;
  }
  .brand-btn__logo.visa {
    width: 12.2666666667vw;
  }
  .brand-btn__logo.mastercard {
    width: 11.6vw;
  }
  .brand-btn__logo.jcb {
    width: 6.9333333333vw;
  }
  .brand-btn__logo.view-suica-jcb {
    width: 24.1333333333vw;
  }
  .brand-btn__logo.american-express {
    width: 6.8vw;
  }
  .brand-btn__logo.diners-club {
    width: 16.8vw;
  }
  .brand-btn__logo.op {
    width: 8.4vw;
  }
  .brand-btn__arrow {
    bottom: 1.8666666667vw;
    width: 1.8666666667vw;
    height: 1.0666666667vw;
  }
}

.brand-selection {
  padding: 80px 0 105px;
}
@media screen and (max-width: 1080px) {
  .brand-selection {
    padding: 80px 1.5em 105px;
  }
}
@media screen and (max-width: 767px) {
  .brand-selection {
    padding: 12.8vw 0 6.6666666667vw;
  }
}
.brand-selection__inner {
  width: 100%;
  max-width: 972px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1080px) {
  .brand-selection__inner {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .brand-selection__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 4.2666666667vw;
  }
}
.brand-selection__item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 26px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .brand-selection__item {
    border-radius: 2.6666666667vw;
    padding: 6.6666666667vw 7.7333333333vw 8vw;
    scroll-margin-top: 13.3333333333vw;
  }
}
.brand-selection__head {
  text-align: center;
}
.brand-selection__logo {
  max-width: 230px;
  width: 100%;
  display: block;
  margin: 0 auto 11px;
}
#brand-visa .brand-selection__logo {
  max-width: 75px;
  padding: 7px 0;
}
#brand-mastercard .brand-selection__logo {
  max-width: 57px;
  margin-top: -3px;
}
#brand-view-suica-jcb .brand-selection__logo {
  max-width: 158px;
  padding: 6px 0 0;
}
#brand-jcb .brand-selection__logo {
  max-width: 46px;
  padding: 0;
}
#brand-american-express .brand-selection__logo {
  max-width: 35.5px;
  padding: 0;
}
#brand-diners-club .brand-selection__logo {
  max-width: 104px;
  padding: 6px 0 0;
}
#brand-op .brand-selection__logo {
  max-width: 42px;
  padding: 5px 0 0;
}
@media screen and (max-width: 767px) {
  .brand-selection__logo {
    margin: 0 auto 0.2em;
  }
  #brand-visa .brand-selection__logo {
    max-width: 17.7333333333vw;
    padding: 7px 0;
  }
  #brand-mastercard .brand-selection__logo {
    max-width: 11.7333333333vw;
    margin-top: -5px;
  }
  #brand-view-suica-jcb .brand-selection__logo {
    max-width: 37.2vw;
    padding: 6px 0 0;
  }
  #brand-jcb .brand-selection__logo {
    max-width: 10.9333333333vw;
    padding: 4px 0 0;
  }
  #brand-american-express .brand-selection__logo {
    max-width: 8.2666666667vw;
    padding: 0;
  }
  #brand-diners-club .brand-selection__logo {
    max-width: 24.4vw;
    padding: 7px 0 0;
  }
  #brand-op .brand-selection__logo {
    max-width: 12vw;
    padding: 5px 0 0;
  }
}
.brand-selection__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  text-align: center;
}
#brand-american-express .brand-selection__title {
  letter-spacing: inherit;
}
@media screen and (max-width: 767px) {
  .brand-selection__title {
    font-size: 3.2vw;
    margin-top: 3.3333333333vw;
  }
  #brand-mastercard .brand-selection__title {
    margin-top: 2.4vw;
  }
}
.brand-selection__benefit {
  margin-top: 28px;
  text-align: center;
}
#brand-view-suica-jcb .brand-selection__benefit {
  margin-top: 17px;
}
.brand-selection__benefit-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand-selection__benefit-max {
  width: 16px;
  height: auto;
  display: block;
}
.brand-selection__benefit-pt {
  width: 14px;
  height: auto;
  display: block;
  margin-top: 16px;
}
.brand-selection__benefit-number {
  width: auto;
  max-width: 140px;
  display: block;
  margin: 0 8px -4px 6px;
}
.brand-selection__benefit-number.txt-15500 {
  max-width: 137px;
}
.brand-selection__benefit-number.txt-9000 {
  max-width: 114px;
}
.brand-selection__benefit-chance {
  width: 86px;
  height: auto;
  display: block;
}
.brand-selection__benefit-chance-only {
  width: 90px;
  height: auto;
  display: block;
  margin: 10px auto 0;
}
.brand-selection__benefit-mile {
  width: 42px;
  height: auto;
  margin-top: auto;
  padding-bottom: 5px;
  display: block;
}
.brand-selection__benefit-note {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.21;
  text-align: center;
}
.brand-selection__benefit--suica .brand-selection__benefit-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand-selection__benefit-plus {
  width: 8px;
  margin: -9px auto -5px;
}
.brand-selection__benefit-point {
  width: 70px;
  margin: 0 auto 7px;
}
@media screen and (max-width: 767px) {
  .brand-selection__benefit {
    margin-top: 28px;
  }
  #brand-view-suica-jcb .brand-selection__benefit {
    margin-top: 4vw;
  }
  .brand-selection__benefit-max {
    width: 3.8666666667vw;
  }
  .brand-selection__benefit-pt {
    width: 3.3333333333vw;
    margin-top: 2.9333333333vw;
  }
  .brand-selection__benefit-number {
    max-width: 33.3333333333vw;
    margin: 0 2.6666666667vw -1.0666666667vw 2vw;
  }
  .brand-selection__benefit-number.txt-15500 {
    max-width: 32.4vw;
  }
  .brand-selection__benefit-number.txt-9000 {
    max-width: 26.8vw;
  }
  .brand-selection__benefit-chance {
    width: 20.1333333333vw;
  }
  .brand-selection__benefit-chance-only {
    width: 19.0666666667vw;
    margin: 2vw auto 0;
  }
  .brand-selection__benefit-mile {
    width: 9.8666666667vw;
    padding-bottom: 0.6666666667vw;
  }
  .brand-selection__benefit-note {
    margin-top: 3.7333333333vw;
    font-size: 2.8vw;
  }
  .brand-selection__benefit-plus {
    width: 2.4vw;
    margin: 1.3333333333vw auto 3.3333333333vw;
  }
  .brand-selection__benefit-point {
    width: 19.4666666667vw;
    margin: 0 auto 2.6666666667vw;
  }
}
.brand-selection__visual {
  width: 100%;
  max-width: 160px;
  margin: 28px auto 0;
  position: relative;
}
#brand-view-suica-jcb .brand-selection__visual {
  margin: 15px auto 0;
}
#brand-visa .brand-selection__visual::after, #brand-mastercard .brand-selection__visual::after, #brand-view-suica-jcb .brand-selection__visual::after {
  content: "";
  position: absolute;
  right: -54px;
  top: 0;
  width: 37px;
  height: 48px;
  background: url(../img/apple-pay.svg) no-repeat 0 0/100% auto;
}
#brand-jcb .brand-selection__visual, #brand-diners-club .brand-selection__visual, #brand-op .brand-selection__visual {
  left: -45px;
}
#brand-jcb .brand-selection__visual::after, #brand-diners-club .brand-selection__visual::after, #brand-op .brand-selection__visual::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  width: 86px;
  height: 48px;
  background: url(../img/apple-google-pay.png) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 767px) {
  .brand-selection__visual {
    max-width: 52vw;
  }
  #brand-view-suica-jcb .brand-selection__visual {
    margin: 4vw auto 0;
  }
  #brand-visa .brand-selection__visual::after, #brand-mastercard .brand-selection__visual::after, #brand-view-suica-jcb .brand-selection__visual::after {
    right: -12.6666666667vw;
    width: 8.6666666667vw;
    height: 11.3333333333vw;
    background: url(../img/apple-pay.svg) no-repeat 0 0/100% auto;
  }
  #brand-jcb .brand-selection__visual, #brand-diners-club .brand-selection__visual, #brand-op .brand-selection__visual {
    left: -10.6666666667vw;
  }
  #brand-jcb .brand-selection__visual::after, #brand-diners-club .brand-selection__visual::after, #brand-op .brand-selection__visual::after {
    right: -24.5333333333vw;
    width: 20.4vw;
    height: 11.3333333333vw;
    background: url(../img/apple-google-pay.png) no-repeat 0 0/100% auto;
  }
}
.brand-selection__feature {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#brand-view-suica-jcb .brand-selection__feature {
  margin-top: 8px;
}
#brand-american-express .brand-selection__feature {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .brand-selection__feature {
    margin-top: 4vw;
  }
  #brand-view-suica-jcb .brand-selection__feature {
    margin-top: 4vw;
  }
  #brand-american-express .brand-selection__feature {
    padding-bottom: 5.3333333333vw;
  }
}
.brand-selection__feature-list {
  min-width: 210px;
  padding: 0;
  list-style: none;
}
.brand-selection__feature-list li {
  position: relative;
  padding-left: 21px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.brand-selection__feature-list li + li {
  margin-top: 2px;
}
.brand-selection__feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .brand-selection__feature-list li {
    padding-left: 6.6666666667vw;
    font-size: 2.8vw;
  }
  .brand-selection__feature-list li + li {
    margin-top: 0.3em;
  }
}
.brand-selection__feature-list .icon-feature01::before {
  width: 13px;
  height: 13px;
  background-image: url(../img/icon-feature01.svg);
}
.brand-selection__feature-list .icon-feature02::before {
  left: 1px;
  width: 11px;
  height: 13px;
  background-image: url(../img/icon-feature02.svg);
}
#brand-op .brand-selection__feature-list .icon-feature02::before {
  left: -2px;
}
.brand-selection__feature-list .icon-feature03::before {
  left: 1px;
  width: 12px;
  height: 15px;
  background-image: url(../img/icon-feature03.svg);
}
.brand-selection__feature-list .icon-feature04::before {
  width: 13px;
  height: 13px;
  background-image: url(../img/icon-feature04.svg);
}
.brand-selection__feature-list .icon-feature05::before {
  width: 13px;
  height: 9px;
  background-image: url(../img/icon-feature05.svg);
}
.brand-selection__feature-list .icon-feature06::before {
  width: 13px;
  height: 16px;
  background-image: url(../img/icon-feature06.svg);
}
.brand-selection__feature-list .icon-feature07::before {
  left: -4px;
  width: 17.3369px;
  height: 17.2498px;
  background-image: url(../img/icon-feature07.svg);
}
.brand-selection__feature-list .icon-feature08::before {
  left: 1px;
  width: 12px;
  height: 9px;
  background-image: url(../img/icon-feature08.svg);
}
.brand-selection__feature-list .icon-feature09::before {
  left: -3px;
  width: 18px;
  height: 11px;
  background-image: url(../img/icon-feature09.svg);
}
.brand-selection__feature-list .icon-feature10::before {
  left: 1px;
  width: 10px;
  height: 15px;
  background-image: url(../img/icon-feature10.svg);
}
.brand-selection__feature-list .icon-feature11::before {
  left: -2px;
  width: 15px;
  height: 12px;
  background-image: url(../img/icon-feature11.svg);
}
.brand-selection__feature-list .icon-feature12::before {
  left: 0;
  width: 13px;
  height: 13px;
  background-image: url(../img/icon-feature12.svg);
}
.brand-selection__feature-list .icon-feature13::before {
  left: -8px;
  width: 24.5px;
  height: 13.5px;
  background-image: url(../img/icon-feature13.svg);
}
.brand-selection__feature-list .icon-feature14::before {
  left: -2px;
  width: 13px;
  height: 16px;
  background-image: url(../img/icon-feature14.svg);
}
@media screen and (max-width: 767px) {
  .brand-selection__feature-list .icon-feature01::before {
    left: 0.2666666667vw;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
  .brand-selection__feature-list .icon-feature02::before {
    left: 0.4vw;
    width: 3.0666666667vw;
    height: 3.4666666667vw;
  }
  .brand-selection__feature-list .icon-feature03::before {
    left: 1px;
    width: 3.4666666667vw;
    height: 4.2666666667vw;
  }
  #brand-op .brand-selection__feature-list .icon-feature03::before {
    left: -0.5333333333vw;
  }
  .brand-selection__feature-list .icon-feature04::before {
    width: 3.6vw;
    height: 3.6vw;
  }
  .brand-selection__feature-list .icon-feature05::before {
    width: 3.6vw;
    height: 2.5333333333vw;
  }
  .brand-selection__feature-list .icon-feature06::before {
    width: 3.6vw;
    height: 4.4vw;
  }
  .brand-selection__feature-list .icon-feature07::before {
    left: -1.3333333333vw;
    width: 4.88vw;
    height: 4.8533333333vw;
  }
  .brand-selection__feature-list .icon-feature08::before {
    left: 0.1333333333vw;
    width: 3.8666666667vw;
    height: 3.4666666667vw;
  }
  .brand-selection__feature-list .icon-feature09::before {
    left: -0.9333333333vw;
    width: 5.2vw;
    height: 3.0666666667vw;
  }
  .brand-selection__feature-list .icon-feature10::before {
    left: 0.2666666667vw;
    width: 2.9333333333vw;
    height: 4.2666666667vw;
  }
  .brand-selection__feature-list .icon-feature11::before {
    left: -0.5333333333vw;
    width: 4.2666666667vw;
    height: 3.4666666667vw;
  }
  .brand-selection__feature-list .icon-feature12::before {
    left: 0;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
  .brand-selection__feature-list .icon-feature13::before {
    left: -2.4vw;
    width: 6.9333333333vw;
    height: 3.7333333333vw;
  }
  .brand-selection__feature-list .icon-feature14::before {
    left: -0.5333333333vw;
    width: 3.6vw;
    height: 4.4vw;
  }
}
.brand-selection__desc {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.46;
  padding-bottom: 5px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.brand-selection__desc-note {
  font-size: 11px;
  font-weight: 400;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .brand-selection__desc {
    margin-top: 5.3333333333vw;
    font-size: 2.9333333333vw;
    padding-bottom: 1.0666666667vw;
  }
  .brand-selection__desc-note {
    font-size: 2.5333333333vw;
  }
}
.brand-selection__expandable {
  position: relative;
  overflow: hidden;
  max-height: 90px;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.brand-selection__expandable::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.is-expanded .brand-selection__expandable {
  max-height: 300px;
  height: 100%;
}
.is-expanded .brand-selection__expandable::after {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .brand-selection__expandable {
    max-height: 18vw;
  }
  .brand-selection__expandable::after {
    width: 100%;
    height: 18.6666666667vw;
  }
  .is-expanded .brand-selection__expandable {
    max-height: 46.6666666667vw;
    height: 100%;
  }
}
.brand-selection__toggle {
  padding-top: 20px;
  text-align: center;
}
#brand-visa .brand-selection__toggle {
  padding-top: 41px;
}
#brand-mastercard .brand-selection__toggle {
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .brand-selection__toggle {
    margin-top: 2.6666666667vw;
  }
  #brand-visa .brand-selection__toggle {
    padding-top: 2.6666666667vw;
  }
  #brand-mastercard .brand-selection__toggle {
    padding-top: 2.6666666667vw;
  }
}
.brand-selection__toggle-btn {
  min-width: 120px;
  height: 26px;
  padding: 0 20px;
  border: 1px solid #272727;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  position: relative;
}
@media (hover: hover) {
  .brand-selection__toggle-btn:hover {
    background: #e9e9e9;
  }
}
@media screen and (max-width: 767px) {
  .brand-selection__toggle-btn {
    min-width: 29.0666666667vw;
    height: 6.1333333333vw;
    padding: 0 2.6666666667vw;
    font-size: 2.6666666667vw;
    gap: 1.6vw;
  }
}
.brand-selection__toggle-label {
  position: relative;
}
.brand-selection__toggle-label--open, .brand-selection__toggle-label--close {
  display: block;
}
.brand-selection__toggle-label--close {
  display: none;
}
.is-expanded .brand-selection__toggle-label--open {
  display: none;
}
.is-expanded .brand-selection__toggle-label--close {
  display: block;
}
.brand-selection__toggle-icon {
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.brand-selection__toggle-icon::before, .brand-selection__toggle-icon::after {
  content: "";
  position: absolute;
  background: #272727;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.brand-selection__toggle-icon::before {
  width: 8px;
  height: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.brand-selection__toggle-icon::after {
  width: 1px;
  height: 8px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.is-expanded .brand-selection__toggle-icon::after {
  opacity: 0;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .brand-selection__toggle-icon {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
    right: 2vw;
  }
  .brand-selection__toggle-icon::before {
    width: 1.8666666667vw;
    height: 1px;
  }
  .brand-selection__toggle-icon::after {
    height: 1.8666666667vw;
  }
}
.brand-selection__cta {
  margin-top: auto;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .brand-selection__cta {
    padding-top: 5.0666666667vw;
  }
}
.brand-selection__cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 60px;
  padding: 5px 24px;
  border-radius: 999px;
  background: #c80019;
  color: #fff;
  border: 1px solid #c80019;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: relative;
}
.brand-selection__cta-btn small {
  font-size: 12px;
}
#brand-american-express .brand-selection__cta-btn small {
  font-size: 11px;
}
.brand-selection__cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 5px;
  height: 11px;
  background: url(../img/icon-arrow-left.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (hover: hover) {
  .brand-selection__cta-btn:hover {
    background: #fff;
    color: #c80019;
  }
  .brand-selection__cta-btn:hover::after {
    background: url(../img/icon-arrow-left-red.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .brand-selection__cta-btn {
    min-height: 13.3333333333vw;
    padding: 2.6666666667vw 4vw;
    font-size: 3.2vw;
  }
  .brand-selection__cta-btn small {
    font-size: 2.8vw;
  }
  .brand-selection__cta-btn::after {
    right: 4vw;
    width: 1.3333333333vw;
    height: 2.9333333333vw;
  }
}
.brand-selection__note {
  font-size: 13px;
  line-height: 1.46;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .brand-selection__note {
    font-size: 2.5333333333vw;
    margin-top: 3.4666666667vw;
  }
}

/* --- カード一覧 --- */
.sec-card {
  padding: 100px 0 80px;
  background-color: #fff4cd;
}
.sec-card__inbox {
  border-radius: 10px;
  background-color: #fff;
  margin-top: 50px;
  padding: 78px 67px 72px;
}
.sec-card__inbox figure {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec-card {
    padding: 8vw 0 4.6666666667vw;
  }
  .sec-card__inbox {
    border-radius: 2.6666666667vw;
    background-color: #fff;
    margin-top: 3.4666666667vw;
    padding: 5.7333333333vw 8.9333333333vw 4.4vw;
  }
  .sec-card__inbox figure {
    margin-bottom: 4.2666666667vw;
  }
}

/* --- sec-movie: 動画セクション --- */
.sec-movie {
  padding: 0 0 100px;
  background-color: #fff4cd;
}
@media screen and (max-width: 767px) {
  .sec-movie {
    padding: 4.6666666667vw 0 11.3333333333vw;
  }
}

.end-cp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.end-cp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 32px 15px;
  background-color: #e6e6e6;
  font-size: 19px;
  font-weight: 500;
}
.end-cp a span {
  position: relative;
}
.end-cp a span::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-arrow-left-black.svg) no-repeat 0 0/100% auto;
  width: 6px;
  height: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .end-cp a {
    padding: 14.6666666667vw 1.5em;
    font-size: 2.9333333333vw;
  }
  .end-cp a span::after {
    right: -4vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(../img/icon-arrow-left-black.svg) no-repeat 0 0/100% auto;
    width: 1.4666666667vw;
    height: 2.9333333333vw;
  }
}