@charset "utf-8";

/**********************************************************
 * html, body, タイポグラフィ、リンク等の基本
 **********************************************************/
:root {
  /* 
  font-size
  1rem = 16px PCでは実質16px基準（ユーザー設定を尊重）
  計算方法：24px / 16px = 1.5rem
  */
  --font-12: 0.75rem;  /* 12px */
  --font-14: 0.875rem;  /* 14px */
  --font-16: 1rem;  /* 16px */
  --font-18: 1.125rem;  /* 18px */
  --font-19: 1.1875rem;  /* 19px */
  --font-20: 1.25rem;   /* 20px */
  --font-21: 1.3125rem;   /* 21px */
  --font-22: 1.375rem;   /* 22px */
  --font-24: 1.5rem;   /* 24px */
  --font-26: 1.625rem;   /* 26px */
  --font-27: 1.6875rem;   /* 27px */
  --font-28: 1.75rem;   /* 28px */
  --font-32: 2rem;   /* 32px */
  --font-36: 2.25rem;   /* 36px */
  --font-45: 2.8125rem;   /* 45px */

  /* color */
  --bg-base-white: #fff;
  --bg-base-black: #000;
  --bg-accent-red: #b4222c;
  --bg-accent-gold: #b9a273;
}

.font-sans {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Yu Gothic UI",
    "Yu Gothic",
    "游ゴシック体",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    system-ui,
    sans-serif;
}
html {
  font-size: 100%;
  /* スマホで勝手に文字が大きならないように設定 */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
body {
  font-family:
    "Noto Serif JP",      /* メインの明朝体（Webフォント） */
    "Yu Mincho",          /* Windows */
    "游明朝",             /* macOS 日本語環境 */
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "MS PMincho",
    "MS Mincho",
    serif;
  font-size: var(--font-16);
  font-feature-settings: "palt";
  font-weight: 400;
  color: #b9a273;
  background: var(--bg-base-black);
}
a {
  color: #b9a273;
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
}
.inner {
  margin-inline: auto;
  max-width: 720px;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

@media (width < 768px) {
  body {
    font-size: 4.267vw;
  }
  .section-title {
    margin: 0 auto 10.667vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

header::after,
footer::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  background-image: image-set(
    url('../img/1x/deco_header.webp') 1x,
    url('../img/2x/deco_header@2x.webp') 2x
  );
  background-size: 232px 17px;
  background-repeat: repeat-x;
  width: 100%;
  height: 17px;
}



/*
MENU
================================================ */
.openbtn-container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
}
.openbtn {
  position: relative;
  background: var(--bg-base-black);
  cursor: pointer;
  width: 13.333vw;
  height: 13.333vw;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 0.5333vw;
  background: #fff;
  width: 7.466vw;
  }
.openbtn span:nth-of-type(1) {
  top:4vw;
}
.openbtn span:nth-of-type(2) {
  top:6.4vw;
}
.openbtn span:nth-of-type(3) {
  bottom: 4vw;
}
.openbtn.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (width < 768px) {
  .openbtn-container {
    display: block;
  }
}

/*
header
================================================ */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--bg-base-black);
  z-index: 999;
  border-bottom: 5px solid #b4222c;
}
header::after {
  bottom: -22px;
}
header .inner,
header .globalnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .globalnav__item a {
  display: block;
}
header .globalnav__item a .nav-text {
  display: none;
}

@media (width < 768px) {
  header {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    z-index: 1000;
    overflow-y: auto;
    box-sizing: border-box;
    border-bottom: 1.333vw solid #b4222c;
  }
  header::after {
    display: none;
  }
  header.active {
    display: block;
  }
  header .inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  header .logo {
    margin: 0 auto;
  }
  header .globalnav {
    padding: 21.333vw 12vw 12vw;
    width: 100%;
  }
  header .globalnav__list {
    flex-direction: column;
  }
  header .globalnav__item {
    width: 100%;
  }
  header .globalnav__item a {
    padding: 5.33vw 0;
    font-size: 5.33vw;
    text-align: center;
  }
  header .globalnav__item a img {
    display: none;
  }
  header .globalnav__item a .nav-text {
    display: block;
  }
}

/*
footer
================================================ */
footer {
  position: relative;
  padding: 35px 50px;
  font-size: var(--font-14);
  line-height: 1.7;
  text-align: center;
  border-top: 5px solid #b4222c;
}
footer::before {
  top: -22px;
  transform: scaleY(-1);
  transform-origin: center;
}

@media (width < 768px) {
  footer {
    padding: 2.667vw 5.333vw;
  }
  footer small {
    font-size: 3.2vw;
  }
}

/*
fv
================================================ */
.fv {
  position: relative;
  padding: 65px 0 0;
  color: #fff;
}
.fv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: var(--bg-base-white);
}
.fv .mv {
  text-align: center;
}
.fv-title {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) !important;
  max-width: 573px;
  z-index: 1;
}
.fv-img {
  max-width: 510px;
}
.fv__lead {
  padding: 20px 0;
  font-weight: 900;
  font-size: var(--font-24);
  text-align: center;
}
.fv__lead span {
  font-size: var(--font-20);
}

@media (width < 768px) {
  .fv {
    padding: 21.333vw 0 0;
  }
  .fv-title {
    top: 16vw;
    width: 90%;
  }
  .fv__lead {
    padding: 5.333vw 0;
    font-size: var(--font-20);
  }
  .fv__lead span {
    padding: 5.333vw 0;
    font-size: var(--font-18);
  }
}

/*
schedule
================================================ */
#schedule {
  padding: 30px;
  font-weight: 700;
  color: #fff;
  font-size: var(--font-45);
  background: var(--bg-accent-gold);
}
#schedule .schedule-list {
  margin: 0 auto 30px;
  max-width: fit-content;
}
#schedule .schedule-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
#schedule .schedule-item + .schedule-item {
  margin-top: 10px;
  border-top: 1px solid #fff;
}
#schedule .year {
  font-size: var(--font-16);
}
#schedule .month,
#schedule .day {
  font-size: var(--font-36);
}
#schedule .week {
  font-size: var(--font-24);
}
#schedule .time {
  font-size: var(--font-26);
}
#schedule .time span {
  font-size: var(--font-21);
}
#schedule .schedule1 .time {
  margin-left: 64px;
}
#schedule .schedule2 .time {
  margin-left: 15px;
}
#schedule .place {
  font-size: var(--font-36);
  text-align: center;
}
@media (width < 768px) {
  #schedule {
    padding: 8vw 5.333vw;
    font-size: var(--font-32);
  }
  #schedule .schedule-list {
    margin: 0 auto 2.67vw;
  }
  #schedule .schedule-item {
    flex-direction: column;
    align-items: center;
  }
  #schedule .schedule-item + .schedule-item {
    margin-top: 2.667vw;
  }
  #schedule .year {
    font-size: var(--font-14);
  }
  #schedule .month,
  #schedule .day {
    font-size: var(--font-21);
  }
  #schedule .week {
    font-size: var(--font-18);
  }
  #schedule .time {
    font-size: var(--font-21);
  }
  #schedule .time span {
    font-size: var(--font-16);
  }
  #schedule .schedule1 .time,
  #schedule .schedule2 .time {
    margin-left: 0;
  }
  #schedule .place {
    font-size: var(--font-24);
  }
}

/*
ticket
================================================ */
#ticket {
  padding: 45px 0;
  text-align: center;
  font-size: var(--font-20);
}
#ticket .ticket__prices {
  margin-bottom: .25em;
  font-size: var(--font-28);
  font-weight: 700;
}
#ticket .ticket__contact {
  margin: 1em auto;
}
#ticket .ticket__notes {
  font-size: var(--font-16);
}
#ticket .ticket__notes li::before {
  content: '※';
}
.ticket__application {
  margin: 0 auto 40px;
  padding: 40px 30px;
  max-width: 600px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #b9a273;
}
.ticket__application--title {
  margin: 20px auto 10px;
  max-width: 330px;
  color: #000;
  background: var(--bg-accent-gold);
}
.ticket-list {
  margin: 0 auto;
  width: fit-content;
  text-align: left;
}
.ticket-item::before {
  content: "▶︎";
  margin-right: .25em;
}
.ticket-item + .ticket-item {
  margin-top: .5em;
}
.ticket-item span {
  display: inline-block;
  font-size: var(--font-14);
}
.ticket-tripcom {
  display: flex;
}

@media (width < 768px) {
  #ticket {
    padding: 8vw 5.333vw;
    font-size: var(--font-16);
  }
  #ticket .ticket__prices {
    font-size: var(--font-24);
  }
  #ticket .ticket__notes {
    font-size: var(--font-14);
  }
  .ticket__application {
    margin: 0 auto 8vw;
    padding: 5.333vw 2.667vw;
  }
  .ticket__application--title {
    margin: 5.333vw auto 2.667vw;
  }
  .ticket-item span {
    font-size: var(--font-12);
    line-height: 1.5;
  }
}

/*
gallery
================================================ */
#gallery {
  padding: 50px 0 30px;
}

@media (width < 768px) {
  #gallery {
    padding: 10.667vw 0 5.333vw;
  }
}

/*
SLIDER
================================================ */
.slider-container {
  margin-inline: auto;
  width: 70%;
}
.slider img {
  width: 100%;
  height: auto;
}
.slick-prev,
.slick-next {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  cursor: pointer;
  transition: all 0.2s;
}
.slick-prev,
.slick-next {
  width: 50px;
  height: 70px;
  background-size: contain;
  z-index: 10;
}
.slick-prev {
  background-image: url(../img/arrow-slider-prev.png);
  left: -25px;
}
.slick-next {
  background-image: url(../img/arrow-slider-next.png);
  right: -25px;
}
.slick-dots {
  margin-top: 10px;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  display: block;
  color: transparent;
  outline: none;
  width: 50px;
  height: 4px;
  background-color: #fff;
  border: none;
}
.slick-dots .slick-active button{
  background-color: #000;
}

@media (width < 768px) {
  .slider-container {
    width: 80%;
  }
  .slick-prev,
  .slick-next {
    width: 8vw;
    height: 11.2vw;
  }
  .slick-prev {
    left: -4vw;
  }
  .slick-next {
    right: -4vw;
  }
  .slick-dots {
    margin-top: 2.667vw;
  }
  .slick-dots li {
    display: inline-block;
    margin: 0 1.333vw;
  }
  .slick-dots button {
    width: 10vw;
    height: 0.8vw;
  }
}


/*
youtube
================================================ */
/* YouTube スライダー用 */
#youtube .slider-container { width: 100%; } 
#youtube .slider li { list-style: none; } 

#youtube .ratio {
  aspect-ratio: 16 / 9;
  width: 100%;
}

#youtube .ratio iframe {
  display: block;
  width: 100%;
  height: 100%; 
  border: 0;
}
#youtube {
  padding: 50px;
  background: #a0b3be;
}
#youtube .youtube {
  aspect-ratio: 16/9;
}
#youtube .youtube iframe {
  width:100%;
  height:100%;
}

@media (width < 768px) {
  #youtube {
    padding: 8vw 5.333vw;
  }
}

/*
scene
================================================ */
#scene {
  text-align: center;
  line-height: 0;
  background: var(--bg-accent-red);
}
#scene img {
  max-width: 600px;
}

/*
about
================================================ */
/* 上部説明 */
.about-story {
  padding: 30px 0;
  color: #fff;
  font-size: var(--font-18);
  border-bottom: 10px solid #b9a273;
}
.about-story .inner {
  position: relative;
  padding: 60px 60px 20px;
  background: var(--bg-accent-red);
}
.about-story .inner::before,
.about-story .inner::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background-image:
    image-set(
      url('../img/1x/deco_about.webp') 1x,
      url('../img/2x/deco_about@2x.webp') 2x
    ),
    image-set(
      url('../img/1x/deco_about.webp') 1x,
      url('../img/2x/deco_about@2x.webp') 2x
    );
  background-size: 90px 28px;
  background-repeat: no-repeat;
}
.about-story .inner::before {
  inset: 0;
  background-position:
    left 10px top 10px,   /* 1枚目：左上 */
    right 10px top 10px;  /* 2枚目：右上 */
}
.about-story .inner::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background-position:
    left 10px bottom 10px,   /* 1枚目：左下 */
    right 10px bottom 10px;  /* 2枚目：右下 */
    transform: scaleY(-1);
    transform-origin: center;
}
.about-story p {
  line-height: 1.5;
}
.about-story p + p {
  margin-top: 1em;
}
.about-story img {
  display: block;
  margin: 20px 0;
}
.about-story p:last-of-type {
  font-size: var(--font-24);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

/* 上映作品・上映時間・ストーリー */
.about-info {
  padding: 40px 0;
  font-size: var(--font-19);
  border-top: 10px solid #b4222c;
}
.info-box {
  margin: 25px 0;
  padding: 35px 20px;
  border: 3px solid #b9a273;
  background: #3e3a39;
}
.about-info h3 {
  margin-bottom: .25em;
}
.about-info h3::before,
.about-info h3::after {
  color: #b4222c;
}
.about-info h3::before {
  content: "■ ";
}
.about-info h3::after {
  content: " ■";
}
.about-info .scene-small {
  display: block;
  margin-inline: auto;
}
.info-item {
  padding: 20px 0;
  line-height: 1.7;
  border-bottom: 1px solid #b9a273;
}
.info-film,
.info-time {
  text-align: center;
}
.movie-credits {
  margin-top: 1em;
  line-height: 1.7;
  font-size: var(--font-16);
}
.info-item.info-story {
  border-bottom: none;
}
.info-story h3 {
  text-align: center;
}
.info-story p {
  font-size: var(--font-16);
  line-height: 1.75;
}
@media (width < 768px) {
  /* 上部説明 */
  .about-story {
    padding: 8vw 0;
    font-size: var(--font-16);
    border-bottom: 1.333vw solid #b9a273;
  }
  .about-story .inner {
    padding: 16vw 5.333vw;
  }
  .about-story .inner::before,
  .about-story .inner::after {
    background-size: 19.2vw 5.867vw;
  }
  .about-story .inner::before {
    background-position:
      left 2.667vw top 2.667vw,
      right 2.667vw top 2.667vw;
  }
  .about-story .inner::after {
    height: 50px;
    background-position:
      left 2.667vw bottom 2.667vw,
      right 2.667vw bottom 2.667vw;
  }
  .about-story img {
    margin: 5.333vw 0;
  }
  .about-story p:last-of-type {
    font-size: var(--font-16);
    line-height: 1.5;
  }

  /* 上映作品・上映時間・ストーリー */
  .about-info {
    padding: 8vw 5.333vw;
    font-size: var(--font-18);
    border-top: 1.333vw solid #b4222c;
  }
  .info-box {
    margin: 6.667vw 0;
    padding: 0 5.333vw;
    border: 2px solid #b9a273;
  }
  .info-item {
    padding: 5.333vw 0;
  }
  .movie-credits {
    font-size: var(--font-14);
    text-align: left;
  }
  .info-story p {
    font-size: var(--font-14);
  }
}

/*
PERFORMERS
================================================ */
#performers {
  color: #fff;
  background: var(--bg-accent-red);
  font-size: var(--font-18);
  line-height: 1.8;
}
#performers .person-top,
#performers .profile {
  margin-inline: auto;
  max-width: 600px;
}
.performer-person {
  padding: 40px 0;
}
.performer-person + .performer-person {
  border-top: 10px solid #fff;
}
.person-top {
  display: flex;
  flex: 0 0 50%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}
.person-top img {
  max-width: 300px;
}
.person-top .person-info {
  flex: 0 0 50%;
}
#performers .work {
  font-size: var(--font-20);
  font-weight: 500;
}
#performers .name {
  color: #b9a273;
  font-size: var(--font-27);
  font-weight: 700;
  line-height: 1.2;
}
#performers .name span {
  font-size: var(--font-21);
}
.performer-person .profile {
  line-height: 1.8;
  font-weight: 300;
}
@media (width < 768px) {
  #performers {
    font-size: var(--font-16);
  }
  #performers .person-top,
  #performers .profile {
    margin: 0 5.333vw;
  }
  .performer-person {
    padding: 8vw 0;
  }
  .performer-person + .performer-person {
    border-top: 1.333vw solid #fff;
  }
  .person-top {
    flex-direction: column;
    gap: 4vw;
    flex: 0;
  }
  .person-top img {
    max-width: 80vw;
  }
  .person-top .person-info {
    flex: 0;
  }
  #performers .work {
    font-size: var(--font-16);
  }
  #performers .name {
    margin-bottom: 2.67vw;
    font-size: var(--font-22);
  }
  #performers .name span {
    font-size: var(--font-16);
  }
}

/*
シネマ・コンサートとは
================================================ */
.cinecon {
  margin-top: 30px;
  color: #000;
  font-size: var(--font-16);
  background: var(--bg-accent-gold);
}
.cinecon::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background: var(--bg-base-white);
}
.cinecon .inner {
  padding: 40px 0;
  max-width: 600px;
}
.cinecon h3 {
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}
.cinecon p {
  line-height: 1.7;
}
@media (width < 768px) {
  .cinecon {
    margin: 5.333vw 0 0;
  }
  .cinecon::after {
    height: 6.667vw;
  }
  .cinecon .inner {
    padding: 5.333vw;
  }
  .cinecon h3 {
    margin-bottom: 2.67vw;
  }
}