@charset "UTF-8";


/* 共通 */
img {
  width: 100%;
  vertical-align: bottom;
}

body {
  max-width: 768px;
  margin: 0 auto;
}

section {
  position: relative;
}

.cta__btn {
  margin: 0 calc(16 / 375 * 100%);
  width: calc(343 / 375 * 100%);
  display: block;
}

.link__awards {
  position: absolute;
  top: 34.1%;
}

.link__features {
  position: absolute;
  bottom: 4.1%;
}

.link__plan {
  margin-top: 40px;
}

.link__promotion {
  position: absolute;
  bottom: 9.1%;
}








.kv__apng {
  position: absolute;
  bottom: 0;
  left: calc(16 / 375 * 100%);
  width: calc(135 / 375 * 100%);
  display: contents;
}

.kv__apng img {
  position: absolute;
  bottom: 0;
  right: calc(25 / 375 * 100%);
  width: calc(135 / 375 * 100%);
}

.worries {
  background-color: #277686;
}

.features {
  background: #FFF2F3;
}

.features__slide {
  padding: 24px 0 48px 0;
}

.swiper-slide img {
  text-align: center;
  width: calc(295 / 375 * 100%);
  margin: 0 auto;
  display: block;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
}

.swiper .swiper-initialized .swiper-horizontal .swiper-backface-hidden {
  width: calc(295 / 375 * 100%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
}

.swiper-button-next, .swiper-button-prev {
  width: calc(var(--swiper-navigation-size) / 16 * 6);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 1.2));
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  border-bottom: 13px solid transparent;
  border-right: 16px solid #323232;
  border-top: 13px solid transparent;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  border-bottom: 13px solid transparent;
  border-left: 16px solid #323232;
  border-top: 13px solid transparent;
}

.video__modal {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);

  /* 表示時に使うflex指定はJSで追加する */
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__inner {
  position: relative;
  width: 90%;
  max-width: 800px;
}

.video__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: black;
}

.player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10000;
  font-size: 30px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}





.fee__wrap {
  margin: 16px calc(16 / 375 * 100%);
}

.fee__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.fee__contentInner {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  padding-bottom: 40px;
  border-radius: 16px;
  list-style: none;
  background: #fff;
  overflow: hidden;
}

.fee__contentTitle--01 {
  background: linear-gradient(135deg, #FF223C 30%, #D81D33 70%, #df2238 100%);
}

.fee__contentTitle--01 img {
  width: calc(209 / 343 * 100%);
  margin: 16px calc(95 / 343 * 100%) 16px calc(39 / 343 * 100%);
}

.fee__contentTitle--02 {
  background: #F09C4E;
}

.fee__contentTitle--02 img {
  width: calc(196 / 343 * 100%);
  margin: 16px calc(73 / 343 * 100%) 16px calc(74 / 343 * 100%);
}

.fee__contentTitle--03 {
  background: #62DCBC;
}

.fee__contentTitle--03 img {
  width: calc(288 / 343 * 100%);
  margin: 16px calc(28 / 343 * 100%) 16px calc(27 / 343 * 100%);
}

.fee__contentTitle img {
  object-fit: cover;

}

.fee__accordion {
  overflow: hidden;
}

.fee__accordion__header {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.6s ease;
  margin-top: 24px;
  gap: 8px;
}

.fee__accordion__text {
  text-align: center;
  font-size: clamp(0.875rem, 0.7557rem + 0.5089vw, 1rem);
  color: #323232;
  font-weight: 500;
}

.fee__accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF223C;
  border-radius: 500px;
}

.fee__accordion__icon::before,
.fee__accordion__icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.6s ease;
}

.fee__accordion__icon::before {
  /* 横線 */
  transform: rotate(0deg);
}

.fee__accordion__icon::after {
  /* 縦線 */
  transform: rotate(90deg);
}

.fee__accordion.open .fee__accordion__icon::after {
  transform: rotate(0deg);
}

.fee__accordionContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  background-color: #fff;
  will-change: max-height;
}

.fee__accordionInner {
  padding: 24px 0 0 0;
  color: #555;
  line-height: 1.6;
}

.fee__accordion.open .fee__accordionContent {
  max-height: 700px;
}



.plan {
  padding-bottom: 80px;
}


.review {
  background: #62DCBC;
  padding: 24px 0 40px 0;
  overflow: hidden;
}


.review__container {
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 20px 0;
}


@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.review__wrap {
  display: flex;
  gap: 16px;
  overflow: hidden;
  margin-top: 16px;
}

.review__list {
  display: flex;
  list-style: none;
  gap: 16px;
  padding: 0
}

.review__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}

.review__item {
  width: calc(500vw / 6);
}

.review__item>img {
  width: 100%;
}



/* レスポンシブ対応 */
@media (min-width: 768px) {
  .review__item {
    flex: 0 0 639px;
  }
}



.qa {
  padding: 40px 0 80px 0;
}

.qa__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qa__inner {
  margin: 16px calc(16 / 375 * 100%) 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qa__accordion {
  overflow: hidden;
  border: 1px solid #FF223C;
  border-radius: 8px;
  padding: 8px calc(16 / 343 * 100%);
}

.qa__accordion__header {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.6s ease;
  justify-content: space-between;
}

.qa__mark {
  width: calc(14 / 309 * 100%);
  display: flex;
  margin-right: 7px;
}

.qa__accordion__text {
  font-size: clamp(0.75rem, 0.034rem + 3.053vw, 1.5rem);
  font-weight: 500;
  text-align: left;
  color: #FF223C;
  width: calc(258 / 309 * 100%);
}

.qa__accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF223C;
  border-radius: 500px;
}

.qa__accordion__icon::before,
.qa__accordion__icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.6s ease;
}

.qa__accordion__icon::before {
  /* 横線 */
  transform: rotate(0deg);
}

.qa__accordion__icon::after {
  /* 縦線 */
  transform: rotate(90deg);
}

.qa__accordion.open .qa__accordion__icon::after {
  transform: rotate(0deg);
}

.qa__accordionContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  background-color: #fff;
  will-change: max-height;
}

.qa__accordionInner {
  padding: 8px 0 8px 0;
  font-size: clamp(0.75rem, 0.034rem + 3.053vw, 1.5rem);
  color: #323232;
  line-height: 1.6;
}

.qa__accordion.open .qa__accordionContent {
  max-height: 300px;
}




.footer {
  background: #F9F9F9;
  padding-top: 80px;
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer__wrapInner {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.footer a {
  color: #323232;
  font-size: clamp(0.875rem, -0.0196rem + 3.8168vw, 1.8125rem);
  display: block;
  text-align: center;
  font-weight: 500;
}

.footer__logo img {
  display: block;
  width: calc(171 / 375 * 100%);
  margin: 120px auto 0 auto;
}

.copyright {
  background: #000;
  text-align: center;
  font-size: 10px;
  color: #FFF;
  padding: 8px 0;
  margin-top: 48px;
}