@charset "UTF-8";

/* limitedKv
---------------------------------------------- */
.limitedKv {
  padding-top: clamp(120px, 5.42rem + 8.89vw, 220px);
  position: relative;
  z-index: 0;
}
.limitedKv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 200px);
  background-color: #333;
  z-index: -1;
}

.kvContents__title {
  text-align: center;
}
.kvContents__title .en,
.kvContents__title .ja {
  clip-path: inset(0);
}
.kvContents__title .ja {
  letter-spacing: 0.1em;
  margin-top: 1.5em;
}

.limitedKv__img {
  width: calc(340 / 375 * 100%);
  max-width: 1400px;
  margin-top: 60px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .limitedKv::before {
    height: calc(100% - 140px);
  }
  .kvContents__title .ja {
    margin-top: 0.5em;
  }
  .limitedKv__img {
    margin-top: 40px;
  }
}

/* planArea
---------------------------------------------- */
.planArea {
  margin-top: 100px;
  padding-bottom: clamp(80px, 3.75rem + 5.33vw, 140px);
}

.planBox__title .num {
  font-size: 130%;
}

.planBox {
  max-width: 1000px;
}

.planList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px calc(40 / 1000 * 100%);
  margin-top: 80px;
}
.planList--01 {
  grid-template-columns: calc(480 / 1000 * 100%);
  justify-content: center;
}

.planList__link {
  display: block;
  box-shadow: 5px 5px 5px rgba(0 0 0 / .1);
  border-radius: 60px 0 0 0;
  overflow: hidden;
  transition: .4s;
  position: relative;
  z-index: 0;
}
.planList__link::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 4%;
  width: 13px;
  aspect-ratio: 1;
  background-color: #ccc;
  -webkit-mask-image: url(../../img/common/icon_arrow-tr.svg);
  mask-image: url(../../img/common/icon_arrow-tr.svg);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transform-origin: right;
  transition: .4s;
  z-index: 1;
}

/* actionBtnBox */
.actionBtnBox {
  gap: 20px 30px;
  margin-top: 100px;
}
.actionBtnBox__btn {
  width: 350px;
  font-size: 16px;
  padding-block: 1em;
}

@media (hover: hover) and (pointer: fine) {
  .planList__link:hover {
    filter: brightness(1.1);
  }
  .planList__link:hover::before {
    transform: scale(1.2) translate(3px, -3px);
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .planArea {
    margin-top: 40px;
  }

  .planBox {
    width: calc(340 / 375 * 100%);
    max-width: 400px;
  }

  .planList {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 30px;
  }

  /* actionBtnBox */
  .actionBtnBox {
    margin-top: 70px;
  }
  .actionBtnBox__btn {
    width: 300px;
  }
}