﻿.theaterPage{
  position: relative;
  z-index: 0;
  --color-theater-navy: #182d4e;
  --color-theater-navy-rgb: 24, 45, 78;
  background: transparent;
}
.theaterPage::before{
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 10, 22, 0.66), rgba(5, 10, 22, 0.72)),
    url("../img/ntheater/curtainBG.webp") center bottom / cover no-repeat;
}
@media screen and (max-width: 768px) and (orientation: portrait){
  .theaterPage::before{
    background-image:
      linear-gradient(180deg, rgba(5, 10, 22, 0.66), rgba(5, 10, 22, 0.72)),
      url("../img/ntheater/curtainBG_SP.webp");
    background-position: center top, center bottom;
    background-size: 100% 100vh, auto 100vh;
    background-repeat: no-repeat, no-repeat;
  }
}
.siteFooter{
  position: relative;
  z-index: 2;
}


/* hero */

.theaterHero{
  position: relative;
  min-height: 100vh;
  margin-top: calc(var(--header-height) * -1);
  padding: 0;
  overflow: hidden;
  --curtain-progress: 0;
  background: transparent;
  border-bottom: 0.07vw solid rgba(126, 83, 45, 0.08);
}
.theaterHero::before{
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 8, 18, 0.3), rgba(3, 8, 18, 0.06));
}
.theaterCurtain{
  position: fixed;
  inset: 0;
  z-index: 3;
  min-height: 100vh;
  pointer-events: none;
}
.theaterCurtainPanel{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80vh;
  overflow: hidden;
  will-change: transform;
}
.theaterCurtainPanel picture{
  display: block;
  width: 100%;
  height: 100%;
}
.theaterCurtainPanel img{
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 1.25vw 1.81vw rgba(3, 8, 18, 0.28));
  user-select: none;
  -webkit-user-drag: none;
}
.theaterCurtainLeft{
  left: 0;
  transform: translateX(calc(var(--curtain-progress) * -62%));
}
.theaterCurtainLeft img{
  position: absolute;
  top: 0;
  left: 0;
  object-position: right center;
}
.theaterCurtainRight{
  right: 0;
  transform: translateX(calc(var(--curtain-progress) * 62%));
}
.theaterCurtainRight img{
  position: absolute;
  top: 0;
  right: 0;
  object-position: left center;
}
.theaterHero .sectionInner,
.theaterInner,
.theaterCta{
  position: relative;
  z-index: 2;
  width: 85vw;
  margin: 0 auto;
}
.theaterHero .sectionInner{
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 0;
  place-content: center;
  text-align: center;
}
.theaterHero h1{
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 4.4vw;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.12em;
}
.theaterSubTtl{
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 2.25vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.theaterHero .ornament{
  margin: 2.5vw auto;
  background: var(--color-gold-soft);
}
.theaterSection p,
.theaterCta p{
  color: var(--color-white);
  font-size: var(--type-body-size);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1451px){
  .theaterHero{
    border-bottom-width: 0.06rem;
  }
  .theaterCurtainPanel img{
    filter: drop-shadow(0 1.13rem 1.64rem rgba(3, 8, 18, 0.28));
  }
  .theaterHero .sectionInner,
  .theaterInner,
  .theaterCta{
    width: 77.08rem;
  }
  .theaterHero .sectionInner{
    min-height: 0;
  }
  .theaterHero h1{
    font-size: 3.99rem;
  }
  .theaterSubTtl{
    font-size: 2.04rem;
  }
  .theaterHero .ornament{
    margin: 2.27rem auto;
  }
}
@media screen and (min-width: 1200px){
  .theaterCurtainLeft{
    left: 0;
  }
  .theaterCurtainRight{
    right: 0;
  }
}
@media screen and (min-width: 769px){
  .theaterCurtainLeft{
    left: -8vh;
  }
  .theaterCurtainRight{
    right: -8vh;
  }
}
@media screen and (max-width: 768px){
  .theaterHero{
    min-height: 100dvh;
  }
  .theaterHero .sectionInner,
  .theaterInner,
  .theaterCta{
    width: 90vw;
  }
  .theaterHero .sectionInner{
    min-height: 0;
  }
  .theaterWorks .theaterInner{
    width: 96vw;
  }
  .theaterHero h1{
    font-size: 8vw;
  }
  .theaterSubTtl{
    font-size: 4vw;
  }
  .theaterHero .ornament{
    width: 32vw;
    max-width: none;
    margin: 8vw auto;
  }
  .theaterCurtain{
    min-height: 100dvh;
  }
  .theaterCurtainPanel{
    width: 60vw;
  }
  .theaterCurtainPanel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .theaterCurtainLeft{
    transform: translateX(calc(var(--curtain-progress) * -66%));
  }
  .theaterCurtainRight{
    transform: translateX(calc(var(--curtain-progress) * 66%));
  }
}
@media screen and (max-width: 768px) and (orientation: landscape){
  .theaterCurtainPanel{
    width: 45vw;
  }
}
@media screen and (max-width: 500px){
  .theaterCurtain{
    min-height: 90dvh;
  }
  .theaterCurtainPanel{
    width: 80vw;
  }
  .theaterCurtainPanel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .theaterCurtainLeft img{
    object-position: top right;
  }
  .theaterCurtainRight img{
    object-position: top left;
  }
  .theaterCurtainLeft{
    transform: translateX(calc(var(--curtain-progress) * -66%));
  }
  .theaterCurtainRight{
    transform: translateX(calc(var(--curtain-progress) * 66%));
  }
}


/* sections */

.theaterSection{
  width: 100%;
  padding: 6vw 0 7vw;
  color: #fff;
  background: transparent;
}
.theaterSection h2,
.theaterCta h2{
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4vw;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.1em;
}
.theaterSection p{
  margin: 1.53vw 0 0;
}
@media screen and (min-width: 1451px){
  .theaterSection{
    padding: 5.44rem 0 6.35rem;
  }
  .theaterSection h2,
  .theaterCta h2{
    font-size: 2.18rem;
  }
  .theaterSection p{
    margin-top: 1.39rem;
  }
}
@media screen and (max-width: 768px){
  .theaterSection{
    padding: 13vw 0 18vw;
  }
  .theaterSection h2,
  .theaterCta h2{
    font-size: 7.2vw;
  }
  .theaterSection p{
    margin-top: 4.5vw;
    line-height: 2.25;
  }
}


/* about */

.theaterAbout{
  position: relative;
  color: #fff;
  background: rgba(var(--color-theater-navy-rgb), 0.5);
  width: 80vw;
  min-width: inherit;
  padding: 1vw 0 2vw;
  margin: 0 auto 5vw;
  opacity: 0;
  transform: translateY(2vw);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.18, 0.72, 0.2, 1);
}
.theaterAbout.isVisible{
  opacity: 1;
  transform: translateY(0);
}
.theaterAbout::before{
  position: absolute;
  inset: 0.8vw;
  z-index: 0;
  content: "";
  pointer-events: none;
  border: 0.08vw solid rgba(202, 162, 74, 0.72);
}
.theaterAbout .theaterInner{
  width: 80vw;
  padding: 5vw 6.5vw;
}
.theaterAbout h2,
.theaterAbout p,
.theaterPhotoGrid,
.theaterAboutBtn{
  position: relative;
  z-index: 1;
  color: #fff;
}
.theaterPhotoGrid,
.theaterAboutBtn{
  color: inherit;
}
.theaterAbout h2{
  font-size: 2.4vw;
  margin-bottom: 2.5vw;
}
.theaterAbout h2::after{
  display: block;
  width: 100%;
  height: 0.08vw;
  margin: 2.5vw auto 0;
  content: "";
  background: rgba(202, 162, 74, 0.72);
}
.theaterAbout p{
  font-size: 1.15vw;
  letter-spacing: 0.12em;
}
.theaterAboutBtn{
  display: flex;
  justify-content: center;
  margin-top: 2.5vw;
}
.theaterAboutBtn a{
  position: relative;
  padding: 0.25vw 2.6vw 0.55vw 0.55vw;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.75vw;
  font-weight: 800;
  line-height: 1.5;
  background: transparent;
  border-bottom: 0.08vw solid rgba(255, 255, 255, 0.82);
  margin: 2vw 0 3vw;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.theaterAboutBtn a::after{
  position: absolute;
  top: 50%;
  right: 0.38em;
  width: 0.42em;
  height: 0.42em;
  content: "";
  border-top: 0.08em solid currentColor;
  border-right: 0.08em solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.theaterAboutBtn a:hover{
  border-color: var(--color-gold);
}
@media screen and (min-width: 1451px){
  .theaterAbout{
    width: 72.55rem;
    padding: 0.91rem 0 1.81rem;
    margin-bottom: 4.53rem;
    transform: translateY(1.81rem);
  }
  .theaterAbout::before{
    inset: 0.73rem;
    border-width: 0.07rem;
  }
  .theaterAbout .theaterInner{
    width: 72.55rem;
    padding: 4.53rem 5.89rem;
  }
  .theaterAbout h2{
    font-size: 2.18rem;
    margin-bottom: 2.27rem;
  }
  .theaterAbout h2::after{
    width: 100%;
    height: 0.07rem;
    margin-top: 2.27rem;
  }
  .theaterAbout p{
    font-size: 1.04rem;
  }
  .theaterAboutBtn{
    margin-top: 2.27rem;
  }
  .theaterAboutBtn a{
    padding: 0.23rem 2.36rem 0.5rem 0.5rem;
    font-size: 1.59rem;
    border-bottom-width: 0.07rem;
  }
  .theaterBtn:hover{
    transform: translateX(0.25rem);
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px){
  .theaterAbout{
    width: 90vw;
    padding: 2vw 0 3vw;
    margin-bottom: 7vw;
    transform: translateY(3vw);
  }
  .theaterAbout::before{
    inset: 1vw;
    border-width: 0.12vw;
  }
  .theaterAbout .theaterInner{
    width: 90vw;
    padding: 6vw 5vw;
  }
  .theaterAbout h2{
    font-size: 2.9vw;
    margin-bottom: 3.5vw;
  }
  .theaterAbout h2::after{
    height: 0.12vw;
    margin-top: 3vw;
  }
  .theaterAbout p{
    font-size: 1.55vw;
  }
  .theaterAboutBtn{
    margin-top: 4vw;
  }
  .theaterAboutBtn a{
    padding: 0.6vw 3.6vw 0.9vw 0.9vw;
    font-size: 2.2vw;
    border-bottom-width: 0.12vw;
  }
}
@media screen and (max-width: 768px){
  .theaterAbout{
    width: 100%;
    padding: 10vw 0 13vw;
  }
  .theaterAbout .theaterInner{
    width: 90vw;
    padding: 0 2.5vw;
  }
  .theaterAbout::before{
    inset: 1.5vw;
    border-width: 0.22vw;
  }
  .theaterAbout h2{
    font-size: 6vw;
    line-height: 1.8;
    margin-bottom: 6vw;
  }
  .theaterAbout h2::after{
    height: 0.22vw;
    margin-top: 5vw;
  }
  .theaterAbout p{
    font-size: 2.9vw;
  }
  .theaterAboutBtn{
    margin-top: 6.5vw;
  }
  .theaterAboutBtn a{
    padding: 0.8vw 8vw 1.6vw 1.3vw;
    font-size: 3.75vw;
    border-bottom-width: 0.22vw;
  }
  .theaterBtn:hover{
    transform: translateX(0.8vw);
  }
}


/* photos */

.theaterPhotoGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
  width: 100%;
  margin-top: 3vw;
}
.theaterPhoto{
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 0.42vw;
}
.theaterPhoto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1451px){
  .theaterPhotoGrid{
    gap: 0.91rem;
    margin-top: 2.72rem;
  }
  .theaterPhoto{
    border-radius: 0.38rem;
  }
}
@media screen and (max-width: 768px){
  .theaterPhotoGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5vw;
    margin-top: 10vw;
  }
  .theaterPhoto{
    border-radius: 1vw;
  }
}


/* works */

.theaterWorks .theaterWorkTtl,
.theaterWorks .theaterWorksGroup h3,
.theaterWorks .theaterWorksHeader h2{
  color: #fff;
}
.theaterWorks .theaterInner{
  width: 90vw;
}
.theaterWorks .theaterWorksHeader{
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1.39vw;
  margin-bottom: 1.94vw;
  opacity: 0;
  text-align: center;
  transform: translateY(2vw);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.18, 0.72, 0.2, 1);
}
.theaterWorks .theaterWorksHeader.isVisible{
  opacity: 1;
  transform: translateY(0);
}
.theaterWorks .theaterWorksList{
  display: grid;
  gap: 3.75vw;
}
.theaterWorks .theaterWorksGroup{
  padding-top: 6.5vw;
  text-align: center;
}
.theaterWorks .theaterWorksGroup h3{
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 11vw;
  min-height: 11vw;
  margin: 0 0 5.2vw;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7vw;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-shadow: 0 0.14vw 0.56vw rgba(2, 8, 24, 0.42);
}
.theaterWorks .theaterWorksGroup h3::before{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 11vw;
  height: 11vw;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(154, 229, 255, 0.52) 0%, rgba(116, 202, 255, 0.3) 48%, rgba(116, 202, 255, 0) 72%);
  border-radius: 50%;
  filter: blur(0.28vw);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.64);
  transition:
    opacity 0.22s ease,
    filter 0.22s ease,
    transform 0.26s cubic-bezier(0.16, 0.86, 0.28, 1);
}
.theaterWorks .theaterWorksGroup.isSpotlightVisible h3::before{
  filter: blur(0.04vw);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.theaterWorks .theaterWorksItems{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.8vw 2.5vw;
  align-items: center;
}
.theaterWorks .theaterWork{
  display: grid;
  align-content: center;
  justify-items: center;
  width: auto;
  max-width: 17vw;
  gap: 1vw;
  color: inherit;
  opacity: 0;
  transform: translateY(calc(var(--work-shift-y, 0vw) + 2vw));
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.18, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.theaterWorks .theaterWork:nth-child(2n){
  --work-shift-y: 2vw;
}
.theaterWorks .theaterWork.isVisible{
  opacity: 1;
  transform: translateY(var(--work-shift-y, 0vw));
}
.theaterWorks .theaterWorkImage{
  display: block;
  align-self: center;
  justify-self: center;
  padding: 0.5vw;
  line-height: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #f7f7f4, #ecebe6);
  border-top: 0.26vw solid rgba(219, 187, 86, 0.95);
  border-right: 0.26vw solid rgba(219, 187, 86, 0.95);
  border-bottom: 0.26vw solid rgba(153, 108, 51, 0.95);
  border-left: 0.26vw solid rgba(153, 108, 51, 0.95);
  box-shadow:
    inset 0 0 0.55vw rgba(34, 28, 23, 0.3),
    0 0.72vw 0.55vw rgba(0, 0, 0, 0.36);
}
button.theaterWorkImage{
  font: inherit;
  appearance: none;
}
.theaterWorks .theaterWorkImage:focus-visible{
  outline: 0.18vw solid var(--color-gold);
  outline-offset: 0.4vw;
}
.theaterWorks .theaterWorkImage img{
  display: block;
  width: auto;
  height: auto;
  max-height: 17.08vw;
}
.theaterWorks .theaterWorkTtl{
  display: none;
  overflow: hidden;
  width: fit-content;
  color: inherit;
  font-size: 1vw;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.08em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.theaterWorks .theaterWorkTtl small,
.theaterModalBody h3 small{
  display: block;
  margin-top: 0.2em;
  font-size: 0.72em;
  line-height: 1.45;
}
@media screen and (min-width: 1451px){
  .theaterWorks .theaterInner{
    width: 81.61rem;
  }
  .theaterWorks .theaterWorksHeader{
    gap: 1.26rem;
    margin-bottom: 1.76rem;
    transform: translateY(1.81rem);
  }
  .theaterWorks .theaterWorksHeader.isVisible{
    transform: translateY(0);
  }
  .theaterWorks .theaterWorksList{
    gap: 3.4rem;
  }
  .theaterWorks .theaterWorksGroup{
    padding-top: 5.89rem;
  }
  .theaterWorks .theaterWorksGroup h3{
    min-width: 9.98rem;
    min-height: 9.98rem;
    margin-bottom: 4.72rem;
    font-size: 1.54rem;
    text-shadow: 0 0.13rem 0.51rem rgba(2, 8, 24, 0.42);
  }
  .theaterWorks .theaterWorksGroup h3::before{
    width: 9.98rem;
    height: 9.98rem;
    filter: blur(0.25rem);
  }
  .theaterWorks .theaterWorksGroup.isSpotlightVisible h3::before{
    filter: blur(0.04rem);
  }
  .theaterWorks .theaterWorksItems{
    gap: 4.35rem 2.27rem;
  }
  .theaterWorks .theaterWork{
    max-width: 15.42rem;
    gap: 0.91rem;
  }
  .theaterWorks .theaterWork:nth-child(2n){
    --work-shift-y: 1.81rem;
  }
  .theaterWorks .theaterWorkImage{
    padding: 0.45rem;
    border-top-width: 0.24rem;
    border-right-width: 0.24rem;
    border-bottom-width: 0.24rem;
    border-left-width: 0.24rem;
    box-shadow:
      inset 0 0 0.5rem rgba(34, 28, 23, 0.3),
      0 0.65rem 0.5rem rgba(0, 0, 0, 0.36);
  }
  .theaterWorks .theaterWorkImage img{
    max-height: 15.49rem;
  }
  .theaterWorks .theaterWorkTtl{
    font-size: 0.91rem;
  }
}
@media screen and (max-width: 1100px){
  .theaterWorks .theaterWorksGroup{
    padding-top: 3.9vw;
  }
  .theaterWorks .theaterWorksGroup h3{
    min-width: 18.7vw;
    min-height: 18.7vw;
    margin-bottom: 6.5vw;
    font-size: 2.25vw;
  }
  .theaterWorks .theaterWorksGroup h3::before{
    width: 18.7vw;
    height: 18.7vw;
  }
  .theaterWorks .theaterWorksItems{
    gap: 7vw 4vw;
  }
  .theaterWorks .theaterWork{
    max-width: 26vw;
  }
  .theaterWorks .theaterWork:nth-child(2n){
    --work-shift-y: 2.5vw;
  }
  .theaterWorks .theaterWorkImage{
    padding: 0.62vw;
  }
  .theaterWorks .theaterWorkImage img{
    max-height: 21vw;
  }
  .theaterWorks .theaterWorkTtl{
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1180px){
  .theaterWorks .theaterWorksHeader{
    gap: 2vw;
    margin-bottom: 3.4vw;
    transform: translateY(3vw);
  }
  .theaterWorks .theaterWorksHeader h2{
    font-size: 3vw;
  }
  .theaterWorks .theaterWorksHeader.isVisible{
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px){
  .theaterWorks .theaterInner{
    width: 96vw;
  }
  .theaterWorks .theaterWorksHeader{
    align-items: center;
    flex-direction: column;
    gap: 2.78vw;
    margin-bottom: 5vw;
    transform: translateY(6vw);
  }
  .theaterWorks .theaterWorksHeader.isVisible{
    transform: translateY(0);
  }
  .theaterWorks .theaterWorksList{
    gap: 10.5vw;
  }
  .theaterWorks .theaterWorksGroup{
    padding-top: 10.4vw;
  }
  .theaterWorks .theaterWorksGroup h3{
    min-width: 33vw;
    min-height: 33vw;
    margin-bottom: 11.7vw;
    font-size: 5.1vw;
  }
  .theaterWorks .theaterWorksGroup h3::before{
    width: 33vw;
    height: 33vw;
  }
  .theaterWorks .theaterWorksItems{
    justify-content: center;
    gap: 8vw 7vw;
  }
  .theaterWorks .theaterWork{
    justify-items: center;
    width: auto;
    max-width: 46vw;
    gap: 4vw;
  }
  .theaterWorks .theaterWork:nth-child(2n){
    --work-shift-y: 6vw;
  }
  .theaterWorks .theaterWork:nth-child(odd):last-child{
    margin-left: 5vw;
    margin-right: auto;
  }
  .theaterWorks .theaterWorkImage{
    padding: 1.3vw;
    border-top-width: 0.7vw;
    border-right-width: 0.7vw;
    border-bottom-width: 0.7vw;
    border-left-width: 0.7vw;
  }
  .theaterWorks .theaterWorkImage img{
    max-height: 53.2vw;
  }
  .theaterWorks .theaterWorkTtl{
    font-size: 2.75vw;
    letter-spacing: 0.08em;
  }
}


/* works modal */

.isTheaterModalOpen{
  overflow: hidden;
}
.theaterModal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  --color-theater-navy: #182d4e;
  --color-theater-navy-rgb: 24, 45, 78;
  --color-theater-modal-gold: rgba(202, 162, 74, 0.62);
  display: grid;
  place-items: center;
  padding: 3vw;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.theaterModal.isOpen{
  pointer-events: auto;
  opacity: 1;
}
.theaterModalOverlay{
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.74);
}
.theaterModalDialog{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1vw;
  width: min(72vw, 62rem);
  max-height: 86vh;
  padding: 3.6vw 2.6vw;
  overflow: auto;
  color: #fff;
  background: var(--color-theater-navy);
  border: 0.12vw solid var(--color-theater-modal-gold);
  box-shadow: 0 1.4vw 3vw rgba(0, 0, 0, 0.36);
}
.theaterModalClose{
  position: absolute;
  top: 1.2vw;
  right: 1.2vw;
  width: 2.4vw;
  height: 2.4vw;
  padding: 0;
  color: var(--color-theater-modal-gold);
  cursor: pointer;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.theaterModalClose:focus,
.theaterModalClose:focus-visible{
  outline: 0;
}
.theaterModalClose::before,
.theaterModalClose::after{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6vw;
  height: 0.12vw;
  content: "";
  background: currentColor;
}
.theaterModalClose::before{
  transform: translate(-50%, -50%) rotate(45deg);
}
.theaterModalClose::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}
.theaterModalVisual{
  display: grid;
  place-items: center;
  justify-self: center;
  max-width: 24vw;
  padding: 0.5vw;
  line-height: 0;
  background: linear-gradient(135deg, #f7f7f4, #ecebe6);
  border-top: 0.26vw solid rgba(219, 187, 86, 0.95);
  border-right: 0.26vw solid rgba(219, 187, 86, 0.95);
  border-bottom: 0.26vw solid rgba(153, 108, 51, 0.95);
  border-left: 0.26vw solid rgba(153, 108, 51, 0.95);
  box-shadow:
    inset 0 0 0.55vw rgba(34, 28, 23, 0.3),
    0 0.72vw 0.55vw rgba(0, 0, 0, 0.24);
}
.theaterModalVisual img{
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 48vh;
}
.theaterModal.isPortraitKeyVisual .theaterModalVisual img{
  max-height: 40vh;
}
.theaterModalBody{
  align-self: center;
  padding-right: 1vw;
}
.theaterModalBody h3{
  margin: 0 0 1.8vw;
  font-family: var(--font-display);
  font-size: 2.1vw;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.theaterModalMeta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55vw;
  margin: 2vw 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05vw;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.theaterModalMeta span{
  display: inline-flex;
  align-items: center;
}
.theaterModalMeta span + span::before{
  display: inline-block;
  margin: 0 0.55vw 0 0;
  content: "";
  width: 0.08vw;
  height: 1.15em;
  background: rgba(255, 255, 255, 0.54);
}
.theaterModalStory{
  font-size: 1vw;
  line-height: 2;
  letter-spacing: 0.05em;
}
.theaterModalStoryNote{
  display: block;
  margin-top: 0.8vw;
  color: var(--color-white);
  font-size: 0.84vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1451px){
  .theaterModal{
    padding: 2.72rem;
  }
  .theaterModalDialog{
    gap: 0.91rem;
    width: 56.23rem;
    padding: 3.26rem 2.36rem;
    border-width: 0.11rem;
    box-shadow: 0 1.27rem 2.72rem rgba(0, 0, 0, 0.36);
  }
  .theaterModalClose{
    top: 1.09rem;
    right: 1.09rem;
    width: 2.18rem;
    height: 2.18rem;
  }
  .theaterModalClose::before,
  .theaterModalClose::after{
    width: 1.45rem;
    height: 0.11rem;
  }
  .theaterModalVisual{
    max-width: 21.77rem;
    padding: 0.45rem;
    border-top-width: 0.24rem;
    border-right-width: 0.24rem;
    border-bottom-width: 0.24rem;
    border-left-width: 0.24rem;
    box-shadow:
      inset 0 0 0.5rem rgba(34, 28, 23, 0.3),
      0 0.65rem 0.5rem rgba(0, 0, 0, 0.24);
  }
  .theaterModalBody{
    padding-right: 0.91rem;
  }
  .theaterModalBody h3{
    margin-bottom: 1.63rem;
    font-size: 1.9rem;
  }
  .theaterModalMeta{
    gap: 0.5rem;
    margin-top: 1.81rem;
    font-size: 0.95rem;
  }
  .theaterModalMeta span + span::before{
    margin-right: 0.5rem;
    width: 0.07rem;
  }
  .theaterModalStory{
    font-size: 0.91rem;
  }
  .theaterModalStoryNote{
    margin-top: 0.74rem;
    color: var(--color-white);
    font-size: 0.764rem;
  }
}
@media screen and (max-width: 768px){
  .theaterModal{
    padding: 5vw;
  }
  .theaterModalDialog{
    grid-template-columns: 1fr;
    gap: 8vw;
    width: 90vw;
    max-height: 86dvh;
    padding: 12vw 5vw 10vw;
    border-width: 0.28vw;
    box-shadow: 0 4vw 8vw rgba(0, 0, 0, 0.36);
  }
  .theaterModalClose{
    top: 2.8vw;
    right: 2.8vw;
    width: 7vw;
    height: 7vw;
  }
  .theaterModalClose::before,
  .theaterModalClose::after{
    width: 4.5vw;
    height: 0.36vw;
  }
  .theaterModalVisual{
    max-width: 60vw;
    padding: 1.3vw;
    border-top-width: 0.7vw;
    border-right-width: 0.7vw;
    border-bottom-width: 0.7vw;
    border-left-width: 0.7vw;
  }
  .theaterModalVisual img{
    max-height: 40dvh;
  }
  .theaterModal.isPortraitKeyVisual .theaterModalVisual img{
    max-height: 30dvh;
  }
  .theaterModalBody{
    align-self: stretch;
    padding-right: 0;
  }
  .theaterModalBody h3{
    margin-bottom: 4vw;
    font-size: 5vw;
  }
  .theaterModalMeta{
    gap: 1.5vw;
    margin-top: 5vw;
    font-size: 3vw;
  }
  .theaterModalMeta span + span::before{
    margin-right: 1.5vw;
    width: 0.18vw;
  }
  .theaterModalStory{
    font-size: 3vw;
  }
  .theaterModalStoryNote{
    margin-top: 2.4vw;
    color: var(--color-white);
    font-size: 2.5vw;
  }
}


/* cta */

.theaterCta{
  padding: 5.83vw 0 8.33vw;
  width: 80vw;
  max-width: 1000px;
}
.theaterCtaInner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3vw;
  align-items: center;
  padding: 3.33vw;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 0.56vw;
}
.theaterCtaInner > div:first-child{
  transform: translateY(-0.45vw);
}
.theaterCtaInner h2,
.theaterCtaInner p{
  color: var(--color-theater-navy);
}
.theaterCtaInner h2{
  font-size: 2.5vw;
  margin-bottom: 0.25vw;
  letter-spacing: 0.08em;
}
.theaterCtaInner p{
  font-size: 1.2vw;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.theaterActions{
  display: grid;
  gap: 0.83vw;
  min-width: 17.36vw;
}
.theaterBtn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-theater-navy);
  font-size: 1.1vw;
  letter-spacing: 0.04em;
  min-height: 4vw;
  padding: 0 4vw 0 3.75vw;
  border: 0.11vw solid var(--color-theater-navy);
  border-radius: 69.38vw;
}
.theaterBtn::after{
  position: absolute;
  top: 0;
  right: 1.8vw;
  bottom: 0;
  width: 0.8vw;
  height: 0.8vw;
  margin: auto 0;
  content: "";
  border-top: 0.16vw solid currentColor;
  border-right: 0.16vw solid currentColor;
  transform: rotate(45deg);
}
.theaterBtnPrimary{
  color: var(--color-white);
  background: var(--color-theater-navy);
  border-color: transparent;
}
.theaterActions .theaterBtn:nth-child(2){
  color: var(--color-theater-navy);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--color-theater-navy);
}
@media screen and (min-width: 1451px){
  .theaterCta{
    width: 72.56rem;
    max-width: 62.5rem;
    padding: 5.29rem 0 7.55rem;
  }
  .theaterCtaInner{
    gap: 2.72rem;
    padding: 3.02rem;
    border-radius: 0.51rem;
  }
  .theaterCtaInner > div:first-child{
    transform: translateY(-0.41rem);
  }
  .theaterCtaInner h2{
    margin-bottom: 0.23rem;
    font-size: 2.27rem;
  }
  .theaterCtaInner p{
    font-size: 1.09rem;
  }
  .theaterActions{
    gap: 0.75rem;
    min-width: 15.74rem;
  }
  .theaterBtn{
    min-height: 3.63rem;
    padding: 0 3.63rem 0 3.4rem;
    font-size: 1rem;
    border-width: 0.1rem;
    border-radius: 62.92rem;
  }
  .theaterBtn::after{
    right: 1.63rem;
    width: 0.73rem;
    height: 0.73rem;
    border-top-width: 0.15rem;
    border-right-width: 0.15rem;
  }
}
@media screen and (max-width: 768px){
  .theaterCta{
    width: 90vw;
    padding: 8.33vw 0 20vw;
  }
  .theaterCtaInner{
    grid-template-columns: 1fr;
    padding: 8vw 7vw 10vw;
    border-radius: 3vw;
    gap: 0;
  }
  .theaterCtaInner > div:first-child{
    transform: none;
  }
  .theaterCtaInner h2{
    font-size: 6.8vw;
    margin-bottom: 0;
    letter-spacing: 0.08em;
  }
  .theaterCtaInner p{
    margin: 3.5vw 0 5vw;
    font-size: 3.25vw;
    line-height: 2;
  }
  .theaterActions{
    gap: 2.5vw;
    min-width: 0;
  }
  .theaterBtn{
    min-height: 12.5vw;
    padding: 0 4.44vw;
    font-size: 3.5vw;
    border-width: 0.22vw;
  }
  .theaterBtn::after{
    right: 5vw;
    width: 1.8vw;
    height: 1.8vw;
    border-top-width: 0.32vw;
    border-right-width: 0.32vw;
  }
}
