@charset "UTF-8";
/************************************************

@PC - style.css v5.0.0

(c) ULM Co.,Ltd. - https://www.ulm-design.com
************************************************/
/* デフォルトフォント */
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

.kerning {
  letter-spacing: -0.05em;
  padding: 0 5px;
}

/* --------------------

#top

-------------------- */
#top {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 960px) {
  #top {
    min-height: auto;
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  #top {
    min-height: 100vh;
    min-width: 1024px;
    overflow: hidden;
    padding: 0;
  }
}

/* ページ全体リビール（プリローダー後に .reveal-started で開始） */
.page-reveal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
.page-reveal-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  transform: translateY(0);
  animation: top-reveal-slide 1.2s ease 0s forwards;
  animation-play-state: paused;
}
.page-reveal-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(143, 0, 0, 0.6);
  z-index: 1;
  transform: translateY(0);
  animation: top-reveal-slide 1.2s ease 0.4s forwards;
  animation-play-state: paused;
}
.reveal-started .page-reveal-overlay::before, .reveal-started .page-reveal-overlay::after {
  animation-play-state: running;
}

/* トップリビール（中身の配置・背景。オーバーレイは .page-reveal-overlay に移管） */
.cover-wrap .top-reveal-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: auto;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .cover-wrap .top-reveal-wrap {
    position: relative;
    min-height: 0;
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .cover-wrap .top-reveal-wrap {
    height: 100%;
    min-height: 100vh;
    /* PC用背景画像を top-main の img と同じアニメーションで表示 */
  }
  .cover-wrap .top-reveal-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/top/main_pc.jpg") no-repeat bottom center fixed;
    background-size: cover;
    z-index: 0;
    opacity: 0;
    transform: scale(0.8);
    animation: top-reveal-img 1.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s forwards;
    animation-play-state: paused;
  }
  .reveal-started .cover-wrap .top-reveal-wrap::before {
    animation-play-state: running;
  }
}

@keyframes top-reveal-slide {
  to {
    transform: translateY(100%);
  }
}
.cover-wrap .top-reveal-wrap img {
  opacity: 0;
  transform: scale(0.8);
  animation: top-reveal-img 1.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.6s forwards;
  animation-play-state: paused;
}
.reveal-started .cover-wrap .top-reveal-wrap img {
  animation-play-state: running;
}

@keyframes top-reveal-img {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cover-wrap .top-reveal-wrap .top-container {
  color: #fff;
  z-index: 1;
  opacity: 0;
  transform: translateX(-40px);
  animation: top-reveal-content 1.2s ease 0.9s forwards;
  animation-play-state: paused;
}
@media screen and (min-width: 960px) {
  .cover-wrap .top-reveal-wrap .top-container {
    transform: translate(-40px, -50%);
    animation-name: top-reveal-content-pc;
  }
}
.reveal-started .cover-wrap .top-reveal-wrap .top-container {
  animation-play-state: running;
}

@keyframes top-reveal-content {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes top-reveal-content-pc {
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.cover-wrap .top-reveal-wrap .lead,
.cover-wrap .top-reveal-wrap .roadshow,
.cover-wrap .top-reveal-wrap .sns-link-pc {
  z-index: 1;
  opacity: 0;
  animation: top-reveal-content 1.2s ease 0.9s forwards;
  animation-play-state: paused;
}
.reveal-started .cover-wrap .top-reveal-wrap .lead,
.reveal-started .cover-wrap .top-reveal-wrap .roadshow,
.reveal-started .cover-wrap .top-reveal-wrap .sns-link-pc {
  animation-play-state: running;
}

.top-container {
  width: 90%;
  margin: 0 auto;
  max-width: 620px;
  position: absolute;
  top: 12vw;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 1s linear;
}
@media screen and (min-width: 960px) {
  .top-container {
    top: 50%;
    left: 0;
    right: 50%;
    margin: 0 auto;
    width: 45%;
    padding: 0;
    max-width: 520px;
    transform: translateY(-50%);
  }
}

.lead {
  position: absolute;
  bottom: 5vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  max-width: 520px;
}

@media screen and (min-width: 960px) {
  .lead {
    width: 80%;
    max-width: 830px;
  }
}
/* lead0: #topの上下中央に配置 */
.lead0 {
  position: absolute;
  top: 28%;
  left: 18vw;
  width: auto;
  max-width: 7%;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .lead0 {
    max-width: 4%;
  }
}

/* lead1: lead2の上に中央寄せで配置 */
.lead1 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20vw;
  width: 60%;
  max-width: 500px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .lead1 {
    bottom: 5vw;
    width: 50%;
    max-width: 470px;
  }
}

/* lead2: トップ最下部へ中央寄せで配置 */
.lead2 {
  position: absolute;
  bottom: 2vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  max-width: 520px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .lead2 {
    width: 55%;
    max-width: 980px;
    bottom: 1vw;
  }
}

/* roadshow: lead1とlead2の間に中央配置（SPのみ） */
@media screen and (max-width: 960px) {
  .roadshow {
    position: absolute;
    bottom: 15vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 61%;
    max-width: 400px;
    text-align: center;
  }
}

.top-main {
  position: relative;
}

.logo {
  position: absolute;
  top: 90%;
  right: 0;
  left: 0;
  width: 87%;
  margin: 0 auto;
  transform: scale(1.1) rotate(10deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.03, 0.88, 0.35, 1.26);
}
@media screen and (min-width: 960px) {
  .logo {
    width: 40%;
    max-width: 800px;
    margin: 0 auto;
  }
}

.logo.show {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.name {
  position: absolute;
  top: 4vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .name {
    max-width: 700px;
    top: 2vw;
  }
}

.x-link-sp {
  position: relative;
  padding: 50px 0 10px;
}

.t-ttl {
  color: #fff;
  text-align: center;
  margin: 0 0 10px;
}

.sns-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.sns-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  box-sizing: border-box;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 0 0 rgba(255, 105, 180, 0.95)) drop-shadow(-2px 0 0 rgba(0, 200, 100, 0.95));
  text-shadow: 2px 0 0 rgba(255, 105, 180, 0.95), -2px 0 0 rgba(0, 200, 100, 0.95);
}
.sns-link a i {
  line-height: 1;
  display: block;
  vertical-align: middle;
}
.sns-link a:hover {
  opacity: 1;
  transform: scale(1.1);
  border-color: #fff;
}
@media screen and (max-width: 960px) {
  .sns-link {
    position: static;
    margin: 0 auto;
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .sns-link {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 960px) {
  .sns-link-pc {
    position: absolute;
    right: 2.5vw;
    top: 1vw;
  }
}

.top-link-buttons {
  width: min(74%, 250px);
  margin: 40px auto 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 960px) {
  .top-link-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.top-link-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  filter: drop-shadow(1px 0 0 rgba(255, 105, 180, 0.95)) drop-shadow(-2px 0 0 rgba(0, 200, 100, 0.95));
  text-shadow: 1px 0 0 rgba(255, 0, 255, 0.85), -1px 0 0 rgba(0, 255, 255, 0.85);
}
@media screen and (min-width: 960px) {
  .top-link-button {
    flex: 1;
    max-width: 320px;
  }
}
.top-link-button:hover {
  opacity: 1;
  transform: scale(1.03);
  background: rgba(81, 0, 0, 0.08);
}

.top-link-button-ja {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.top-link-button-en {
  margin-top: 4px;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.rs {
  width: 65%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -40px;
}

.btn {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 100%;
  margin: auto;
  padding: 1.5rem 4rem;
  font-weight: bold;
  border: 2px solid #fdf050;
  background: #fdf050;
  font-size: 1.3rem;
  color: #000;
  transition: 0.5s;
}
.btn:hover {
  color: #0860aa;
  background: #fff;
}

.logo,
.rs {
  opacity: 0;
}

.theater-fix {
  position: fixed;
  bottom: 2vw;
  left: 2vw;
  width: 90px;
  z-index: 3;
}
.theater-fix a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 960px) {
  .theater-fix {
    width: 150px;
  }
}

#photo {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
#photo img {
  width: 100%;
}

.sub {
  width: 50%;
}
@media screen and (min-width: 960px) {
  .sub {
    width: 33.3%;
  }
}

#photo-sub {
  display: block;
  width: 100%;
}
#photo-sub .sub {
  width: 100% !important;
}
#photo-sub img {
  width: 100%;
}

.top-info {
  background: #bc7d6e;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 5px 0 5px;
  font-size: 13px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
.top-info span {
  font-size: 23px;
  display: inline-block;
  padding: 0.5em 0;
  letter-spacing: 0;
}
@media screen and (min-width: 960px) {
  .top-info span {
    font-size: 30px;
  }
}
@media screen and (min-width: 960px) {
  .top-info {
    position: absolute;
    bottom: 0;
    font-size: 16px;
    padding: 0.5em 0;
    background: rgba(188, 125, 110, 0.8509803922);
  }
}

.top-info-link {
  width: 90%;
  margin: 10px auto 5px;
  line-height: 1.5;
}
.top-info-link a {
  background: #000;
  color: #fff;
  padding: 5px;
  display: block;
}
.top-info-link a:hover {
  color: #bc7d6e;
}
@media screen and (min-width: 960px) {
  .top-info-link a {
    display: inline-block;
  }
}

/*-------------------------------

#intro

-------------------------------*/
#intro {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  #intro {
    margin: 0 auto;
  }
}

/* intro 横ループギャラリー（intro-innerの上下） */
.intro-gallery {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .intro-gallery {
    padding: 30px 0;
  }
}

.intro-gallery-track {
  display: flex;
  width: max-content;
  animation: intro-gallery-loop 40s linear infinite;
}
.intro-gallery-track--reverse {
  animation-direction: reverse;
}

.intro-gallery-item {
  flex-shrink: 0;
  width: 180px;
  margin-right: 16px;
}
.intro-gallery-item img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
@media screen and (min-width: 960px) {
  .intro-gallery-item {
    width: 280px;
    margin-right: 24px;
  }
  .intro-gallery-item img {
    height: 180px;
  }
}

@keyframes intro-gallery-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.intro-inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .intro-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 20px;
  }
}

/* 見出し .ttl 用 グリッチエフェクト（RGBスプリット + 背景ブラー） */
.contents .ttl-glitch-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  z-index: 0;
}
.contents .ttl-glitch-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(8px) brightness(35%);
  content: "";
  z-index: -1;
}

.ttl {
  position: relative;
  display: block;
  padding: 1.4rem 0;
  margin-bottom: 0.2rem;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  text-shadow: 3px 0 0 rgba(255, 0, 255, 0.85), -3px 0 0 rgba(0, 255, 255, 0.85);
}
@media screen and (min-width: 960px) {
  .ttl {
    font-size: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.ttl-en {
  display: block;
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: 1em;
  opacity: 0.9;
}
@media screen and (min-width: 960px) {
  .ttl-en {
    margin-top: 1.5em;
  }
}

#intro .ttl {
  margin: 0 auto 12%;
  font-family: yu-mincho-pr6, YuMincho, "游明朝", "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 1.5em;
  font-weight: normal;
  letter-spacing: 8px;
  color: #000;
}
@media screen and (min-width: 960px) {
  #intro .ttl {
    font-size: 2em;
    margin: 0 auto 30px;
    width: 500px;
  }
}

.intro-photo {
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
}
.intro-main-photo {
  position: relative;
}

.photo-inner img {
  vertical-align: bottom;
}

.intro-lead {
  width: 95%;
  margin: 30px auto 25px;
  z-index: 2;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.intro-lead span {
  font-size: 1.35em;
  line-height: 1.4;
  display: block;
  padding: 0 0 15px 0;
}
@media screen and (min-width: 960px) {
  .intro-lead span {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 960px) {
  .intro-lead {
    max-width: 980px;
    margin: 70px auto 30px;
  }
}

.intro-lead-neon {
  color: #fff;
  text-shadow: 3px 0 0 rgba(255, 0, 255, 0.8), -3px 0 0 rgba(0, 255, 255, 0.8);
}

.intro-lead-body {
  color: #fff;
  font-weight: bold;
  line-height: 2;
  margin: 0;
  font-size: 1.1rem;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .intro-lead-body {
    font-size: 1.3rem;
  }
}

.intro-lead-txt {
  color: #fff;
  font-weight: normal;
  text-align: center;
  font-size: 1.2rem;
  margin: 30px auto 20px;
  line-height: 1.8;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
.intro-lead-txt--mincho {
  font-family: yu-mincho-pr6, YuMincho, "游明朝", "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (min-width: 960px) {
  .intro-lead-txt {
    font-size: 1.8rem;
  }
}

.intro-lead-subtxt {
  color: #bc7e6f;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .intro-lead-subtxt {
    font-size: 1.5rem;
  }
}

.intro-txt:first-of-type {
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .intro-txt:first-of-type {
    margin-bottom: 60px;
  }
}

.intro-headline0 {
  margin: 40px auto 30px;
  width: 93%;
  max-width: 330px;
}
@media screen and (min-width: 960px) {
  .intro-headline0 {
    max-width: 800px;
    margin: 60px auto 40px;
  }
}

.intro-headline1 {
  width: 75%;
  max-width: 330px;
  margin: 30px auto;
}
@media screen and (min-width: 960px) {
  .intro-headline1 {
    max-width: 730px;
    margin: 50px auto 40px;
  }
}

.intro-headline2 {
  width: 330px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 960px) {
  .intro-headline2 {
    width: 590px;
    margin: 50px auto 40px;
  }
}

.intro-txt {
  color: #fff;
  text-align: justify;
  letter-spacing: 1.3px;
  line-height: 2em;
  width: 90%;
  max-width: 980px;
  margin: 20px auto;
  text-align: justify;
}
.intro-txt p {
  line-height: 2;
  margin: 0 auto 10px;
}
@media screen and (min-width: 960px) {
  .intro-txt {
    font-size: 16px;
    line-height: 2em;
    text-align: justify;
    margin: 50px auto;
  }
}

.i-photo {
  position: relative;
  height: 50vh;
  min-height: 470px;
}
@media screen and (min-width: 960px) {
  .i-photo {
    height: 40vh;
    max-width: 1280px;
    margin: 0 auto;
  }
}

#intro .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 30px;
}
@media screen and (min-width: 960px) {
  #intro .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 70px;
  }
}

.intro-prev, .intro-next {
  position: absolute;
  width: 35px;
  top: 55%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #fff;
}
@media screen and (min-width: 960px) {
  .intro-prev, .intro-next {
    top: 60%;
    margin: 280px;
  }
}

.intro-prev {
  left: 2px;
}

.intro-next {
  right: 2px;
}

.intro-prev.swiper-button-disabled, .intro-next.swiper-button-disabled {
  opacity: 0.1;
}

/*-------------------------------

#cinema-format-section（ラージフォーマット紹介）

-------------------------------*/
#cinema-format-section.cinema-format-section {
  width: 100%;
  position: relative;
}
#cinema-format-section.cinema-format-section img {
  width: 60%;
  height: auto;
}

.cinema-format-inner {
  width: 100%;
  box-sizing: border-box;
  padding: 3% 7% 7% 7%;
  overflow: hidden;
  z-index: 10;
}

.cinema-format-lead {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
@media screen and (min-width: 960px) {
  .cinema-format-lead {
    font-size: 3.3rem;
    margin: 40px 0;
  }
}

.format-cards-row {
  width: 100%;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}

.format-card {
  width: 33%;
  float: left;
  margin-right: 0.5%;
  border: 1px solid #fff;
  box-sizing: border-box;
  padding: 3%;
}
.format-card:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .format-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 5%;
  }
  .format-card:last-child {
    margin-bottom: 0;
  }
}

.format-card-img-top {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
  box-sizing: border-box;
}
.format-card-img-top img {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: top;
  box-sizing: border-box;
}

.format-card-img-wrap img {
  display: block;
  width: 60%;
  margin: 15px auto 0;
}

.format-card-ttl {
  width: 100%;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  color: #ca7f72;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  filter: drop-shadow(3px 3px 5px #000);
  margin: 0 0 20px;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
  border-bottom: 1px solid #fff;
}

.format-card-ttl-sub {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.format-card-label {
  width: 100%;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  box-sizing: border-box;
  padding: 2% 1%;
  text-align: center;
  margin-bottom: 20px;
}

.format-card-body {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin: 0 0 50px;
  text-align: justify;
}

.format-note-list {
  margin: 0 0 5px;
  color: #fff;
  font-size: x-small;
  line-height: 1.6;
}
.format-note-list dt {
  float: left;
  margin-right: 0.5em;
}
.format-note-list dd {
  margin: 0;
  overflow: hidden;
}

.dash {
  letter-spacing: -0.2em;
  display: inline-block;
  padding: 0 5px 0 2px;
}

/*-------------------------------

#news

-------------------------------*/
#news {
  padding: 50px 0;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #news {
    padding: 50px 0;
  }
}

/* SP では center と Swiper の translate が競合しやすいため、中央寄せは PC のみ */
@media screen and (min-width: 960px) {
  #news .swiper-wrapper {
    justify-content: center;
  }
}

#news .swiper-slide {
  max-width: 600px;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  #news .swiper-slide {
    max-width: 100%;
  }
}

#news-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

#news .contents-inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (min-width: 960px) {
  #news .contents-inner {
    padding: 50px 10px;
    max-width: 1280px;
  }
}

#news .ttl {
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #news .ttl {
    margin: 0 auto 40px;
  }
}

.news-feed {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.news-feed-list {
  padding: 20px 0;
}
.news-txt-wrapper {
  width: 100%;
}

.news-date {
  color: #fff;
  text-align: justify;
  margin: 0 0 5px 0;
  font-size: 13px;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

.news_thumb {
  width: 100%;
  margin: 0 auto 20px;
}

.news_thumb a {
  width: 100%;
  height: 100%;
  display: block;
}

.news_thumb img {
  height: auto;
  width: 100%;
  top: 0;
  border: 1px solid #2f2f2f;
  transition: 0.3s all;
}

.news_thumb:hover img {
  opacity: 0.7;
  cursor: pointer;
}

.news-txt-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-txt-wrapper a:hover {
  cursor: pointer;
}

.newstxt {
  font-size: 14px;
  text-align: justify;
  color: #fff;
  line-height: 2em;
  text-decoration: underline;
}
.newstxt:hover {
  color: #ca7f72;
}

.more-btn {
  width: 180px;
  margin: 0 auto;
  color: #fff;
  width: 150px;
  margin: 30px auto 0;
  text-align: center;
}
.more-btn a {
  color: #fff;
  display: block;
  padding: 13px 0;
  border: 1px solid #fff;
  font-size: small;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
.more-btn a:hover {
  color: #ca7f72;
  border: 1px solid #ca7f72;
}

@media only screen and (max-width: 750px) {
  .news_thumb {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.summary {
  width: 90%;
  margin: 30px auto 0;
  padding: 60px 20px;
  border: 1px solid #f14360;
  background: rgba(241, 67, 96, 0.0784313725);
}
@media screen and (min-width: 960px) {
  .summary {
    width: 80%;
    margin: 60px auto;
  }
}

.guide {
  text-align: center;
  padding: 40px 0 0;
  cursor: pointer;
  width: 80%;
  margin: 0 auto;
  line-height: 1.8;
}
.guide a {
  position: relative;
  color: #009fde;
  cursor: pointer;
  text-decoration: underline;
  transition: 0.5s;
}
.guide a:hover {
  color: #fff;
}

.guide2 {
  text-align: center;
  padding: 20px 0 40px;
  cursor: pointer;
}
.guide2 a {
  position: relative;
  display: block;
  padding: 10px 0;
  font-size: 20px;
  font-weight: bold;
  color: #ff3f62 !important;
  cursor: pointer;
  text-decoration: underline;
  transition: 0.5s;
}
.guide2 a:hover {
  color: #fff !important;
}

.filmarks {
  padding: 0 0 20px 0;
  width: 75%;
  margin: 0 auto;
}
.filmarks a {
  transition: 0.5s;
}
.filmarks a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .filmarks {
    width: 300px;
  }
}

.theater {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .theater {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    max-width: 600px;
  }
}

.stage-greeting {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 30px auto;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .stage-greeting {
    margin: 40px auto;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.stage-greeting a {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theater-link {
  background-color: transparent;
  border: none;
  min-width: 280px;
  min-height: 60px;
  padding: 1.2rem 4.5rem;
}
@media screen and (max-width: 960px) {
  .theater-link {
    min-width: 260px;
    min-height: 50px;
    padding: 1rem 4rem;
  }
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}

a.btn-svg {
  font-weight: 700;
  line-height: 54px;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  a.btn-svg {
    width: 260px;
    max-width: calc(100% - 40px);
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (min-width: 960px) {
  a.btn-svg {
    width: 280px;
    height: 60px;
    line-height: 60px;
  }
}

a.btn-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.btn-svg svg rect {
  width: 200px;
  height: 50px;
}
@media screen and (max-width: 960px) {
  a.btn-svg svg rect {
    width: 256px;
    height: 46px;
  }
}
@media screen and (min-width: 960px) {
  a.btn-svg svg rect {
    width: 276px;
    height: 56px;
  }
}

a.btn-svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}
@media screen and (max-width: 960px) {
  a.btn-svg svg rect {
    width: 256px;
    height: 46px;
    stroke-dasharray: 256px, 16px;
    stroke-dashoffset: 60px;
  }
}
@media screen and (min-width: 960px) {
  a.btn-svg svg rect {
    width: 276px;
    height: 56px;
    stroke-dasharray: 276px, 16px;
    stroke-dashoffset: 70px;
  }
}

a.btn-svg:hover svg rect {
  stroke-dashoffset: 284px;
}
@media screen and (max-width: 960px) {
  a.btn-svg:hover svg rect {
    stroke-dashoffset: 272px;
  }
}
@media screen and (min-width: 960px) {
  a.btn-svg:hover svg rect {
    stroke-dashoffset: 292px;
  }
}

a.btn-svg span {
  color: #fff;
  position: relative;
  z-index: 1;
}

a.btn-svg:hover span {
  color: #000;
}

.theater-link span {
  position: relative;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}

.theater-link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.theater-link:hover span::after {
  right: -5px;
}

.event-link {
  background-color: #009fde;
  border: 1px solid #009fde;
}

.ticket-link {
  background: #ff3f62;
  border: 1px solid #ff3f62;
}

.dvd-link {
  background: #FFF450;
  border: 1px solid #FFF450;
}

.tokuten-link {
  background: #FFF450;
  border: 1px solid #FFF450;
}

.top-news-link {
  background-color: transparent;
  border: none;
  min-width: 280px;
  min-height: 60px;
  padding: 1.2rem 4.5rem;
}
@media screen and (max-width: 960px) {
  .top-news-link {
    min-width: 260px;
    min-height: 50px;
    padding: 1rem 4rem;
  }
}

.top-news-link span {
  position: relative;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}

.top-news-link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.top-news-link:hover span::after {
  right: -5px;
}

.present-gift-link {
  position: relative;
  display: block;
  width: 70%;
  max-width: 320px;
  padding: 1em 3em;
  margin: 10px auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid currentColor;
  background: #1eb6ff;
  overflow: hidden;
  transition: color 0.25s ease;
  box-shadow: none;
}
.present-gift-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #000;
  transition: width 0.5s ease;
  z-index: 1;
}
.present-gift-link::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.present-gift-link span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding-right: 1.5rem;
  white-space: nowrap;
}
.present-gift-link:hover {
  color: #fff;
}
.present-gift-link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
@media screen and (max-width: 960px) {
  .present-gift-link {
    font-size: 18px;
    padding: 20px 70px;
    max-width: 400px;
  }
}

.goods-btn-stage {
  background: #E990D8;
  color: #000;
  border: 1px solid #E990D8;
}
.goods-btn-stage::before {
  background: #000;
}
.goods-btn-stage::after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.goods-btn-stage span {
  color: inherit;
}
.goods-btn-stage:hover {
  background: #E990D8;
  color: #fff;
}

.stage-greeting-link {
  position: relative;
  display: block;
  width: 70%;
  max-width: 320px;
  padding: 1em 3em;
  margin: 10px auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid currentColor;
  background: #FFF450;
  text-align: center;
  transition: color 0.25s ease;
  box-shadow: none;
}
.stage-greeting-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: #000;
  transition: width 0.5s ease;
  z-index: 1;
}
.stage-greeting-link::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.stage-greeting-link span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-right: 1.5rem;
  transition: color 0.3s ease-out;
}
.stage-greeting-link:hover {
  color: #fff;
}
.stage-greeting-link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
@media screen and (max-width: 960px) {
  .stage-greeting-link {
    font-size: 18px;
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
  }
}

.live-link {
  background: #08bbbb;
  border: 1px solid #08bbbb;
}

.intro-lead-txt {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.8;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
.intro-lead-txt--mincho {
  font-family: yu-mincho-pr6, YuMincho, "游明朝", "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (min-width: 960px) {
  .intro-lead-txt {
    font-size: 1.8rem;
  }
}

.intro-lead-subtxt {
  color: #bc7e6f;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .intro-lead-subtxt {
    font-size: 1.5rem;
  }
}

.intro-txt:first-of-type {
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .intro-txt:first-of-type {
    margin-bottom: 60px;
  }
}

.liveviewing-link {
  background: #9E76B4;
  border: 1px solid #9E76B4;
}

.bk-top-link {
  background: #fff;
  border: 1px solid #fff;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  font-weight: bold;
}
.bk-top-link:hover {
  opacity: 0.7;
}

.bk-top-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 3em 1em 2em;
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
  font-size: 1em;
}

.btn-container {
  position: relative;
  margin: 100px 0 0;
}
.btn-container a {
  color: #000;
  font-weight: bold;
  background: #fff;
  border: 1px solid #fff;
  width: 90%;
  max-width: 400px;
  padding: 1em;
  margin: 25px auto;
  display: block;
  text-align: center;
}
.btn-container a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 960px) {
  .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.news-prev, .news-next {
  position: absolute;
  width: 35px;
  top: 31%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news-prev {
  left: 2px;
}

.news-next {
  right: 2px;
}

.news-prev.swiper-button-disabled, .news-next.swiper-button-disabled {
  opacity: 0.1;
}

/*-------------------------------

#screening-format

-------------------------------*/
#screening-format {
  color: #fff;
  padding: 30px 0 60px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #screening-format {
    padding: 60px 0 110px;
  }
}

.screening-format-inner {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .screening-format-inner {
    text-align: center;
  }
}

#screening-format-ttl {
  margin: 30px auto;
}
@media screen and (min-width: 960px) {
  #screening-format-ttl {
    margin: 40px auto;
  }
}

.screening-format-subtitle {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 20px;
  color: #ca7f72;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .screening-format-subtitle {
    font-size: 24px;
    margin: 0 0 30px;
  }
}

.screening-format-heading {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin: 20px 0 30px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .screening-format-heading {
    font-size: 22px;
    margin: 30px 0 40px;
  }
}

.screening-format-item {
  margin: 0 0 40px;
}
@media screen and (min-width: 960px) {
  .screening-format-item {
    margin: 0 0 50px;
  }
}

.screening-format-item-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 15px;
  color: #ca7f72;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  .screening-format-item-title {
    font-size: 20px;
    margin: 0 0 20px;
  }
}

.screening-format-description {
  line-height: 1.8;
  color: #fff;
  text-align: justify;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .screening-format-description {
    font-size: 16px;
    line-height: 2;
  }
}

.screening-format-note {
  font-size: 12px;
  line-height: 1.8;
  color: #fff;
  text-align: justify;
  margin: 40px auto 0;
}
@media screen and (min-width: 960px) {
  .screening-format-note {
    font-size: 14px;
    margin: 50px auto 0;
  }
}

/*-------------------------------

#comment

-------------------------------*/
#comment {
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .comment-list {
    padding: 60px 0;
  }
}

#comment-ttl {
  margin: 30px auto;
}
@media screen and (min-width: 960px) {
  #comment-ttl {
    margin: 40px auto;
  }
}

.kana {
  font-size: 60%;
  color: #7b7b7b;
  margin-bottom: 0.5em;
  display: block;
  padding: 10px 0 0;
}
@media screen and (min-width: 960px) {
  .kana {
    display: inline-block;
    padding: 0 0 0 10px;
  }
  .kana.ep {
    padding: 0 10px 0 0;
  }
}

.contents-inner {
  position: relative;
  margin: 0 auto;
  padding: 5%;
  max-width: 1024px;
}

.comment-box {
  display: block;
}
@media screen and (min-width: 960px) {
  .comment-box {
    padding: 30px 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
  }
}

.comment-img {
  width: 70%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 960px) {
  .comment-img {
    width: 280px;
    margin: 0 30px 0 0;
  }
}

.comment-txt-box {
  -webkit-flex: 1;
  flex: 1;
}

.comment-box {
  padding: 30px 0;
}

.comment-name {
  margin: 0 0 0.5em;
  padding: 0 0 8px;
  color: #fff;
  font-size: 1.5em;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .comment-name {
    text-align: justify;
    border-bottom: 1px solid #4c4c4c;
  }
}

.comment-txt {
  padding: 0.5em 0;
  line-height: 2em;
  text-align: justify;
}

.comment-column-name {
  padding: 13px 0 0 0;
  font-size: 1.3em;
  text-align: center;
}
.comment-column-name span {
  display: block;
  padding: 5px 0 0 0;
}
.comment-column-name .ep {
  font-size: xx-small;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .comment-column-name .ep {
    font-size: 60%;
  }
}

#cast {
  height: 100%;
  padding: 60px 0;
}

#cast .ttl {
  width: 140px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #cast .ttl {
    width: 180px;
  }
}

#cast-box {
  margin: 0 auto 0;
}
@media screen and (min-width: 960px) {
  #cast-box {
    margin: 20px auto 0;
    width: 90%;
  }
}

#cast .box {
  width: 44%;
  margin: 0 10px 20px;
  position: relative;
}
@media screen and (min-width: 960px) {
  #cast .box {
    width: 20%;
    max-width: 340px;
    margin: 0 25px 20px;
  }
}

.comment-column {
  margin: 0 auto;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .comment-column {
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 960px) {
  .comment-column .box {
    width: calc(33.333% - 50px);
    max-width: 350px;
    margin: 0 25px 20px;
  }
}

.cast-txt {
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
  padding: 0 0 60px 0;
}
@media screen and (min-width: 960px) {
  .cast-txt {
    float: right;
    width: 65%;
    padding: 0;
  }
}

.box {
  width: 44%;
  margin: 10px 10px 40px;
  transition: opacity 0.7s;
}
@media screen and (min-width: 960px) {
  .box {
    width: 33%;
    max-width: 350px;
  }
}

.scale img {
  transition: transform 0.5s linear;
}

.scale img:hover {
  opacity: 0.8;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
}

.cast-photo {
  width: 70%;
  max-width: 300px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 960px) {
  .cast-photo {
    width: 250px;
    float: left;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 9;
}
@media screen and (min-width: 960px) {
  .modal-overlay {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

.modal-open:hover {
  cursor: pointer;
}

.modal-content {
  position: fixed;
  display: none;
  z-index: 999;
  margin: 10px;
  padding: 35px;
  border-radius: 2px;
  height: auto;
  margin-top: 100px !important;
}
@media screen and (min-width: 960px) {
  .modal-content {
    margin: 10px;
    padding: 45px;
    border-radius: 2px;
    width: 90%;
    width: 900px;
    height: 500px;
    overflow: auto;
    margin-top: 100px;
    z-index: 10;
  }
}

.cast-name {
  font-size: 23px;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .cast-name {
    padding: 10px 0 !important;
    border-bottom: 1px solid #e60012;
  }
}

.role {
  margin: 10px 0;
}
@media screen and (min-width: 960px) {
  .role {
    margin: 10px 0;
  }
}

.comment-block {
  padding: 0 0 10px 0;
}

.comment-headline {
  margin: 10px 0;
  border-bottom: 1px solid #4c4c4c;
}
.comment-headline p {
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .comment-headline {
    margin: 10px 0;
  }
}

.role p {
  color: #7b7b7b !important;
  text-shadow: none !important;
  text-align: center !important;
}
@media screen and (min-width: 960px) {
  .role p {
    margin-bottom: 0;
    color: #fff;
    text-shadow: none;
    text-align: justify !important;
  }
}

.modal-content p {
  word-break: break-word;
  text-align: justify;
  color: #fff;
  text-align: justify;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.cast-name span {
  font-size: 15px;
  display: block;
  padding: 8px 0 0 0;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 35px;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .modal-close {
    top: 5px;
    right: 10px;
  }
}

.modal-close:hover {
  cursor: pointer;
}

.modal-content h2 {
  text-align: left !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #c00f18;
  margin: 0 0 10px 0;
}

#modal0, #modal1, #modal2, #modal3, #modal4, #modal5, #modal6, #modal7 {
  width: 95% !important;
  height: 100vh;
  overflow-y: auto;
}
@media screen and (min-width: 960px) {
  #modal0, #modal1, #modal2, #modal3, #modal4, #modal5, #modal6, #modal7 {
    width: 900px !important;
    height: auto;
    overflow: auto;
    margin-top: 0px;
  }
}

.comment-btn {
  position: relative;
  color: #fff;
  display: block;
  text-align: center;
  padding: 13px 0;
  margin: 20px 0 0 0;
  border: 1px solid #fff;
  font-size: small;
}
.comment-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.comment-btn:hover {
  background: #fff;
  color: #000;
}

.comment-btn:hover:after {
  right: 1.4rem;
}

/*-------------------------------

#movie

-------------------------------*/
#trailer {
  padding: 0 0 50px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
#trailer #movie-nav {
  justify-content: center;
}
@media screen and (min-width: 960px) {
  #trailer {
    padding: 30px 0;
  }
}

@media screen and (min-width: 960px) {
  #trailer .ttl {
    margin: 0 auto 30px;
  }
}

.pc-modal-movie, .pc {
  display: none;
}

.sp {
  display: block;
}

#movie-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
#movie-container.swiper-container-horizontal {
  opacity: 1;
}

.movie-thumb-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid #eee;
}
.movie-thumb-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.movie-thumb-list li {
  width: 100%;
  padding: 0 10px;
}

.movie-cap {
  padding: 15px 0 5px;
  text-align: center;
  color: #d67313;
  font-size: 16px;
  font-weight: bold;
}

.play-icon {
  color: #e60027;
  width: 52px;
  height: 58px;
  font-size: 60px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  display: block;
  line-height: 1em;
}

.movie-thumb-box:hover .play-icon {
  opacity: 0.8;
}

.movie-thumb-list .slider-arrow {
  position: absolute;
  top: 50%;
  height: 60px;
  margin-top: -50px;
  color: #aaa;
  line-height: 36px;
  font-size: 28px;
  cursor: pointer;
  width: 30px;
  z-index: 10;
}
.movie-thumb-list .slider-arrow img {
  width: 100%;
}
.movie-thumb-list .slider-prev {
  left: 0;
}
.movie-thumb-list .slider-next {
  right: 0;
}

#trailer-play {
  padding: 30px;
}
#trailer-play a {
  transition: opacity 0.2s ease;
  opacity: 0.7;
}
#trailer-play a:hover {
  opacity: 1;
}

.btn-container li {
  position: relative;
  border: 1px solid #7f1e1e;
  border-radius: 50px;
  margin: 0 0 10px;
  padding: 7px 15px;
  text-align: center;
}
.btn-container li.new::after {
  content: "New";
  font-size: 0.8em;
  background: #7f1e1e;
  position: absolute;
  top: -4px;
  left: -4px;
  padding: 2px;
}
.btn-container li a {
  display: block;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.btn-container li a:hover {
  color: #7f1e1e;
}

.swiper-container {
  padding: 0 0 20px;
}

.swiper-pagination-bullet {
  opacity: 0.5;
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.screen-container {
  width: 85%;
  margin: 0 auto;
  border: 1px solid #fff;
}
@media screen and (min-width: 960px) {
  .screen-container {
    width: 85%;
    max-width: 900px;
  }
}

#movie-nav {
  width: 88%;
  margin: 10px auto 0;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  #movie-nav {
    max-width: 930px;
    margin: 20px auto 40px;
  }
}

.movie-nav-box {
  width: 45.5% !important;
  border: solid 1px #fff;
  margin: 0.8% 1.5%;
  text-align: center;
  cursor: pointer;
  background: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.movie-nav-box a {
  display: block;
  color: #fff;
  padding: 7px;
  font-size: 0.9em;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .movie-nav-box a {
    font-size: 0.9em;
    padding: 10px 5px;
  }
}
@media screen and (min-width: 960px) {
  .movie-nav-box {
    width: 45% !important;
    margin: 6px;
  }
  .movie-nav-box:hover a {
    color: #fff;
  }
}

.movie-nav-box.selected {
  background: #fff;
}
.movie-nav-box.selected a {
  color: #000;
  font-weight: bold;
}

#cboxOverlay {
  background: #000;
}

#footer {
  padding: 7% 3%;
  text-align: center;
}

@media screen and (min-width: 960px) {
  #footer {
    padding: 3% 0 0;
  }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-right-contents {
    margin: 0 auto;
  }
}
.billing {
  color: #fff;
  width: 95%;
  margin: 0 auto;
  padding: 0 0 60px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: 0.9rem;
}
.billing span {
  font-size: 0.6rem;
  display: block;
  margin: 20px 0;
}
@media screen and (min-width: 960px) {
  .billing {
    padding: 30px 0;
    margin: 0 auto 60px;
    width: 58%;
    max-width: 500px;
  }
}

.betheone-bnr-ttl {
  margin: 0 auto 30px;
}
@media screen and (min-width: 960px) {
  .betheone-bnr-ttl {
    margin: 0 auto 40px;
  }
}

.betheone-bnr {
  width: 90%;
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.betheone-bnr a {
  display: block;
  transition: opacity 0.3s;
}
.betheone-bnr a:hover {
  opacity: 0.8;
}
.betheone-bnr a img {
  border: 1px solid #333;
}
@media screen and (min-width: 960px) {
  .betheone-bnr {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 60px;
  }
}

.f-logo {
  width: 70%;
  margin: 10px auto 60px;
}
@media screen and (min-width: 960px) {
  .f-logo {
    width: 310px;
    bottom: 2vw;
    left: 2vw;
  }
}

.s-logo {
  width: 23%;
  margin: 60px auto;
}
@media screen and (min-width: 960px) {
  .s-logo {
    width: 80px;
    bottom: 2vw;
    left: 2vw;
  }
}

#sns-sp {
  width: 90%;
  margin: 0 auto;
}
#sns-sp li {
  margin: 15px 0;
}

#sns-pc {
  margin: 0 auto;
  position: absolute;
  top: 1vw;
  right: 1vw;
}
#sns-pc li {
  width: 100%;
  padding: 5px;
  max-width: 230px;
}

.tw-btn {
  display: block;
  max-width: 300px;
  background-color: rgba(0, 0, 0, 0.631372549);
  font-size: 15px;
  color: #fff;
  padding: 16px;
  text-align: center;
  transition: 0.4s;
  margin: 10px auto;
  border: 1px solid #6c6975;
}
.tw-btn:hover {
  color: #FD2E54;
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .tw-btn {
    font-size: 13px;
    max-width: 200px;
    margin: 3px;
    padding: 10px 16px;
  }
}

/*-------------------------------

ticket

-------------------------------*/
.detail-box {
  width: 90%;
  max-width: 980px;
  padding: 100px 0 0;
  margin: 0 auto;
  position: relative;
  color: #fff;
  z-index: 1;
}

.con-ttl {
  color: #00a0dd;
  letter-spacing: 5px;
  font-size: 42px;
  text-align: center;
  margin: 0 0 50px;
  font-style: italic;
  font-family: "Impact", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 960px) {
  .con-ttl {
    font-size: 55px;
    margin: 0 0 80px;
  }
}

.detail-box .date {
  font-size: 15px;
  font-weight: bold;
}

.detail-box .cat {
  color: #fff;
  display: inline-block;
  background: #000;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50px;
  right: 50px;
  transition: all 0.2s ease-out;
}

.detail-box .cat:hover {
  background: #000;
  color: #fff;
  cursor: pointer;
}

.detail-box .ttl {
  display: block;
  width: 100%;
  margin: 20px 0 30px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #fff;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.detail-box .ttl::before,
.detail-box .ttl::after {
  content: none;
}

.detail-box .ttl a {
  color: #333;
}

.detail-box .ttl a:hover {
  color: #009fde;
}

.txt-area {
  font-size: 16px;
  line-height: 1.8;
}

.txt-area p {
  margin: 0 0 1em;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .txt-area p {
    text-align: center;
  }
}

.txt-area a {
  color: #00a0dd;
}

.txt-area a:hover {
  text-decoration: underline;
}

.txt-area img,
.txt-area iframe {
  /* max-width: 100%;
  /* height: auto; */
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.subtitle {
  margin: 60px 0 0;
  color: #00a0dd;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .subtitle {
    font-size: 26px;
  }
}

.cc {
  padding: 20px 0;
  font-size: 10px;
  color: #fff;
}

.headline {
  width: 100%;
  font-size: 1.3rem;
  margin: 0 auto;
  padding: 0.5rem;
  letter-spacing: 2px;
  color: #000;
  background: #02a1dd;
  font-weight: 900;
}

.ttl2 {
  margin: 20px 0 30px;
  padding: 0 0 10px;
  font-weight: bold;
  font-size: 37px;
  line-height: 1.4;
  color: #00a2dd;
  text-align: center;
}

.poster {
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .poster {
    width: 500px;
    margin: 0 auto 50px;
  }
}

.info {
  border: 1px solid #00a2dd;
  margin: 0 0 40px;
  text-align: center;
}
.info p {
  text-align: center;
  width: 95%;
  margin: 1em auto;
}

@media all and (max-width: 768px) {
  #main {
    width: 100%;
    min-width: inherit;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-template-areas: "head" "left" "right" "foot";
    display: block;
  }
  #bg {
    position: fixed;
    height: 100%;
    min-height: 100vh;
  }
  #head-area {
    height: auto;
    margin: 0;
  }
  #left-area {
    position: relative;
    height: 130px;
  }
  #right-area {
    margin: 0;
    padding: 0 3%;
  }
  .head-img {
    width: 100%;
    max-width: 520px;
  }
  .link-btn {
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    /*    background: #000;*/
    margin: 0 auto;
    z-index: 1;
    transition: all 0.2s ease-out;
  }
  /*
    .link-btn:hover {
      color: #fff;
      background: #e71b0e;
    }
  */
  .detail-box {
    padding: 15vw 0 0;
  }
  .detail-box .date {
    font-size: 14px;
  }
  .detail-box .cat {
    font-size: 12px;
    top: 5vw;
    right: 5vw;
  }
  .detail-box .cat:hover {
    background: #ffe46d;
    color: #7b7b7a;
  }
  .detail-box .ttl {
    margin: 20px 0;
    padding: 0 0 5px;
    font-size: 20px;
  }
  .detail-box .ttl a:hover {
    color: #4e4949;
  }
  .txt-area {
    font-size: 14px;
  }
  .txt-area a:hover {
    text-decoration: underline;
  }
  .info {
    margin: 0 0 20px;
  }
  .ttl2 {
    font-size: 24px;
    margin: 40px 0 10px;
  }
}
/* PC */
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  #trailer {
    margin: 0 auto;
    padding: 60px 80px;
  }
  #trailer .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: none;
  }
  .trailer-prev,
  .trailer-next {
    display: none;
  }
  .movie-inner {
    width: 60%;
    margin: 0 auto;
  }
  .pc-modal-movie {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .lead-inner {
    height: 338px;
  }
  .p-ttl {
    width: 50%;
  }
  .play-btn {
    top: 45%;
  }
  table {
    max-width: 430px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1350px) {
  .roadshow {
    width: 8vw;
  }
}
/* present page */
.present-block strong {
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .present-block strong {
    font-size: 22px;
    line-height: 1.5;
  }
}

.present-sub {
  font-size: 65%;
}

.notes {
  font-size: 12px;
  line-height: 1.7;
  padding: 50px 0;
}
@media screen and (max-width: 960px) {
  .notes {
    font-size: 11px;
  }
}

.con-link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 20px auto;
  padding: 0.6em 2.6em 0.6em 1.8em;
  background: #fff;
  color: #000 !important;
  border: 1px solid #000;
  border-radius: 0;
  text-align: center;
  text-decoration: none !important;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 0.85em;
  transition: opacity 0.2s ease;
}

.con-link-btn,
.con-link-btn:hover,
.con-link-btn:focus,
.con-link-btn:visited,
.con-link-btn span {
  text-decoration: none !important;
}

.con-link-btn::after {
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: 0.5em;
  background-color: #000;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: "";
  transition: transform 0.3s;
}

.con-link-btn.theater-btn {
  background: #009fde;
  color: #fff !important;
  border: 1px solid #009fde;
}

.con-link-btn.theater-btn::after {
  background-color: #fff;
}

.con-link-btn.top-btn {
  background: #fff;
  color: #000 !important;
  border: 1px solid #000;
}

.con-link-btn.top-btn::after {
  background-color: #000;
}

.con-link-btn.goods-btn {
  background: #E990D8;
  color: #fff !important;
  border: 1px solid #E990D8;
}

.con-link-btn.goods-btn::after {
  background-color: #fff;
}

.con-link-btn:hover {
  opacity: 0.85;
}

.con-link-btn:hover::after {
  transform: translateY(-50%) scaleX(1.2);
}

.present-period {
  text-align: center;
  margin-top: 6px;
  margin-bottom: 14px;
}

.present-photo > div {
  border-bottom: 1px solid #434343;
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.present-photo p {
  text-align: center;
}

.present-photo span {
  color: #FFF450;
}

.present-coming {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.detail-box .ttl {
  text-align: center;
}

.con-link-btn span {
  color: inherit !important;
}/*# sourceMappingURL=style.css.map */