@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&display=swap");
.page-plan {
  padding-top: 60px;
}

.plan-mv {
  position: relative;
  width: 100%;
  height: 56.25vw;
}
@media screen and (max-width: 767px) {
  .plan-mv {
    height: 155.7142857143vw;
  }
}
.plan-mv .bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.plan-mv .bg img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(20px);
  opacity: 0;
  transition: 1.8s;
}
.plan-mv h1 {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
}
.plan-mv h1 img {
  width: 107px;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 75%, transparent 100%);
          mask-image: linear-gradient(to right, black 0%, black 50%, transparent 75%, transparent 100%);
  -webkit-mask-size: 400% auto;
          mask-size: 400% auto;
  -webkit-mask-position: 100%;
          mask-position: 100%;
  transition: -webkit-mask-position 1s linear 1.55s;
  transition: mask-position 1s linear 1.55s;
  transition: mask-position 1s linear 1.55s, -webkit-mask-position 1s linear 1.55s;
}
@media screen and (max-width: 767px) {
  .plan-mv h1 img {
    width: 19.8571428571%;
  }
}
.plan-mv .caption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 11px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .plan-mv .caption {
    font-size: 9px;
  }
}
.plan-mv.is-on .bg img {
  opacity: 1;
  filter: blur(0);
}
.plan-mv.is-on h1 img {
  -webkit-mask-position: 0;
          mask-position: 0;
}

@keyframes revealLR {}
.plan-container {
  padding: 110px 11.4285714286vw;
}
@media screen and (max-width: 767px) {
  .plan-container {
    padding: 17.1428571429vw 11.4285714286vw 12.8571428571vw;
  }
}

.plan-inner {
  width: 100%;
  max-width: 730px;
  margin-inline: auto;
}

.plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.095890411%;
}
@media screen and (max-width: 767px) {
  .plan-list {
    gap: 12px;
  }
}
.plan-list button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  display: block;
  width: 48.904109589%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s, transform 1.1s;
}
@media screen and (max-width: 767px) {
  .plan-list button {
    width: 100%;
  }
}
.plan-list button div {
  display: none;
}
.plan-list button:nth-child(1) {
  transition-delay: 0s;
}
.plan-list button:nth-child(2) {
  transition-delay: 0.3s;
}
.plan-list button:nth-child(3) {
  transition-delay: 0.6s;
}
.plan-list button:nth-child(4) {
  transition-delay: 0.9s;
}
.plan-list button:nth-child(5) {
  transition-delay: 1.2s;
}
.plan-list button:nth-child(6) {
  transition-delay: 1.5s;
}
.plan-list button img {
  transition: opacity 0.5s;
}
.plan-list button:hover img {
  opacity: 0.6;
}
.plan-list.is-on button {
  opacity: 1;
  transform: translateY(0);
}

.note {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .note {
    margin-top: 30px;
  }
}
.note img {
  width: 374px;
}
@media screen and (max-width: 767px) {
  .note img {
    width: 268px;
  }
}

.modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0s linear 0.6s;
  z-index: 100;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s, visibility 0s linear 0s;
}
.modal .bg-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.77);
  z-index: 2;
}
.modal .modal-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 4;
}
.modal .modal-inner {
  position: relative;
  box-sizing: border-box;
  width: 90%;
  max-width: 938px;
  height: 90%;
  padding: 70px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .modal .modal-inner {
    padding: 45px 16px 24px;
    height: calc(101.1207970112vw + 80px);
  }
}
.modal .modal-inner > div {
  height: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal .modal-inner > div::-webkit-scrollbar {
  display: none;
}
.modal .modal-inner > div > p {
  position: relative;
  height: calc(100% - 76px);
  max-width: 100%;
  aspect-ratio: 1681/1571;
}
@media screen and (max-width: 767px) {
  .modal .modal-inner > div > p {
    height: calc(100% - 96px);
  }
}
.modal .modal-inner .note {
  margin-top: 20px;
}
.modal .modal-inner .note p {
  line-height: 1.8;
  font-size: 10px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .modal .modal-inner .note p {
    font-size: 9px;
  }
}
.modal .modal-inner .note .warm {
  position: relative;
  padding-left: 40px;
}
.modal .modal-inner .note .warm:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 36px;
  height: 16px;
  background: #f8efea;
}
.modal .modal-inner .note .storage {
  position: relative;
  padding-left: 40px;
}
.modal .modal-inner .note .storage:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 36px;
  height: 16px;
  background: #e3ecef;
}
.modal .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 20px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal .modal-close {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 12px;
  }
}
.modal .modal-close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  transform: rotate(15deg);
  transition: transform 0.4s;
}
.modal .modal-close:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  transform: rotate(-15deg);
  transition: transform 0.4s;
}
.modal .modal-close:hover:before, .modal .modal-close:hover:after {
  transform: rotate(0);
}/*# sourceMappingURL=style.css.map */