:root {
    --bg: #080808;
    --inkB: #2d2a26;
    --muted: #6d665d;
    --gold: #C9A24A;
    --paper: url(../img/extra_clean_paper.png); /*#F2EFE8*/
    --paperText: #181818;
    --line: rgba(245, 243, 238, .14);
    --serif: 'Bodoni Moda', serif;
    --jpSerif: 'Shippori Mincho', serif;
    --sans: 'BIZ UDPGothic', system-ui, sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-dramatic: cubic-bezier(.72, 0, .18, 1);
}
/* =========================
   横ブレ防止
========================= */
* {
    box-sizing: border-box
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    margin: 0;
    background: var(--bg);
    color: #CBCBCB;
    font-family: var(--sans);
    line-height: 1.75;
    letter-spacing: .04em;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block
}
a {
    color: inherit;
    text-decoration: none
}
button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer
}
body:not(.is-ready) {
    overflow: hidden
}
/*=========================================================
OPENING
=========================================================*/
.opening {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #030303;
    opacity: 1;
    visibility: visible;
    transition:
        opacity .8s ease, visibility .8s ease;
}
.opening.is-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Loader */
.openingLoader {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Ring */
.openingLoader__ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-top-color: #C9A24A;
    animation: ringSpin .95s linear infinite;
}
@keyframes ringSpin {
    to {
        transform: rotate(360deg);
    }
}
/* ==========================================
   HEADER / NAV
========================================== */
.siteHeader {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-18px);
    transition:
        opacity .9s var(--ease), transform .9s var(--ease);
}
body.is-ready .siteHeader {
    opacity: 1;
    transform: none;
    transition-delay: .35s;
}
/* MENU BUTTON */
.menuBtn {
    position: relative;
    z-index: 10002;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    background: #050505;
    border: 0;
    cursor: pointer;
    pointer-events: auto;
    overflow: visible;
    transition: background .35s var(--ease);
}
.menuBtn:hover, body.nav-open .menuBtn {
    background: #111;
}
/* ICON */
.menuBtn__icon {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
}
.menuBtn__icon span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 48px;
    height: 2px;
    background: var(--gold);
    transform-origin: center;
    transition:
        transform .55s cubic-bezier(.76, 0, .24, 1), width .35s var(--ease), background .35s var(--ease);
}
/* closed */
.menuBtn__icon span:nth-child(1) {
    transform: translateY(-8px);
}
.menuBtn__icon span:nth-child(2) {
    transform: translateY(8px);
}
/* hover */
.menuBtn:hover .menuBtn__icon span {
    width: 58px;
}
/* open = X */
body.nav-open .menuBtn__icon span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    width: 52px;
}
body.nav-open .menuBtn__icon span:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
    width: 52px;
}
/* NAV OVERLAY */
.globalNav {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .96);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .45s var(--ease), visibility .45s var(--ease);
}
.globalNav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* background typography */
.globalNav::before {
    content: "LAST STAND";
    position: absolute;
    left: -4vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: clamp(120px, 16vw, 300px);
    line-height: 1;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .025);
    white-space: nowrap;
    pointer-events: none;
}
/* NAV INNER */
.globalNav__inner {
    position: relative;
    z-index: 2;
    width: min(1080px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    counter-reset: nav;
}
/* ==========================================
   NAV LINK
========================================== */
.globalNav__inner > a {
    position: relative;
    display: block;
    padding-left:54px;
    color: #fff;
    text-decoration: none;
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 58px);
    line-height: 1.1;
    counter-increment: nav;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .45s, transform .45s, color .35s, padding-left .35s;
}
.globalNav__inner > a::before {
    content: counter(nav, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 16px;
    font-family: var(--serif);
    letter-spacing: .18em;
}
.globalNav.is-open .globalNav__inner > a {
    opacity: 1;
    transform: none;
}
.globalNav__inner > a:hover {
    color: var(--gold);
    padding-left: 56px;
}
.globalNav__inner > a::after {
    content: "";
    position: absolute;
    left: 64px;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease);
}
.globalNav__inner > a:hover::after {
    width: 100%;
}
/* delay */
.globalNav.is-open a:nth-child(1) {
    transition-delay: .08s;
}
.globalNav.is-open a:nth-child(2) {
    transition-delay: .14s;
}
.globalNav.is-open a:nth-child(3) {
    transition-delay: .20s;
}
.globalNav.is-open a:nth-child(4) {
    transition-delay: .26s;
}
.globalNav.is-open a:nth-child(5) {
    transition-delay: .32s;
}
.globalNav.is-open a:nth-child(6) {
    transition-delay: .38s;
}
.globalNav.is-open a:nth-child(7) {
    transition-delay: .40s;
}

.globalNav.is-open a:nth-child(8) {
    transition-delay: .40s;
}

.globalNav.is-open a:nth-child(9) {
    transition-delay: .40s;
}
.globalNav.is-open a:nth-child(10) {
    transition-delay: .40s;
}

/* MOBILE */
@media(max-width:860px) {
    .siteHeader {
            position: fixed;
        top: 0;
        right: 0;
        width: auto;
        display: flex;
        justify-content: flex-end;
        z-index: 10000;
    }
    .menuBtn {
        width: 64px;
        height: 64px;
        background: rgba(8, 8, 8, .92);
        backdrop-filter: blur(10px);
    }
    .menuBtn__icon {
        width: 34px;
        height: 34px;
    }
    .menuBtn__icon span {
        width: 34px;
        height: 1px;
    }
    .menuBtn:hover .menuBtn__icon span {
        width: 40px;
    }
    body.nav-open .menuBtn__icon span {
        width: 38px;
    }
    .globalNav::before {
        display: none;
    }
    .globalNav__inner {
        width: 90vw;
        gap: 15px;
    }
    .globalNav a {
        font-size: 26px;
        gap: 15px;
    }
    .globalNav a::before {
        width: 36px;
        font-size: 12px;
    }
    .globalNav a::after {
        left: 56px;
    }
}
/* ==========================================
   GLOBAL NAV project
========================================== */
.globalNav__inner > a.globalNav__project {
    padding-top: 12px;
    border-top: 1px solid rgba(201, 162, 74, .18);
    color: var(--gold);
}
.globalNav__inner > a.globalNav__project:hover {
    color: var(--gold);
}
/* ==========================================
   GLOBAL NAV SNS
========================================== */
.globalNav__sns {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 162, 74, .18);
}
.globalNav__snsList {
    display: flex;
    align-items: center;
    gap: 18px;
}
.globalNav__snsList a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    opacity: .75;
    transition:
        opacity .35s, transform .35s;
}
.globalNav__snsList a:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.globalNav__snsList img {
    display: block;
    width: 22px;
    height: 22px;
}
@media(max-width:860px) {
    .globalNav__sns {
        margin-top: 40px;
        padding-top: 22px;
    }
    .globalNav__snsList {
        gap: 16px;
    }
}
/**/
/* =========================================================
   HERO NEW
========================================================= */
.hero {
    overflow: visible;
}
.heroCanvas {
    position: relative;
    overflow: hidden;
}
.heroKv {
    position: relative;
    width: 100%;
    height: 100svh; /* または 100vh */
    overflow: hidden;
    min-height: 720px;
}
.heroKv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.05);
    filter: blur(2px);
    transition:
        transform 2.4s cubic-bezier(.22, .61, .36, 1), filter 2s ease;
}
/*=========================
 LAST STAND（PC）
=========================*/
.heroLast {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(18px);
    transform: scale(1.08);
    transition:
        opacity 1.6s ease, transform 2.2s cubic-bezier(.22, .61, .36, 1), filter 2.2s cubic-bezier(.22, .61, .36, 1);
}
/*=========================
 TITLE（PC）
=========================*/
.heroTitle {
    position: absolute;
    left: 51%;
    top: 23.2%;
    width: 34vw;
    opacity: 0;
    filter: blur(18px);
    transition:
        opacity 1.2s ease, filter 1.8s cubic-bezier(.22, .61, .36, 1);
}
/*=========================
 TITLE（SP）
=========================*/
.heroTitleSp {
    display: none;
    position: absolute;
    left: 50%;
    top: -5px;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0;
    filter: blur(16px);
    transition:
        opacity 1s ease, filter 1.6s cubic-bezier(.22, .61, .36, 1);
    z-index: 3;
}
/*=========================
 NAME
=========================*/
.heroName {
    position: absolute;
    left: 50%;
    top: 72%;
    width: min(680px, 40vw);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 1.8s ease;
    z-index: 5;
    pointer-events: none;
}
@media (max-width:1300px) {
    .heroName {
        top: 71%;
        width: min(560px, 44vw);
    }
}

@media (max-width:860px){

    .hero{
        padding-top:64px;
    }

    .heroKv{
        height:calc(100svh - 64px);
    }

}

/*=========================
 HERO ANIMATION
=========================*/
body.hero-start .heroKv__img {
    transform: scale(1);
    filter: none;
}
body.hero-title .heroTitle {
    opacity: 1;
    transform:
        translateX(-50%);
    filter: none;
}
body.hero-last .heroLast {
    opacity: .55;
    transform: scale(1);
    filter: none;
}
body.hero-name .heroName {
    opacity: 0.7;
    transform: translateX(-50%);
}
/*=========================================================
 SP
=========================================================*/
@media (max-width:860px) {
    .heroLast, .heroTitle {
        display: none;
    }
    .heroTitleSp {
        display: block;
    }
    body.hero-title .heroTitleSp {
        opacity: 1;
        filter: none;
    }
    .heroName {
        display: block;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto;
        width: 82vw;
        max-width: 640px;
        margin: 8vw auto 10vw;
        transform: none !important;
    }
    body.hero-name .heroName {
        opacity: 1;
    }
} /**/
.section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #080808, #101010);
    overflow: hidden
}
.section--light {
    background: var(--paper);
    color: var(--paperText);
    position: relative;
}
.section--light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(#080808, rgba(8, 8, 8, 0));
}
.section__inner {
    width: min(1200px, 92vw);
    margin: auto;
}
.section__head {
    margin-bottom: 80px;
    display: grid;
    gap: 8px;
    margin: 0 auto 20px;
    max-width: 1100px
}
.section__head--center {
    text-align: center;
    justify-items: center
}
.section__head h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(64px, 7vw, 120px);
    line-height: .9;
}
.section__head h2 span {
    color: var(--gold);
}
.section__head p {
    margin-top: 16px;
    font-family: var(--serif);
    letter-spacing: .35em;
    color: #8b6d33;
}
.section__head::after {
    width: 180px;
    margin-top: 20px;
    content: "";
    height: 2px;
    background:
        linear-gradient(90deg, transparent, rgba(0, 0, 0, .35), transparent);
    mix-blend-mode: overlay;
    filter: blur(.4px);
}
@media (max-width:860px) {
    /* SECTION */
    .section {
        padding: 70px 0;
    }
    .section__head {
        width: calc(100% - 36px);
        margin: 0 auto 42px;
    }
    .section__head h2 {
        font-size: clamp(48px, 16vw, 76px);
        line-height: .9;
        word-break: keep-all;
    }
    .section__head::after {
        width: 110px;
        margin-top: 18px;
    }
} /**/
/* ==========================================
   FOOTER + SNS
========================================== */
.footer {
    display: grid;
    justify-items: center;
    gap: 24px;
    padding: 90px 20px;
    background: #050505
}
.footer__logo {
    margin: 15px auto;
    width: min(360px, 70vw);
    opacity: .8
}
.footer img {}
.footer small {
    color: var(--muted);
    font-family: var(--serif);
}
.footer__sns {
    display: flex;
    justify-content: center;
    gap: 22px;
}
.footer__sns a {
    opacity: .7;
    transition:
        opacity .3s, transform .3s;
}
.footer__sns a:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.footer__sns img {
    width: 24px;
    height: 24px;
    display: block;
}
/* ==========================================
   TOPICS
========================================== */
.topics {
    padding-top: 0;
    max-width: 1200px;
    margin: auto;
}
.topics__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.topicItem {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 60px;
    padding: 42px 0;
      align-items: center;
    border-bottom: none;
    background:
        linear-gradient(rgba(88, 78, 60, .18), rgba(88, 78, 60, .18)) bottom left / 100% 1px no-repeat;
}
.topicItem time {
    font-family: var(--serif);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    min-width: 80px;
}
.topicItem time .year {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
}
.topicItem time .date {
    margin-top: 6px;
    font-size: 42px;
    line-height: .9;
    font-weight: 600;
}
.topicItem a {
    position: relative;
    padding-left: 40px;
}
.topicItem a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
    transition: .4s;
}
.topicItem:hover a::before {
    width: 30px;
}
.topicItem:hover a {
    color: var(--gold);
}
.topics__more {
    margin-top: 40px;
    text-align: right;
}
.topics__more a {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--serif);
    font-weight: 600;
}
.topics__more a::after {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--gold);
    transition: width .4s;
}
.topics__more a:hover {
    color: var(--gold);
}
.topics__more a:hover::after {
    width: 130px;
}
@media (max-width:1240px) {
    .topics {
        padding-top: 20px;
        max-width: 90%;
    }
} /**/
@media (max-width:860px) {
    .topics__list {
        margin: 0;
    }
    .topicItem {
        max-width: none;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 0;
    }
    .topicItem time {
        min-width: 0;

        font-weight: 700;
        letter-spacing: .12em;
    }
    .topicItem time .year {
        font-size: 12px;
    }
    .topicItem time .date {
        font-size: 38px;
        line-height: .9;
    }
    .topicItem a {
        padding-left: 15px;
        font-size: 1rem;
        line-height: 1.8;
    }
    .topicItem a::before {
        width: 18px;
        top: 1em;
    }
    .topics__more {
        margin-top: 28px;
        text-align: left;
    }
    .topics__more a {
        gap: 6px;
        font-size: .95rem;
    }
    .topics__more a::after {
        width: 34px;
    }
    .topics__more a:hover::after {
        width: 70px;
    }
} /**/
/*=========================================
TOPICS MOVIE
=========================================*/
.topicsMovie {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, .15);
}
.topicsMovie__inner {
    width: min(1280px, 94vw);
    margin: auto;
}
.topicsMovie__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, .28);
}
.topicsMovie__thumb img {
    display: block;
    width: 100%;
    transition:
        transform 1.3s var(--ease), filter 1.3s var(--ease);
}
.topicsMovie__thumb:hover img {
    transform: scale(1.035);
    filter: brightness(.72);
}
.topicsMovie__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .24) 48%, rgba(0, 0, 0, .68));
}
.topicsMovie__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.topicsMovie__playCircle {
    position: relative;
    display: block;
    width: 88px;
    height: 88px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    transition: .45s var(--ease);
}
.topicsMovie__playTriangle {
    position: absolute;
    left: 36px;
    top: 27px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #fff;
    transition: .35s;
}
.topicsMovie__thumb:hover .topicsMovie__playCircle {
    border-color: var(--gold);
    transform: scale(1.08);
}
.topicsMovie__thumb:hover .topicsMovie__playTriangle {
    border-left-color: var(--gold);
}
/*=========================================
VIDEO MODAL
=========================================*/
.videoModal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}
.videoModal.is-open {
    opacity: 1;
    visibility: visible;
}
.videoModal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(12px);
}
.videoModal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(960px, 92vw);
}
.videoModal__frame {
    position: relative;
    padding-top: 56.25%;
}
.videoModal iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.videoModal__close {
    position: absolute;
    top: -56px;
    right: 0;
    width: 52px;
    height: 52px;
    background: none;
    border: 0;
    cursor: pointer;
}
.videoModal__close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 1px;
    background: var(--gold);
    transition: .35s;
}
.videoModal__close span:first-child {
    transform:
        translate(-50%, -50%) rotate(45deg);
}
.videoModal__close span:last-child {
    transform:
        translate(-50%, -50%) rotate(-45deg);
}
.videoModal__close:hover span {
    width: 46px;
    background: #fff;
}
body.modal-open {
    overflow: hidden;
}
/*=========================================
SP
=========================================*/
@media(max-width:860px) {
    .topicsMovie {
        margin-top: 80px;
    }
    .topicsMovie__inner {
        width: calc(100vw - 44px);
    }
    .topicsMovie__play {
        gap: 12px;
        font-size: 18px;
    }
    .topicsMovie__line {
        width: 22px;
        height: 1px;
    }
    .topicsMovie__thumb:hover .topicsMovie__line {
        width: 48px;
    }
    .videoModal__close {
        top: -44px;
        gap: 10px;
        font-size: 12px;
    }
    .videoModal__closeLine {
        width: 18px;
    }
    .videoModal__close:hover .videoModal__closeLine {
        width: 34px;
    }
}
/*=========================================
SCHEDULE HERO
=========================================*/
.scheduleHero {
    padding: 120px 0 80px;
}
.scheduleHero__inner {
    width: min(1380px, 92vw);
    margin: auto;
    display: block;
}
.scheduleHero__visual {
    width: min(980px, 88vw);
    aspect-ratio: 9 / 10;
    margin: 0 auto 70px;
    overflow: hidden;
    background: #000;
}
.scheduleHero__visual picture {
    display: block;
    width: 100%;
    height: 100%;
}
.scheduleHero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 上を少し切って下段を見せる */
    object-position: center 72%;
}
.scheduleHero__content {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.scheduleHero__eyebrow {
    margin: 0 0 30px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: .95rem;
    letter-spacing: .35em;
}
.scheduleHero__title {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(64px, 7vw, 120px);
    line-height: .88;
    letter-spacing: .03em;
}
.scheduleHero__title span {
    color: var(--gold);
}

.scheduleHero__cities {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 42px;
    margin: 56px auto 0;
    padding: 0;
    list-style: none;
}
.scheduleHero__cities li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(210, 188, 138, .25);
    color: rgba(255, 255, 255, .72);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .24em;
    transition: .35s;
}
.scheduleHero__cities li:hover {
    color: #fff;
    padding-left: 12px;
}
.scheduleHero__cities a {
    display: block;
}
/*schedule TITLE*/
.scheduleBlock__head {
    padding-top: 34px;
    margin-bottom: 70px;
    border-bottom: 1px solid rgba(210, 188, 138, .25);
}
.scheduleBlock__head::after {
    content: "";
    display: block;
    margin-top: 20px;
    width: 120px;
    height: 2px;
    background: var(--gold);
}
.scheduleBlock__en {
    margin: 0 0 10px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .35em;
    line-height: 1;
}
.scheduleBlock__title {
    margin: 0;
    font-family: var(--jpSerif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em;
}
@media(max-width:860px) {
    .scheduleHero {
        padding: 0 0 60px;
    }
    .scheduleHero__inner {
        width: 100%;
    }
    .scheduleHero__visual {
        width: 100%;
        aspect-ratio: auto;
        margin: 0 0 48px;
    }
    .scheduleHero__visual picture, .scheduleHero__visual img {
        height: auto;
    }
    .scheduleHero__visual img {
        width: 100%;
        object-fit: contain;
        object-position: center center;
    }
    .scheduleHero__content {
        width: calc(100% - 36px);
    }
    .scheduleHero__title {
        font-size: 58px;
    }
    .scheduleHero__cities {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin: 40px auto 0;
        width: 100%;
    }
    .scheduleHero__cities li {
        width: 100%;
        max-width: 320px;
    }
    .scheduleBlock__head {
        margin-bottom: 30px;
        padding-bottom: 16px;
    }
    .scheduleBlock__en {
        font-size: .8rem;
    }
    .scheduleBlock__title {
        font-size: 2rem;
    }
} /**/
/*=========================================
scheduleBlock
=========================================*/
.scheduleCalendar {
    margin: 0 auto 42px;
    padding: 36px;
    background: var(--paper);
    overflow-x: auto;
}
.scheduleCalendar img {
    display: block;
    width: 100%;
    height: auto;
}
.scheduleBlock {
    position: relative;
    width: min(780px, 86vw);
    margin: 0 auto 120px;
}

.scheduleRow {
    color: var(--text);
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid rgba(210, 188, 138, .22);
}
.scheduleRow:first-child {
    border-top: none;
    padding-top: 0;
}
.scheduleLabel {
    color: var(--gold);
    font-family: var(--jpSerif);
    font-weight: 700;
    letter-spacing: .08em;
}
.scheduleValue{
    display:flex;
    flex-direction:column;
    gap:.2rem;
}

.scheduleValue p{
    margin:0;
}



.scheduleValue img{
    display:block;
    width:80%;
}

.officialLink{
    margin-left:auto;
margin-bottom:16px;
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:var(--gold);
    font-family:var(--serif);
    font-size:.85rem;
    letter-spacing:.18em;
}


.officialLink::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: .35s;
}
.officialLink:hover::after {
    width: 44px;
}



.ticketLinks {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.ticketLinks a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 34px;
    background: rgba(18, 16, 14, .95);
    border-top: 1px solid rgba(201, 162, 74, .45);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition:
        transform .35s, background .35s, border-color .35s;
}
.ticketLinks a::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    background: var(--gold);
    transition:
        width .35s var(--ease), transform .35s var(--ease);
}
.ticketLinks a:hover {
    background: rgba(30, 26, 21, .98);
    transform: translateX(6px);
}
.ticketLinks a:hover::after {
    width: 72px;
    transform: translateX(6px);
}


.ticketLinks small{
    display:block;
    margin:-2px 0 12px;
    padding-left:18px;

    color:#b2b1b1;
    font-size:.82rem;
    line-height:1.6;
}

.ticketInfo{
    padding-top:14px;
}

.ticketInfo p{
    margin:0 0 14px;
}

.ticketInfo strong{
    color:var(--gold);
}


.saleInfo{
    gap:14px;
}

.saleItem{
    display:grid;
    grid-template-columns:7em 1fr;
    gap:20px;
    align-items:baseline;
}

.saleItem span{
    color:var(--gold);
    font-weight:700;
}

.saleItem p{
    margin:0;
}

.priceList{
    gap:8px;
}

.priceList>div{
    display:grid;
    grid-template-columns:7em auto;
    gap:20px;
    max-width:220px;
}

.priceList span{
    color:#ddd;
}

.priceList strong{
    font-weight:700;
    text-align:right;
    font-variant-numeric:tabular-nums;
}

.ticketNote{
    margin-top:16px;
    color:#999;
    font-size:.9rem;
}

@media(max-width:860px) {
    .scheduleCalendar {max-width: 100%;
    margin: 0 auto 42px;
    padding: 12px;
    background: var(--paper);
    overflow-x: auto;
}
.scheduleValue img{
    display:block;
    width:96%;
}

    .scheduleRow {
        grid-template-columns: 1fr;
        gap: 10px;
    }
 
    .ticketLinks a {
        width: 100%;
    }
}
/*=========================================
INTRODUCTION
=========================================*/
.introSection {
    position: relative;
    background: var(--paper);
    overflow: hidden;
}
/* 和紙っぽい質感 */
.introSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .55) 0, transparent 45%), radial-gradient(circle at 85% 80%, rgba(0, 0, 0, .025) 0, transparent 50%);
    opacity: .65;
    pointer-events: none;
}
.introWrap {
    position: relative;
    z-index: 2;
    width: min(920px, 92vw);
    margin: auto;
}
/* 見出し */
.introSection .section__head {
    margin-bottom: 60px;
}
.introSection .section__head h2 {
    color: #1f1f1f;
}



/* リード */
.introLead {line-height: 1.8;
    margin: 0 auto 60px;
    text-align: center;
}
.introLead__copy {
    margin: 0 0 34px;
    font-family: var(--jpSerif);
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    font-weight: 700;
    
    letter-spacing: .05em;
}
.introLead__copy:last-child {
    margin-bottom: 0;
    color: #7e5d23;
}
/* 本文 */
.introBody {
    max-width: 760px;
    margin: 0 auto;
}
.introBody p {
    margin: 0 0 2.4em;
    font-size: 1.06rem;
    color: #333;
}
.introBody p:last-child {
    margin-bottom: 0;
}
.introLinks {
    max-width: 700px;
    margin: 64px auto 0;
    display: flex;
    justify-content: center;
    gap: 48px;
}
.introLink {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #7e5d23;
    font-family: var(--serif);
    font-size: 1.2rem;
    letter-spacing: .2em;
}
.introLink::after {
    content: "";
    width: 54px;
    height: 1px;
    background: currentColor;
    transition: width .35s var(--ease);
}
.introLink:hover::after {
    width: 120px;
}
.introLink span {
    color: var(--inkB);
    font-family: var(--sans);
    font-size: .92rem;
    letter-spacing: .08em;
}
/*=========================================
SP
=========================================*/
@media (max-width:860px) {
    .introSection {
        padding: 90px 0;
    }
    .introWrap{
        width:calc(100% - 28px);
        margin:0 auto;
    }
    .introSection .section__head {
        margin-bottom: 55px;
    }
    .introLead {
        margin-bottom: 55px;
    }
    .introLead__copy {
        font-size: 1.4rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }
    .introBody{
        width:100%;
        max-width:none;
        margin:0 auto;
    }

    .introBody p{
        margin:0 0 1em;
        padding:0;
    }
    .introLinks{
        display:flex;
        flex-direction:column;
        gap:24px;
        align-items:center;
    }

    .introLink{
        width:100%;
        max-width:320px;
    }
}
/*=========================================================
 INTRO MORE
=========================================================*/
.introMore {
    margin-top: 56px;
    text-align: center;
}
.introMore a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #7e5d23;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .22em;
}
.introMore a::after {
    content: "";
    width: 52px;
    height: 1px;
    background: currentColor;
    transition: width .35s var(--ease);
}
.introMore a:hover::after {
    width: 120px;
}
/*=========================================================
 HISTORY PAGE
=========================================================*/
.historyPage {
    background: #080808;
    color: #fff;
}
.historyHero {
    position: relative;
    padding: 170px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 162, 74, .18), transparent 34%), linear-gradient(180deg, #050505, #0b0b0b);
}
.historyHero::before {
    content: "LAST STAND";
    position: absolute;
    left: 50%;
    top: 38px;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: clamp(90px, 16vw, 240px);
    line-height: 1;
    white-space: nowrap;
    color: rgba(255, 255, 255, .035);
    pointer-events: none;
}
.historyHero__inner {
    position: relative;
    z-index: 1;
    width: min(980px, 90vw);
    margin: auto;
    text-align: center;
}
.historyHero__label {
    margin: 0 0 26px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: .9rem;
    letter-spacing: .34em;
}
.historyHero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(78px, 10vw, 150px);
    font-weight: 600;
    line-height: .9;
    letter-spacing: .04em;
}
.historyHero__lead {    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    margin: 46px auto 0;
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-family: var(--jpSerif);
}
/* TIMELINE */
.historyTimeline {
    position: relative;
    width: min(1040px, 90vw);
    margin: 0 auto;
    padding: 120px 0 80px;
}
.historyTimeline::before {
    content: "";
    position: absolute;
    left: 210px;
    top: 120px;
    bottom: 80px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 74, .5), rgba(201, 162, 74, .2), transparent);
}
.historyItem {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
    padding: 0 0 96px;
}
.historyItem::before {
    content: "";
    position: absolute;
    left: 204px;
    top: .45em;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 24px rgba(201, 162, 74, .55);
}
.historyItem__year {   font-weight:700;  color:var(--gold);
    margin: 0;
 
    font-family:var(--serif);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0;
        -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.historyItem__body {
    padding-top: 4px;
}
.historyItem__body h2{
    margin-top:-6px;
    margin-bottom:22px;
    font-family:var(--jpSerif);
     font-size:clamp(34px, 2.3vw, 42px);
    font-weight:700;
    line-height:1.25;
    letter-spacing:.04em;
}
.historyItem__body h2 span {
    display: block;
    margin-top: 0;
    font-size: .72em;
    font-weight: 500;
}
.historyItem__body p {
    margin: 1em 0 1.8em;
    color: rgba(255, 255, 255, .82);
    font-size: 1.04rem;
    text-align: justify;
}
.historyItem__body p:last-child {
    margin-bottom: 0;
}
.historyItem--last .historyItem__body {
    padding: 44px 46px;
    border-top: 1px solid rgba(201, 162, 74, .5);
    border-bottom: 1px solid rgba(201, 162, 74, .22);
    background: rgba(255, 255, 255, .025);
}
.historyItem--last .historyItem__body h2 {
    color: var(--gold);
}
/* STATEMENT */
.historyStatement {
    padding: 90px 0 130px;
    background:
        radial-gradient(circle at 50% 50%, rgba(201, 162, 74, .13), transparent 36%), #050505;
}
.historyStatement__inner {
    width: min(840px, 90vw);
    margin: auto;
    text-align: center;
}
.historyStatement h2 {
    margin: 0 0 36px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: clamp(54px, 7vw, 110px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: .05em;
}
.historyStatement p {
    margin: 0 auto 52px;
    max-width: 680px;
    color: rgba(255, 255, 255, .86);
    font-family: var(--jpSerif);
    font-size: 1.22rem;
}
.historyStatement a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .2em;
}
.historyStatement a::after {
    content: "";
    width: 54px;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}
.historyStatement a:hover {
    color: var(--gold);
}
.historyStatement a:hover::after {
    width: 130px;
}
/*=========================================================
 HISTORY SP
=========================================================*/
@media(max-width:860px) {
    .historyHero {
        padding: 110px 0 76px;
    }
    .historyHero::before {
        top: 44px;
        font-size: 28vw;
    }
    .historyHero__label {
        margin-bottom: 20px;
        font-size: .72rem;
        letter-spacing: .28em;
    }
    .historyHero h1 {
        font-size: clamp(58px, 18vw, 92px);
    }
    .historyHero__lead {
        margin-top: 34px;
        font-size: 1.1rem;
        line-height: 1.9;
        text-align: left;
    }
    .historyTimeline {
        width: calc(100% - 36px);
        padding: 76px 0 42px;
    }
    .historyTimeline::before {
        left: 22px;
        top: 80px;
        bottom: 50px;
    }
    .historyItem {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 0 72px;
        padding-left: 56px;
    }
    .historyItem::before {
        left: 16px;
        top: .6em;
        width: 13px;
        height: 13px;
    }
    .historyItem__year { font-family: var(--jpSerif);
        font-size: 48px;
    }
    .historyItem__body h2 {
      margin-bottom:16px;
    font-size:clamp(20px, 6vw, 24px);
    line-height:1.35;
    }
    .historyItem__body p {
        font-size: 1rem;
        text-align: left;
    }
    .historyItem--last .historyItem__body {
        padding: 30px 0 30px 24px;
        margin-left: -20px;
    }
    .historyStatement {
        padding: 76px 0 100px;
    }
    .historyStatement h2 {
        font-size: 56px;
    }
    .historyStatement p {
        font-size: 1.05rem;
    }
}
/*=========================================
STORY
=========================================*/
.section--story {
    padding-top: 160px;
    padding-bottom: 160px;
}
.story {
    max-width: 760px;
    margin: auto;
}

/* リード */
.storyLead {line-height: 1.8;
    margin: 0 auto 60px;
    text-align: center;
}
.storyLead__copy {
    margin: 0 0 34px;
    font-family: var(--jpSerif);
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    font-weight: 700;
    
    letter-spacing: .05em;
}
.storyLead__copy:last-child {
    margin-bottom: 0;
    color: #7e5d23;
}

.story__body {
    position: relative;
}

.story__body p {
    margin: 0 0 1.2em;
    font-size: 1.06rem;
    color: #333;
    text-align: justify;
}
.story__body p:last-child {
    margin-bottom: 0;
}
/*=========================
SP
=========================*/
@media(max-width:860px) {
    .section--story {
        padding-bottom: 90px;
    }
    .story {
        max-width: 100%;
    }
    .storyLead{
        margin-bottom: 40px;
    }
    .storyLead__copy {
        font-size: 1.4rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }
    .story__body::before {
        margin-bottom: 34px;
    }
    .story__body p {
        font-size: 1rem;
        line-height: 2;
    }
}
/*=========================================
CAST & STAFF
=========================================*/
.section--castStaff {
    position: relative;
    color: var(--ink);
    padding: 140px 0 150px;
}
.castArea {
    --cast-card-w: 170px;
    --cast-space: 70px;
    display: grid;
    gap: 86px;
    margin: auto;
    text-align: center;
}
/* ===== GRID ===== */
.castGrid {
    display: grid;
    justify-content: center;
    align-items: start;
    gap: 0 26px;
}
/* 1行目：太一｜空き｜塩野｜藤岡｜空き｜友貴 */
.castGrid--row1 {
    grid-template-columns:
        var(--cast-card-w) var(--cast-space) var(--cast-card-w) var(--cast-card-w) var(--cast-space) var(--cast-card-w);
}
.castGrid--row1 .castCard:nth-child(1) {
    grid-column: 1;
}
.castGrid--row1 .castCard:nth-child(2) {
    grid-column: 3;
}
.castGrid--row1 .castCard:nth-child(3) {
    grid-column: 4;
}
.castGrid--row1 .castCard:nth-child(4) {
    grid-column: 6;
}
/* 2行目：柚香｜空き｜片岡｜桜井｜近藤｜河野 */
.castGrid--row2 {
    grid-template-columns:
        var(--cast-card-w) var(--cast-space) var(--cast-card-w) var(--cast-card-w) var(--cast-card-w) var(--cast-card-w);
}
.castGrid--row2 .castCard:nth-child(1) {
    grid-column: 1;
}
.castGrid--row2 .castCard:nth-child(2) {
    grid-column: 3;
}
.castGrid--row2 .castCard:nth-child(3) {
    grid-column: 4;
}
.castGrid--row2 .castCard:nth-child(4) {
    grid-column: 5;
}
.castGrid--row2 .castCard:nth-child(5) {
    grid-column: 6;
}
/* 3行目：木村｜浜中｜粟根｜空き｜山口 */
.castGrid--row3 {
    grid-template-columns:
        var(--cast-card-w) var(--cast-card-w) var(--cast-card-w) var(--cast-space) var(--cast-card-w);
}
.castGrid--row3 .castCard:nth-child(1) {
    grid-column: 1;
}
.castGrid--row3 .castCard:nth-child(2) {
    grid-column: 2;
}
.castGrid--row3 .castCard:nth-child(3) {
    grid-column: 3;
}
.castGrid--row3 .castCard:nth-child(4) {
    grid-column: 5;
}
/* ===== CARD ===== */
.castCard {
    width: var(--cast-card-w);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.castCard figure {
    position: relative;
    width: 100%;
    margin: 0 0 18px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}
.castCard figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    transition: .7s;
}
.castCard:hover figure::after {
    background: rgba(0, 0, 0, 0);
}
.castCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transform: scale(1);
    transition:
        filter .7s ease, transform .9s cubic-bezier(.22, .61, .36, 1);
}
.castCard:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}
/* ===== TEXT ===== */
.castRole {
    margin: 0 0 8px;
    min-height: 1.4em;
    color: var(--gold);
    font-family: var(--jpSerif);
    font-size: .9rem;
    letter-spacing: 0;
}
.castCard h3 {
    margin: 0;
    min-height: 2.5em;
    font-family: var(--jpSerif);
    font-size: 30px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
}
/* ===== BUTTON ===== */
.castBtns {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.castBtn, .staffBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(201, 162, 74, .38);
    color: var(--gold);
    font-family: var(--serif);
    font-size: .9rem;
    letter-spacing: .1em;
    transition: .3s var(--ease);
}
.castBtn:hover, .staffBtn:hover {
    padding-left: 12px;
    color: #fff;
    background: rgba(201, 162, 74, .12);
}
.staffBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 8px) / 2);
    margin: 24px auto 0;
}
@media(max-width:1200px) {
.castBtn, .staffBtn { font-size:1.1rem;
        width: 100%;max-width: 240px;
        margin: 10px auto 0;
    }
}
/* STAFF */
.staffArea {
    margin-top: 120px;
    padding-top: 120px;
    position: relative;
}
.staffList {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 760px;
    margin: auto;
    text-align: center;
}
.staffCard {
    padding: 36px 32px;
    border-top: 1px solid rgba(201, 162, 74, .35);
    /*background: rgba(255, 255, 255, .025);*/
}
.staffRole {
    margin: 0 0 8px;
    color: var(--gold);
    font-family: var(--jpSerif);
}
.staffCard h4 {
    margin: 0 0 24px;
    font-family: var(--jpSerif);
    font-size: 1.6rem;
}



/* SP */
@media(max-width:1200px) {
    .section--castStaff {
        padding: 90px 0;
        width: 100%;
    }
    .castArea {
        width: 100%;
        gap: 56px;
        overflow: hidden;
    }
    .castGrid, .castGrid--row1, .castGrid--row2, .castGrid--row3 {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 56px 0;
        justify-items: center;
    }
    .castGrid .castCard {
        grid-column: auto !important;
    }
    .castCard {
        width: min(230px, 70vw);
        max-width: 100%;
    }
    .castCard figure {
        width: 100%;
        aspect-ratio: 3 / 4;
        margin: 0 0 16px;
    }
    /* PC用の配置指定を解除 */
    .castGrid .castCard {
        grid-column: auto !important;
    }
    .castRole, .staffRole {
        font-size:1.1rem;
    }
    .castBtns {
        grid-template-columns: 1fr;
    }

    .staffArea {
        margin-top: 80px;
    }
    .staffList {
        grid-template-columns: 1fr;
        max-width: 70%;
        margin: auto;
        text-align: center;
    }
    .staffCard {
        padding: 28px 22px;
    }
}


/*=========================================
 STAFF CREDIT
=========================================*/

.staffCredit{
    width:min(680px,76vw);
    margin:60px auto 0;
}

.staffCredit img{opacity: 0.8;
    display:block;
    width:100%;
    height:auto;
}

.staffCredit .staffCreditPc{
    display:block;
}

.staffCredit .staffCreditSp{
    display:none;
}

@media (max-width:1200px){

    .staffCredit{
        width:min(360px,70vw);
        margin:52px auto;
    }

    .staffCredit .staffCreditPc{
        display:none;
    }

    .staffCredit .staffCreditSp{
        display:block;
    }

}


/*=========================================
 CAST DIVIDER
=========================================*/
/* PC */
.castDivider {
    display: none;
}
/* SP */
@media(max-width:1200px) {
    .castDivider {
        display: flex;
        justify-content: center;
        margin: 88px 0 50px;
    }
    .castDivider::before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        background: url("../svg/cast-divider.svg") center / contain no-repeat;
        opacity: .55;
    }
}
/* ==========================================
   CAST CREDIT
========================================== */
.castCredit {
width: min(680px, 76vw);
    margin: 26px auto 0;
}
.castCredit img {
    display: block;
    width: 100%;
    height: auto;
}
@media(max-width:1200px) {
    .castCredit {
        width: min(360px, 70vw);
        margin: 52px auto;
    }
}
/* ==========================================
   CAST CREDIT  pc/sp
========================================== */
.castCredit .castCreditPc {
    display: block;
}
.castCredit .castCreditSp {
    display: none;
}
@media (max-width:1200px) {
    .castCredit .castCreditPc {
        display: none;
    }
    .castCredit .castCreditSp {
        display: block;
    }
}
/* =========================================================
    pc/sp visibility 
========================================================= */
.sp {
    display: none !important;
}
.pc {
    display: block !important;
}
@media (max-width: 859px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
} /**/
/* =========================================================
   Spacing utilities
========================================================= */
.mt-1, .pt-1 {
    padding-top: 0.5em;
}
.mt-2, .pt-2 {
    padding-top: 1em;
}
.mt-3, .pt-3 {
    padding-top: 1.5em;
}
.mt-4, .pt-4 {
    padding-top: 2em;
}
.mt-5, .pt-5 {
    padding-top: 2.5em;
}
.mb-1, .pb-1 {
    padding-bottom: 0.5em;
}
.mb-2, .pb-2 {
    padding-bottom: 1em;
}
.mb-3, .pb-3 {
    padding-bottom: 1.5em;
}
.mb-4, .pb-4 {
    padding-bottom: 2em;
}
.mb-5, .pb-5 {
    padding-bottom: 2.5em;
}
/* ==========================================
   FLOATING BANNER
========================================== */
.floatingBanner {
    position: fixed;
    left: 40px;
    bottom: 40px;
    z-index: 950;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
    transition:
        opacity 1.4s ease, transform 1.6s cubic-bezier(.22, .61, .36, 1), filter 1.6s cubic-bezier(.22, .61, .36, 1);
}
body.is-ready .floatingBanner {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 2.1s;
}
/* ---------- Item ---------- */
.floatingBanner__item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 14px;
    background: rgba(18, 16, 14, .92);
    backdrop-filter: blur(24px);
    border-top: 2px solid rgba(210, 188, 138, .28);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45);
    transition:
        background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
/* 上ライン */
.floatingBanner__line {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--gold);
    transition: width .45s var(--ease);
}
.floatingBanner__title {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.25;
    color: #fff;
}
/* Hover */
.floatingBanner__item:hover {
    transform: translateY(-3px);
    background: rgba(24, 21, 18, .96);
    border-color: rgba(210, 188, 138, .55);
}
.floatingBanner__item:hover .floatingBanner__line {
    width: 92px;
}
/* ==========================================
   MOBILE
========================================== */
@media (max-width:860px) {
    .floatingBanner {
        left: 8px;
        bottom: 8px;
        width: 140px;
        gap: 8px;
    }
    .floatingBanner__item {
        padding: 10px 10px 10px;
        gap: 10px;
    }
    .floatingBanner__title {
        font-size: 16px;
    }
    .floatingBanner__line {
        width: 28px;
    }
    .floatingBanner__item:hover .floatingBanner__line {
        width: 58px;
    }
}
.section--light::after, .scheduleHero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 0, 0, .12), transparent 28%), radial-gradient(circle at 86% 72%, rgba(0, 0, 0, .10), transparent 30%), linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, .045) 48%, transparent 70%);
    opacity: .55;
    mix-blend-mode: multiply;
}
.scheduleBlock::before {
    content: attr(id);
    position: absolute;
    top: -95px;
    right: -40px;
    font-size: clamp(110px, 15vw, 260px);
    line-height: 1;
    color: rgba(255, 255, 255, .08);
    font-family: var(--serif);
    text-transform: uppercase;
    pointer-events: none;
}

.section--castStaff::before {
    content: "CAST";
    position: absolute;
    left: 15%;
    top: 0;
    font-family: var(--serif);
    font-size: clamp(120px, 18vw, 300px);
    line-height: 1;
    color: rgba(255, 255, 255, .08);
    pointer-events: none;
}
.staffArea::before {
    content: "STAFF";
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    font-family: var(--serif);
    font-size: clamp(160px, 18vw, 320px);
    line-height: 1;
    white-space: nowrap;
    color: rgba(255, 255, 255, .08);
    pointer-events: none;
    z-index: 0;
}
/* =========================================================
   INVIEW VARIATION
========================================================= */
.js-inview {
    opacity: 0;
    filter: blur(6px);
    transition:
        opacity .8s var(--ease), transform .9s var(--ease), filter 1.2s var(--ease);
    will-change: opacity, transform, filter;
}
.js-inview.is-inview {
    opacity: 1;
    filter: blur(0);
}
/* 共通 */
.fade-up, .slide-left, .slide-right, .zoom-in {
    transition:
        opacity .8s var(--ease), transform .9s var(--ease), filter 1.1s var(--ease);
}
/* ---------- Fade Up ---------- */
.fade-up {
    transform: translateY(80px);
}
.fade-up.is-inview {
    transform: translateY(0);
}
/* ---------- Slide Left ---------- */
.slide-left {
    transform: translateX(-100px);
}
.slide-left.is-inview {
    transform: translateX(0);
}
/* ---------- Slide Right ---------- */
.slide-right {
    transform: translateX(100px);
}
.slide-right.is-inview {
    transform: translateX(0);
}
/* ---------- Zoom ---------- */
.zoom-in {
    transform: scale(.86);
}
.zoom-in.is-inview {
    transform: scale(1);
}
/* =========================================================
   CAST STAGGER
========================================================= */
.castGrid.stagger .castCard {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
    transition:
        opacity .6s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
    transition-delay: calc(var(--i, 0) * .08s);
}
.castGrid.stagger.is-inview .castCard {
    opacity: 1;
    transform: none;
    filter: none;
}
/* ==========================================
   CAST DETAIL
========================================== */
.castDetail {
    background: #080808;
    color: var(--ink);
}

/* ==========================================
   COMMENT
========================================== */
.castComment {
    padding: 60px 0;
    background:
        linear-gradient(180deg, #0d0d0d, #111);
}
.castComment__body {
    width: min(760px, 90vw);
    margin: auto;
}
.castComment__body p {
    margin: 0 0 2.4em;
    font-size: 1.08rem;
    /*line-height: 2.5;*/
    color: rgba(255, 255, 255, .9);
}
.castComment__body p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   INTERVIEW
========================================== */
.castInterview {
    padding: 120px 0;
    background: #080808;
}
.castInterview__inner {
    width: min(820px, 90vw);
    margin: auto;
}
.castInterview dl {
    margin: 0;
}
.castInterview dt {
    margin: 0 0 18px;
    color: var(--gold);
    font-family: var(--jpSerif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .08em;
}
.castInterview dd {
    margin: 0 0 70px;
    font-size: 1.05rem;
    /*line-height: 2.45;*/
    color: rgba(255, 255, 255, .86);
}
/* ==========================================
   MOVIE
========================================== */
.castMovie {
    padding: 120px 0;
}
/* TOPICS MOVIEをそのまま流用 */
/* ==========================================
   PAGER
========================================== */
.castPager {
    padding: 80px 0 140px;
    display: flex;
    justify-content: center;
}
.castPager a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .18em;
    transition: .35s;
}
.castPager a::after {
    content: "";
    width: 46px;
    height: 1px;
    background: var(--gold);
    transition: width .35s;
}
.castPager a:hover {
    color: var(--gold);
}
.castPager a:hover::after {
    width: 110px;
}
/* ==========================================
   DECORATION
========================================== */
.castHero::before {
    content: "COMMENT";
    position: absolute;
    left: -4vw;
    top: 70px;
    font-family: var(--serif);
    font-size: clamp(120px, 17vw, 280px);
    line-height: 1;
    color: rgba(255, 255, 255, .03);
    pointer-events: none;
}
/*=========================================================
 CAST HERO
=========================================================*/
.castHero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}
.castHero__inner {
    width: min(1080px, 90vw);
    margin: auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 84px;
    align-items: center;
}


.castHero__photo {
    width: min(300px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #000;
    aspect-ratio: 3 / 4;
}
.castHero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}



.castHero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ENGLISH NAME */
.castHero__en {
    order: 1;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .45);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .32em;
    line-height: 1;
}
/* JAPANESE NAME */
.castHero__name {
        order: 2;
    margin: 18px 0 18px;
    font-size: 4.2rem;
    line-height: 1.05;
    font-family: var(--jpSerif);
}


/* ROLE */

.castHero__role {
    order: 3;
    margin: 0;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.45rem; font-weight: 700;
    letter-spacing: .10em;
    line-height: 1.45;
}


.castHero__role small {
    font-size: 1rem;
}

/*=========================================================
 SP
=========================================================*/
@media(max-width:1200px) {
    .castHero {
        padding: 70px 0 60px;
    }
    .castHero__inner {
        width: min(92vw, 420px);
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }
    .castHero__photo {
        width: min(260px, 72vw);
        margin: 0 auto;
    }
    .castHero__content {
        align-items: center;
    }
    .castHero__en {
        margin: 0 0 14px;
        font-size: .85rem;
        letter-spacing: .26em;
    }
    .castHero__name {
        margin: 0 0 16px;
        font-size: 2.6rem;
        line-height: 1.15;
    }
    .castHero__role {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}
/* ==========================================
   MOBILE
========================================== */
@media(max-width:1200px) {

    .castComment {
        padding: 80px 0;
    }
    .castComment__body {
        width: calc(100% - 36px);
    }
    .castComment__body p {
        font-size: 1rem;
        /*line-height: 2.2;*/
    }
    .castComment .section__head h2 {
font-size: clamp(32px, 10vw, 56px);
        line-height: .9;
        word-break: keep-all;
    }
    .castInterview {
        padding: 80px 0;
    }
    .castInterview dt {
        font-size: 1.1rem;
    }
    .castInterview dd {
        margin-bottom: 44px;
        font-size: 1rem;
        /*line-height: 2.1;*/
    }
    .castMovie {
        padding: 80px 0;
    }
    .castPager {
        padding: 60px 0 90px;
    }
    .castHero::before {
        display: none;
    }
} /**/
/*=========================================================
 PRODUCTION PAGE
=========================================================*/
.productionPage {
    background: #080808;
    color: #fff;
}
.productionHero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 162, 74, .16), transparent 36%), linear-gradient(180deg, #050505, #0b0b0b);
}
.productionHero::before {
    content: "LAST STAND";
    position: absolute;
    left: 50%;
    top: 44px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .035);
    font-family: var(--serif);
    font-size: clamp(90px, 16vw, 250px);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}
.productionHero__inner {
    position: relative;
    z-index: 1;
    width: min(980px, 90vw);
    margin: auto;
    text-align: center;
}
.productionHero__label {
    margin: 0 0 26px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: .9rem;
    letter-spacing: .34em;
}
.productionHero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(68px, 10vw, 150px);
    font-weight: 600;
    line-height: .9;
    letter-spacing: .04em;
}
.productionHero__lead {
    margin: 42px auto 0;
    color: rgba(255, 255, 255, .86);
    font-family: var(--jpSerif);
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    /*line-height: 2;*/
}
.productionBody {
    padding: 110px 0 130px;
}
.productionBody__inner {
    width: min(860px, 90vw);
    margin: auto;
}
.productionLead {
    margin: 0 0 86px;
    padding: 46px 50px;
    border-top: 1px solid rgba(201, 162, 74, .45);
    border-bottom: 1px solid rgba(201, 162, 74, .22);
    background: rgba(255, 255, 255, .025);
}
.productionLead p {
    margin: 0 0 1.6em;
    color: rgba(255, 255, 255, .94);
    font-family: var(--jpSerif);
font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.85;
    letter-spacing: .04em;
}
.productionLead p:last-child {
    margin-bottom: 0;
}
.productionText {
    max-width: 760px;
    margin: auto;
}
.productionText p {
    margin: 0 0 2.3em;
    color: rgba(255, 255, 255, .84);
    font-size: 1.04rem;
}
.productionText p:last-child {
    margin-bottom: 0;
}

.productionText strong{
    font-weight:700;
    color:#fff;
    white-space:nowrap;
}

.productionLinks {
    max-width: 760px;
    margin: auto;
    margin-top: 90px;
    display: flex;
    justify-content: center;
    gap: 48px;
}
.productionLinks a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .2em;
}
.productionLinks a::after {
    content: "";
    width: 46px;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}
.productionLinks a:hover::after {
    width: 120px;
}
/*=========================================================
 PRODUCTION SP
=========================================================*/
@media(max-width:860px) {
    .productionHero {
        padding: 110px 0 74px;
    }
    .productionHero::before {
        top: 50px;
        font-size: 28vw;
    }
    .productionHero__label {
        margin-bottom: 20px;
        font-size: .72rem;
        letter-spacing: .26em;
    }
    .productionHero h1 {
        font-size: clamp(50px, 16vw, 84px);
    }
    
    .specialProject__title{

    margin:0 0 18px;

    color:#fff;

    font-family:var(--jpSerif);

    font-size:1.35rem;

    font-weight:700;

    line-height:1.6;

    letter-spacing:.05em;

}
    
    .productionHero__lead {
        margin-top: 32px;
        font-size: 1.15rem;
        line-height: 1.9;
    }
    .productionBody {
        padding: 74px 0 96px;
    }
    .productionBody__inner {
        width: calc(100% - 36px);
    }
    .productionLead {
        margin-bottom: 56px;
        padding: 32px 24px;
    }
    .productionLead p {
        font-size: 1.25rem;
        line-height: 1.8;
    }
    .productionText p {
        font-size: 1rem;
        /*line-height: 2.05;*/
        text-align: left;
    }
    .productionLinks {
        margin-top: 64px;
        flex-direction: column;
        gap: 28px;
    }
}

/*==================================================
SPECIAL PROJECT
==================================================*/
.specialProject{
width: min(420px, 52vw);
    margin:90px auto 120px;
    text-align:center;
}

.specialProject__label{
    margin:0 0 30px;
    color:var(--gold);
    font-family:var(--serif);
    font-size:.82rem;
    letter-spacing:.34em;
}

.specialProject__banner{
    display:block;
    overflow:hidden;
    border:1px solid rgba(201,162,74,.35);
    transition:
        transform .35s var(--ease),
        border-color .35s var(--ease),
        box-shadow .35s var(--ease);
}

.specialProject__banner img{
    display:block;
    width:100%;
    height:auto;
}

.specialProject__banner:hover{
    transform:translateY(-4px);
    border-color:rgba(201,162,74,.7);
    box-shadow:0 24px 70px rgba(0,0,0,.45);
}

@media(max-width:860px){

    .specialProject{
   width: min(420px, 80vw);
        margin:70px auto 90px;
    }

    .specialProject__label{
        margin-bottom:24px;
        font-size:.76rem;
        letter-spacing:.3em;
    }

}