@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #333;
  background-color: #FFF;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

h2 {
  text-align: center;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
  text-indent: 0.5em;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5em;
  }
}

.imgs4 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .imgs4 {
    max-width: 500px;
    padding: 0px 0 20px;
    flex-direction: column;
  }
}
.imgs4 div {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .imgs4 div {
    width: 70%;
    margin: 0 auto 10px 20px;
  }
  .imgs4 div:nth-of-type(2), .imgs4 div:nth-of-type(4) {
    margin: 0px 20px 10px auto;
  }
}
@media screen and (max-width: 768px) {
  .imgs4.imgs4-2 {
    padding: 0 0 60px;
  }
}

.contents {
  opacity: 0;
  transition: 3s;
  transition-timing-function: linear;
  overflow: hidden;
}
.contents.active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/*fixed_bg------------------------*/
/*-------------------------------*/
/*loading------------------------*/
.loading {
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7), transparent 70%), radial-gradient(circle at 70% 60%, rgba(244, 248, 255, 0.6), transparent 80%), linear-gradient(111deg, #c4ffcf 0%, #fff8ba 25%, #e3c6ff 60%, #c6f4ff 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loader {
  max-width: 500px;
  width: 80%;
  opacity: 0.5;
}

/*-------------------------------*/
/*sharebtn-----------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  padding-right: 5px;
  font-size: 1.2em;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}

/*-------------------------------*/
/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fadeFromLeft {
  opacity: 0;
  transition: 1s;
  transform: translateX(-20px);
}
.fadeFromLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
.nav_top {
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(1, 0.6);
  color: #D4EBF4;
  cursor: pointer;
}
.nav_top:hover {
  transform: scale(1, 0.6) translateY(2px);
}
.nav_top.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_top.active {
    opacity: 1;
  }
}

/*nav----------------------------*/
.nav_title {
  position: fixed;
  z-index: 105;
  width: 300px;
  top: 10px;
  left: 10px;
}
@media (max-width: 1200px) {
  .nav_title {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nav_title {
    display: block;
    top: 15px;
    left: 10px;
    width: 220px;
  }
}

.nav_bar {
  z-index: 103;
  width: 100%;
  height: 60px;
  display: none;
  background-color: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    display: block;
  }
}

.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: unset;
    top: 0px;
    right: 0px;
    background-image: url(img/icon_menu.svg);
    background-size: 100%, 100%;
    width: 60px;
    height: 60px;
    transition: 1s;
  }
}
.nav_btn.show {
  background-image: url(img/icon_menu-close.svg);
  opacity: 0.8;
}
.nav_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    opacity: 1;
  }
}

.gnav {
  z-index: 100;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 60px;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .gnav {
    z-index: 103;
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .gnav.show {
    left: 0;
    opacity: 1;
  }
}
.gnav.active {
  opacity: 1;
}
.gnav .gnav_list {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    background-color: transparent;
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.gnav .gnav_list li a, .gnav .gnav_list li #btn_trailer-menu {
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
  transition: 0.2s;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a, .gnav .gnav_list li #btn_trailer-menu {
    font-size: 1.2em;
    margin-bottom: 5px;
    padding: 1em 0;
    height: auto;
  }
}
.gnav .gnav_list li a:hover, .gnav .gnav_list li #btn_trailer-menu:hover {
  opacity: 0.6;
  transform: translateY(2px);
}

/*-------------------------------*/
footer .footer {
  padding: 80px;
  background-image: url(img/bg_footer.jpg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 40px 20px 90px;
  }
}
footer .footer .footer_title {
  max-width: 600px;
  margin: 0 auto 20px;
}
footer .footer .billing {
  max-width: 800px;
  margin: 0 auto 40px;
}

#top {
  padding: 2% 2% 0px 2%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 60px auto 0;
  overflow: hidden;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #top {
    max-width: 500px;
    padding: 0;
  }
}
#top .swiper-pagination-custom {
  justify-content: flex-start;
  padding-left: 3%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .swiper-pagination-custom {
    padding-left: 5px;
    margin-top: 10px;
  }
}
#top .swiper-pagination-custom .swiper-pagination-bullet {
  width: 50px;
  height: 50px;
  opacity: 1;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #top .swiper-pagination-custom .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
  }
}
#top .swiper-pagination-custom .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top .swiper-pagination-custom .swiper-pagination-bullet-active {
  opacity: 0.2;
}
#top .copy_com {
  position: absolute;
  bottom: 3%;
  left: 4%;
  width: 70%;
  z-index: 2;
  filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.5));
}
#top .swiper {
  width: 54%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .swiper {
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 91.5%, 68% 100%, 0% 100%);
  }
}
#top .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top .swiper .swiper-slide {
    border-radius: 0;
  }
}
#top .swiper .swiper-slide .img-main {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .swiper .swiper-slide .img-main {
    border-radius: 0;
  }
}
#top .swiper .swiper-slide .img-main img {
  transition: 5s;
  filter: blur(10px);
  transform: scale(1.05);
}
#top .swiper .swiper-slide .title_en {
  position: absolute;
  transition: 1s;
  opacity: 0;
}
#top .swiper .swiper-slide .copy {
  position: absolute;
  top: 8%;
  right: 4%;
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .swiper .swiper-slide.slide1 .title_en {
  width: 65%;
  left: 4%;
  top: 2%;
}
#top .swiper .swiper-slide.slide1 .copy {
  width: 3%;
}
#top .swiper .swiper-slide.slide3 .title_en {
  width: 70%;
  left: 4%;
  bottom: 6%;
}
#top .swiper .swiper-slide.slide3 .copy {
  width: 2.7%;
}
#top .swiper .swiper-slide.slide2 .title_en {
  width: 54%;
  left: 34%;
  bottom: 7%;
}
#top .swiper .swiper-slide.slide2 .copy {
  width: 3.8%;
}
#top .swiper .swiper-slide.swiper-slide-active .img-main img {
  transform: scale(1);
  filter: blur(0px);
}
#top .swiper .swiper-slide.swiper-slide-active .title_en {
  opacity: 1;
}
#top .swiper .swiper-slide.swiper-slide-active .copy {
  opacity: 1;
  transform: translateY(0px);
}
#top .swiper .swiper-slide.swiper-slide-prev .img-main {
  transform: scale(1);
}
#top .teaser-texts {
  width: 45%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 3s;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts {
    width: 100%;
  }
}
#top .teaser-texts_inner {
  position: relative;
  width: 100%;
  padding: 0% 0% 0% 4%;
  margin: 0px auto 0;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner {
    width: 100%;
    padding: 0 20px;
    margin-top: -50px;
  }
}
#top .teaser-texts_inner .title_jp {
  width: 100%;
  margin-bottom: 10%;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .title_jp {
    width: 100%;
    margin-bottom: 10%;
  }
}
#top .teaser-texts_inner .release {
  width: 55%;
  margin-bottom: 3%;
  transform: skew(-20deg) rotate(-20deg);
  transform-origin: bottom left;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .release {
    width: 60%;
  }
}
#top .teaser-texts_inner .credit {
  width: 50%;
  transform: skew(-20deg) rotate(-20deg);
  transform-origin: bottom left;
  margin-bottom: 1%;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .credit {
    width: 85%;
  }
}
#top .teaser-texts_inner .copyright {
  width: 52%;
  margin-bottom: 2%;
  transform: skew(-20deg) rotate(-20deg);
  transform-origin: bottom left;
  display: block;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .copyright {
    width: 70%;
  }
}
#top .teaser-texts_inner .btns {
  width: 58%;
  transform: skew(-20deg) rotate(-20deg);
  transform-origin: bottom left;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .btns {
    width: 100%;
  }
}
#top .teaser-texts_inner .btns li {
  border-bottom: solid 1px #333;
  padding: 10px 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .btns li {
    padding: 5px 0;
  }
}
#top .teaser-texts_inner .btns li img {
  transition: 0.2s;
}
#top .teaser-texts_inner .btns li:last-of-type {
  border-bottom: solid 1px #333;
}
#top .teaser-texts_inner .btns li:hover img {
  transform: translateX(10px);
}
#top .teaser-texts_inner .btns li.btn_sns {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .btns li.btn_sns {
    width: 50%;
  }
}
#top .teaser-texts_inner .texts-copy {
  position: absolute;
  top: 15%;
  right: 0;
  width: 3%;
}
@media screen and (max-width: 768px) {
  #top .teaser-texts_inner .texts-copy {
    right: 20px;
    top: -1%;
  }
}
#top .bnrs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 2%;
}
@media screen and (max-width: 768px) {
  #top .bnrs {
    padding-bottom: 0;
  }
}
#top .bnrs .bnr_mim {
  max-width: 320px;
  width: 50%;
  transition: 0.2s;
  margin-bottom: -2%;
}
@media screen and (max-width: 768px) {
  #top .bnrs .bnr_mim {
    width: 90%;
    margin: 0 auto;
  }
}
#top .bnrs .bnr_mim:hover {
  transform: translateY(4px);
}
#top .bnrs .bnr_mjr {
  max-width: 200px;
  width: 30%;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #top .bnrs .bnr_mjr {
    width: 60%;
  }
}
#top .bnrs .bnr_mjr:hover {
  transform: translateY(4px);
}

#info {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 0;
  }
}
#info .mvtk {
  margin: 0 auto;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto;
}

#trailer {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9997;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(247, 255, 229, 0.6);
}
#trailer .trailer_inner {
  height: 100%;
  height: 100svh;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#trailer .trailer_inner .trailer_main {
  max-width: inherit;
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: auto;
  max-width: 150vh;
}
#trailer .trailer_inner .trailer_main .youtube_outer {
  margin: 0 auto;
  max-width: calc(100% - 8em);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_inner .trailer_main .youtube_outer {
    width: 100%;
    margin-bottom: 0px;
    max-width: 100%;
  }
}
#trailer .trailer_inner .trailer_main .youtube_outer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 4px;
}
#trailer .trailer_inner .trailer_main .youtube_outer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_inner .overlay_trailer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  cursor: pointer;
  z-index: 1;
}
#trailer .close_btn_trailer {
  position: fixed;
  cursor: pointer;
  z-index: 9998;
  top: 20px;
  right: 0px;
  width: 120px;
  height: 72px;
}
@media screen and (max-width: 768px) {
  #trailer .close_btn_trailer {
    width: 70px;
    height: 42px;
    top: 10px;
    right: 0px;
  }
}
#trailer .close_btn_trailer span {
  position: absolute;
  display: block;
  height: 1px;
  background-color: #333;
  transition: 0.3s;
  width: 120px;
  transform: rotate(-32deg) translate(-7px, 12px);
}
@media screen and (max-width: 768px) {
  #trailer .close_btn_trailer span {
    width: 70px;
    transform: rotate(-32deg) translate(-7px, 12px);
  }
}
#trailer .close_btn_trailer span:last-of-type {
  transform: rotate(32deg) translate(7px, 12px);
}
@media screen and (max-width: 768px) {
  #trailer .close_btn_trailer span:last-of-type {
    transform: rotate(32deg) translate(7px, 12px);
  }
}
#trailer .close_btn_trailer:hover span {
  transform: rotate(-26deg) translate(-6px, 13px);
}
#trailer .close_btn_trailer:hover span:last-of-type {
  transform: rotate(26deg) translate(6px, 13px);
}

.trailer_tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: calc(25% - 4px);
  margin: 0;
}
.trailer_tab li a {
  height: 3em;
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBF5DC;
  background-color: #747474;
  font-weight: 900;
  border-radius: 5px;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  color: #333;
  background-color: #FBF5DC;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

#teaser-comment {
  overflow: hidden;
}
#teaser-comment .section_inner {
  padding: 0 50px;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner {
    max-width: 500px;
    padding: 0 20px;
  }
}
#teaser-comment .section_inner .section_main {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner .section_main {
    flex-wrap: wrap;
  }
}
#teaser-comment .section_inner .section_main h2 {
  font-family: "Meow Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4.5em;
  writing-mode: vertical-lr;
  margin-right: 0.5em;
  opacity: 1;
  background: linear-gradient(135deg, #ffefae 0%, #a9e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner .section_main h2 {
    writing-mode: unset;
    font-size: 3.5em;
    margin-right: 10px;
    margin-bottom: 0.75em;
  }
}
#teaser-comment .section_inner .section_main ul {
  margin-bottom: 40px;
}
#teaser-comment .section_inner .section_main ul:last-of-type {
  margin-bottom: 0;
  border-bottom: solid 1px #333;
}
#teaser-comment .section_inner .section_main ul li {
  display: flex;
  margin-bottom: 60px;
}
#teaser-comment .section_inner .section_main ul li span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner .section_main ul li {
    margin-bottom: 40px;
  }
}
#teaser-comment .section_inner .section_main ul li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner .section_main ul li:last-of-type {
    padding-bottom: 40px;
  }
}
#teaser-comment .section_inner .section_main ul li .names {
  width: 4.5em;
}
#teaser-comment .section_inner .section_main ul li .names .role {
  font-size: 1.5em;
  white-space: nowrap;
  margin-bottom: 5px;
}
#teaser-comment .section_inner .section_main ul li .names .name {
  font-size: 2em;
  writing-mode: vertical-lr;
  background: linear-gradient(135deg, #fffcee 0%, #fcf1fc 50%, #f1fbff 100%);
}
#teaser-comment .section_inner .section_main ul li .comment_body {
  width: calc(100% - 4.5em);
}
#teaser-comment .section_inner .section_main ul li .comment_body p {
  line-height: 1.7;
  text-align: justify;
}
#teaser-comment .bunka {
  width: 70%;
  max-width: 310px;
  margin: 0px 0 20px auto;
  display: block;
}
#teaser-comment .billing2 {
  margin: 60px 0 20px auto;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #teaser-comment .billing2 {
    margin: 40px 0 20px auto;
  }
}

#intro .section_inner, #story .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #intro .section_inner, #story .section_inner {
    padding: 80px 0 40px;
  }
}
#intro .section_inner .section_main, #story .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main, #story .section_inner .section_main {
    padding: 0;
    max-width: 500px;
  }
}
#intro .section_inner .section_main .section_img, #story .section_inner .section_main .section_img {
  max-width: 775px;
  margin: 0 auto 40px;
}
#intro .section_inner .section_main h3, #story .section_inner .section_main h3 {
  width: 100%;
  max-width: 577px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h3, #story .section_inner .section_main h3 {
    max-width: 270px;
  }
}
#intro .section_inner .section_main hr, #story .section_inner .section_main hr {
  border: 0;
  margin: 0 auto 40px;
  width: 200px;
  height: 1px;
  background-image: linear-gradient(90deg, #B99898 0%, #83B386 37.5%, #9482B9 68.27%, #AD8282 100%);
  background-size: 10px 1px; /* ← 点線の長さと間隔を調整 */
  background-repeat: repeat-x;
  background-position: left center;
  mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body, #story .section_inner .section_main .text_body {
    padding: 0 20px;
  }
}
#intro .section_inner .section_main .text_body p, #story .section_inner .section_main .text_body p {
  margin-bottom: 1em;
  text-align: justify;
  line-height: 2;
}

#story .section_inner .section_main .text_body p {
  text-align: center;
}

#cast {
  background-image: url(img/bg_cast.jpg);
  background-size: cover;
}
#cast .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #cast .section_inner {
    padding: 80px 0 40px;
  }
}
#cast .section_inner .section_main {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main {
    padding: 0 20px;
  }
}
#cast .section_inner .section_main .pro_cas {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .pro_cas {
    flex-direction: column;
    margin-bottom: 0;
  }
}
#cast .section_inner .section_main .pro_cas .cas_btn-m {
  width: 30%;
  text-align: center;
  border: 1px solid transparent; /* 太さだけ指定 */
  -o-border-image: linear-gradient(90deg, #ffe6e6 0%, #d2ffd5 38%, #e0d0ff 68%, #ffe2e2 100%) 1;
     border-image: linear-gradient(90deg, #ffe6e6 0%, #d2ffd5 38%, #e0d0ff 68%, #ffe2e2 100%) 1;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .pro_cas .cas_btn-m {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 40px;
  }
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_img {
  overflow: hidden;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_img img {
  transition: 0.4s;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names {
  padding: 20px 0;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names .cas_role {
  margin-bottom: 1em;
  letter-spacing: 0.2em;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names .cas_role span {
  font-size: 0.8em;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names .cas_name {
  position: relative;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names .cas_name .cas_name-jp {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names .cas_name .cas_name-en {
  font-size: 0.9em;
  letter-spacing: 0.2em;
}
#cast .section_inner .section_main .pro_cas .cas_btn-m .cas_names .cas_name .cas_plus {
  position: absolute;
  width: 18%;
  bottom: -20px;
  right: 0px;
  cursor: pointer;
}

.cast_modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cast_modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal_inner {
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #fff;
  background-image: linear-gradient(90deg, #FFFFF5 0%, #EEFFF8 51%, #FFFAFE 100%);
  position: relative;
  padding: 50px 50px 20px 50px;
  background-image: linear-gradient(to bottom, rgba(251, 245, 220, 0.6) 0%, rgba(251, 245, 220, 0) 100%);
}
@media screen and (max-width: 768px) {
  .modal_inner {
    padding: 40px 20px 40px 20px;
    max-height: unset;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    width: 100%;
  }
}
.modal_inner hr {
  border: 0;
  margin: 0 auto 40px;
  width: 200px;
  height: 1px;
  background-image: linear-gradient(90deg, #B99898 0%, #83B386 37.5%, #9482B9 68.27%, #AD8282 100%);
  background-size: 10px 1px; /* ← 点線の長さと間隔を調整 */
  background-repeat: repeat-x;
  background-position: left center;
  mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
}
.modal_inner .modal_names {
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}
.modal_inner .modal_names .modal_name {
  margin-bottom: 0.5em;
}
.modal_inner .modal_names .modal_name .modal_name-jp {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.modal_inner .modal_names .modal_name .modal_name-en {
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
.modal_inner .modal_role .modal_role-jp {
  margin-bottom: 1em;
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
.modal_inner .modal_role .modal_role-jp .yaku {
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .modal_inner .modal-prof {
    max-width: 500px;
    margin: 0 auto;
  }
}
.modal_inner .modal-prof p {
  text-align: justify;
  line-height: 1.8;
}
.modal_inner .modal-com {
  margin-top: 20px;
  padding-top: 20px;
  margin-top: 1em;
  background: linear-gradient(90deg, #FFFEF5 0%, #EEFFF8 51.44%, #FFFAFE 100%);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .modal_inner .modal-com {
    max-width: 500px;
    margin: 1em auto 0;
  }
}
.modal_inner .modal-com p.com-t {
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.modal_inner .modal-com p {
  line-height: 1.8;
  text-align: justify;
}
.modal_inner .p-close {
  margin-top: 30px;
  text-align: center;
  color: #CCC;
  letter-spacing: 0.1em;
  cursor: pointer;
  letter-spacing: 0.2em;
}
.modal_inner .modal_close {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #464646;
}

#staff .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #staff .section_inner {
    padding: 80px 0;
  }
}
#staff .section_inner .section_main {
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main {
    padding: 0 20px;
    max-width: 500px;
  }
}
#staff .section_inner .section_main .prof_items .prof_item {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .prof_items .prof_item {
    margin-bottom: 40px;
  }
}
#staff .section_inner .section_main .prof_items .prof_item:last-of-type {
  margin-bottom: 0;
}
#staff .section_inner .section_main .prof_items .prof_item .role {
  margin-bottom: 1em;
}
#staff .section_inner .section_main .prof_items .prof_item .names {
  display: flex;
  align-items: baseline;
  width: 100%;
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 2px;
}
#staff .section_inner .section_main .prof_items .prof_item .names:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px; /* 線の太さ */
  background: linear-gradient(90deg, #EAD9D9 0%, #F1FBE1 33%, #C4E9E5 70%, #F8E3F3 100%);
}
#staff .section_inner .section_main .prof_items .prof_item .names .name_jp {
  font-size: 1.5em;
}
#staff .section_inner .section_main .prof_items .prof_item .names .name_en {
  letter-spacing: 0.2em;
  margin-left: 1em;
}
#staff .section_inner .section_main .prof_items .prof_item .prof_body p {
  line-height: 2;
  text-align: justify;
}
#staff .section_inner .section_main .prof_items .prof_item .com {
  margin-top: 1em;
  background: linear-gradient(90deg, #FFFEF5 0%, #EEFFF8 51.44%, #FFFAFE 100%);
  padding: 20px;
}
#staff .section_inner .section_main .prof_items .prof_item .com p.com-t {
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
#staff .section_inner .section_main .prof_items .prof_item .com p {
  line-height: 1.8;
  text-align: justify;
}/*# sourceMappingURL=style.css.map */