@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  background: #000;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl, dt, dd, li, section, div, a, span, header, footer, iframe {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

iframe {
  vertical-align: bottom;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

/* =========================
   フェードイン制御
========================= */
/* JSが準備できるまで完全に隠す */
html.is-loading body {
  overflow: hidden;
}

/* 初期は見せない */
html.is-loading .catch1,
html.is-loading .site-title,
html.is-loading .koukai,
html.is-loading .billing,
html.is-loading .home-btns {
  opacity: 0;
}

/* フェード設定（クラスが外れた瞬間に効く） */
.catch1,
.site-title,
.billing,
.koukai,
.home-btns {
  opacity: 0;
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.wrap {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  /*@media screen and (min-width: 1600px) {
      max-width: 1920px;
  }*/
}

.home-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 85px 0 0;
  position: relative;
}
@media screen and (min-width: 1601px) {
  .home-main {
    max-width: 1200px;
  }
}
@media screen and (max-width: 860px) {
  .home-main {
    padding: 40px 0 0;
  }
}
.home-main .catch1 {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 860px) {
  .home-main .catch1 {
    padding: 0 3% 0;
  }
}
.home-main .site-title {
  max-width: 670px;
  padding: 85px 0 0;
  margin: 0 auto;
}
@media screen and (min-width: 1601px) {
  .home-main .site-title {
    max-width: 960px;
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 860px) {
  .home-main .site-title {
    position: static;
    padding: 25vw 0 20vw;
  }
}
.home-main .koukai {
  max-width: 670px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1601px) {
  .home-main .koukai {
    max-width: 960px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 860px) {
  .home-main .koukai {
    margin: 0 auto 50px;
  }
}
.home-btns {
  width: 100%;
  max-width: 65px;
  margin: 60px auto;
}
@media screen and (min-width: 1601px) {
  .home-btns {
    max-width: 90px;
    margin: 70px auto;
  }
}
@media screen and (max-width: 860px) {
  .home-btns {
    max-width: 52px;
    margin: 20px auto;
  }
}
@media screen and (min-width: 861px) {
  .home-btns a {
    transition: opacity 0.3s;
  }
  .home-btns a:hover {
    opacity: 0.6;
  }
}
.home-info .billing {
  max-width: 670px;
  margin: 0 auto;
  padding: 0 0 30px;
}
@media screen and (min-width: 1601px) {
  .home-info .billing {
    max-width: 860px;
  }
}

#trailer .trailer-player {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 860px) {
  #trailer .trailer-player {
    width: 100%;
    padding: 0 6%;
    padding-bottom: 40px;
  }
}
#trailer .trailer-player iframe {
  width: 100%;
  height: 607.5px;
}
@media screen and (max-width: 1120px) {
  #trailer .trailer-player iframe {
    height: calc((100vw - 40px) / 560 * 315);
  }
}
@media screen and (max-width: 860px) {
  #trailer .trailer-player iframe {
    height: 49.5vw;
  }
}

.footer {
  padding: 0 6% 20px;
}
@media screen and (min-width: 861px) {
  .footer {
    display: none;
  }
}

/*.mubichike {
    width: 100%;
    padding: 0px 0 30px;
    text-align: center;
    @media screen and (max-width: 860px) {
        padding: 0;
    }
    #mvtk-widgets-container {
        margin: 0 auto;
    }
}*/
#modal-comments {
  display: none;
}

#modal-comments.is-open {
  display: block;
}

.comments {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
}
@media screen and (max-width: 860px) {
  .comments {
    margin-top: 100px;
    padding: 180px 60px;
  }
}
@media screen and (max-width: 480px) {
  .comments {
    margin-top: 0px;
    padding: 120px 60px 120px;
  }
}
.comments-title {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: serif;
}
@media screen and (max-width: 480px) {
  .comments-title {
    top: 40px;
  }
}
.comments-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}

.comment {
  /*position: absolute;
  top: 0;
  left: 0;*/
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 860px) {
  .comment {
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .comment {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.comment-text {
  width: 60%;
  font-family: serif;
}
@media screen and (max-width: 480px) {
  .comment-text {
    width: 100%;
  }
}
.comment-text .comment-name {
  margin-bottom: 20px;
  font-size: 18px;
}
.comment-text p {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 2em;
  margin-top: 1.4em;
}
.comment-text p:first-child() {
  margin-top: 0;
}
.comment-image {
  width: calc(40% - 50px);
}
@media screen and (max-width: 860px) {
  .comment-image {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .comment-image {
    width: 50%;
  }
}
.comment-footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  height: 30px;
}
.comment-dotted {
  display: grid;
  width: 36px;
  gap: 9px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding-top: 11px;
}
.comment-dotted span {
  display: block;
  width: 6px;
  height: 6px;
  background: #c6c6c6;
  border-radius: 50%;
}
.comment-dotted span.current {
  background: #150201;
}
.comment-arrow .arrow-l {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-150%) rotateZ(180deg);
  display: block;
  width: 30px;
}
.comment-arrow .arrow-r {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(150%);
  display: block;
  width: 30px;
}

.sp,
._sp {
  display: none;
}
@media screen and (max-width: 860px) {
  .sp,
._sp {
    display: block;
  }
}

@media screen and (max-width: 860px) {
  .pc,
._pc {
    display: none;
  }
}