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

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 .home-kv,
html.is-loading .site-title,
html.is-loading .koukai,
html.is-loading .billing,
html.is-loading .home-btns,
html.is-loading .bnr-comments,
html.is-loading .bnr-theater,
html.is-loading .comments,
html.is-loading .topic-news,
html.is-loading #trailer {
  opacity: 0;
}

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

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

@media screen and (max-width: 860px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 1000;
    display: block;
    width: 100%;
    height: 100%;
    left: 100%;
    transition: left 0.3s;
  }
}
@media screen and (max-width: 860px) {
  .header.active {
    left: 0;
  }
  .header.active .burger span:nth-child(1) {
    transform: translateY(-1px) rotateZ(45deg);
  }
  .header.active .burger span:nth-child(2) {
    opacity: 0;
  }
  .header.active .burger span:nth-child(3) {
    transform: translateY(-1px) rotateZ(-45deg);
  }
}
.header .gnav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .header .gnav {
    flex-direction: column;
    justify-content: center;
    /*position: fixed;
    top: 0;
    left: 0;*/
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    z-index: 1000;
  }
}
.header .gnav-btns {
  display: flex;
}
@media screen and (max-width: 820px) {
  .header .gnav-btns {
    flex-direction: column;
    align-items: center;
  }
}
.header .gnav-btns li a {
  display: block;
  position: relative;
}
.header .gnav-btns li a img {
  height: 54px;
  width: auto;
}
.header .gnav-btns li a:after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 820px) {
  .header .gnav-btns li a:after {
    display: none;
  }
}
.header .gnav-btns li:first-child a:after {
  display: none;
}
.header .gnav-sns {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 12px 0 17px;
}
@media screen and (max-width: 820px) {
  .header .gnav-sns {
    justify-content: center;
    margin-top: 40px;
  }
}
.header .gnav-sns:before {
  content: "SNS";
  display: block;
  border: solid 1px #009bc4;
  color: #009bc4;
  padding: 5px 7px;
  font-size: 12px;
  letter-spacing: 0.075em;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}
@media screen and (max-width: 820px) {
  .header .gnav-sns:before {
    display: none;
  }
}
.header .gnav-sns li a img {
  height: 54px;
  width: auto;
}
.header .burger {
  display: none;
}
@media screen and (max-width: 860px) {
  .header .burger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    background: #aaa;
    transition: left 0.3s;
    z-index: 1000;
    /*border-bottom-left-radius: 15px;
          border-top-left-radius: 15px;
          transition: border-bottom-left-radius 0.5s, border-top-right-radius 0.5s, top 0.5s, right 0.5s;*/
  }
  .header .burger span {
    display: block;
    position: absolute;
    width: 28px;
    height: 2px;
    background: #fff;
    left: 14px;
    top: 50%;
    transition: all 0.3s;
  }
  .header .burger span:nth-child(1) {
    transform: translateY(-9px);
  }
  .header .burger span:nth-child(2) {
    transform: translateY(-1px);
  }
  .header .burger span:nth-child(3) {
    transform: translateY(8px);
  }
}

.topic-news {
  width: 48%;
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .topic-news {
    position: static;
    padding-right: 80px;
    width: 100%;
    text-align: left;
  }
}
.topic-news ul {
  padding-top: 8px;
}
@media screen and (max-width: 860px) {
  .topic-news ul {
    padding: 8px 0;
  }
}
.topic-news:before {
  content: "NEWS";
  position: absolute;
  top: 19px;
  left: 50%;
  font-family: serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #900;
  transform: translateX(-160px);
}
@media screen and (max-width: 860px) {
  .topic-news:before {
    left: 14px;
    top: 12px;
    font-size: 9px;
    transform: none;
  }
}
.topic-news a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-family: serif;
  letter-spacing: 0.075em;
  padding: 0 2.5em 0 3em;
  position: relative;
  transition: all 0.3s;
  margin-top: 8px;
}
@media screen and (max-width: 860px) {
  .topic-news a {
    margin-top: 0;
    text-align: left;
    padding-left: 58px;
  }
}
@media screen and (max-width: 768px) {
  .topic-news a {
    font-size: 13px;
  }
}
.topic-news a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: translateY(-50%) translateX(-20px) rotateZ(45deg);
  position: absolute;
  top: 50%;
  right: 0;
}
@media screen and (min-width: 1021px) {
  .topic-news a:hover {
    opacity: 0.7;
  }
}

.home-main {
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto 40px;
  position: relative;
  padding-bottom: 75px;
}
@media screen and (min-width: 1480px) {
  .home-main {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 860px) {
  .home-main {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 0;
    margin: 0 auto;
  }
}
.home-main .site-title {
  width: 100%;
  font-size: 0px;
  z-index: 1;
}
@media screen and (max-width: 860px) {
  .home-main .site-title {
    position: static;
  }
}
.home-main .banner {
  margin: 20px 0 30px;
}
.home-main .banner a {
  display: block;
  max-width: 160px;
  margin: 0 auto;
}
.home-kv {
  position: relative;
  width: 52.4%;
}
@media screen and (max-width: 860px) {
  .home-kv {
    width: 100%;
  }
}
.home-info {
  padding-top: 120px;
  padding-left: 4%;
  padding-right: 2%;
  width: 47.6%;
}
@media screen and (max-width: 860px) {
  .home-info {
    width: 100%;
    padding: 0;
  }
}
.home-info .koukai {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 860px) {
  .home-info .koukai {
    width: 80%;
    max-width: 420px;
    margin: 0 auto;
  }
}
.home-info .billing {
  width: 100%;
  max-width: 1080px;
}
.home-info .catch2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 1000px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1480px) {
  .home-info .catch2 {
    max-width: 1320px;
  }
}
@media screen and (max-width: 860px) {
  .home-info .catch2 {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}
.home .bnr-theater {
  max-width: 300px;
  margin: 20px auto 0;
}
.home .bnr-theater a {
  display: block;
  text-decoration: none;
  background: #efefef;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-family: serif;
  letter-spacing: 0.075em;
  padding: 0.7em 2em;
  border: solid 1px #ccc;
  position: relative;
  transition: all 0.3s;
}
.home .bnr-theater a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: translateY(-50%) translateX(-20px) rotateZ(45deg);
  position: absolute;
  top: 50%;
  right: 0;
}
.home .bnr-theater a:hover {
  background: #fff;
  border: solid 1px #666;
}
.home .bnr-comments {
  max-width: 300px;
  margin: 40px auto 30px;
}
.home .bnr-comments a {
  display: block;
  text-decoration: none;
  background: #efefef;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-family: serif;
  letter-spacing: 0.075em;
  padding: 0.7em 2em;
  border: solid 1px #ccc;
  position: relative;
  transition: all 0.3s;
}
.home .bnr-comments a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: translateY(-50%) translateX(-20px) rotateZ(135deg);
  position: absolute;
  top: 50%;
  right: 0;
}
.home .bnr-comments a:hover {
  background: #fff;
  border: solid 1px #666;
}
.home-btns {
  margin: 40px auto 0;
  max-width: 220px;
  display: flex;
  gap: 5px;
}
.home-btns li:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 1310px) {
  .home-btns {
    position: static;
  }
}
@media screen and (max-width: 860px) {
  .home-btns {
    max-width: 160px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 861px) {
  .home-btns a {
    transition: opacity 0.3s;
  }
  .home-btns a:hover {
    opacity: 0.6;
  }
}

.mubichike {
  width: 100%;
  margin-top: 60px;
  padding: 0px 0 30px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .mubichike {
    padding: 0;
  }
}
.mubichike #mvtk-widgets-container {
  margin: 0 auto;
}

#trailer {
  padding-top: 80px;
}
#trailer .trailer-player {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 860px) {
  #trailer .trailer-player {
    width: 100%;
    padding: 0 6%;
  }
}
#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;
  }
}
#trailer .trailer-btns {
  max-width: 1120px;
  margin: 20px auto 40px;
  padding: 0 20px 100px;
  display: flex;
  gap: 12px;
  list-style: none;
}
@media (max-width: 768px) {
  #trailer .trailer-btns {
    flex-direction: column;
    padding: 0 6%;
  }
}
#trailer .trailer-btns li {
  flex: 1; /* ← 横幅均等 */
}
#trailer .trailer-btns li button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #e5e5e5;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}
#trailer .trailer-btns li button:hover {
  background: #ccc;
}
#trailer .trailer-btns li button.active {
  background: #009bc4; /* ← 基準の緑 */
  color: #fff;
}

.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;
  font-size: 29px;
}
@media screen and (max-width: 480px) {
  .comments-title {
    top: 40px;
  }
}
.comments-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}

.comment {
  display: flex;
  gap: 60px;
}
@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:first-child {
  flex-direction: column-reverse;
}
.comment:first-child .comment-text {
  width: 100%;
}
.comment:first-child .comment-image {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .comment:first-child .comment-image {
    width: 72%;
  }
}
.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;
}

/*.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;
  }
}

.fadein {
  opacity: 0;
  transition: opacity 1.2s 0.2s;
}

.fadeinUp {
  opacity: 0;
  transform: translateY(30px) translateX(0px);
  transition: opacity 1.2s 0.2s, transform 1.2s 0.2s;
}

.fadeinLeft {
  opacity: 0;
  transform: translateY(0) translateX(30px);
  transition: opacity 1.2s 0.2s, transform 1.2s 0.2s;
}

.fadeinRight {
  opacity: 0;
  transform: translateY(0) translateX(-30px);
  transition: opacity 1.2s 0.2s, transform 1.2s 0.2s;
}