@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700;900&family=Sawarabi+Mincho&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #020202; 
    color: #EAEAEA;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-active {
    overflow: hidden;
}

.fullscreen-kv {
    position: relative;
    max-width: 1200px;
    height: 60vh;
    margin: 110px auto 20px; 
    padding: 0 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; 
    border-radius: 0;
    box-shadow: none;
    border: none;
    z-index: 10;
}

@media (max-width: 767px) {
    .fullscreen-kv {
        height: 40vh;
        margin: 90px 16px 16px;
        padding: 0;
    }
}

.fullscreen-kv img.kv-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

@media (max-width: 767px) {
    .kv-right h1 {
        font-size: 1.6rem;
    }
    .fullscreen-kv h1 {
        font-size: 1.5rem;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: transform 0.35s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    padding-right: 80px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: block;
    height: 40px;
}

.header-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9));
}

.menu-trigger {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.menu-trigger.header-hidden {
    transform: translateY(calc(-100% - 48px));
}

.menu-trigger span {
    position: absolute;
    left: 7px;
    width: 24px;
    height: 2px;
    background-color: #D4AF37;
    transition: all 0.3s ease;
}

.menu-trigger span:nth-child(1) { top: 12px; }

.menu-trigger span:nth-child(2) { top: 18px; }

.menu-trigger span:nth-child(3) { top: 24px; }

.menu-active .menu-trigger {
    opacity: 0;
    pointer-events: none;
    
}

.gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111111 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 8vw;
    opacity: 0;
    visibility: hidden;
    border-left: none !important;
    pointer-events: none;
    overflow-y: auto;
    
    transition:
        opacity 0.7s ease,
        visibility 0s linear 0.7s;
}

@media (min-width: 768px) {
    .gnav {
        padding: 0 10vw;
    }
}

.menu-active .gnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    
    transition:
        opacity 1s 0.1s ease,
        visibility 0s linear 0s;
}

.menu-logo-wrapper {
    position: absolute;
    top: 27px;
    left: 6vw;
    width: auto;
    height: 40px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s ease 0s, transform 0.4s ease 0s;
}

@media (min-width: 768px) {
    .menu-logo-wrapper {
        left: 10vw;
        height: 40px;
    }
}

.menu-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.menu-active .menu-logo-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.menu-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.menu-close-btn:hover {
    background: transparent;
    border-color: transparent;
    opacity: 1;
}

.menu-close-btn::before, .menu-close-btn::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 1.5px;
    background-color: #ffffff;
}

.menu-close-btn::before { transform: rotate(45deg); }

.menu-close-btn::after { transform: rotate(-45deg); }

.gnav-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 100px 0 80px 20px;
    width: 100%;
}

.gnav-category {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-top: 52px;
    margin-bottom: 14px;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease 0s;
}

.gnav-category:first-child {
    margin-top: 0;
}

.menu-active .gnav-category {
    opacity: 1;
}

.gnav-item {
    margin: 0 0 2px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}

.menu-active .gnav-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-active .gnav-item:nth-child(1)  { transition-delay: 0.42s; }

.menu-active .gnav-item:nth-child(2)  { transition-delay: 0.49s; }

.menu-active .gnav-item:nth-child(3)  { transition-delay: 0.56s; }

.menu-active .gnav-item:nth-child(4)  { transition-delay: 0.63s; }

.menu-active .gnav-item:nth-child(5)  { transition-delay: 0.70s; }

.menu-active .gnav-item:nth-child(6)  { transition-delay: 0.77s; }

.gnav-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.04em;
    line-height: 1.15;
    display: inline-block;
    padding: 4px 0;
    position: relative;
    transition: opacity 0.25s ease;
}

.gnav-link::after {
    content: none;
}

.gnav-link:hover {
    color: #ffffff;
    opacity: 0.45;
}

.gnav-copyright {
    position: absolute;
    left: 18px;
    bottom: -6%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.1em;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease 0s;
}

.menu-active .gnav-copyright {
    opacity: 1;
    transition: opacity 0.5s ease 0.9s;
}

.section-title {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 56px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.section-title h2 {
    font-size: 2.5rem; 
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    text-align: center;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 32px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
}

.section-title .bar {
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37 50%, transparent);
    margin: 16px auto 0;
    border: none;
}

.modal-arrow {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-family: monospace;
    font-weight: bold;
    outline: none;
    user-select: none;
}

.modal-arrow:hover {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@media (max-width: 767px) {
    .modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .modal-arrow.prev { left: 10px; }
    .modal-arrow.next { right: 10px; }
}

.scroll-anim {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-anim.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.carousel-dot.active {
    background: #D4AF37;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 767px) {
        .ticket-btn-red {
        font-size: 0.95rem;
        padding: 12px 28px;
    }
}

.footer-title {
    color: #D4AF37;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.footer-links-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #888;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #D4AF37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-link:hover {
    color: #D4AF37;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-text {
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 0.05em;
    margin-top: 16px;
}

#sakura-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}


/* ===== 既存サイト：ローディング・ヘッダーナビ ===== */
/*========= ローディング画面 ===============*/
#loading {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #222;
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center; }
  #loading img {
    max-width: 40vw; }


#mainvisual,
#mainvisual * {
    box-sizing: content-box;
}

#mainvisual {
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto; }
  #mainvisual .link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    min-height: 80px;
    height: auto;
    transition: 0.3s;
    position: relative;
    z-index: 10;
    background-color: #ffffff !important;
    width: 100%; }
    #mainvisual .link a:hover {
      opacity: 0.7; }
    #mainvisual .link img {
      height: 60px !important;
      max-height: 60px !important;
      width: auto !important;
      max-width: none !important;
      padding: 10px;
      border: solid 1px #ddd; }

@media (max-width: 767px) {
  #mainvisual {
    margin-bottom: 40px; }
  #mainvisual .link {
    justify-content: center; }
  #mainvisual .link img {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: none !important;
    padding: 6px; }
}

footer{
    text-align: center;
    padding: 24px;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}
.theater-box {
    display: block;
    width: 100%;
    background: rgba(10, 10, 10, 0.85) !important; 
    backdrop-filter: blur(15px) !important; 
    -webkit-backdrop-filter: blur(15px) !important;
    
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 64px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .theater-box {
        padding: 24px 16px;
    }
}

.story-section {
    display: block;
    width: 100%;
    padding: 60px 40px;
    background: rgba(10, 10, 10, 0.65) !important; 
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 12px;
    margin-bottom: 64px;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 10;
}

.story-section p {
    font-size: 1.0rem;
    color: #d0d0d0;
    line-height: 2.2;
    font-weight: 300;
    letter-spacing: 0.08em;
    max-width: 800px;
    margin: 0 auto;
    text-align: left; 
}

@media (max-width: 767px) {
    .story-section {
        padding: 32px 16px;
        margin-bottom: 40px;
    }
    .story-section p {
        font-size: 1.1rem; 
        line-height: 1.8; 
        letter-spacing: 0.05em;
    }
}

.theater-table {
    width: 100%;
    border-collapse: collapse;
    color: #ccc;
    margin-top: 24px;
    background-color: rgba(255, 255, 255, 0.1);
}

.theater-table th, .theater-table td {
    font-size: 1.0rem;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.theater-table th {
    color: #D4AF37;
    font-weight: 700;
    border-bottom: 2px solid #D4AF37; 
}

.theater-table td {
    white-space: normal !important; 
    word-break: break-all !important; 
    line-height: 1.6;
}

@media (max-width: 767px) {
    .theater-table th, .theater-table td {
        padding: 12px 8px;
    }
}

.map-wrapper {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 8px;
    margin-top: 24px;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.attention-section {
    display: block;
    width: 100%;
    background: rgba(139, 0, 0, 0.3); 
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    padding: 32px;
    margin-top: 64px;
    position: relative;
    z-index: 10;
    margin-bottom: 70px;
}

@media (max-width: 767px) {
    .attention-section {
        padding: 20px 16px;
    }
}

.attention-section h3 {
    color: #ff6b84; 
    font-size: 1.25rem;
    margin-bottom: 16px;
    text-align: center;
}

.attention-list {
    display: block;
    width: 100%;
    list-style-type: none;
    padding-left: 0;
}

.attention-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
}

.attention-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: #ff6b84;
}

.cast-section{
    display: block;
    width: 100%;
    margin-bottom: 80px;
}

.cast-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 10;
}

.cast-card {
    flex: 0 1 200px; 
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.cast-card.hero {
    border: 1px solid #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cast-card.hero .cast-role {
    display: inline-block;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 700;
    color: #D4AF37;
}

.cast-card.hero .cast-name {
    font-size: 1.3rem;
    font-weight: 900;
}

.cast-card:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.cast-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cast-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
/* 
.cast-card:hover .cast-img-wrapper img {
    transform: scale(1.6);
} */

.cast-info {
    display: block;
    width: 100%;
    padding: 12px;
}

.cast-role {
    font-size: 0.9rem;
    color: #D4AF37;
    margin-bottom: 4px;
    font-weight: 500;
}

.cast-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.faq-container {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 10;
}

.faq-item {
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(12, 12, 12, 0.8);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.faq-question {
    font-size: 1.2rem;
    padding: 20px 24px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question::after {
    content: "＋";
    color: #D4AF37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    background: #080808;
}

.faq-answer-inner {
    padding: 24px;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
        .theater-table th:nth-child(1) {
        width: 60px;
    }
    .theater-table th:nth-child(2) {
        width: 60px;
    }
}

.article-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.production-label {
    color: #D4AF37;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    display: block;
}

.production-title {
    display: inline-block;
    width: 100%;
    font-size: 2.2rem;
}

.section-heading {
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    font-size: 1.7rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 12px;
    letter-spacing: 0.1em;
}

.subsection-label {
    display: inline-block;
    width: 100%;
    color: #888;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.schedule-note {
    display: inline-block;
    width: 100%;
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 16px;
}

.ticket-center {
    text-align: center;
}

.venue-name {
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}

.venue-address {
    display: inline-block;
    width: 100%;
    font-size: 1.0rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-text {
    display: inline-block;
    width: 100%;
    font-size: 1.0rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-name {
    display: inline-block;
    width: 100%;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-url{
    color: cadetblue;
}

.td-holiday {
    color: #ff6b84;
    font-weight: bold;
}

.schedule-wrapper{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.scroll-nav-bar {
    position: sticky;
    top: 0px;
    z-index: 99;
    width: 100%;
    margin: 0 0 56px;
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease,
                border-color 0.4s ease, box-shadow 0.4s ease,
                top 0.35s ease;
}

.scroll-nav-bar.is-sticky {
    background: rgba(2, 2, 2, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .scroll-nav-bar {
        top: 0px;
        gap: 6px;
        padding: 10px 12px;
    }
}

.scroll-nav-btn {
    font-size: 1.0rem;
    color: #ccc;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-nav-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.scroll-nav-btn.btn-ticket-primary {
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid #ff003c;
    color: #ff3366;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
    animation: pulseGlow 2s infinite alternate;
}

.scroll-nav-btn.btn-ticket-primary:hover {
    background: #ff003c;
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.5);
}

@media (max-width: 767px) {
    .scroll-nav-btn {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

.staff{
    text-align: center;
    line-height: 40px;
    color: #D0D0D0;
    font-size: 1.1rem;
    margin-bottom: 80px;
}

.cast-group-wrapper{
    display: block;
    width: 100%;
    margin-bottom: 56px;
}

.cast-group-heading{
    text-align: center;
    color: #D4AF37;
    font-size: 1.7rem;
    margin-bottom: 32px;
    letter-spacing: 0.1em;
}

.cast-koujou{
    object-position: center 6%;
    transform: scale(1.5);
}

.cast-sugie{
    object-position: center 6%;
    transform: scale(1.5);
}

.cast-iiyama{
    object-position: center 26%;
    transform: scale(1.4);
}

.cast-nishikawa{
    object-position: center 6%;
    transform: scale(1.4);
}

.cast-syori{
    object-position: center 7%;
    transform: scale(1.4);
}

.cast-osako{
    object-position: center 4%;
    transform: scale(1.4);
}

.cast-arai{
    object-position: center 4%;
    transform: scale(1.4);
}

.cast-shimizu{
    object-position: center 4%;
    transform: scale(1.4);
}

.cast-hayashi{
    object-position: center -14%;
    transform: scale(1.5);
}

.cast-itagaki{
    object-position: center 5%;
    transform: scale(1.5);
}

.cast-yamamoto{
    object-position: center -25%;
    transform: scale(1.5);
}

.cast-kashimata{
    object-position: center 16%;
}

.cast-kurihara{
    object-position: center -18%;
    transform: scale(1.6);
}

.cast-miyazaki{
    object-position: center 1%;
    transform: scale(1.2);
}

.cast-sato{
object-position: center 58%;
    transform: scale(1.2);
}

.ticket-attntion-wrapper{
    display: block;
    width: 100%;
    margin-top: 24px;
    border-top: 1px dashed rgba(212, 175, 55, 0.15);
    padding-top: 16px;
}

.ticket-attention-label{
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.0rem;
    border: none;
    padding-bottom: 0;
    margin-bottom: 8px;
}

.repeater{
    padding-left: 12px;
}

@media (max-width: 767px) {

}

@keyframes ticketPulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
        border-color: #ff003c;
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 0, 60, 0.7), 0 0 10px rgba(212, 175, 55, 0.2);
        border-color: #D4AF37;
    }
}

@media (max-width: 767px) {
        .ticket-btn-red {
        font-size: 1.0rem;
        padding: 12px 28px;
    }
}

.kyogen-story-heading {
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 32px;
    letter-spacing: 0.15em;
    text-align: center;
}

.ensemble-wrap {
    text-align: center;
}

.ensemble-heading {
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.ensemble-text {
    display: inline-block;
    width: 100%;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

.schedule-note-sm {
    display: inline-block;
    width: 100%;
    font-size: 0.8rem;
    color: #888;
    margin-top: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.event-heading {
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 16px;
    border-left: 3px solid #D4AF37;
    padding-left: 12px;
    letter-spacing: 0.05em;
}

.event-note {
    font-size: 1.0rem;
    color: #888;
    line-height: 1.5;
}

.ticket-attention {
    display: inline-block;
    width: 100%;
    font-size: 1.0rem;
    color: #888;
    margin-top: 4px;
    padding-left: 0;
}

.ticket-block-sm {
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px;
}

.ticket-block-md {
    margin-bottom: 32px;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 24px;
}

.ticket-label {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 8px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.ticket-price-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 2.0;
    padding-left: 12px;
    font-weight: 500;
}

.ticket-note-text {
    font-size: 1.0rem;
    color: #888;
    margin-top: 16px;
    line-height: 1.8;
}


.ticket-presale-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .ticket-presale-grid {
        width: 80%;
        margin: 0 auto;
        grid-template-columns: repeat(1, 1fr);
    }
}

.ticket-presale-card {
    display: block;
    width: 100%;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 16px;
}

.ticket-presale-card.primary {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.04);
}

.ticket-presale-title {
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
    border-left: 2px solid #D4AF37;
    padding-left: 8px;
}

.ticket-presale-time {
    display: inline-block;
    width: 100%;
    font-size: 1.0rem;
    color: #fff;
    margin-bottom: 8px;
}

.goods-coming-wrap {
    display: block;
    width: 100%;
    text-align: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.goods-coming-title {
    display: inline-block;
    width: 100%;
    color: #D4AF37;
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.goods-coming-text {
    display: inline-block;
    width: 100%;
    font-size: 1.0rem;
    color: #aaa;
    line-height: 1.6;
}

/* スケジュールマトリクス表 */


.schedule-matrix .th-time,
.schedule-matrix .td-time {
    color: #D4AF37;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.05);
}

.schedule-matrix .th-day {
    font-size: 1.0rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

/* イベント種別カラー */
.ev-normal { color: #ffffff; font-weight: bold; }
.ev-aftertalk { color: #81c784; font-weight: bold; }
.ev-miokuri   { color: #ff6b84; font-weight: bold; }
.ev-oen       { color: #64b5f6; font-weight: bold; }
.ev-special   { color: #FDD700; font-weight: bold; }

/* 凡例 */
.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 16px;
    font-size: 1.0rem;
    color: #ccc;
}

/* SP対応：外側のdivでスクロール、文字を小さく */
@media (max-width: 767px) {
    .schedule-matrix th,
    .schedule-matrix td {
        padding: 8px 4px;
        font-size: 1.0rem;
    }
    .schedule-legend {
        gap: 8px 16px;
        font-size: 1.0rem;
    }
}

.scroll-hint {
    display: none;
}


.schedule-matrix th,
.schedule-matrix td {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-matrix th:first-child,
.schedule-matrix td:first-child {
    border-left: none;
}

@media (max-width: 767px) {
    .scroll-hint {
        display: block;
        text-align: center;
        font-size: 1.0rem;
        color: rgb(199, 29, 29);
        margin-bottom: 8px;
        letter-spacing: 0.05em;
    }

    .schedule-matrix .th-time,
    .schedule-matrix .td-time {
        width: 52px;
        min-width: 52px;
    }

    .schedule-matrix thead th:not(.th-time) {
        width: 52px;
        min-width: 52px;
    }

    
}
.theater-table td:last-child {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.event-table .name {
    white-space: nowrap;
}
.ticket-presale-card.coming-soon {
    position: relative;
    overflow: hidden;
}

.ticket-presale-card.coming-soon::after {
    content: 'COMING SOON';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.ticket-presale-link-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.ticket-presale-link-wrapper .scroll-nav-btn {
    position: static;
    white-space: nowrap;
}

.ticket-attention-red {
    display: inline-block;
    width: 100%;
    color: #ff3366;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 12px;
}

.event-list {
    display: block;
    width: 100%;
    margin-bottom: 24px;
}

.event-list-item {
    display: block;
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
}

.event-list-heading {
    display: inline-block;
    width: 100%;
    font-size: 0.95rem;
    color: #D4AF37;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.event-list-cast {
    display: inline-block;
    width: 100%;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 2;
}

.event-list-cast .name {
    white-space: nowrap;
}
.footer {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: #030303;
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-mb-80 {
    display: block;
    width: 100%;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    body, p, li, td, .faq-answer-inner {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}
