/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2? family= Cinzel+Decorative:wght@400;700;900 & display=swap');


/* Base
-------------------------------- */
/***** 初期値 *****/
:root {
  /* 色設定 */
  --color-black: #333;
  --color-gray: #666;
  --color-light-gray: #eee;
  --color-accent1: #03abd5;
  --color-accent2: #030c10;

  --bg-color0: black;
  --bg-color1: #021316;
  --bg-color2: #ededed;
  --bg-color3: rgba(35,24,21,.10);

  --bg-header: rgba(255,255,255,.9);

  --bg-grd1: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.5) 30%,
    rgba(0,0,0,.8) 50%,
    rgba(0,0,0,.5) 70%,
    rgba(0,0,0,0) 100%
  );
  --bg-grd2: linear-gradient(
    to right,
    #002631 0%,
    #00131d 100%
  );

  --border-color-x: linear-gradient(
    to right,
    rgba(76,102,117,0) 0%,
    rgba(76,102,117,.3) 30%,
    rgba(76,102,117,1) 50%,
    rgba(76,102,117,.3) 70%,
    rgba(76,102,117,0) 100%
  );
  --border-color-y: linear-gradient(
    to bottom,
    rgba(76,102,117,0) 0%,
    rgba(76,102,117,.3) 30%,
    rgba(76,102,117,1) 50%,
    rgba(76,102,117,.3) 70%,
    rgba(76,102,117,0) 100%
  );
  --btn-color: linear-gradient(
    70deg,
    white 0%,
    #ededed 100%
  );

  --font-color-base: #bbc3c9;
  --font-color-gray: #666;
  --font-family-sans: 'Noto Sans JP', sans-serif;
  --font-family-serif: 'Shippori Mincho B1', serif;
  --font-family-num: 'Zen Kaku Gothic New', sans-serif;

  /* スタイル */
  --tx-shadow1: 1px 1px 1px rgba(0,0,0,.8);
  --box-shadow1: 3px 3px 5px rgba(0,0,0,.1);
  --box-shadow2: 2px 2px 6px rgba(0,0,0,.3);
  --border-style1: 1px solid #4c6675;
  --max-width1: 1200px;

  /* arkhe上書き */
  --ark-logo_size--pc: 1rem;
  --ark-logo_size--sp: 1rem;
}

/***** デフォルト設定 *****/  

/* フォント・字体 */
div,span,p,a,li,h2,h3,h4,dt,dd {
    font-family: var(--font-family-serif);
    color: var(--font-color-base) !important;
    text-shadow: var(--tx-shadow1);
}
.font-family-sans {
    font-family: var(--font-family-sans);
}
h2,h3,h4 {
    text-align: center;
    margin-bottom: 2rem;
}

.st-head {
    position: relative;
}
.st-head::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--border-color-x);
}

h2.st-head {
    font-size: 1.8rem;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 400;
    margin-bottom: 4rem;
    padding-bottom: 0.5rem;
    letter-spacing: 0.3em;
}
h2.st-head.mg-s {
    margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
    h2.st-head {
        margin-bottom: 2rem;
    }
}

h3.st-head {
    font-size: 1.2rem;
    line-height: 1;
    padding: 1em 0.5em;
    margin-bottom: 1rem;
    font-weight: 400;
}
h3.st-head::after {
    height: 1px;
}

p {
    line-height: 2;
}

/* ブロック設定 */
main {
    background: url(../images/main-bg02-2.jpg) repeat-y top center / 100% auto;
}

.inner {
    position: relative;
    max-width: var(--max-width1);
    margin: 0 auto;
}
@media screen and (max-width: 480px) {
    .inner {
        width: 95%;
    }
}

/* 画像まわり装飾 */
.img-deco,
.img-deco-inner {
    position: relative;
}
.img-deco-inner{
    padding: 1rem;
}
.img-deco::before,
.img-deco::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--border-color-x);
}
.img-deco::before {
    top: 0;
    left: 0;
}
.img-deco::after {
    bottom: 0;
    right: 0;
}
.img-deco-inner::before,
.img-deco-inner::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--border-color-y);
}
.img-deco-inner::before {
    top: 0;
    left: 0;
}
.img-deco-inner::after {
    bottom: 0;
    right: 0;
}

/* アコーディオン */
.ac-toggle {
    display: none;
}
.ac-toggle-label {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    line-height: 1;
    padding: 0.5em 3em 0.5em 1.5em;
    border: var(--border-style1);
    font-size: 0.8rem;
    margin: 0.5rem auto;
    cursor: pointer;
}
.ac-toggle-label::after {
    position: absolute;
    width: 0.9em;
    height: 0.9em;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto 0;
    transition: 0.5s;
    background: var(--font-color-base);
    mask: url(../images/icon-plus.svg) no-repeat center center / contain;
    -webkit-mask: url(../images/icon-plus.svg) no-repeat center center / contain;
}
.ac-toggle:checked + .ac-toggle-label::after {
    content: "";
    transform: rotate(180deg);
    mask: url(../images/icon-minus.svg) no-repeat center center / contain;
    -webkit-mask: url(../images/icon-minus.svg) no-repeat center center / contain;
}
.ac-toggle + .ac-toggle-label + .ac-contents {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    padding: 0 1.5em;
}
.ac-toggle:checked + .ac-toggle-label + .ac-contents {
    max-height: 1000px;
    padding: 1.5em;
}

/* ポップアップ */
.pu-toggle {
    display: none;
}
.pu-toggle-label {
    display: block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}
.pu-toggle-label span {
    position: absolute;
    display: block;
    width: fit-content;
    top: 17rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--font-color-base);
    font-weight: 400;
    border-bottom: var(--border-style1);
}
@media screen and (max-width: 480px) {
    .pu-toggle-label span {
        top: 16rem;
    }
}
.pu-toggle-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--font-color-base);
    font-weight: 900;
    cursor: pointer;
    line-height: 1;
}
.pu-contents {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent2);
    z-index: 100;
    overflow-y: auto;
}
.pu-toggle:checked + .pu-contents {
    display: flex;
}

/* ボタンデザイン */
.lp-btn {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    line-height: 1;
    padding: 1em 3em 1em 2em;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-accent2);
    margin: 1rem auto;
    border: var(--border-style1);
    box-shadow: var(--box-shadow1);
}
.lp-btn::after {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto 0;
    background: var(--font-color-base);
    mask: url(../images/icon-oslink.svg) no-repeat center center / contain;
    -webkit-mask: url(../images/icon-oslink.svg) no-repeat center center / contain;
}

/* 区切り線デザイン */
.grd-line {
    width: 15rem;
    content: "";
    height: 2px;
    margin: 3rem auto;
    background: var(--border-color-x);
}

/***** セクション設定 *****/

.lp2402 section {
    position: relative;
    padding: 6rem 0;
}
.bg-add::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}
.bg-add.-blue::before {
    background: url(../images/fv-bg01-5.jpg) no-repeat center center / cover;
}
.bg-add.-red::before {
    background: var(--color-accent2);
}

.bg-grd1 {
    padding: 3rem;
    background: var(--bg-grd1);
}
@media screen and (max-width: 480px) {
    .lp2402 section {
        padding: 4rem 0;
    }
    .bg-grd1 {
        padding: 2rem 1rem;
    }
}

/* fv */
.fv {
    padding-top: 2rem !important;
    overflow: hidden;
}
.fv::before {
    background: url(../images/fv-bg01-5.jpg) no-repeat center center / cover;
}
h2.fv-head {
    font-size: 1.4rem;
}
.fv-block1,
.fv-block2 {
    padding: 1rem 3rem;
    margin: 3rem 0;
}
.fv-block1 {
    position: relative;
    width: 60%;
}
.fv-block1::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 0;
    background: var(--border-color-y);
}
.fv-block2 {
    width: 40%;
}
.fv-block1 p,
.fv-block2 p {
    font-size: 1.2rem;
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 480px) {
    .fv {
        padding-top: 1rem !important;
    }
    h2.fv-head {
        font-size: 1.2rem;
    }
    .fv-block1,
    .fv-block2 {
        width: 100%;
    }
    .fv-block1 {
        padding: 1rem 1rem 4rem;
        margin-bottom: 0;
    }
    .fv-block1::after {
        width: 100%;
        height: 1px;
        background: var(--border-color-x);
    }
    .fv-block1 p {
        font-size: 1rem;
    }
}

.fv-logo {
    margin: 1rem auto 2.5rem;
    & img {
        width: 20%;
        max-width: 8rem;
        margin: 0 auto;
    }
}
@media screen and (max-width: 480px) {
    .fv-logo {
        margin: 1rem auto 2rem;
    }
}

.fv-image {
    & img {
        max-height: 70vh;
        margin: 0 auto;
    }
}

/* menu */

.fv-menu {
    position: relative;
    width: 95%;
    max-width: 1400px;
    margin: 1rem auto;
    transition: 0.5s;
}
.fv-menu a {
    display: block;
    width: calc(100% / 9);
    min-width: 10em;
    border: var(--border-style1);
    line-height: 1;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    margin: 0;
    text-align: center;
    margin-bottom: 0.4rem;
}
.fv-menu a:not(:last-child) {
    margin-right: 0.5%;
}

/* スマホ用固定ボタン */
.sp-reserve {
    display: none;
}
@media screen and (max-width: 480px) {
    .sp-reserve {
        position: fixed;
        display: block;
        top: 1.3rem;
        left: 1.3rem;
        z-index: 10;
        margin: 0;
        font-size: 1.1rem;
    }
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
}
.menu-toggle-label {
    display: none;
}
@media screen and (max-width: 480px) {
    .fv-menu {
        position: fixed;
        width: 100%;
        height: fit-content;
        top: 0;
        right: -800px;
        background: var(--color-accent2);
        padding: 7rem 2rem 2rem;
        margin: 0;
        justify-content: space-around;
        z-index: 5;
    }
    .fv-menu a {
        width: 45%;
        height: fit-content;
        margin-bottom: 1rem;
    }
    .menu-toggle:checked + .fv-menu {
        right: 0;
    }
    .menu-toggle-label {
        display: flex;
        position: fixed;
        top: 2rem;
        right: 2rem;
        width: 2rem;
        height: 1.8rem;
        z-index: 15;
    }
    .menu-toggle-label span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background: var(--font-color-base);
        left: 0;
        right: 0;
        margin: auto 0;
        transition: 0.5s;
    }
    .menu-toggle-label span:nth-child(1) {
        top: 0;
    }
    .menu-toggle-label span:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .menu-toggle-label span:nth-child(3) {
        bottom: 0;
    }
    .menu-toggle:checked + .fv-menu + .menu-toggle-label span:nth-child(1) {
        transform: rotate(45deg);
        bottom: 0;
        margin: auto;
    }
    .menu-toggle:checked + .fv-menu + .menu-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked + .fv-menu + .menu-toggle-label span:nth-child(3) {
        transform: rotate(-45deg);
        top: 0;
        margin: auto;
    }
}


/* Information */
.info-block {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 auto;
}
.info-block:not(:last-child) {
    margin-bottom: 3rem;
}
.info-block h2.st-head {
    width: 100%;
}
.info-box {
    width: 100%;
    flex-grow: 1;
}
p.info-box-date {
    font-size: 0.9rem;
    opacity: .7;
}
p.info-box-title {
    font-size: 1.1rem;
    padding-left: 0.5rem;
    margin-bottom: 2rem;
}
p.x-comment {
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 1rem;
}
.x-link-container {
    padding: 5px 0 0;
    border-radius: 5px;
    text-align: center;
}
a.x-link-button {
    display: flex;
    width: fit-content;
    align-items: center;
    margin: 0 auto;
    background: var(--bg-grd2);
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.7s;
    line-height: 1;
    & svg {
        width: 1.1em;
        height: 1.1em;
        vertical-align: middle;
        margin-right: .6em;
        padding-top: .1em;
        fill: white;
    }
}
.x-link-button:hover {
    background: var(--color-accent2);
}

@media screen and (max-width: 480px) {
    .info-block {
        width: 100%;
    }
    .x-link-container {
        padding: 5px 0 10px;
    }
}


/* introduction */


/* comment */
.comment-box {
    width: 30%;
    margin-bottom: 3rem;
}
@media screen and (max-width: 480px) {
    .comment-box {
        width: 46%;
        margin-bottom: 2rem;
    }
}
.comment-text p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* STORY */
.story::before {
    background: url(../images/story-bg01-2.jpg) no-repeat center center / cover;
}

/* CAST */
.cast-main-image {
    width: 80%;
    max-width: 900px;
    margin: 0 auto 3rem;
}
.cast-box {
    position: relative;
    width: 22%;
    margin-bottom: 3rem;
}
@media screen and (max-width: 480px) {
    .cast-box {
        width: 48%;
        margin-bottom: 2rem;
    }
}
.cast-name {
    text-align: center;
    margin: 1rem 0;
    font-size: 0.9rem;
}
.cast-pubox-inner {
    position: relative;
    width: 90%;
    max-width: 700px;
    padding: 3rem 1rem;
}
.cast-pubox-inner::before,
.cast-pubox-inner::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--border-color-x);
    left: 0;
}
.cast-pubox-inner::before {
    top: 0;
}
.cast-pubox-inner::after {
    bottom: 0;
}
.cast-puimg {
    width: 35%;
}
.cast-text {
    width: 55%;
}
.cast-text h4 {
    font-size: 1.2rem;
}
.cast-text p {
    font-size: 0.9rem;
    line-height: 1.5;
}
@media screen and (max-width: 480px) {
    .cast-puimg,
    .cast-text {
        width: 100%;
    }
    .cast-puimg img {
        display: block;
        width: 50%;
        margin: 0 auto 2rem;
    }
}

.staff-inner {
    width: fit-content;
    margin: 4rem auto;
}

/* Schedule */
.schedule-box table {
    border: none;
}
.schedule-box table th,
.schedule-box table td {
    position: relative;
    border: none;
    background: initial;
    text-align: center;
    padding: 1.5rem 0 !important;
    width: calc(100% / 8);
}
.schedule-box table td:not(:first-child)::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--border-color-x);
}
.schedule-box table th span {
    color: #cd3c3c !important;
}
.schedule-attention {
    width: 90%;
    max-width: 800px;
    margin: 3rem auto;
}
.schedule-attention p {
    font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
    .schedule-box table th,
    .schedule-box table td {
        padding: 1rem 0 !important;
    }
    .schedule-box table th {
        font-size: 0.8rem;
    }
}

/* Ticket */
span.p-title {
    display: inline-block;
    margin-right: 1em;
}
span.p-unit {
    display: inline-block;
    margin-left: 1em;
}
.ticket-attention {
    width: 90%;
    max-width: 800px;
    margin: 6rem auto 2rem;
}
.ticket-attention h2.st-head {
    font-size: 1.2rem;
}
.ticket-attention p {
    font-size: 0.9rem;
}

/* Theater/access */
a.access-link {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    line-height: 1;
    padding: 0 2em 0 0;
    color: var(--color-accent1) !important;
}
a.access-link::after {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    background: var(--color-accent1);
    mask: url(../images/icon-oslink.svg) no-repeat center center / contain;
    -webkit-mask: url(../images/icon-oslink.svg) no-repeat center center / contain;
}
.access-map {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
}
.access-map iframe {
    width: 100%;
    height: 55vh;
}
@media screen and (max-width: 480px) {
    .access-map iframe {
        height: 42vh;
    }
}

/* Goods */
.goods-tx {
    padding: 8rem 1rem;
    font-size: 1.6rem;
    line-height: 1.8;
}
.goods-tx span {
    display: block;
    font-size: 60%;
}

/* footer */
.footer-logo {
    display: block;
    width: 4rem;
    margin-left: 40%;
}
.footer-contact {
    width: fit-content;
}
.footer h2.st-head {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}
.footer .lp-btn {
    padding: 1em 2em 1em;
}
.footer .lp-btn::after {
    display: none;
}
.footer .lp-btn span {
    display: inline-block;
    margin-right: 1rem;
}

.sns-icon {
    width: 100%;
    margin-top: 3rem;
}
.sns-icon a {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--font-color-base);
    mask: url(../../../images/icon-x.svg) no-repeat center center / contain;
    -webkit-mask: url(../../../images/icon-x.svg) no-repeat center center / contain;
}
.sns-icon a:not(:last-child) {
    margin-right: 1rem;
}

@media screen and (max-width: 480px) {
    .footer-logo-area,
    .footer-contact-area {
        justify-content: center;
    }
    .footer-logo-area {
        margin-bottom: 7rem;
    }
    .footer-logo {
        margin-left: 0;
    }
}

/* 一時的な非表示 */
.sp-reserve {
    display: none !important;
}