@charset "UTF-8";
main img {
  width: 100%;
}
main button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.ttl {
  font-size: 2.5rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
  text-align: center;
}
@media (max-width: 768px) {
  .ttl {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}

.modal-overlay {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.modal-container {
  max-width: 1200px;
  overflow: visible;
  width: 80%;
}
@media (max-width: 768px) {
  .modal-container {
    width: 100%;
  }
}

.modal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.modal-close {
  background: transparent;
  border: 0;
  position: absolute;
  top: -20px;
  right: -60px;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .modal-close {
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
  }
}

.modal-header .modal-close::before {
  content: "✕";
  color: #fff;
  font-size: 4rem;
}
@media (max-width: 768px) {
  .modal-header .modal-close::before {
    font-size: 2.5rem;
  }
}

.modal-content {
  line-height: 1.5;
}

.modal-open {
  display: block;
}

/* モーダルアニメーション */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.mv_wrap {
  position: relative;
}
.mv_wrap.mv_wrap2 .pic {
  background: #00003d;
}
.mv_wrap.mv_wrap2 .pic .movieBg {
  opacity: 0;
}
.mv_wrap .pic {
  height: 100vh;
}
@media (max-width: 768px) {
  .mv_wrap .pic {
    height: calc(100svh - 80px);
  }
}
.mv_wrap .pic img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv_wrap .pic div {
  height: 100%;
  overflow: hidden;
}
.mv_wrap .pic div iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 上下左右中央寄せ */
  /* ここがポイント：縦か横のどちらかが必ず埋まるようにする */
  /* 画面比率16:9の場合の調整例 */
  width: 177.77vh; /* 16:9 の比率を維持して高さを基準に幅を決める (16/9 * 100vh) */
  height: 56.25vw; /* 16:9 の比率を維持して幅を基準に高さを決める (9/16 * 100vw) */
  /* 少なくとも親要素より小さくならないようにする */
  min-width: 100%;
  min-height: 100%;
}
.mv_wrap .txt_wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv_wrap .txt_wrap p {
  text-align: center;
  line-height: 1;
}
.mv_wrap .txt_wrap p.f_cor {
  font-size: 4.85vw;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .mv_wrap .txt_wrap p.f_cor {
    font-size: 9.8vw;
  }
}
.mv_wrap .txt_wrap p.f_hina {
  font-size: 2.2vw;
  letter-spacing: 0.1em;
  opacity: 0;
}
@media (max-width: 768px) {
  .mv_wrap .txt_wrap p.f_hina {
    font-size: 5.5vw;
  }
}
.mv_wrap .txt_wrap .mv_split {
  overflow: hidden;
  opacity: 0;
}
.mv_wrap .txt_wrap .mv_split span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.mv_wrap .play_wrap {
  width: 16%;
  position: absolute;
  left: 50%;
  bottom: 1%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
@media (max-width: 768px) {
  .mv_wrap .play_wrap {
    width: 33%;
  }
}
@media (max-width: 768px) and (max-width: 640px) {
  .mv_wrap .play_wrap {
    width: 45%;
  }
}
.mv_wrap .play_wrap .a_wrap {
  width: 100%;
  aspect-ratio: 4/3;
  position: absolute;
  left: 50%;
  bottom: 12%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
}
.mv_wrap .play_wrap .a_wrap button {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}
.mv_wrap .play_wrap .a_wrap button div {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
.mv_wrap .play_wrap .a_wrap button div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
}
.mv_wrap .play_wrap .a_wrap button:hover div::after {
  -webkit-animation: mvPlay 0.8s forwards ease-out;
          animation: mvPlay 0.8s forwards ease-out;
}

@-webkit-keyframes mvPlay {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes mvPlay {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.lity-content {
  max-width: 1200px;
}

.lity-close {
  width: 80px;
  height: 80px;
  font-size: 5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lity-close:hover {
  font-size: 5rem;
  opacity: 0.7;
}

.usp_wrap {
  width: 90%;
  max-width: 1000px;
  margin: 35px auto 0;
  position: relative;
}
@media (max-width: 768px) {
  .usp_wrap {
    max-width: 400px;
    margin-top: 15px;
  }
}
.usp_wrap .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.usp_wrap .pic {
  position: relative;
  z-index: 1;
}
.usp_wrap p.cap {
  margin-top: 5px;
  margin-right: 50%;
  text-align: right;
}
@media (max-width: 768px) {
  .usp_wrap p.cap {
    margin-right: 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 26%;
  }
}

.koudou {
  margin: 40px 0;
}

.pic_wrap .coming {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  text-align: center;
  font-style: italic;
  font-size: 5.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .pic_wrap .coming {
    font-size: 3rem;
  }
}
.pic_wrap .ttl {
  padding: 15px 0;
}

.access_wrap {
  margin-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .access_wrap {
    margin-top: 60px;
  }
}
.access_wrap .pic {
  margin: 55px auto 0;
  width: 90%;
  max-width: 1034px;
}
@media (max-width: 768px) {
  .access_wrap .pic {
    margin-top: 30px;
  }
}/*# sourceMappingURL=top.css.map */