@charset "UTF-8";
/* ========================================
   アニメーション
   ======================================== */
/* 開く時の.bodyのアニメーション */
@keyframes modalwindow_body_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modalwindow_body_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ========================================
   モーダルウィンドウ 基本構造
   ======================================== */
.modalwindow {
  /* オーバーレイ＆スクロール領域になるレイヤー */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  z-index: 8000;
  width: 100%;
  /* スマホでスワイプして指を離すまでの間下部の背景が無くなるため余分に指定 */
}
.modalwindow.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalwindow {
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  opacity: 1;
}

.modalwindow.no-overlay-close {
  cursor: default;
}

.modalwindow .body {
  position: relative;
  width: 1000px;
  max-width: calc(100% - 40px);
  cursor: default;
  animation: 0.3s modalwindow_body_out;
  padding: 50px 0;
  margin: auto;
}

.modalwindow .contents {
  position: relative;
  background: #fde8de;
  padding: 90px 80px;
  border-radius: 20px;
}
.modalwindow .contents.bg-white {
  padding: 80px 78px 80px;
  background-color: #fff;
}
.modalwindow .contents::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgb(249, 180, 144) 30%, rgb(239, 76, 115) 99.92%);
  z-index: -1;
}

.modalwindow .window-close {
  display: block;
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.2s all;
}
@media (hover: hover) {
  .modalwindow .window-close:hover {
    transform: rotate(180deg);
  }
}

.modalwindow.is-visible .body {
  animation: 0.3s modalwindow_body_in;
}

.modalwindow .modal-scroll {
  position: relative;
}

#card-features.modalwindow .contents {
  padding: 90px 80px 35px;
}

@media screen and (min-width: 767px) and (max-width: 1080px) {
  .modalwindow .contents {
    padding: 90px 1.5em;
  }
  .modalwindow .contents.bg-white {
    padding: 80px 1.5em 80px;
  }
  #card-features.modalwindow .contents {
    padding: 90px 1.5em 35px;
  }
}
@media screen and (max-width: 767px) {
  .modalwindow .body {
    width: 88%;
    padding: 4em 0 2em;
  }
  .modalwindow .contents {
    padding: 3rem 3.4666666667vw;
    border-radius: 2.6666666667vw;
  }
  .modalwindow .contents.bg-white {
    padding: 8vw 3.4666666667vw 4vw;
  }
  .modalwindow .contents::before {
    inset: -1.0666666667vw;
    border-radius: 2.6666666667vw;
  }
  .modalwindow .window-close {
    top: -4vw;
    right: -4vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  #card-features.modalwindow .contents {
    padding: 3rem 3.4666666667vw 5.3333333333vw;
  }
}
/* ========================================
   個別モーダル設定
   ======================================== */
/* --- #card-features: カード特長 --- */
#card-features .ttl {
  font-size: 28px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  #card-features .ttl {
    font-size: 4.4vw;
    margin-bottom: 3.3333333333vw;
  }
}

.features-inbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 1.5em 70px;
  background-color: #fff;
}
.features-inbox + .features-inbox {
  margin-top: 27px;
}
.features-inbox .txt-read {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.features-inbox .img01 {
  max-width: 590px;
  margin: 40px auto;
}
.features-inbox .img02 {
  max-width: 600px;
  margin: 40px auto 10px;
}
.features-inbox .img03 {
  max-width: 287px;
  margin: 40px auto 0;
}
.features-inbox .img04 {
  max-width: 540px;
  margin: 40px auto 0;
}
.features-inbox .bonus-list {
  display: flex;
  justify-content: center;
  gap: 23px;
  margin: 0 auto 25px;
}
.features-inbox .bonus-list li {
  width: 100%;
  max-width: 200px;
}
.features-inbox .note {
  margin: 0 auto;
  font-feature-settings: "palt";
}
.features-inbox .note li {
  text-indent: -1em;
  margin-left: 1em;
}
.features-inbox.features02 .note {
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .features-inbox {
    padding: 4vw 4vw 4vw;
  }
  .features-inbox + .features-inbox {
    margin-top: 4.2666666667vw;
  }
  .features-inbox .txt-read {
    font-size: 3.6vw;
  }
  .features-inbox .img01 {
    margin: 4vw auto 3.6vw;
  }
  .features-inbox .img02 {
    margin: 4.6666666667vw auto 2.4vw;
  }
  .features-inbox .img03 {
    max-width: 41.2vw;
    margin: 9.3333333333vw auto 6.6666666667vw;
  }
  .features-inbox .img04 {
    margin: 4vw auto 1.3333333333vw;
  }
  .features-inbox .bonus-list {
    gap: 0.8vw;
    margin: 0 auto 1em;
  }
  .features-inbox .bonus-list li {
    width: auto;
  }
  .features-inbox .note li {
    font-size: 2.5333333333vw;
  }
}

.features-note {
  font-size: 16px;
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .features-note {
    font-size: 2.5333333333vw;
    margin-top: 3.3333333333vw;
  }
}

.ttl-corner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: 600;
  border: 2px solid #272727;
  border-radius: 999px;
  width: 290px;
  margin: 0 auto 50px;
  padding: 15px 10px;
}
.features04 .ttl-corner {
  width: 208px;
}
.ttl-corner i {
  display: inline-block;
}
.ttl-corner i.plane {
  width: 35px;
  margin-right: 25px;
}
.ttl-corner i.cart {
  width: 50px;
  margin-right: 12px;
}
.ttl-corner i.ticket {
  width: 51px;
  margin-right: 30px;
}
.ttl-corner i.heart {
  width: 34px;
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  .ttl-corner {
    font-size: 3.0666666667vw;
    width: 38.6666666667vw;
    margin: 0 auto 6vw;
    padding: 2vw 1.3333333333vw;
  }
  .features04 .ttl-corner {
    width: 27.7333333333vw;
  }
  .ttl-corner i {
    display: inline-block;
  }
  .ttl-corner i.plane {
    width: 4.6666666667vw;
    margin-right: 3.3333333333vw;
  }
  .ttl-corner i.cart {
    width: 6.6666666667vw;
    margin-right: 1.6vw;
  }
  .ttl-corner i.ticket {
    width: 6.8vw;
    margin-right: 4vw;
  }
  .ttl-corner i.heart {
    width: 4.5333333333vw;
    margin-right: 2.4vw;
  }
}

/* --- #card-flow: 申込フロー --- */
.flow__prepare {
  display: flex;
  align-items: stretch;
  border: 1px solid #c80019;
  overflow: hidden;
  width: 100%;
  max-width: 588px;
  padding: 30px 25px;
  margin: 40px auto 0;
}
.flow__prepare > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #f9e3e6;
  padding: 6px 24px 6px 18px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.16;
  font-feature-settings: "palt";
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
.flow__prepare > dd {
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-size: 20px;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .flow__prepare {
    flex-direction: column;
    border: 2px solid #c80019;
    padding: 2.6666666667vw 2.6666666667vw 2.9333333333vw;
    margin: 5.3333333333vw auto 0;
  }
  .flow__prepare > dt {
    padding: 1.0666666667vw 2.6666666667vw 1.3333333333vw;
    font-size: 2.6666666667vw;
    width: auto;
    margin: 0 auto 2vw;
    clip-path: none;
  }
  .flow__prepare > dd {
    padding-left: 0;
    font-size: 2.6666666667vw;
    text-align: center;
    justify-content: center;
  }
}
.flow__list {
  width: 100%;
  max-width: 590px;
  margin: 65px auto 0;
}
@media screen and (max-width: 767px) {
  .flow__list {
    margin: 3.6vw auto 0;
  }
}
.flow__item {
  position: relative;
  padding-left: 100px;
}
.flow__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 50%;
}
.flow__item::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 40px;
  width: 2px;
  height: 100%;
  background: linear-gradient(90deg, rgb(249, 180, 144) 0%, rgb(239, 76, 115) 99.92%);
}
.flow__item.num01::before {
  background: url(../img/step-num01.svg) no-repeat 0 0/100% auto;
}
.flow__item.num02::before {
  background: url(../img/step-num02.svg) no-repeat 0 0/100% auto;
}
.flow__item.num03::before {
  background: url(../img/step-num03.svg) no-repeat 0 0/100% auto;
}
.flow__item.num04::before {
  background: url(../img/step-num04.svg) no-repeat 0 0/100% auto;
}
.flow__item.num05::before {
  background: url(../img/step-num05.svg) no-repeat 0 0/100% auto;
}
.flow__item.last::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .flow__item {
    padding-left: 12.6666666667vw;
  }
  .flow__item::before {
    left: 0;
    width: 8.8vw;
    height: 8.8vw;
    border: 1.0666666667vw solid #fff;
  }
  .flow__item::after {
    content: "";
    position: absolute;
    top: 8.8vw;
    left: 4.2666666667vw;
    width: 2px;
  }
}
.flow__title {
  margin-bottom: 15px;
  padding-top: 10px;
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .flow__title {
    margin-bottom: 2vw;
    padding-top: 1.6vw;
    font-size: 3.4666666667vw;
  }
}
.flow__content {
  padding-bottom: 50px;
}
.flow__content figure {
  width: 424px;
}
.flow__content p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.flow__content p.note {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .flow__content {
    padding-bottom: 4vw;
  }
  .flow__content figure {
    width: 57.8666666667vw;
  }
  .flow__content p {
    font-size: 3.2vw;
    padding-right: 6.6666666667vw;
  }
  .flow__content p.note {
    font-size: 2.6666666667vw;
  }
}

.download {
  border: 10px solid #c80019;
  padding: 50px 40px 40px;
  margin-top: 20px;
}
.download__flow {
  width: 510px;
  margin: 0 auto;
}
.download__list {
  position: relative;
  max-width: 510px;
  margin: 0 auto;
}
.download__list li {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  font-feature-settings: "palt";
  padding-left: 55px;
  position: relative;
}
.download__list li + li {
  margin-top: 18px;
}
.download__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 29px;
  background: url(../img/icon-check-bk.svg) no-repeat 0 0/100% auto;
}
.download__list::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  width: 160px;
  height: 158px;
  background: url(../img/balloon-flow-limit.svg) no-repeat 0 0/100% auto;
}
.download figure {
  width: 318px;
  margin: 40px auto 25px;
  position: relative;
  left: 27px;
}
.download p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  font-feature-settings: "palt";
  text-align: center;
}
.download__link {
  width: 436px;
  margin: 15px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download__link li {
  width: 152px;
}
.download__link li.applogo {
  width: 84px;
}
@media screen and (max-width: 767px) {
  .download {
    border: 10px solid #c80019;
    padding: 8.6666666667vw 5.3333333333vw 5.3333333333vw;
    margin-top: 20px;
  }
  .download__flow {
    width: 100%;
    margin: 0 auto;
  }
  .download__list {
    max-width: 68vw;
  }
  .download__list li {
    font-size: 2.9333333333vw;
    padding-left: 6.6666666667vw;
  }
  .download__list li + li {
    margin-top: 2.6666666667vw;
  }
  .download__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4.2666666667vw;
    height: 3.8666666667vw;
    background: url(../img/icon-check-bk.svg);
  }
  .download__list::after {
    content: "";
    position: absolute;
    top: -5.3333333333vw;
    right: -1.3333333333vw;
    width: 21.3333333333vw;
    height: 21.0666666667vw;
    background: url(../img/balloon-flow-limit.svg) no-repeat 0 0/100% auto;
  }
  .download figure {
    width: 42.4vw;
    margin: 4.6666666667vw auto 3.3333333333vw;
    left: 3.6vw;
  }
  .download p {
    font-size: 2.9333333333vw;
  }
  .download__link {
    width: 100%;
    margin: 2.6666666667vw auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.6666666667vw;
  }
  .download__link li {
    width: 20.4vw;
  }
  .download__link li.applogo {
    width: 12.1333333333vw;
    margin-right: 0.8vw;
  }
}

/* --- #card-howto: ご利用方法 --- */
#card-howto .txt-description {
  font-feature-settings: "palt";
  margin: 40px auto 40px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  #card-howto .txt-description {
    font-size: 2.9333333333vw;
    padding: 0 5.0666666667vw;
    margin: 6.6666666667vw auto 4.6666666667vw;
  }
}

/* --- #card-type-select: カード種類選択 --- */
#card-type-select.modalwindow .contents.bg-white {
  padding: 53px 35px 35px;
}

@media screen and (min-width: 767px) and (max-width: 1080px) {
  #card-type-select.modalwindow .contents.bg-white {
    padding: 53px 1.5em 35px;
  }
}
@media screen and (max-width: 767px) {
  #card-type-select.modalwindow .contents.bg-white {
    padding: 9.3333333333vw 0 6.1333333333vw 6.6666666667vw;
  }
  #card-type-select.modalwindow .contents .img-wapper {
    width: 100%;
    overflow-x: scroll;
  }
  #card-type-select.modalwindow .contents img {
    width: 202.1333333333vw;
    margin-right: 3.4666666667vw;
  }
}
/* --- #card-select-guide: カード選択ガイド --- */
#card-select-guide .guide__title {
  font-size: 33px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  padding: 0.1em 0.5em;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(249, 180, 144) 0%, rgb(239, 76, 115) 99.92%);
}
#card-select-guide .guide__lead {
  margin: 20px auto 30px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}
#card-select-guide .guide__card-recommend {
  margin-bottom: 85px;
}
#card-select-guide .guide__card-illust {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #card-select-guide .guide__title {
    font-size: 4.4vw;
    height: 7.3333333333vw;
    padding: 0.2em 0.5em;
    border-radius: 1.3333333333vw;
  }
  #card-select-guide .guide__lead {
    margin: 2.6666666667vw auto 2.6666666667vw;
    text-align: center;
    font-size: 2.9333333333vw;
  }
  #card-select-guide .guide__card-recommend {
    width: calc(100% + 6.9333333333vw);
    margin-bottom: 5.3333333333vw;
    margin-left: -3.4666666667vw;
    margin-right: -3.4666666667vw;
  }
  #card-select-guide .guide__card-illust {
    max-width: 100%;
  }
}

/* --- .card-detail: カード詳細 / 比較 --- */
.card-detail {
  max-width: 800px;
  margin: 0 auto;
}
.card-detail + .card-detail {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .card-detail + .card-detail {
    margin-top: 9.3333333333vw;
  }
}
.card-detail__title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 65px;
  text-align: center;
}
.card-detail__in {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .card-detail__in {
    flex-direction: column;
  }
}
.card-detail__card-img {
  max-width: 286px;
}
.card-detail__card-img .logo-applepay {
  width: 53px;
  margin-top: 20px;
}
.card-detail__text {
  max-width: 396px;
}
.card-detail__text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}
.card-detail__text p.txt-img {
  margin-bottom: 15px;
}
.card-detail__text .btn-cta {
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .card-detail__title {
    font-size: 4.4vw;
    margin-bottom: 3.3333333333vw;
  }
  .card-detail__card-img {
    max-width: 52vw;
    margin: 0 auto 4vw;
    position: relative;
  }
  .card-detail__card-img .logo-applepay {
    position: absolute;
    z-index: 100;
    max-width: 8.6666666667vw;
    top: -0.6666666667vw;
    right: -10vw;
    margin-top: 0;
  }
  .card-detail__text {
    max-width: 100%;
  }
  .card-detail__text p {
    font-size: 3.7333333333vw;
    margin-bottom: 6.6666666667vw;
  }
  .card-detail__text p.txt-img {
    margin-bottom: 5.3333333333vw;
  }
  .card-detail__text .btn-cta {
    font-size: 4.4vw;
  }
}

.compare__example01 {
  margin: 74px auto 40px;
}
.compare__example02 {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .compare__example01 {
    margin: 5.0666666667vw auto 4.5333333333vw;
  }
  .compare__example02 {
    width: calc(100% + 6.9333333333vw);
    margin-bottom: 6vw;
    margin-left: -3.4666666667vw;
    margin-right: -3.4666666667vw;
  }
}/*# sourceMappingURL=modalwindow.css.map */