@charset "UTF-8";

/* -----------------------------------
   Modern Base CSS (2025)
----------------------------------- */

/* 1. Reset + Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. Base HTML setup */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    color: #fff;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #063a69;
    background-image: linear-gradient(#063a69cf, #063a69cf),
        url(../img/noise.png);
    background-repeat: repeat;
    background-size: 200px;
    background-attachment: fixed;
}

/* 3. Variables (テーマカラーなど) */
:root {
    --color-bg: #063a69;
    --color-text: #ffffff;
    --color-accent: #bdbdb3;
    --max-width: 960px;
    --spacing: 1.5rem;
}
a {
    color: #bdbdb3;
}
/* 4. Layout */
main {
    flex: 1;
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    padding-block: var(--spacing);
}

.site-footer {
    font-size: 0.9em;
    text-align: center;
    padding: 1rem;
}

/* 5. Utility classes */
.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* 6. Responsive tweak */
.br-sp {
    display: none;
}
.pl-1em {
    padding-left: 1em;
}
@media (max-width: 600px) {
    .site-header nav ul {
        flex-direction: column;
        gap: 0.5rem;
  }
    .br-sp {
    display: inline;
}

}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------teaser----------------*/

.teaser img {
    height: 90vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    box-shadow: 0 0 20px gray;
}
@media (max-width: 600px) {
    .teaser img {
        width: 90vw;
        height: auto;
    }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------header----------------*/

/* =========================
   ヘッダー（通常）
========================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all .3s ease;
    padding: 30px 0;
    background: transparent;
}

.header.scrolled {
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #063a69;
    background-image: linear-gradient(#063a69cf, #063a69cf),
        url(../img/noise.png);
    background-repeat: repeat;
    background-size: 200px;
}

.header-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* =========================
   PCメニュー
========================= */
.pc-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 1.2em;
    text-align: center;
    line-height: 1;
}
.pc-nav a {
    text-decoration: none;
    color: #bdbdb3;
    font-weight: 600;
}
.pc-nav ul li a span {
    font-size: 0.6em;
    color: #fff;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}

.sp-nav {
    display: none;
}


@media (max-width: 768px) {

  .pc-nav {
    display: none;
  }

  .header {
    background: transparent !important;
    box-shadow: none !important;
  }

  .hamburger {
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1100;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 22px;
    height: 2px;
    background: #bdbdb3;
    transition: .4s;
  }

  .hamburger span:nth-child(1) { top: 14px; }
  .hamburger span:nth-child(2) { top: 21px; }
  .hamburger span:nth-child(3) { top: 28px; }

  /* X に変形するアニメーション */
  .hamburger.active {
    transform: rotate(360deg);
    transition: transform .5s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* スマホメニュー全画面 */
  .sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #063a69;
    background-image: linear-gradient(#063a69cf, #063a69cf),
        url(../img/noise.png);
    background-repeat: repeat;
    background-size: 200px;
    background-attachment: fixed;
    color: #bdbdb3;
    transform: translateX(100%);
    transition: .5s ease;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp-nav.open {
    transform: translateX(0);
  }

  .sp-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  .sp-nav li {
    margin: 20px 0 40px;
  }

  .sp-nav a {
    color: #bdbdb3;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
      line-height: 0.5;
  }
    .sp-nav a span {
        color: #fff;
        font-size: 14px;
        font-family:
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            "Helvetica Neue",
            Arial,
            "Hiragino Kaku Gothic ProN",
            "Hiragino Sans",
            Meiryo,
            sans-serif;
        line-height: 1;
    }
}

/* =======================================
   PC はいまのまま
======================================= */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
/* =========================
   スマホ判定
========================= */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    .header.scrolled {
        padding: 10px 0;
        background: none;
        box-shadow: none;
    }

  .pc-nav { display: none; }

  .hamburger {
    display: flex;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------top----------------*/
.top-image img {
    width: 100vw;
    margin: 80px auto 0;
}
@media (max-width: 600px) {
    .top-image img {
        width: 100vw;
        height: auto;
        margin: 0 auto;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------section---------*/
.section-inner {
    margin: 0 auto;
    width: 90%;
    text-align: justify;
    max-width: 900px;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}
.section-title h2 {
    color: #bdbdb3;
    font-weight: 600;
    text-align: center;
    font-size: 1.8em;
    padding: 30px 0 60px;
    letter-spacing: 0.1em;
}
.jp-title {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    font-weight: 600;
    color: #fff;
    display: block;
    font-size: 12px;
    margin-top: 2px;
    letter-spacing: 0.15em;
}
.section-inner p {
    line-height: 2;
}
@media (max-width: 600px) {
    .section-title h2 {
        font-size: 1.5em;
    }
    .section-inner {
        padding: 60px 0 0;
        font-size: 13px;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------news--------------*/
.news-list {
    max-width: 600px; 
    margin: 0 auto;   
    padding: 20px 20px; 
    border-top: thin solid;
    border-bottom: thin solid;
    max-height: 200px; 
    overflow-y: auto;
    box-sizing: border-box;
}
.news-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    white-space: nowrap;
}

.news-body {
    flex: 1;
    line-height: 1.6;
    display: inline; 
}
.news-body p {
    display: inline;  
    margin: 0;
}
@media (max-width: 600px) {
    .news-list {
        max-height: 150px; 
    }    
}


/*--------------------------------------------------------------------------------------------------------------------------------------------------------movie--------------*/
#movie p {
    text-align: center;
    font-weight: 700;
}
.movie-thumb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    justify-items: center;
}
.movie-thumb img {
    width: 400px;
    max-width: 100%;
    height: auto;
    display: block;
    border: solid 8px rgba(0,0,0,0.40);
}
.movie-thumb figcaption {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}
@media screen and (max-width: 960px) {
    .movie-thumb {
        width: 100%;
    }
}


/*--------------------------------------------------------------------------------------------------------------------------------------------------------introduction--------------*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------cast&staff--------------*/

.cast-top,
.cast-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
}
.item {
    text-align: center;
    margin-bottom: 30px;
}
.item img {
    max-width: 240px;
    margin: 0 auto 8px;
    display: block;
}
.item p {
    font-weight: 600;
}

.credits {
    max-width: 90vw;
    margin: 0 auto;
    padding: 20px 0px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}


.credit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin: 8px 0;
}

.role {
    text-align: right;
    opacity: 0.9;
}

.name {
    text-align: left;
    opacity: 0.95;
}

.credit-space {
    height: 40px;
}

.credit-footer {
    margin-top: 60px;
    opacity: 0.85;
    line-height: 1.8;
}
/* --- PC：キャスト 3人ずつ × 2段 --- */
@media (min-width: 768px) {
  .cast-top,
  .cast-bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {

  .cast-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }

  .cast-top,
  .cast-bottom {
    display: contents;
  }
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------schedule--------------*/

#schedule {

}
.sc-inner {
    padding: 30px 0 0 0;
}
@media screen and (min-width: 960px) {
  .s-inner {
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (min-width: 960px) {
  .sc-list {
    display: block;
  }
}

.place-wrapper {
    border: thin solid;
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto 30px;
    padding: 30px 30px 30px;
}
.place-wrapper .city {
    color: #bdbdb3;
    text-align: center;
    font-size: 3.4em;
    letter-spacing: 0.1em;
}
.place-wrapper .hall {
    color: #bdbdb3;
    font-weight: 600;
    text-align: center;
    font-size: 1.8em;
    padding: 0 0 16px;
    letter-spacing: 0.1em;
    line-height: 1em;
}
.place-wrapper .adress {
    color: #FFF;
    font-weight: 600;
    text-align: center;
    font-size: 0.9em;
    padding: 0 0 10px;
    letter-spacing: 0.1em;
    line-height: 1.4em;
}
.place-wrapper .theater-hp {
    text-align: center;
}
.place-wrapper .theater-hp a {
    font-size: 0.8em;
    display: inline-block;
    padding: 6px 14px;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    user-select: none;
    border-radius: 50px;
    transition: 0.4s ease;
    background: #bdbdb3;
    margin-bottom: 30px;
}
.place-wrapper .date {
    color: #bdbdb3;
    font-weight: 600;
    text-align: center;
    font-size: 1.3em;
    padding: 0 0 40px;
    letter-spacing: 0.1em;
    line-height: 1em;
}
.place-wrapper .provided {
    color: #bdbdb3;
    font-weight: 600;
    margin-bottom: 40px;
}
.place-wrapper .price {
    font-weight: 600;
    font-size: 1.2em;
}
.place-wrapper .sc-table {
    margin: 25px 0;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid;
    background: rgba(255,255,255,0.60);
}
.place-wrapper .sc-table .sc-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.price-title {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #bdbdb3;
    font-size: 1.2em;
}

@media screen and (max-width: 959px) {
    .place-wrapper .date {
        font-size: 1em;
        padding: 0 0 30px;
    }
}
@media screen and (max-width: 959px) {
  .place-wrapper .sc-table.sc-tokyo {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thick;
    scrollbar-color: #bdbdb3 rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
  }

  .place-wrapper .sc-table.sc-tokyo .sc-image {
    min-width: 600px;
  }
}
@media screen and (min-width: 960px) {
  .place-wrapper .sc-table.sc-sendai {
    width: 60%;
    max-width: 60%;
    margin: 0 auto 30px;
  }
}
.place-wrapper .sc-table.sc-sendai .sc-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
@media screen and (min-width: 960px) {
    .place-wrapper .sc-table.sc-sendai .sc-image {
        width: 23%;
        max-width: 23%;
    }
}
@media screen and (max-width: 959px) {
    .place-wrapper .sc-table.sc-sendai .sc-image {
        width: 35%;
        max-width: 35%;
    }
}
@media screen and (min-width: 960px) {
    .place-wrapper .sc-table.sc-aomori {
        width: 60%;
        max-width: 60%;
        margin: 0 auto 30px;
    }
}
.place-wrapper .sc-table.sc-aomori .sc-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
@media screen and (min-width: 960px) {
    .place-wrapper .sc-table.sc-aomori .sc-image {
        width: 23%;
        max-width: 23%;
    }
}
@media screen and (max-width: 959px) {
    .place-wrapper .sc-table.sc-aomori .sc-image {
        width: 35%;
        max-width: 70%;
    }
}
@media screen and (min-width: 960px) {
    .place-wrapper .sc-table.sc-osaka {
        width: 60%;
        max-width: 60%;
        margin: 0 auto 30px;
    }
}
.place-wrapper .sc-table.sc-osaka .sc-image {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      display: block;
}
@media screen and (min-width: 960px) {
    .place-wrapper .sc-table.sc-osaka .sc-image {
        width: 46%;
        max-width: 46%;
    }
}
@media screen and (max-width: 959px) {
  .place-wrapper .sc-table.sc-osaka .sc-image {
    width: 70%;
    max-width: 70%;
  }
}

@media screen and (min-width: 960px) {
  .place-wrapper .sc-table {
    margin: 30px 0;
    padding: 30px;
  }
}
@media screen and (max-width: 959px) {
  .place-wrapper .sc-table {
    margin: 20px -15px;
    padding: 20px 15px;
  }
}
.place-wrapper .sc-notice {
    display: none;
    font-size: 0.8em;
    color: #bdbdb3;
    text-align: center;
    margin: 10px auto 20px;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.4;
}
@media screen and (max-width: 959px) {
    .place-wrapper .sc-notice {
        display: block;
    }
}





.ticket-date .row {
    display: grid;
    grid-template-columns: 200px 430px 1fr;
    column-gap: 0;
    row-gap: 12px;
    margin-bottom: 16px;
}

.ticket-date .label {
    text-align: right;
}

.ticket-date .value {
    text-align: left;
}
.ticket-date {
    max-width: 630px;
    margin: 40px auto 60px;
    font-weight: 700;
}

.ticket-date a {
    color: #bdbdb3;
    word-break: break-all;
}
.ticket-date h3 {
    font-size: 1em;
}
.ticket-block {
    max-width: 600px;
    margin: 0 auto 32px;
    text-align: center;
}
.ticket-block h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: bold;
}

.ticket-block p {
    margin: 4px 0;
}

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

.sale-date {
    margin-bottom: 0rem;
}

.sales-list {
    max-width: 720px;
    margin: 0 auto;
}

.sales-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1rem;
    padding: 0.2rem 0 0.8rem;
}

.sales-item .label {
    text-align: right;
    white-space: nowrap;
}

.sales-item .detail {
    text-align: left;
}

.sales-item .detail a {
    word-break: break-all;
    color: #bdbdb3;
}

.code {
    font-size: 0.9em;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .sales-item {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .sales-item .label {
        text-align: center !important;
        font-weight: 600;
    }

    .sales-item .detail {
        text-align: center;
    }
}
.ticket-links {
    margin: 60px auto;
    display: grid;
    row-gap: 18px;
    justify-content: center;
    font-weight: 700;
}

.ticket-links .row {
    display: grid;
    grid-template-columns: 240px 260px;
    column-gap: 24px;
    align-items: center;
}

.ticket-links .label {
    text-align: right;
    white-space: nowrap;
    opacity: 0.9;
}

.ticket-links .value {
    text-align: left;
}
.ticket-links .value > * {
    display: block;
}
/* URL */
.ticket-links a {
    word-break: break-all;
    text-decoration: none;
    color: #bdbdb3;
}
.ticket-announce {
    text-align: center;
    color: #000000;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1 !important;
    background: #bdbdb3;
    padding: 6px;
}

/* ============================
   ▼ スマホ（1文字右に下げる版）
   ============================ */
@media (max-width: 600px) {
    .ticket-date {
        margin-bottom: 0;
        max-width: 300px;
    }
    .ticket-date .row {
        grid-template-columns: 1fr; 
        gap: 4px 0;         
        margin-bottom: 20px; 
    }

    .ticket-date .label {
        text-align: left;
        padding-left: 0; 
    }

    .ticket-date .value {
        padding-left: 1em; 
    }

    .ticket-date .value > * {
        display: block;
        padding-left: 0;
    }
    .ticket-links {
        margin-bottom: 0;
    }
    .ticket-links .row {
        grid-template-columns: 1fr; 
        gap: 4px 0;          
        margin-bottom: 20px; 
    }

    .ticket-links .label {
        text-align: center;
        padding-left: 0; 
        padding-bottom: 10px;
    }

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

    .ticket-links .value > * {
        display: block;
        padding-left: 0;
    }
}
.ticket-notice {
    margin-top: 80px;
}
.ticket-notice-title {
    font-weight: 600;
    text-align: center;
}

.ticket-notice-text {
    max-width: 960px;
    margin: 0 auto 20px;
    padding: 20px;
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif; 
    line-height: 1.8; 
}

.ticket-notice-text ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.ticket-notice-text li {
    margin-bottom: 1em;
    padding-left: 1.5em; 
    position: relative; 
}

.ticket-notice-text li::before {
    content: "・";
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.btn-slide {
    background: #063a69;
    color: white;
    padding: 6px 36px;
    margin-top: -10px;
    border: solid 1px #bdbdb3;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.btn-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #bdbdb3;
    transition: left 0.4s ease;
    z-index: -1;
}
.btn-slide:hover::before {
  left: 0;
}

.btn-slide:hover {
    color: #000000;
}
.btn-slide a {
    color: #ffffff;
}
.btn-slide a:hover {
    color: #000000;
}
.notice-small {
    font-size: 90%;
    font-weight: 900;
    color: #bdbdb3;
}
.contact-bt {
    text-align: center;
}
.contact-bt a {
    display: inline-block;
    padding: 15px 60px;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    user-select: none;
    border-radius: 50px;
    transition: 0.4s ease;
    background: #bdbdb3;
}

@media screen and (max-width: 959px) {
    .contact-bt {
        margin-bottom: 40px;
    }
}
