/*全体共通設定*/
* {
    box-sizing: inherit;
  }
  
  body {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  section {
    padding: 80px 60px;
    position: relative;
  }
  
  .section-content {
    max-width: 1080px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

.section-content em{
 display: block;
 text-align: center;
 width: 100%;
 margin: 1em auto;
}

.section-content em img{
 max-width: 100%;
}

h4{
 display: block;
 text-align: center;
 font-size:220%;
 font-weight: 500;
 margin: 0 auto 2em;
}

.read{
 text-align: center;
 margin-bottom: 5%;
 font-family: "Tenor Sans", sans-serif;
}

.read span{
 font-weight: 600;
 font-size: 200%;
 display: block;
 padding: 0.6em 0 0;
}

.read br{
 display: none;
}
  
  .section-head {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    letter-spacing: 0.12em;
    color: #3E3E3E;
    margin-bottom: 40px;
    text-align: center;
  }
  .section-head_white {
    color: #fff;
  }
  
  .section_backpaper {
    background-image: url("images/paper.jpg");
    background-size: 100%;
  }
  
  .section_color {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .text-normal {
    font-size: 20px;
    line-height: 2em;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-em {
    font-size: 30px;
    display: block;
  }
  
  .ticket-button {
    display: block;
    font-size: 24px;
    font-weight: 600;
    width: 560px;
    color: #fff;
    text-align: center;
    line-height: 80px;
    background-color: #DE861F;
    border-radius: 10px;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 0;
    transition: 0.3s;
  }

  /*.ticket-button:hover {
    opacity: 0.7;
  }

  .ticket-button.show:hover {
    opacity: 0.7;
  }*/
  
  .fadein {
    opacity: 0;
    transition: 0.4s;
    transform: translateY(10px);
    pointer-events: none;
  }
  .fadein.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

/* ヘッダー */
header {
  background-color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header .header-content {
  max-width: 800px;
  width: 100%;
  position: relative;
}
header .header-content ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
header .header-content ul li a {
  font-size: 22px;
  color: #fff;
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
header .header-content ul li a:hover {
  opacity: 0.7;
}
header .header__logo {
  width: 160px;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translate(-100%, -50%);
}
header .header__burger {
  display: none;
}

.header_initial {
  padding: 0 240px;
  height: 120px;
}

.header_fixed {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0 120px;
  height: 64px;
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.3s;
}
.header_fixed.show {
  opacity: 1;
  transform: translateY(0);
}
.header_fixed .title-text {
  display: none;
}

  /* FV */

  .fv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .fv .section_color {
    background-color: #C6DD66;
    opacity: 0.26;
  }
  .fv .section-content {
    opacity: 0;
    transition: 0.6s;
    transform: translateY(10px);
  }
  .fv .section-content.show {
    opacity: 1;
    transform: translateY(0);
  }
  .fv img {
    display: block;
    margin: auto;
  }
  .fv .logo {
    width: 600px;
    margin-bottom: 30px;
  }
  .fv .info {
    width: 672px;
  }
  
  /* NEWS */
  .news .section-content {
    display: flex;
    justify-content: space-between;
  }
  .news .section_color {
    background-color: #535852;
    opacity: 0.9;
    mix-blend-mode: multiply;
  }
  .news .section-head {
    margin-bottom: 24px;
    text-align: left;
  }
  
  .section-block_news {
    width: 52.8%;
  }
  
  .section-block_x {
    width: 42.6%;
  }
  
  .twitter-timeline {
    width: 100%;
    height: 450px;
  }
  
  .news-box {
    background-color: #FFFEF8;
    border-radius: 8px;
    padding: 40px 25px;
  }
  .news-box li {
    border-bottom: dotted 1px #6C6B6B;
  }
  .news-box li .date {
    font-size: 16px;
    width: 108px;
    font-weight: 300;
    display: block;
  }
  .news-box li .date span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6em;
    display: inline-block;
  }
  .news-box li .news-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6em;
  }
  .news-box li a {
    color: #3E3E3E;
    padding: 20px 0;
    display: flex;
    align-items: center;
    transition: 0.3s;
  }
  .news-box li a:hover {
    opacity: 0.7;
  }

  /* STORY */

  .story {
    background-image: url("images/story-back.jpg");
    background-size: cover;
  }
  .story .movie {
    text-align: center;
    margin-bottom: 40px;
  }
  .story .movie iframe {
    max-width: 100%;
  }
  
  /* CAST */

  .cast {
    position: relative;
    z-index: 10;
  }
  .cast .section_color {
    background-color: #0B8084;
    opacity: 0.26;
  }
  
  .cast-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
   justify-content: center;
  }
  .cast-box .cast-item {
    width: 28.8%;
    margin-right: 6.8%;
    margin-bottom: 40px;
    position: relative;
  }
  .cast-box .cast-item:nth-child(3n) {
    margin-right: 0;
  }
  .cast-box .cast-item__img {
    width: 100%;
    height: 460px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
  }
  .cast-box .cast-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s;
    position: relative;
    z-index: 1;
  }
  .cast-box .cast-item__img::before {
    content: "";
    background-image: url("images/zoom.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    z-index: 2;
  }
  .cast-box .cast-item:hover .cast-item__img img {
    transform: scale(1.08);
  }
  .cast-box .cast-item .cast-name {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
  }
  .cast-box .cast-item .cast-name span {
    font-size: 14px;
    font-weight: 300;
    display: block;
    margin-top: 10px;
  }
.cast-box .cast-item .cast-name i {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
 font-style: normal;
  }
  
  .modal-switch {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 10;
    cursor: pointer;
  }
  
  .cast-modal {
    position: fixed;
    display: none;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  .cast-modal .modal-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 4vw 40px;
  }
  .cast-modal .modal-back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    cursor: pointer;
  }
  .cast-modal .modal-content {
    padding: 60px;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    position: relative;
    z-index: 2;
    max-height: calc(100vh - 140px);
    overflow: scroll;
  }
  .cast-modal .modal-content .modal-img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: auto;
    margin-bottom: 40px;
  }
  .cast-modal .modal-content .modal-close {
    position: absolute;
    width: 32px;
    top: 24px;
    right: 24px;
    cursor: pointer;
    transition: 0.2s;
  }
  .cast-modal .modal-content .modal-close:hover {
    opacity: 0.7;
  }
  .cast-modal .modal-content p {
    margin-top: 20px;
  }
  
  .cast-item.modal-open .cast-modal {
    display: block;
  }
  
  *:not(.modal-content)::-webkit-scrollbar {
    display: none;
  }

.cast-modal .modal-content a img {
 max-width: 10%;
  }
  
  /* INFORMATION */

  .info .section_color {
    background-color: #F5FF7E;
    opacity: 0.26;
  }
  
  .info-head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    color: #fff;
    font-size: 20px;
    line-height: 36px;
    padding: 0 28px;
    background-color: #333333;
    margin-bottom: 10px;
    margin-top: 30px;
  }

  /* フッター */
  
  footer {
    background-color: #000000;
    padding: 30px 60px;
  }
  footer p {
    text-align: center;
    font-size: 16px;
    line-height: 1.5em;
    color: #fff;
  }
  
  .sample .section_color {
    background-color: #C500DE;
    opacity: 0.26;
  }
  
  /* SPレイアウト */
  @media screen and (max-width: 1080px) {
    header {
      padding: 0;
    }
    header .header-content {
      opacity: 0;
      pointer-events: none;
      transition: 0.3s;
      display: block;
      position: absolute;
      width: 100%;
      max-width: 100%;
      background-color: #000000;
      top: 0;
      left: 0;
      padding-top: 90px;
      padding-bottom: 40px;
    }
    header .header-content ul {
      display: block;
    }
    header .header-content ul li {
      width: 100%;
    }
    header .header-content ul li a {
      font-size: 22px;
      line-height: 2.8em;
      margin-bottom: 16px;
      text-align: center;
      width: 100%;
      display: block;
    }
    header .header-content ul li a:last-child {
      margin-bottom: 0;
    }
    header .header__logo {
      display: none;
    }
    header .header__burger {
      display: block;
      position: absolute;
      z-index: 120;
      right: 0;
      top: 10px;
      width: 60px;
      height: 60px;
    }
    header .header__burger span {
      position: absolute;
      display: block;
      width: 26px;
      height: 3px;
      background-color: #fff;
      left: 17px;
      transition: 0.4s;
    }
    header .header__burger span:nth-child(1) {
      top: 20px;
    }
    header .header__burger span:nth-child(2) {
      top: 28px;
    }
    header .header__burger span:nth-child(3) {
      top: 36px;
    }
    header.open span:nth-child(1) {
      transform: rotate(135deg);
      top: 28px;
    }
    header.open span:nth-child(2) {
      opacity: 0;
    }
    header.open span:nth-child(3) {
      transform: rotate(-135deg);
      top: 28px;
    }
    header.open .header-content {
      opacity: 1;
      pointer-events: auto;
    }
    .header_initial {
      display: none;
    }
    .header_fixed {
      height: 80px;
      padding: 0;
      opacity: 1;
      transform: translateY(0);
    }
    .header_fixed .title-text {
      display: block;
      width: 228px;
      position: absolute;
      left: 4vw;
      top: 10px;
    }
    .fv {
      margin-top: 40px;
    }
    .fv .logo {
      max-width: 500px;
      width: 100%;
    }
  }

  @media screen and (max-width: 768px) {
    section {
      padding: 80px 4vw;
    }
   .read{
    font-size: 80%;
   }

.read span{
 font-size: 220%;
 line-height: 1.2;
 padding: 0.4em 0.4em 0.2em;
}
   .read br{
 display:block;
}
   h4{
 margin:1.75em auto;
}
    .section-head {
      font-size: min(9.6vw, 36px);
    }
    .text-normal {
      font-size: 15px;
    }
    .text-em {
      font-size: 24px;
    }
    .ticket-button {
      font-size: 18px;
      max-width: 400px;
      width: 100%;
    }
    .fv .info {
      width: 100%;
      max-width: 660px;
    }
    .news .section-content {
      display: block;
    }
    .news .section-head {
      margin-bottom: 24px;
      text-align: center;
    }
    .news-box li .date {
      width: 96px;
    }
    .section-block_news {
      width: 100%;
      margin-bottom: 40px;
    }
    .section-block_x {
      width: 100%;
      max-width: 600px;
      margin: auto;
    }
    .cast-box {
      display: block;
    }
    .cast-box .cast-item {
      width: 100%;
      margin-right: 0;
      margin-bottom: 40px;
    }
    .cast-box .cast-item__img {
      width: 100%;
      /*height: 360px;*/
      max-width: 320px;
      margin: auto;
      margin-bottom: 16px;
    }
    .cast-box .cast-item:hover .cast-item__img img {
      transform: scale(1);
    }
    .cast-box .cast-item .cast-name {
      font-size: 20px;
    }
    .cast-box .cast-item .cast-name span {
      font-size: 14px;
    }
    .cast-modal .modal-content {
      padding: 60px 4vw;
    }
    .cast-modal .modal-content .modal-close {
      width: 24px;
      top: 16px;
      right: 4vw;
    }
   .cast-modal .modal-content a img {
 max-width: 12.5%;
  }
    footer {
      padding: 30px 4vw;
    }
  }