@charset "UTF-8";

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button{
  background: none;
  border: none;
  padding: 0;
  outline: none;
}

button:focus{
    outline: none;
  }

button:disabled{
    opacity:1;
  }

button:disabled:hover{
      opacity:1;
    }

:root {
  --text-color:#000;
  --text-color-white:#fff;
  --primary_yellow:#FFF100;
}

/* ==========================================================================
   共通設定
========================================================================== */
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
  scroll-padding-top: 100px;
}

body {
	font-family: 'Noto Sans','Noto Sans JP','Noto Sans CJK JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','游ゴシック', '游ゴシック体','メイリオ',Meiryo,sans-serif;
  font-optical-sizing: auto;
	font-feature-settings : 'pkna';
	color:#000;
	color:var(--text-color);
	text-align: justify;
	width:100%;
  min-width: 1120px;
	font-size: 1.6rem;
	line-height: 1.6;
  background: #CBCBCA;
}
img{
	vertical-align:bottom;
	max-width: 100%;
	height: auto;
  backface-visibility: hidden;
}
a{
	color:#000;
	color:var(--text-color);
	text-decoration: none;
  display: inline-block;
}
@media (hover: hover) {
  a:hover{
    opacity: .8;
  }
}

.spShow{
	display: none;
}
.pcShow{
	display: inline-block;
}
button{
  background: none;
  border: none;
  padding: 0;
  outline: none;
  color: #000;
  color: var(--text-color);
  cursor: pointer;
}
button:focus{
    outline: none;
  }
button:disabled{
    opacity:1;
    color: #000;
    color: var(--text-color);
  }
@media (hover: hover) {
    button:hover{
      opacity: .8;
    }
  }
svg{
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container{
	display: grid;
	min-height: 105vh;
	grid-template-columns: 100%;
  grid-template-rows: auto auto 1fr auto;
}
.header{
	grid-column: 1;
  grid-row: 1;
}
.gNav{
	grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 3;
}
.pageContainer{
	grid-column: 1;
  grid-row: 3;
  position: relative;
  z-index: 2;
}
.footer{
	grid-column: 1;
  grid-row: 4;
  z-index: 2;
}
/* ==========================================================================
   ヘッダー
========================================================================== */
.header .logo{
    height: 93px;
    padding-inline: 30px;
    width: min(100%,1440px);
    margin-inline: auto;
    display: flex;
    align-items: center;
  }
.header .logo img{
      width: 350px;
    }
/* ==========================================================================
   グローバルナビ
========================================================================== */
.gNav{
  height: 52px;
  background: #010002;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}
.gNav ul{
    display: flex;
    justify-content: center;
    gap: 70px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .03em;
  }
.gNav ul a{
      color: #fff;
      color: var(--text-color-white);
    }

/* ==========================================================================
   フッター
========================================================================== */
.footer{
  padding: 90px 0 80px;
  border-bottom: 24px solid #000;
}
.footer .footerLogo{
    text-align: center;
  }
/* ==========================================================================
   テキスト設定
========================================================================== */
.electrolize{
  font-family: "Electrolize", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* ==========================================================================
  英語付きタイトル
========================================================================== */
.enTitle{
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.enTitle::before{
    content: attr(data-en);
    display: block;
    font-size: 5.6rem;
    line-height: 1.1;
    font-family: "Electrolize", sans-serif;
    font-weight: 400;
  }
@media (max-width:767px){
  .enTitle{
    font-size: 1.4rem;
  }
    .enTitle::before{
      font-size: 3.6rem;
    }
}
/* ==========================================================================
  ニュース一覧用ボックス
========================================================================== */
.newsPostBox{
  display: contents;
}
.newsPostBox a{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 6px;
  }
.newsPostBox .tm{
    width: 100%;
    aspect-ratio: 280 / 186;
  }
.newsPostBox .tm img{
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
.newsPostBox h2{
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: .03em;
    font-weight: 300;
  }
.newsPostBox time{
    font-size: 1.2rem;
    text-align: right;
  }

/* 「もっと見る」での表示切り替え用 */
.newsPostBox.postHide{
  display: none;
}
.newsPostBox.postFadeIn a{
  animation: postFadeIn .4s ease both;
}

@keyframes postFadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@media (max-width:767px){
  .newsPostBox{
    display: block;
  }
    .newsPostBox a{
      row-gap: calc(calc(6/390) * 100vw);
    }
    .newsPostBox h2{
      font-size: 1.4rem;
    }
}

/* ==========================================================================
  ボタン
========================================================================== */
.btn{
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  min-height: 48px;
  padding: 10px 20px;
  display: grid;
  place-content: center;
  color: #fff;
  color: var(--text-color-white);
  font-size: 1.6rem;
  line-height: 1;
  margin-inline: auto;
  background: #000;
  border-radius: 10px;
}

@media (max-width:767px){
  .btn{
    min-width: calc(calc(300/390) * 100vw);
    min-height: calc(calc(48/390) * 100vw);
    padding: calc(calc(10/390) * 100vw) calc(calc(20/390) * 100vw);
    border-radius: calc(calc(10/390) * 100vw);
  }
}

/* ==========================================================================
   ニュース一覧
========================================================================== */
.newsArchivePage .main{
    width: min(calc(100% - 40px),1210px);
    margin-inline: auto;
    padding-top: 50px;
  }
.newsArchivePage .main .enTitle{
      margin-bottom: 54px;
    }
.newsArchivePage .postWrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    /* カード内部の行間。_newsPostBox.css の row-gap:6px と同値にすること */
    row-gap: 6px;
    /* カード間の上下 = row-gap(6px) + margin-top(40px) = 46px */
    /* 1行目(=列数と同じ枚数)だけ相殺する */
  }
.newsArchivePage .postWrapper .newsPostBox a{
      margin-top: 40px;
    }
.newsArchivePage .postWrapper .newsPostBox:nth-child(-n+4) a{
      margin-top: 0;
    }
.newsArchivePage .morePostBtn{
    margin-top: 77px;
    display: none;
  }
.newsArchivePage .morePostBtn.morePostBtnShow{
    display: grid;
  }
/* ==========================================================================
   ニュース詳細
========================================================================== */
.newsSinglePage .main{
    max-width: 900px;
    margin-inline: auto;
    padding-top: 50px;
  }
.newsSinglePage .pageTitle .title{
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 1.6;
      display: flex;
      align-items: baseline;
      gap: 0 16px;
    }
.newsSinglePage .pageTitle .title::before{
        content: 'News';
        display: block;
        font-size: 4.6rem;
        line-height: 1.1;
        font-family: "Electrolize", sans-serif;
        font-weight: 400;
      }
.newsSinglePage .mainPost{
    margin-top: 45px;
  }
.newsSinglePage .postHeader h1{
      font-size: 2.6rem;
      line-height: 1.6;
      font-weight: 400;
      letter-spacing: .03em;
    }
.newsSinglePage .postHeader time{
      margin-top: 10px;
      font-size: 1.2rem;
      letter-spacing: .03em;
      display: block;
      line-height: 1;
    }
.newsSinglePage .postBox{
    margin-top: 35px;
    letter-spacing: .03em;
    word-break: break-all;
  }
.newsSinglePage .postBox >* + *{
      margin-top: 10px;
    }
.newsSinglePage .postBox .postImgBox{
      margin-bottom: 35px;
    }
.newsSinglePage .postBox .postImgBox img{
        max-height: 600px;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain;
        -o-object-position: center;
           object-position: center;
      }
.newsSinglePage .postBox >h2:not(:first-child){
      margin-top: 30px;
    }
.newsSinglePage .postBox h2{
      font-size: 2.3rem;
      padding: 6px 16px;
      background: #000;
      font-weight: 400;
      color: #fff;
      color: var(--text-color-white);
    }
.newsSinglePage .postBox h3{
      font-size: 2.3rem;
      font-weight: 500;
    }
.newsSinglePage .postBox h4{
      font-size: 2rem;
      font-weight: 500;
    }
.newsSinglePage .postBox h5{
      font-size: 1.8rem;
      padding: 6px 16px;
      background: #000;
      font-weight: 400;
      color: #fff;
      color: var(--text-color-white);
    }
.newsSinglePage .postBox h6{
      font-size: 1.6rem;
      font-weight: 500;
    }
.newsSinglePage .postBox a{
      text-decoration: underline;
      display: inline;
    }
.newsSinglePage .postFooter{
    margin-top: 113px;
  }
/* ==========================================================================
   home
========================================================================== */
.home .container{
    display: grid;
    min-height: 105vh;
    grid-template-columns: 100%;
    grid-template-rows: 0 1fr auto;
  }
.home .header{
    grid-column: 1;
    grid-row: 1;
  }
.home .pageContainer{
    grid-column: 1;
    grid-row: 2;
  }
.home .footer{
    grid-column: 1;
    grid-row: 3;
  }
.homePage .fv{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    aspect-ratio: 1440 / 668;
  }
.homePage .fv .inner{
      grid-column: 1;
      grid-row: 1;
      z-index: 2;
      width: min(calc(100% - 20px),1106px);
      margin-inline: auto;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      flex-flow: column;
      gap: 67px;
    }
.homePage .fv .inner h1{
        line-height: 1;
      }
.homePage .fv .inner .data{
        width: min(100%,612px);
        text-align: center;
      }
.homePage .fv .inner .date{
        font-size: 2.61rem;
        line-height: 1.6;
        letter-spacing: .12em;
      }
.homePage .fv .inner .date strong{
          font-size: 3.798rem;
          font-weight: 400;
        }
.homePage .fv .inner .date span{
          font-size: 2.499rem;
        }
.homePage .fv .inner .text{
        font-size: 2.2rem;
        font-weight: 300;
        letter-spacing: .03em;
      }
.homePage .fv .fvBk{
      grid-column: 1;
      grid-row: 1;
      z-index: 1;
    }
.homePage .fv .fvBk img{
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
      }
.homePage .wrapper{
    background: url('../img/top_bk1.webp') no-repeat center center / cover;
    padding: 86px 0 89px;
  }
.homePage .catch1{
    max-width: 644px;
    margin: 0 auto;
    line-height: 1;
  }
.homePage .catch2{
    max-width: 619px;
    margin: 31px auto 0;
    line-height: 1;
  }
.homePage .enTitle{
    color: #FFF100;
    color: var(--primary_yellow);
  }
.homePage .enTitle::before{
      color: #FFF100;
      color: var(--primary_yellow);
    }
.homePage .news{
    margin-top: 74px;
  }
.homePage .news .enTitle{
      margin-bottom: 30px;
    }
.homePage .news .postWrapper{
      width: min(calc(100% - 40px),900px);
      margin-inline: auto;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      -moz-column-gap: 30px;
           column-gap: 30px;
    }
.homePage .news .postWrapper:has(.newsPostBox:nth-child(4)){
      width: min(calc(100% - 40px),1210px);
      grid-template-columns: repeat(4,1fr);
    }
.homePage .news .btn{
      margin-top: 34px;
    }
.homePage .wrapper2{
    background: url('../img/top_bk2.webp') no-repeat center center / cover;
    padding: 70px 0 113px;
  }
.homePage .movie h2{
      width: -moz-fit-content;
      width: fit-content;
      margin-inline: auto;
      background: #000;
      color: #fff;
      font-size: 2.1rem;
      font-weight: 300;
      padding: 0 10px;
    }
.homePage .movie .read{
      margin-top: 18px;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: .03em;
      color: #fff;
      color: var(--text-color-white);
    }
.homePage .movie .movieBox{
      margin-top: 26px;
      max-width: 600px;
      aspect-ratio: 16/9;
      margin-inline: auto;
    }
.homePage .movie .movieBox iframe{
        width: 100%;
        height: 100%;
      }
.homePage .movie + .movie{
    margin-top: 88px;
  }
.homePage .introduction{
    max-width: 800px;
    margin: 107px auto 0;
  }
.homePage .introduction .enTitle{
      margin-bottom: 50px;
    }
.homePage .introduction ul{
      color: #FFF100;
      color: var(--primary_yellow);
      font-size: 2.6rem;
      font-weight: 700;
      letter-spacing: .03em;
      text-align: center;
    }
.homePage .introduction ul li span{
          padding-left: .3em;
        }
.homePage .introduction .text1{
      text-align: center;
      color: #fff;
      color: var(--text-color-white);
      font-size: 2rem;
      line-height: 1.9;
      letter-spacing: .03em;
      margin-top: 36px;
    }
.homePage .introduction .text2{
      color: #fff;
      color: var(--text-color-white);
      font-size: 1.6rem;
      line-height: 1.7;
      letter-spacing: .03em;
      font-weight: 300;
      margin-top: 36px;
    }
.homePage .story{
    background: url('../img/top_bk3.webp') no-repeat center center / cover;
    padding: 127px 0 153px;
  }
.homePage .story .enTitle{
      margin-bottom: 54px;
    }
.homePage .story p{
      max-width: 800px;
      margin-inline: auto;
      line-height: 1.7;
      font-weight: 300;
      letter-spacing: .03em;
      color: #fff;
      color: var(--text-color-white);
    }
.homePage .story p + p{
      margin-top: 1.5em;
    }
.homePage .imgList{
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
.homePage .cast{
    background: #777878;
    padding: 130px 0 105px;
  }
.homePage .cast .enTitle{
      margin-bottom: 51px;
    }
.homePage .cast .castRow{
      max-width: 1080px;
      margin-inline: auto;
      background: rgba(255,255,255,.8);
      border-radius: 10px;
      padding: 50px 86px 50px 60px;
    }
.homePage .cast .castBox{
      display: flex;
      flex-flow: row wrap;
      gap: 0 56px;
    }
.homePage .cast .castBox h2{
        width: 100%;
        font-size: 2.4rem;
        margin-bottom: 10px;
      }
.homePage .cast .castBox p{
        line-height: 1.8;
        letter-spacing: .03em;
      }
.homePage .cast .catBox1{
      line-height: 2;
    }
.homePage .cast .castBoxImg h2{
        margin-bottom: 22px;
      }
.homePage .cast .castBoxImg figure{
        flex: 0 1 254px;
      }
.homePage .cast .castBoxImg p{
        flex: 0 1 624px;
      }
.homePage .cast .castBox + .castBox{
      margin-top: 60px;
    }
.homePage .cast .credit{
      margin-top: 40px;
      padding-top: 45px;
      border-top: 1px solid #000;
    }
.homePage .cast .credit figcaption{
        font-size: 2.4rem;
        margin-bottom: 10px;
        font-weight: 700;
      }
.homePage .cast .credit ul{
        font-size: 1.4rem;
        line-height: 1.8;
        letter-spacing: .03em;
      }
.homePage .wrapper4{
    padding: 90px 0 124px;
    position: relative;
  }
.homePage .wrapper4::before{
      content: '';
      width: 100%;
      height: calc(100% + 232px);
      background: url('../img/top_bk4.webp') no-repeat center top / cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
.homePage .comment .enTitle{
      margin-bottom: 44px;
    }
.homePage .comment .commentLead{
      width: -moz-fit-content;
      width: fit-content;
      margin-inline: auto;
      font-weight: 700;
    }
.homePage .comment .commentLead p{
        color: #FFF100;
        color: var(--primary_yellow);
        
        font-size: 2.6rem;
        letter-spacing: .03em;
      }
.homePage .comment .commentLead figcaption{
        text-align: right;
        margin-top: 11px;
        color: #fff;
        color: var(--text-color-white);
        line-height: 1.8;
      }
.homePage .comment .commentRow{
      max-width: 1080px;
      margin: 50px auto 0;
    }
.homePage .comment .commentBox{
      background: rgba(255,255,255,.8);
      padding: 30px 50px;
      border-radius: 10px;
    }
.homePage .comment .commentBox p{
        letter-spacing: .02em;
        line-height: 1.8;
      }
.homePage .comment .commentBox figcaption{
        margin-top: 5px;
        font-weight: 700;
        line-height: 1.8;
      }
.homePage .comment .commentBox + .commentBox{
      margin-top: 40px;
    }
.homePage .theater{
    margin-top: 143px;
  }
.homePage .theater .enTitle{
      margin-bottom: 35px;
      color: #000;
      color: var(--text-color);
    }
.homePage .theater .enTitle::before{
        color: #000;
        color: var(--text-color);
      }
.homePage .theater .btn{
      width: 500px;
      height: 64px;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
.homePage .theater .btn::after{
        content: '';
        width: 20px;
        height: 20px;
        background: url('../img/other_tab.svg') no-repeat center center / contain;
        flex-shrink: 0;
      }
.home .footer{
    padding-top: 0;
  }
/* sp */
@media (max-width: 767px) {
html{
  font-size: calc(100vw / 39);
  scroll-padding-top: calc(calc(50/390) * 100vw);
}
body {
  min-width: 0;
	width: 100%;
}
img{
	width: 100%;
}
.spShow{
	display: inline-block;
}
.pcShow{
	display: none;
}
/* ==========================================================================
   ヘッダー
========================================================================== */
.header{
  height: calc(calc(45/390) * 100vw);
  padding: 0 0 0 calc(calc(15/390) * 100vw);
  display: flex;
}
  .header .logo{
    height: 100%;
    align-items: flex-end;
    padding: 0;
    width: calc(calc(180/390) * 100vw);
    margin-inline: 0;
  }
    .header .logo img{
      width: 100%;
    }
  .header .menuBtn{
    display: block;
    width: calc(calc(45/390) * 100vw);
    height: calc(calc(45/390) * 100vw);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }
    .header .menuBtn button{
      background: #000;
      width: 100%;
      height: 100%;
      display: block;
      line-height: 1;
    }
      .header .menuBtn button .inner{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: auto auto 1fr;
        gap: calc(calc(3.3/390) * 100vw) 0;
      }
      .header .menuBtn button .line{
        justify-self: center;
        background: #fff;
        width: calc(calc(16.67/390) * 100vw);
        height: calc(calc(1.67/390) * 100vw);
        transition: all .2s linear;
      }
      .header .menuBtn .menuBtnOpen .inner{
        gap:0;
      }
      .header .menuBtn .menuBtnOpen .line{
        grid-column: 1;
        align-self: center;
      }
      .header .menuBtn .menuBtnOpen .line1{
        grid-row: 1;
        rotate: 45deg;
      }
      .header .menuBtn .menuBtnOpen .line2{
        grid-row: 1;
        opacity: 0;
      }
      .header .menuBtn .menuBtnOpen .line3{
        grid-row: 1;
        rotate: -45deg;
      }
/* ==========================================================================
   グローバルナビ
========================================================================== */
.gNav{
  display: none;
  /* display: block; */
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  width: calc(calc(290/390) * 100vw);
  height: 100dvh;
  max-height: calc(calc(434/390) * 100vw);
  overflow-y: auto;
  background: #010002;
  padding: calc(calc(43/390) * 100vw) calc(calc(50/390) * 100vw) calc(calc(43/390) * 100vw) calc(calc(80/390) * 100vw);
}
  .gNav ul{
    flex-flow: column;
    gap: calc(calc(20/390) * 100vw);
  }
.navOpen{
  display: block;
  animation: menuIn .4s 1 0s linear forwards;
}
.navClose{
  animation: menuOut .4s 1 0s linear forwards;
}
@keyframes menuIn {
  0%{
    display: block;
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes menuOut {
  0%{
    opacity: 1;
  }
  99%{
    opacity: 0;
  }
  100%{
    display: none;
    opacity: 0;
  }
}
/* ==========================================================================
   フッター
========================================================================== */
.footer{
  padding: calc(calc(97/390) * 100vw) 0 calc(calc(32/390) * 100vw);
  border-bottom: calc(calc(14/390) * 100vw) solid #000;
}
  .footer .footerLogo{
    width: calc(calc(350/390) * 100vw);
    margin-inline: auto;
  }
/* end */
}
@media (max-width:767px){
/* ==========================================================================
   ニュース一覧
========================================================================== */
  .newsArchivePage .main{
    width: calc(calc(280/390) * 100vw);
    margin-inline: auto;
    padding-top: calc(calc(40/390) * 100vw);
  }
    .newsArchivePage .main .enTitle{
      margin-bottom: calc(calc(28/390) * 100vw);
    }
  .newsArchivePage .postWrapper{
    display: grid;
    grid-template-columns: 100%;
    gap: calc(calc(20/390) * 100vw);
  }
    .newsArchivePage .postWrapper .newsPostBox a{
      margin-top: 0;
    }
    .newsArchivePage .postWrapper .newsPostBox:nth-child(1) a{
      margin-top: 0;
    }
  .newsArchivePage .morePostBtn{
    margin-top: calc(calc(20/390) * 100vw);
  }
/* ==========================================================================
   ニュース詳細
========================================================================== */
  .newsSinglePage .main{
    max-width: calc(calc(330/390) * 100vw);
    padding-top: calc(calc(40/390) * 100vw);
  }
    .newsSinglePage .pageTitle .title{
      font-size: 1.4rem;
      display: block;
    }
      .newsSinglePage .pageTitle .title::before{
        font-size: 3rem;
        display: block;
      }
  .newsSinglePage .mainPost{
    margin-top: calc(calc(40/390) * 100vw);
  }
    .newsSinglePage .postHeader h1{
      font-size: 2rem;
    }
    .newsSinglePage .postHeader time{
      margin-top: calc(calc(10/390) * 100vw);
    }
  .newsSinglePage .postBox{
    margin-top: calc(calc(25/390) * 100vw);
  }
    .newsSinglePage .postBox >* + *{
      margin-top: calc(calc(10/390) * 100vw);
    }
    .newsSinglePage .postBox .postImgBox{
      margin-bottom: calc(calc(25/390) * 100vw);
    }
    .newsSinglePage .postBox >h2:not(:first-child){
      margin-top: calc(calc(30/390) * 100vw);
    }
    .newsSinglePage .postBox h2{
      font-size: 2.1rem;
      padding: calc(calc(6/390) * 100vw) calc(calc(16/390) * 100vw);
    }
    .newsSinglePage .postBox h3{
      font-size: 2.1rem;
      font-weight: 700;
    }
    .newsSinglePage .postBox h4{
      font-size: 1.8rem;
      font-weight: 700;
    }
    .newsSinglePage .postBox h5{
      font-size: 1.6rem;
      padding: calc(calc(6/390) * 100vw) calc(calc(16/390) * 100vw);
    }
    .newsSinglePage .postBox h6{
      font-size: 1.4rem;
      font-weight: 700;
    }
  .newsSinglePage .postFooter{
    margin-top: calc(calc(50/390) * 100vw);
  }
/* ==========================================================================
   home
========================================================================== */
  .homePage .fv{
    aspect-ratio: 780 / 1440;
  }
    .homePage .fv .inner{
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: flex-start;
      gap: calc(calc(36/390) * 100vw);
      padding-top: calc(calc(81/390) * 100vw);
    }
      .homePage .fv .inner h1{
        width: calc(calc(320/390) * 100vw);
      }
      .homePage .fv .inner .date{
        font-size: 1.564rem;
      }
        .homePage .fv .inner .date strong{
          font-size: 2.275rem;
        }
        .homePage .fv .inner .date span{
          font-size: 1.498rem;
        }
      .homePage .fv .inner .text{
        font-size: 1.4rem;
      }
  .homePage .wrapper{
    background: url('../img/sp_top_bk1.webp') no-repeat center top / cover;
    padding: calc(calc(47/390) * 100vw) 0 calc(calc(56/390) * 100vw);
  }
  .homePage .catch1{
    max-width: calc(calc(322/390) * 100vw);
  }
  .homePage .catch2{
    max-width: calc(calc(310/390) * 100vw);
    margin: calc(calc(16/390) * 100vw) auto 0;
    font-size: 1rem;
  }
  .homePage .news{
    margin-top: calc(calc(56/390) * 100vw);
  }
    .homePage .news .enTitle{
      margin-bottom: calc(calc(30/390) * 100vw);
    }
    .homePage .news .postWrapper{
      width: calc(calc(280/390) * 100vw);
      grid-template-columns: 100%;
      gap: calc(calc(30/390) * 100vw);
    }
    .homePage .news .postWrapper:has(.newsPostBox:nth-child(4)){
      width: calc(calc(280/390) * 100vw);
      grid-template-columns: 100%;
    }
    .homePage .news .btn{
      margin-top: calc(calc(34/390) * 100vw);
    }
  .homePage .wrapper2{
    background: url('../img/sp_top_bk2.webp') no-repeat center center / cover;
    padding: calc(calc(54/390) * 100vw) 0 calc(calc(37/390) * 100vw);
  }
  .homePage .movie{
    width: calc(calc(350/390) * 100vw);
    margin-inline: auto;
  }
    .homePage .movie h2{
      font-size: 1.6rem;
      padding: 0 calc(calc(10/390) * 100vw);
    }
    .homePage .movie .read{
      margin-top: calc(calc(26/390) * 100vw);
      text-align: justify;
      font-size: 1.4rem;
    }
    .homePage .movie .movieBox{
      margin-top: calc(calc(26/390) * 100vw);
      max-width: calc(calc(350/390) * 100vw);
    }
  .homePage .movie + .movie{
    margin-top: calc(calc(40/390) * 100vw);
  }
  .homePage .introduction{
    max-width: calc(calc(330/390) * 100vw);
    margin: calc(calc(112/390) * 100vw) auto 0;
  }
    .homePage .introduction .enTitle{
      margin-bottom: calc(calc(42/390) * 100vw);
    }
    .homePage .introduction ul{
      color: #FFF100;
      color: var(--primary_yellow);
      font-size: 1.8rem;
    }
        .homePage .introduction ul li span{
          padding-left: 0;
          display: block;
        }
      .homePage .introduction ul li + li{
        margin-top: calc(calc(11/390) * 100vw);
      }
    .homePage .introduction .text1{
      text-align: justify;
      font-size: 1.6rem;
      margin-top: calc(calc(32/390) * 100vw);
    }
    .homePage .introduction .text2{
      font-size: 1.4rem;
      margin-top: calc(calc(32/390) * 100vw);
    }
  .homePage .story{
    background: url('../img/sp_top_bk3.webp') no-repeat center center / cover;
    padding: calc(calc(86/390) * 100vw) 0 calc(calc(62/390) * 100vw);
  }
    .homePage .story .enTitle{
      margin-bottom: calc(calc(34/390) * 100vw);
    }
    .homePage .story p{
      max-width: calc(calc(330/390) * 100vw);
    }
  .homePage .imgList{
    display: grid;
    grid-template-columns: 100%;
  }
  .homePage .cast{
    padding: calc(calc(72/390) * 100vw) 0 calc(calc(50/390) * 100vw);
  }
    .homePage .cast .enTitle{
      margin-bottom: calc(calc(51/390) * 100vw);
    }
    .homePage .cast .castRow{
      max-width: calc(calc(350/390) * 100vw);
      border-radius: calc(calc(10/390) * 100vw);
      padding: calc(calc(50/390) * 100vw) calc(calc(30/390) * 100vw);
    }
    .homePage .cast .castBox{
      display: block;
    }
      .homePage .cast .castBox h2{
        font-size: 2.2rem;
        line-height: 1.5;
        margin-bottom: calc(calc(10/390) * 100vw);
        text-align: left;
      }
      .homePage .cast .castBox p{
        font-size: 1.4rem;
      }
    .homePage .cast .catBox1{
      line-height: 2;
    }
      .homePage .cast .castBoxImg h2{
        margin-bottom: calc(calc(22/390) * 100vw);
      }
      .homePage .cast .castBoxImg figure{
        width: calc(calc(254/390) * 100vw);
        margin-inline: auto;
      }
      .homePage .cast .castBoxImg p{
        margin-top: calc(calc(20/390) * 100vw);
      }
    .homePage .cast .castBox + .castBox{
      margin-top: calc(calc(40/390) * 100vw);
    }
    .homePage .cast .credit{
      margin-top: calc(calc(40/390) * 100vw);
      padding-top: calc(calc(45/390) * 100vw);
      border-top: calc(calc(1/390) * 100vw) solid #000;
    }
      .homePage .cast .credit figcaption{
        font-size: 2rem;
        margin-bottom: calc(calc(10/390) * 100vw);
      }
      .homePage .cast .credit ul{
        font-size: 1.3rem;
      }
  .homePage .wrapper4{
    padding: calc(calc(70/390) * 100vw) 0 calc(calc(93/390) * 100vw);
  }
    .homePage .wrapper4::before{
      height: calc(100% + calc(calc(120/390) * 100vw));
      background: url('../img/sp_top_bk4.webp') no-repeat center top / cover;
    }
    .homePage .comment .enTitle{
      margin-bottom: calc(calc(34/390) * 100vw);
    }
    .homePage .comment .commentLead{
      width: calc(calc(330/390) * 100vw);
      margin-inline: auto;
    }
      .homePage .comment .commentLead p{
        font-size: 1.8rem;
      }
      .homePage .comment .commentLead figcaption{
        font-size: 1.4rem;
        margin-top: calc(calc(11/390) * 100vw);
      }
    .homePage .comment .commentRow{
      max-width: calc(calc(350/390) * 100vw);
      margin: calc(calc(50/390) * 100vw) auto 0;
    }
    .homePage .comment .commentBox{
      padding: calc(calc(25/390) * 100vw);
      border-radius: calc(calc(10/390) * 100vw);
    }
      .homePage .comment .commentBox p{
        font-size: 1.4rem;
      }
      .homePage .comment .commentBox figcaption{
        margin-top: calc(calc(5/390) * 100vw);
        font-size: 1.4rem;
      }
    .homePage .comment .commentBox + .commentBox{
      margin-top: calc(calc(20/390) * 100vw);
    }
  .homePage .theater{
    margin-top: calc(calc(56/390) * 100vw);
  }
    .homePage .theater .enTitle{
      margin-bottom: calc(calc(34/390) * 100vw);
    }
    .homePage .theater .btn{
      width: calc(calc(300/390) * 100vw);
      height: calc(calc(59/390) * 100vw);
      font-size: 1.6rem;
      gap: calc(calc(10/390) * 100vw);
    }
      .homePage .theater .btn::after{
        width: calc(calc(16/390) * 100vw);
        height: calc(calc(16/390) * 100vw);
      }
/* end */
}