@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: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@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 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spacer {
  height: 60px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .spacer {
    height: 0;
    width: 0;
  }
}

section.section-default {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  section.section-default {
    padding: 80px 0;
  }
}
section.section-default .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner {
    padding: 0 30px;
  }
}
section.section-default .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
  }
}

@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;
  }
}

.dim {
  color: rgba(0, 0, 0, 0.5);
}

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 200lvh;
  background-image: url(img/bg01.jpg);
  background-size: cover;
  background-position: top center;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fixed_bg {
    background-size: 1920px;
  }
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #fff;
  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: 200px;
  width: 30%;
  opacity: 0.32;
}

/*-------------------------------*/
/*nav----------------------------*/
/*-------------------------------*/
/*sharebtn-----------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@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;
  gap: 5px;
}
.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: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.share_btns-square::before {
  content: "";
  letter-spacing: 0.1em;
  padding-right: 10px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url(img/asset-light/share.svg);
  background-size: contain;
  background-position: center center;
}
.share_btns-square li {
  cursor: pointer;
  width: 24px;
}
.share_btns-square li img {
  transition: 0.2s;
}
.share_btns-square li img:hover {
  opacity: 0.5;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
.noise_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_l.webp);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 200px;
  }
}

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

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(5px);
}
.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--------------------*/
/*-------------------------------*/
/*gnav (PC fixed top, fade-out to left)*/
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  padding: 0 40px;
  /* TOPの左端から右に向かって透明 → 不透明にフェード */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 75%, rgb(255, 255, 255) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
}
.gnav {
  /* 下線の dashed もグラデーションで消えるように */
}
.gnav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 100%);
  -webkit-mask-image: repeating-linear-gradient(to right, #000 0 4px, transparent 4px 8px);
  mask-image: repeating-linear-gradient(to right, #000 0 4px, transparent 4px 8px);
}
.gnav .gnav__list {
  display: flex;
  align-items: center;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav .gnav__item a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  transition: 0.2s;
}
.gnav .gnav__item a:hover {
  opacity: 0.5;
}
.gnav .gnav__item--icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  letter-spacing: 0;
  text-indent: 0;
}
.gnav .gnav__item--icon a img {
  width: 20px;
  height: auto;
}

/*-------------------------------*/
/*gnav__btn (SP hamburger ⇆ X)--*/
.gnav__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav__btn {
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7px;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 110;
    border: none;
    cursor: pointer;
    padding: 16px;
    /* TOP内は非表示、抜けたらフェードイン */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, background-color 0.3s;
  }
  .gnav__btn span {
    display: block;
    height: 3px;
    background-color: #000;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
  }
  .gnav__btn {
    /* 棒線の長さ・透明度をデザインに合わせて変化 */
  }
  .gnav__btn span:nth-child(1) {
    width: 28px;
    opacity: 0.3;
  }
  .gnav__btn span:nth-child(2) {
    width: 22px;
    opacity: 1;
  }
  .gnav__btn span:nth-child(3) {
    width: 12px;
    opacity: 0.3;
  }
  .gnav__btn.is-active {
    opacity: 1;
    visibility: visible;
  }
  .gnav__btn {
    /* 開いている時：ハンバーガー → ✕（片方ダーク、片方dim） */
  }
  .gnav__btn.is-open span {
    align-self: center; /* X時は中央寄せにして交点を揃える */
  }
  .gnav__btn.is-open span:nth-child(1) {
    width: 26px;
    opacity: 1;
    transform: translateY(10px) rotate(45deg);
  }
  .gnav__btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .gnav__btn.is-open span:nth-child(3) {
    width: 26px;
    opacity: 0.4;
    transform: translateY(-10px) rotate(-45deg);
  }
}

/*-------------------------------*/
/*gnav-sp (SP overlay menu)------*/
.gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav-sp {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100lvh;
    background-color: #fff;
    z-index: 105;
    padding: 40px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .gnav-sp.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.gnav-sp .gnav-sp__list {
  list-style: none;
  margin: 0;
  padding: 0 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  height: 80%;
  justify-content: center;
  /* 罫線は pseudo-element に分離して上→下に展開できるように */
}
.gnav-sp .gnav-sp__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, #000 0 50%, transparent 50%);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0s;
}
.gnav-sp .gnav-sp__item {
  /* 初期状態：下にずらして透明（閉じる時はディレイなしで一気に消える） */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.gnav-sp .gnav-sp__item a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}
.gnav-sp .gnav-sp__item--icon a {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  text-indent: 0;
  padding-left: 7px;
}
.gnav-sp .gnav-sp__item--icon a img {
  width: 20px;
  height: auto;
}
.gnav-sp {
  /* 開く時だけ stagger で順番に出てくる */
}
.gnav-sp.is-open {
  /* 罫線が上から下に伸びる */
}
.gnav-sp.is-open .gnav-sp__list::before {
  clip-path: inset(0);
  transition: clip-path 0.7s ease-out 0.05s;
}
.gnav-sp.is-open .gnav-sp__item {
  opacity: 1;
  transform: translateY(0);
}
.gnav-sp.is-open .gnav-sp__item:nth-child(1) {
  transition-delay: 0.2s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(2) {
  transition-delay: 0.28s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(3) {
  transition-delay: 0.36s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(4) {
  transition-delay: 0.44s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(5) {
  transition-delay: 0.52s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(6) {
  transition-delay: 0.6s;
}

/*-------------------------------*/
/*top_btn-----------------------*/
.top_btn {
  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: #000;
  cursor: pointer;
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
  opacity: 0.5;
}

/*-------------------------------*/
footer .footer {
  position: relative;
  z-index: 2;
  transition: 1s;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 50px 20px;
  }
}
footer .footer .copyright {
  font-size: 0.7em;
  margin-top: 10px;
  text-align: center;
}
footer .footer ul.specs {
  margin-top: 20px;
}
footer .footer ul.specs li {
  font-size: 0.7em;
  line-height: 1.6;
  text-align: center;
}
footer .footer ul.specs li span {
  display: inline-block;
}

/*section common----------------*/
.section {
  position: relative;
  z-index: 2;
  padding: 80px 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
}
.section .section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.section--story, .section--staff {
  background-color: transparent;
}
.section--story::before, .section--staff::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: hard-light;
  opacity: 0.32;
  z-index: -1;
  pointer-events: none;
}
.section--story::after, .section--staff::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13, 151, 0, 0.02);
  z-index: -1;
  pointer-events: none;
}

.section__title {
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  text-indent: 0.7em;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 18px;
    letter-spacing: 0.7em;
  }
}
.section__title {
  /* 1文字ずつ下からフェードイン（scrub: スクロール量に応じてJSが値を直書き） */
}
.section__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/*-------------------------------*/
#top {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  #top {
    height: 188vw;
  }
}
#top .main {
  width: 49%;
  position: relative;
  opacity: 0;
  transition: 1s;
  overflow: hidden;
  filter: brightness(200%) blur(10px);
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
  }
}
#top .main img {
  transition: 2s;
  transform: scale(1.05);
}
#top .main.active {
  opacity: 1;
  filter: brightness(100%) blur(0px);
}
#top .main.active img {
  transform: scale(1);
}
#top .title {
  position: absolute;
  width: 25%;
  bottom: 21%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 33%;
    bottom: 40%;
    left: 6%;
  }
}
#top .title {
  opacity: 0;
  transition: 2s;
  filter: blur(10px);
}
#top .title.active {
  filter: blur(0px);
  opacity: 1;
}
#top .copy {
  position: absolute;
  width: 5.5%;
  top: 7%;
  right: 4%;
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 31%;
    top: 1.5%;
    right: 3%;
  }
}
#top .copy {
  opacity: 0;
  transition: 2s;
}
#top .copy.active {
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 10%;
  top: 88.5%;
  left: 86%;
  width: 11%;
}
@media screen and (max-width: 768px) {
  #top .release {
    top: 74%;
    width: 22%;
    left: 73%;
  }
}
#top .release {
  opacity: 0;
  transition: 2s;
}
#top .release.active {
  opacity: 1;
}
#top .credit {
  position: absolute;
  width: 29%;
  bottom: 3%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 90%;
    left: 5%;
    bottom: 3%;
  }
}
#top .credit {
  opacity: 0;
  transition: 2s;
}
#top .credit.active {
  opacity: 1;
}

/*info--------------------------*/
#info {
  padding: 60px 50px;
  z-index: 2;
  position: relative;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #info {
    background-color: #FFF;
    padding: 10px 20px 0px;
  }
}
#info .info__follow {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
#info .info__follow a {
  width: 80%;
  max-width: 220px;
}
#info .info__follow a:hover {
  opacity: 0.7;
}

/*-------------------------------*/
/*trailer-----------------------*/
#trailer .section__inner {
  max-width: 940px;
}
#trailer .trailer__embed {
  width: 100%;
}

.youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #d9d9d9;
}
.youtube_embed iframe, .youtube_embed #embed_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tabs li {
  border: 1px solid #666;
  border-radius: 3px;
  width: 100%;
  margin-top: 2px;
  height: 3em;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
  background-color: #3a3a3a;
  color: #FEFEFE;
}
.trailer_tabs .tab.active {
  background-color: #161616;
  pointer-events: none;
}

/*-------------------------------*/
/*story-------------------------*/
#story .story__img {
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  /* 親(.fadeInUp)の opacity/translate は無効化して、中の img だけ動かす */
}
#story .story__img.fadeInUp {
  opacity: 1;
  transform: none;
}
#story .story__img img {
  transform: scale(1.1);
  opacity: 0;
  transition: transform 3s ease-out, opacity 3s ease-out;
}
#story .story__img.is-inview img {
  transform: scale(1);
  opacity: 1;
}
#story .story__body {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 2.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #story .story__body {
    font-size: 14px;
    gap: 10px;
  }
}
#story .story__body p {
  margin: 0;
}

/*-------------------------------*/
/*cast--------------------------*/
#cast .section__inner {
  gap: 80px;
}
@media screen and (max-width: 768px) {
  #cast .section__inner {
    gap: 40px;
  }
}
#cast .cast {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#cast {
  /* 共通 */
}
#cast .cast__item {
  width: 100%;
  border-left: 1px dashed #000;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(23, 21, 33, 0.02) 100%);
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #cast .cast__item {
    padding: 30px 10px 30px 0px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
}
#cast .cast__img {
  flex: 0 0 200px;
  width: 200px;
}
@media screen and (max-width: 768px) {
  #cast .cast__img {
    flex: 0 0 auto;
    width: 50%;
    max-width: 200px;
  }
}
#cast .cast__content {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#cast .cast__name {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #cast .cast__name {
    font-size: 22px;
    text-align: center;
  }
}
#cast .cast__name .cast__role {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #cast .cast__name .cast__role {
    font-size: 13px;
  }
}
#cast .cast__line {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #000;
}
#cast .cast__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #cast .cast__body {
    padding: 10px 0 0 20px;
  }
}
#cast .cast__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #cast .cast__body p {
    font-size: 13px;
  }
}
#cast .cast__body .cast__label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.7em;
}
#cast {
  /* 主演（坂口健太郎）：横長の大きな写真 + 下にライン・コメント */
}
#cast .cast__item--main {
  flex-direction: column;
  align-items: stretch;
  padding: 50px 50px 50px 0;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #cast .cast__item--main {
    padding: 30px 10px 30px 0;
    gap: 10px;
  }
}
#cast .cast__item--main .cast__head {
  padding-left: 50px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media screen and (max-width: 768px) {
  #cast .cast__item--main .cast__head {
    padding-left: 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
#cast .cast__item--main .cast__img--main {
  flex: 0 0 auto;
  width: 60%;
  max-width: 667px;
}
@media screen and (max-width: 768px) {
  #cast .cast__item--main .cast__img--main {
    width: 100%;
    max-width: 100%;
  }
}
#cast .cast__item--main .cast__name {
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #cast .cast__item--main .cast__name {
    text-align: center;
  }
}
#cast .cast__item--main .cast__line {
  /* 主演はline左端から右端いっぱいまで */
}
#cast .cast__item--main .cast__body {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #cast .cast__item--main .cast__body {
    padding-left: 20px;
  }
}

/*-------------------------------*/
/*staff-------------------------*/
#staff .staff__item {
  width: 100%;
  max-width: 1200px;
  padding: 50px 50px 50px 0;
  border-left: 1px dashed #000;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #staff .staff__item {
    padding: 20px 10px 20px 0;
    gap: 10px;
  }
}
#staff .staff__head {
  padding-left: 50px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media screen and (max-width: 768px) {
  #staff .staff__head {
    padding-left: 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
#staff .staff__img {
  flex: 0 0 322px;
  width: 322px;
}
@media screen and (max-width: 768px) {
  #staff .staff__img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 322px;
  }
}
#staff .staff__name {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #staff .staff__name {
    font-size: 22px;
    text-align: center;
  }
}
#staff .staff__name .staff__role {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #staff .staff__name .staff__role {
    font-size: 13px;
  }
}
#staff .staff__line {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #000;
}
#staff .staff__body {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #staff .staff__body {
    padding: 10px 0 0 20px;
  }
}
#staff .staff__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #staff .staff__body p {
    font-size: 13px;
  }
}
#staff .staff__body .staff__label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.7em;
}

/*-------------------------------*/
/*billing-----------------------*/
#billing {
  padding: 80px 50px 120px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #billing {
    padding: 60px 20px 80px;
  }
}
#billing .billing__inner {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #billing .billing__inner {
    max-width: 280px;
  }
}

/*-------------------------------*//*# sourceMappingURL=style.css.map */