/**
 * 下層ページ共通（料金・前売券・メンバーズ・フード・施設紹介・会社概要）
 * デザインカンプ: diversitymedia.jp/20260120MO/test_*_02.html 相当
 */

:root {
    --mo-sp-navy: #0d1f4a;
    --mo-sp-navy-deep: #0a1633;
    --mo-sp-orange: #e95504;
    --mo-sp-orange-soft: #ff8c42;
    --mo-sp-cream: #f5f0e6;
    --mo-sp-cream-dark: #ebe4d6;
    --mo-sp-text: #1a1a1a;
    --mo-sp-muted: #4b5563;
    --mo-sp-ph: #b8b8b8;
    --mo-sp-ph2: #9ca3af;
    --mo-sp-max: 1100px;
}

/* -------------------------------------------------------------------------- */
/* ベース */
/* -------------------------------------------------------------------------- */

.mo-subpage {
    background: var(--mo-sp-cream);
    color: var(--mo-sp-text);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

body.page-template-page-food-drink-php,
.mo-subpage--food {
    background: #f5f0e6;
}

.mo-subpage__inner {
    max-width: var(--mo-sp-max);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.mo-subpage__hero {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 16px clamp(1.5rem, 3.5vw, 2.2rem);
}

.mo-subpage__title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--mo-sp-orange);
    letter-spacing: 0.06em;
    text-align: center;
}

.mo-subpage__lead {
    margin: 1rem auto 0;
    max-width: 42em;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--mo-sp-orange);
}

/* 画像プレースホルダー */
.mo-sp-ph {
    display: block;
    width: 100%;
    background: linear-gradient(145deg, var(--mo-sp-ph) 0%, var(--mo-sp-ph2) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.mo-sp-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.06) 8px,
        rgba(255, 255, 255, 0.06) 16px
    );
}

.mo-sp-ph--poster {
    aspect-ratio: 2 / 3;
    max-width: 200px;
}

.mo-sp-ph--16x9 {
    aspect-ratio: 16 / 9;
}

.mo-sp-ph--4x3 {
    aspect-ratio: 4 / 3;
}

.mo-sp-ph--square {
    aspect-ratio: 1 / 1;
}

.mo-sp-ph--portrait {
    aspect-ratio: 3 / 4;
}

.mo-sp-ph--map {
    aspect-ratio: 21 / 9;
    min-height: 280px;
}

.mo-sp-ph--banner {
    min-height: 180px;
}

/* セクション見出しバー（紺） */
.mo-sp-bar {
    background: var(--mo-sp-navy);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    padding: 0.65rem 1rem;
    letter-spacing: 0.04em;
}

.mo-sp-bar--orange {
    background: var(--mo-sp-orange);
}

.mo-sp-section {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.mo-sp-section__box {
    background: #fff;
    border: 1px solid #d6d0c4;
    border-radius: 4px;
    padding: clamp(1rem, 3vw, 1.5rem);
    margin-top: 0.75rem;
}

/* 料金テーブル系 */
.mo-sp-price-rows {
    background: #fff;
    border: 1px solid #d6d0c4;
    border-radius: 4px;
    overflow: hidden;
}

.mo-sp-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.65fr);
    gap: 0;
    border-bottom: 1px solid #e5e0d4;
    align-items: stretch;
}

.mo-sp-price-row:last-child {
    border-bottom: none;
}

.mo-sp-price-row__label {
    padding: 0.85rem 1rem;
    font-weight: 700;
    color: var(--mo-sp-orange);
    font-size: 0.92rem;
    border-right: 1px solid #e5e0d4;
    background: #faf8f3;
}

.mo-sp-price-row__note {
    display: block;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--mo-sp-text);
    margin-top: 0.35rem;
}

.mo-sp-price-row__value {
    padding: 0.85rem 1rem;
    font-weight: 800;
    font-size: 1.05rem;
    text-align: right;
    align-self: center;
}

/* 3カラム オプション */
.mo-sp-opt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin-top: 1rem;
}

.mo-sp-opt-card {
    text-align: center;
}

.mo-sp-opt-card__title {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.65rem 0 0.5rem;
}

.mo-sp-opt-card__formula {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.82rem;
}

.mo-sp-chip {
    display: inline-block;
    background: var(--mo-sp-orange);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* サービスデイ等 3列 */
.mo-sp-svc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    background: #fff;
    border: 1px solid #d6d0c4;
}

.mo-sp-svc-table th,
.mo-sp-svc-table td {
    border: 1px solid #e5e0d4;
    padding: 0.55rem 0.65rem;
    vertical-align: middle;
}

.mo-sp-svc-table th {
    background: var(--mo-sp-orange);
    color: #fff;
    font-weight: 700;
    text-align: left;
    width: 28%;
}

.mo-sp-svc-table td:nth-child(2) {
    width: 42%;
}

.mo-sp-svc-table td:nth-child(3) {
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
}

/* 購入方法 */
.mo-sp-purchase-wrap {
    border: 2px solid #c4b8a4;
    border-radius: 6px;
    padding: clamp(1rem, 3vw, 1.75rem);
    background: #fffcf7;
    margin-top: 1.5rem;
}

.mo-sp-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.78rem;
}

.mo-sp-flow__step {
    background: #fff8f0;
    border: 1px solid var(--mo-sp-orange-soft);
    border-radius: 4px;
    padding: 0.45rem 0.65rem;
    font-weight: 600;
}

.mo-sp-flow__arrow {
    color: var(--mo-sp-orange);
    font-weight: 800;
}

.mo-sp-btn {
    display: inline-block;
    margin: 1rem auto 0;
    padding: 0.85rem 2rem;
    background: var(--mo-sp-orange);
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: opacity 0.2s;
}

.mo-sp-btn:hover,
.mo-sp-btn:focus-visible {
    opacity: 0.9;
}

.mo-sp-btn-wrap {
    text-align: center;
}

.mo-sp-note {
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--mo-sp-text);
}

.mo-sp-note--small {
    font-size: 0.72rem;
    color: var(--mo-sp-muted);
    margin-top: 0.75rem;
}

.mo-sp-note strong {
    color: #c2410c;
}

/* 料金・購入方法（カンプ寄せ） */
.mo-subpage--tickets {
    background: #fff;
    padding-bottom: 2.2rem;
}

.mo-subpage--tickets .mo-subpage__hero {
    padding: clamp(2rem, 5vw, 3rem) 16px clamp(1.5rem, 3.5vw, 2.2rem);
}

.mo-subpage--tickets .mo-subpage__inner {
    max-width: var(--mo-sp-max);
    padding: 0 clamp(16px, 4vw, 28px);
    border: none;
    background: transparent;
}

.mo-subpage--tickets .mo-subpage__title {
    color: #eb5a0b;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.mo-subpage--tickets .mo-ticket-section {
    margin-top: 2.6rem;
}

.mo-subpage--tickets .mo-sp-bar {
    border-radius: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    padding: 0.82rem 1rem;
    text-align: left;
    letter-spacing: 0.02em;
    background: #0d1f4a;
}

.mo-subpage--tickets .mo-sp-price-rows,
.mo-subpage--tickets .mo-sp-section__box {
    border-radius: 0;
}

.mo-subpage--tickets .mo-sp-price-rows {
    border: none;
    background: #efefef;
    margin: 2.4rem 2rem 2.2rem;
}

.mo-subpage--tickets .mo-sp-price-row {
    border-bottom: 1px solid #b5b5b5;
    grid-template-columns: minmax(0, 1fr) 190px;
}

.mo-subpage--tickets .mo-sp-price-row:last-child {
    border-bottom: none;
}

.mo-subpage--tickets .mo-sp-price-row__label {
    font-size: 1.74rem;
    line-height: 1.2;
    color: #e86310;
    padding: 1.15rem 1.25rem;
    background: transparent;
    border-right: none;
    font-weight: 700;
}

.mo-subpage--tickets .mo-sp-price-row__value {
    font-size: 2.05rem;
    color: #0d1f4a;
    font-weight: 800;
    line-height: 1.2;
    padding: 1.15rem 1rem;
    text-align: right;
    position: relative;
}

.mo-subpage--tickets .mo-sp-price-row__value::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16%;
    bottom: 16%;
    width: 3px;
    background: #ff6500;
}

.mo-subpage--tickets .mo-sp-price-row__note {
    display: inline;
    margin-left: 0.55rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #333;
    font-weight: 700;
}

.mo-subpage--tickets .mo-sp-note {
    font-size: 0.95rem;
    line-height: 1.6;
}

.mo-subpage--tickets .mo-sp-note--small {
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.mo-subpage--tickets .mo-sp-opt-grid {
    gap: 1rem;
    margin-top: 0.7rem;
}

.mo-subpage--tickets .mo-sp-opt-card__media {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e8e8e8;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.mo-subpage--tickets .mo-sp-opt-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mo-subpage--tickets .mo-sp-opt-card__title {
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 0.55rem 0 0.22rem;
    text-align: left;
    font-weight: 700;
}

.mo-subpage--tickets .mo-sp-opt-card__formula {
    font-size: 0.92rem;
    gap: 0.28rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.mo-subpage--tickets .mo-sp-chip {
    font-size: 0.96rem;
    line-height: 1;
    min-width: 104px;
    text-align: center;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    background: #e7dfc8;
    color: #ff5a00;
    font-weight: 700;
}

.mo-subpage--tickets .mo-sp-opt-card__formula > span:not(.mo-sp-chip) {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 400;
    color: #111;
}

.mo-subpage--tickets .mo-sp-opt-card .mo-sp-note--small {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    text-align: left;
}

/* リクルート */
.mo-subpage--recruit {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.mo-subpage--recruit .mo-subpage__hero {
    position: relative;
    background:
        linear-gradient(180deg, rgba(8, 18, 40, 0.55) 0%, rgba(8, 18, 40, 0.68) 100%),
        url("../images/image002.png") center / cover no-repeat;
    color: #fff7ed;
    text-align: center;
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(2.4rem, 6.5vw, 4.2rem);
}

.mo-subpage--recruit .mo-subpage__title {
    color: #ffc500;
}

.mo-subpage--recruit .mo-subpage__lead {
    color: #fff7ed;
}

.mo-subpage--recruit .mo-subpage__hero .mo-recruit__hero-content {
    max-width: 920px;
    margin: 0 auto;
}

.mo-subpage--recruit .mo-subpage__lead {
    margin-top: 0.6rem;
}

.mo-recruit__hero-copy {
    margin: 1.1rem auto 0;
    max-width: 780px;
}

.mo-recruit__hero-copy p {
    margin: 0.45rem 0 0;
    line-height: 1.65;
    color: #fff7ed;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.mo-recruit__hero-copy p:first-child {
    margin-top: 0;
}

.mo-subpage--recruit .mo-sp-bar {
    background: #9a3412;
}

.mo-recruit__box {
    border-color: #fed7aa;
    box-shadow: 0 8px 24px rgba(154, 52, 18, 0.08);
    background: #fff;
}

.mo-subpage--recruit .mo-food-subhead {
    color: #9a3412;
    font-size: 1rem;
}

.mo-subpage--recruit .mo-recruit__box > .mo-food-subhead:not(:first-child) {
    margin-top: 2rem;
}

.mo-subpage--recruit .mo-sp-note {
    font-size: 0.95rem;
    margin: 0.3rem 0 0;
}

.mo-subpage--recruit .mo-food-subhead + .mo-sp-note {
    margin-top: 0.45rem;
}

.mo-subpage--recruit .mo-sp-note--asterisk {
    font-size: 0.82rem;
    line-height: 1.6;
}

.mo-subpage--recruit .mo-recruit__list {
    background: #fff7ed;
    border-color: #fdba74;
    border-radius: 10px;
}

.mo-subpage--tickets .mo-ticket-34d-block {
    margin: 1.35rem 0 0;
}

.mo-subpage--tickets .mo-ticket-34d-formula {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0.95rem 0;
}

.mo-subpage--tickets .mo-ticket-34d-plus {
    font-size: 2rem;
    line-height: 1;
    color: #111;
    font-weight: 400;
}

.mo-subpage--tickets .mo-ticket-34d-formula .mo-sp-chip {
    font-size: 0.96rem;
    min-width: 104px;
    padding: 0.8rem 2rem;
    border-radius: 6px;
}

.mo-subpage--tickets .mo-ticket-34d-note {
    margin-left: 0.55rem;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #111;
}

.mo-subpage--tickets .mo-sp-svc-table {
    font-size: 0.9rem;
    border: none;
    background: #efefef;
}

.mo-subpage--tickets .mo-sp-svc-table th,
.mo-subpage--tickets .mo-sp-svc-table td {
    padding: 0.82rem 0.72rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid #b6b6b6;
    border-bottom: none;
    vertical-align: middle;
}

.mo-subpage--tickets .mo-sp-svc-table th {
    width: 40%;
    background: transparent;
    color: #e86310;
    font-size: 1.66rem;
    font-weight: 700;
    line-height: 1.2;
}

.mo-subpage--tickets .mo-sp-svc-table td:nth-child(2) {
    width: 32%;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #111;
    font-weight: 700;
    text-align: center;
}

.mo-subpage--tickets .mo-sp-svc-table td.mo-ticket-svc-long {
    text-align: left !important;
    font-weight: 600;
    line-height: 1.45;
}

.mo-subpage--tickets .mo-sp-svc-table td.mo-ticket-svc-long .mo-ticket-svc-long-text {
    display: block;
    width: 100%;
    text-align: left !important;
}

.mo-subpage--tickets .mo-sp-svc-table td:nth-child(3) {
    text-align: center;
    width: 28%;
    white-space: nowrap;
    color: #0d1f4a;
    font-size: 1.7rem;
    font-weight: 800;
    position: relative;
    padding-right: 0.72rem;
    padding-left: 0.72rem;
}

.mo-subpage--tickets .mo-sp-svc-table td:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0.08rem;
    top: 0.22rem;
    bottom: 0.22rem;
    width: 3px;
    background: #ff6500;
}

.mo-subpage--tickets .mo-ticket-svc-note {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.62rem;
    line-height: 1.35;
    color: #111;
    font-weight: 600;
    text-align: center;
}

.mo-subpage--tickets .mo-ticket-svc-price-main {
    display: block;
    font-size: 1.7rem;
    line-height: 1.05;
}

.mo-subpage--tickets .mo-ticket-svc-price-sub {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 700;
}

.mo-subpage--tickets .mo-sp-purchase-wrap {
    border-radius: 0;
    border: 2px solid #f26722;
    padding: 0;
    background: #fff;
}

.mo-subpage--tickets .mo-ticket-purchase-gap {
    margin-top: 0.7rem;
}

.mo-subpage--tickets .mo-sp-bar--orange {
    background: #f26722;
    text-align: left;
    font-size: 0.98rem;
    padding: 0.64rem 0.8rem;
}

.mo-subpage--tickets .mo-ticket-online-wrap {
    padding: 0;
}

.mo-subpage--tickets .mo-ticket-online-title {
    font-size: 0.98rem;
    font-weight: 800;
    padding: 0.64rem 0.8rem;
}

.mo-subpage--tickets .mo-ticket-box-plain {
    border: none;
    background: transparent;
    padding: 1.05rem 1.2rem 1.25rem;
}

.mo-subpage--tickets .mo-ticket-online-inner {
    background: #efefef;
    border: none;
    border-top: 1px solid #e4e4e4;
    padding: 1.05rem 1.2rem 1.25rem;
}

.mo-subpage--tickets .mo-ticket-online-inner > .mo-sp-note {
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 700;
}

.mo-subpage--tickets .mo-ticket-online-subhead {
    margin: 1.1rem 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #111;
}

.mo-subpage--tickets .mo-ticket-dot-title {
    position: relative;
    padding-left: 1.25rem;
}

.mo-subpage--tickets .mo-ticket-dot-title::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #f26722;
    font-size: 0.95em;
    line-height: 1;
}

.mo-subpage--tickets .mo-ticket-online-caution {
    margin: 0 0 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ff3300;
}

.mo-subpage--tickets .mo-ticket-online-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mo-subpage--tickets .mo-ticket-online-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.32rem;
    font-size: 0.82rem;
    line-height: 1.62;
    font-weight: 700;
    color: #111;
}

.mo-subpage--tickets .mo-ticket-online-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #f26722;
    font-size: 0.86em;
}

.mo-subpage--tickets .mo-ticket-online-subhead--purchase {
    margin-top: 1.1rem;
}

.mo-subpage--tickets .mo-ticket-box-gap {
    margin-top: 0.75rem;
}

.mo-subpage--tickets .mo-ticket-note-gap {
    margin-top: 0.78rem;
}

.mo-subpage--tickets .mo-ticket-box-warning {
    margin-top: 1rem;
    border: 2px solid #f26722;
    border-radius: 0;
    background: #fff;
    padding: 0;
}

.mo-subpage--tickets .mo-ticket-warning-title {
    margin: 0;
}

.mo-subpage--tickets .mo-ticket-box-warning .mo-sp-note {
    padding: 1.05rem 1.2rem 1.25rem;
}

.mo-subpage--tickets .mo-ticket-purchase-gap .mo-sp-bar--orange,
.mo-subpage--tickets .mo-ticket-box-warning .mo-sp-bar--orange {
    border-bottom: 1px solid #e4e4e4;
}

.mo-subpage--tickets .mo-sp-btn {
    font-size: 0.96rem;
    font-weight: 700;
    border-radius: 2px;
    padding: 0.8rem 2rem;
    margin-top: 0.7rem;
    background: #f26722;
}

.mo-subpage--tickets .mo-sp-flow {
    margin-top: 0.6rem;
    gap: 0.35rem;
    font-size: 0.96rem;
}

.mo-subpage--tickets .mo-sp-flow__step {
    border-radius: 6px;
    padding: 0.8rem 2rem;
    font-size: 0.96rem;
    background: #e7dfc8;
    border: none;
    color: #ff5a00;
    font-weight: 700;
}

@media (max-width: 768px) {
    .mo-subpage--tickets .mo-subpage__inner {
        padding: 0 clamp(16px, 4vw, 28px);
    }

    .mo-subpage--tickets .mo-sp-bar {
        font-size: 0.9rem;
        padding: 0.62rem 0.7rem;
    }

    .mo-subpage--tickets .mo-sp-opt-card__title {
        font-size: 0.88rem;
    }

    .mo-subpage--tickets .mo-ticket-online-title {
        font-size: 1rem;
        padding: 0.55rem 0.65rem;
    }

    .mo-subpage--tickets .mo-ticket-online-inner {
        padding: 0.72rem 0.7rem 0.8rem;
    }

    .mo-subpage--tickets .mo-ticket-online-inner > .mo-sp-note {
        font-size: 0.75rem;
        line-height: 1.65;
    }

    .mo-subpage--tickets .mo-ticket-online-subhead {
        font-size: 0.92rem;
        margin-top: 0.7rem;
        margin-bottom: 0.35rem;
    }

    .mo-subpage--tickets .mo-ticket-online-caution {
        font-size: 0.68rem;
    }

    .mo-subpage--tickets .mo-ticket-online-list li {
        font-size: 0.66rem;
        line-height: 1.6;
        margin-bottom: 0.22rem;
        padding-left: 0.72rem;
    }

    .mo-subpage--tickets .mo-sp-chip {
        font-size: 0.8rem;
        min-width: 72px;
        padding: 0.28rem 0.38rem;
        border-radius: 6px;
    }

    .mo-subpage--tickets .mo-sp-opt-card__formula > span:not(.mo-sp-chip) {
        font-size: 1.3rem;
    }

    .mo-subpage--tickets .mo-sp-opt-card .mo-sp-note--small {
        font-size: 0.72rem;
    }

    .mo-subpage--tickets .mo-ticket-34d-formula {
        gap: 0.25rem;
        padding: 0.65rem 0;
    }

    .mo-subpage--tickets .mo-ticket-34d-formula .mo-sp-chip {
        font-size: 0.85rem;
        min-width: 70px;
        padding: 0.3rem 0.42rem;
        border-radius: 4px;
    }

    .mo-subpage--tickets .mo-ticket-34d-plus {
        font-size: 1.35rem;
    }

    .mo-subpage--tickets .mo-ticket-34d-note {
        margin-left: 0.15rem;
        font-size: 0.72rem;
    }

    .mo-subpage--tickets .mo-sp-svc-table th,
    .mo-subpage--tickets .mo-sp-svc-table td {
        padding: 0.55rem 0.45rem;
    }

    .mo-subpage--tickets .mo-sp-svc-table th {
        font-size: 1.1rem;
    }

    .mo-subpage--tickets .mo-sp-svc-table td:nth-child(2) {
        font-size: 0.68rem;
    }

    .mo-subpage--tickets .mo-sp-svc-table td:nth-child(3) {
        font-size: 1.2rem;
        padding-right: 0.42rem;
        padding-left: 0.38rem;
    }

    .mo-subpage--tickets .mo-ticket-svc-note {
        font-size: 0.6rem;
    }

    .mo-subpage--tickets .mo-ticket-svc-price-main {
        font-size: 1.2rem;
    }

    .mo-subpage--tickets .mo-ticket-svc-price-sub {
        font-size: 0.62rem;
    }

    .mo-subpage--tickets .mo-sp-price-row {
        grid-template-columns: minmax(0, 1fr) 120px;
    }

    .mo-subpage--tickets .mo-sp-price-rows {
        margin: 1rem 0.35rem;
    }

    .mo-subpage--tickets .mo-sp-price-row__label {
        font-size: 1.05rem;
        padding: 0.78rem 0.72rem;
    }

    .mo-subpage--tickets .mo-sp-price-row__note {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
        font-size: 0.74rem;
    }

    .mo-subpage--tickets .mo-sp-price-row__value {
        font-size: 1.95rem;
        padding: 0.78rem 0.62rem;
    }
}

/* 前売券 */
.mo-subpage--advance {
    background: var(--mo-sp-cream);
}

.mo-adv-item {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 1.75rem);
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    border-bottom: 1px solid #d6d0c4;
    align-items: start;
}

.mo-adv-item:first-of-type {
    padding-top: 0.5rem;
}

.mo-adv-item__poster {
    width: 100%;
    max-width: 200px;
}

.mo-adv-item__poster-link {
    display: block;
    text-decoration: none;
}

.mo-adv-item__poster-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border: 1px solid #d6d0c4;
    border-radius: 2px;
    background: #fff;
}

.mo-adv-item__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
}

.mo-adv-item__title a {
    color: var(--mo-sp-text);
    text-decoration: none;
}

.mo-adv-item__title a:hover,
.mo-adv-item__title a:focus-visible {
    color: var(--mo-sp-orange);
    text-decoration: underline;
}

.mo-adv-badge {
    display: inline-block;
    background: var(--mo-sp-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    margin-bottom: 0.65rem;
}

.mo-adv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.mo-adv-table th {
    background: var(--mo-sp-navy);
    color: #fff;
    text-align: left;
    padding: 0.45rem 0.6rem;
    width: 7.5em;
    font-weight: 700;
}

.mo-adv-table td {
    background: #fff;
    border: 1px solid #d6d0c4;
    padding: 0.45rem 0.6rem;
    line-height: 1.5;
}

/* メンバーズ */
.mo-subpage--members .mo-subpage__hero {
    background: var(--mo-sp-cream);
}

.mo-subpage--members .mo-sp-bar {
    text-align: left;
}

.mo-mem-banner {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(280px, 560px);
    gap: clamp(0.8rem, 2vw, 1.8rem);
    align-items: center;
    justify-items: center;
    justify-content: center;
    padding: clamp(0.8rem, 2.6vw, 1.4rem);
    border: 4px solid var(--mo-sp-orange);
    border-radius: 8px;
    background-image: url('../images/member_bg.jpg');
    background-size: cover;
    background-position: center;
}

.mo-mem-banner__card-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.mo-mem-banner__card {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.mo-mem-banner__content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(0.55rem, 1.4vw, 0.9rem) clamp(0.8rem, 2vw, 1.2rem) clamp(0.8rem, 2vw, 1.2rem);
    width: fit-content;
    max-width: min(100%, 500px);
    margin-inline: auto;
}

.mo-mem-banner__bubble {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--mo-sp-orange);
    color: var(--mo-sp-orange);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.4;
    position: relative;
}

.mo-mem-banner__bubble::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -8px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-right: 2px solid var(--mo-sp-orange);
    border-bottom: 2px solid var(--mo-sp-orange);
    transform: rotate(45deg);
}

.mo-mem-banner__lead {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.45;
    font-weight: 800;
    color: #111827;
}

.mo-mem-banner__title {
    margin: 0.2rem 0 0;
    font-size: clamp(1.35rem, 3.4vw, 2rem);
    line-height: 1.25;
    font-weight: 900;
    color: var(--mo-sp-orange);
}

.mo-mem-banner__title span {
    color: var(--mo-sp-orange);
}

.mo-mem-banner__copy {
    margin: 0.22rem 0 0;
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
}

.mo-mem-banner__fee {
    display: inline-block;
    margin: 1.2em 0 0;
    padding: 0.25rem 0.85rem;
    border-radius: 6px;
    font-size: clamp(1.15rem, 2.6vw, 1.7rem);
    line-height: 1.25;
    font-weight: 900;
    color: #fff;
    background: var(--mo-sp-orange);
}

@media screen and (max-width: 720px) {
    .mo-mem-banner {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        justify-items: center;
    }

    .mo-mem-banner__card {
        max-width: 180px;
    }

    .mo-mem-banner__content {
        text-align: center;
        width: min(100%, 540px);
        max-width: 540px;
    }

    .mo-mem-banner__bubble::after {
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}

.mo-mem-fee-pill {
    display: inline-block;
    margin-top: 0.85rem;
    background: var(--mo-sp-orange);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
}


.mo-mem-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-top: 0.75rem;
}

.mo-mem-table th,
.mo-mem-table td {
    border: 1px solid #d6d0c4;
    padding: 0.75rem 1rem;
    vertical-align: top;
}

.mo-mem-table th {
    background: var(--mo-sp-cream-dark);
    width: 8.5em;
    font-weight: 700;
    text-align: left;
}

.mo-mem-table ol {
    margin: 0;
    padding-left: 1.2rem;
}

.mo-mem-table li {
    margin-bottom: 0.35rem;
}

.mo-mem-benefits {
    display: grid;
    gap: 0.75rem;
}

.mo-mem-benefit {
    border: 1px solid #e5d9c7;
    border-radius: 8px;
    background: #fffdf9;
    padding: 0.65rem 0.75rem;
}

.mo-mem-benefit__label {
    display: inline-block;
    margin: 0 0 0.45rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--mo-sp-orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
}

.mo-mem-benefit__body {
    margin: 0;
    line-height: 1.7;
}

.mo-mem-benefit__chips {
    margin: 0.55rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.mo-mem-benefit__chips li {
    margin: 0;
    padding: 0.42rem 0.55rem;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eadfce;
    line-height: 1.65;
}

.mo-mem-chip {
    display: inline-block;
    margin-right: 0.35rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: var(--mo-sp-cream);
    border: 1px solid #eadfce;
    font-weight: 700;
    font-size: 0.82em;
    color: #7c2d12;
    white-space: nowrap;
}

.mo-mem-chip--soft {
    background: #fff7ed;
    border-color: #fdba74;
    color: #9a3412;
}

.mo-mem-benefit__points {
    margin: 0.55rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.mo-mem-benefit__points li {
    margin: 0;
    padding: 0.42rem 0.55rem;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eadfce;
    line-height: 1.65;
}

.mo-mem-pt {
    color: var(--mo-sp-orange);
    font-weight: 800;
    white-space: nowrap;
}

/* フード（外周もクリーム） */
.mo-subpage--food {
    background: #f5f0e6;
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.mo-subpage--food > .mo-subpage__inner {
    background: var(--mo-sp-cream);
}

.mo-food-hero-banner {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--mo-sp-orange);
    border-radius: 6px;
    margin-top: 1rem;
}

.mo-food-hero-banner .mo-food-hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.mo-food-intro {
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--mo-sp-text);
}

.mo-food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(0.85rem, 2vw, 1.15rem);
    margin-top: 1.15rem;
}

.mo-food-card {
    background: #fff;
    border: 1px solid #c8c2b6;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(13, 31, 74, 0.06);
    display: flex;
    flex-direction: column;
}

.mo-food-card__figure {
    border-bottom: 3px solid var(--mo-sp-orange);
    background: var(--mo-sp-cream-dark);
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.mo-food-card__figure .mo-sp-ph {
    border-radius: 0;
}

.mo-food-card__name {
    margin: 0;
    padding: 0.65rem 0.85rem 0.25rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--mo-sp-navy);
    letter-spacing: 0.02em;
}

.mo-food-card__price {
    margin: 0;
    padding: 0 0.85rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--mo-sp-orange);
}

.mo-food-card__desc {
    margin: 0;
    padding: 0.45rem 0.85rem 0.85rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--mo-sp-muted);
}

.mo-food-footnote {
    margin: 1.25rem 0 0;
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--mo-sp-muted);
}

.mo-food-footnote--members {
    font-weight: 700;
    color: var(--mo-sp-navy);
}

.mo-food-intro--en-sub {
    margin-top: 0.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--mo-sp-muted);
}

.mo-food-intro--image-note {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    color: var(--mo-sp-muted);
}

.mo-food-subhead {
    margin: 1.25rem 0 0.5rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--mo-sp-navy);
    letter-spacing: 0.04em;
}

.mo-food-soft-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.85rem;
    margin: 0.35rem 0 0;
    padding: 0.75rem 0.95rem;
    list-style: none;
    background: #fff;
    border: 1px solid #d6d0c4;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.mo-food-soft-list li {
    position: relative;
    padding-left: 0.85rem;
}

.mo-food-soft-list .mo-food-soft-list__price {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0.2rem;
    font-weight: 800;
    color: var(--mo-sp-text);
}

.mo-food-soft-list .mo-food-soft-list__price::before {
    content: none;
}

.mo-food-soft-list__price-amount {
    color: var(--mo-sp-orange);
}

.mo-food-soft-list .mo-food-soft-list__image {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0.35rem;
}

.mo-food-soft-list .mo-food-soft-list__image::before {
    content: none;
}

.mo-food-soft-list .mo-food-soft-list__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #d6d0c4;
}

.mo-food-soft-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--mo-sp-orange);
    font-weight: 800;
}

.mo-food-price-wrap {
    margin-top: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mo-food-price-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: #fff;
    border: 1px solid #d6d0c4;
    border-radius: 6px;
    overflow: hidden;
}

.mo-food-price-table th,
.mo-food-price-table td {
    padding: 0.55rem 0.85rem;
    border-bottom: 1px solid #e5e0d4;
    vertical-align: top;
}

.mo-food-price-table tbody tr:last-child th,
.mo-food-price-table tbody tr:last-child td {
    border-bottom: none;
}

.mo-food-price-table th {
    text-align: left;
    font-weight: 700;
    color: var(--mo-sp-text);
    background: #faf8f3;
    width: 62%;
}

.mo-food-price-table td {
    text-align: right;
    font-weight: 800;
    color: var(--mo-sp-orange);
    white-space: nowrap;
}

.mo-food-price-table__hint {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--mo-sp-muted);
}

.mo-food-image-tag {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.12rem 0.38rem;
    border: 1px solid #f59e0b;
    border-radius: 999px;
    background: #fff7e6;
    color: #b45309;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.2;
    vertical-align: middle;
}

.mo-food-inline-thumb {
    display: inline-block;
    width: 68px;
    height: 68px;
    margin-left: 0.45rem;
    border-radius: 4px;
    border: 1px solid #d6d0c4;
    object-fit: cover;
    vertical-align: middle;
    background: #fff;
}

.mo-food-card__figure .mo-food-inline-thumb {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
}

.mo-food-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 1.25rem;
    margin-top: 1rem;
    align-items: start;
}

.mo-food-promo {
    background: #1e40af;
    color: #fef08a;
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
}

/* 施設紹介 */
.mo-fac-grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-top: 1.5rem;
}

.mo-fac-block--full {
    grid-column: 1 / -1;
}

.mo-fac-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mo-fac-block--last {
    width: calc((100% - clamp(1.25rem, 3vw, 2rem)) / 2);
}

.mo-fac-block__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.mo-fac-block--guest .mo-fac-block__img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 42%;
}

.mo-fac-block__title {
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    font-weight: 800;
    color: var(--mo-sp-text);
    margin: 0.9rem 0 0.55rem;
    line-height: 1.45;
}

.mo-fac-block__title-accent {
    color: var(--mo-sp-orange);
}

.mo-fac-block__text {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.8;
    color: #111827;
}

.mo-sp-theater-overview {
    background: var(--mo-sp-navy);
    color: #fff;
    padding: clamp(2rem, 5vw, 3rem) 16px;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.mo-sp-theater-overview .mo-subpage__inner {
    max-width: 720px;
}

.mo-sp-theater-overview .mo-subpage__title {
    color: var(--mo-sp-orange-soft);
}

.mo-sp-table-light {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #fff;
    color: var(--mo-sp-text);
    margin-top: 1.25rem;
}

.mo-sp-table-light th,
.mo-sp-table-light td {
    border: 1px solid #cbd5e1;
    padding: 0.55rem 0.75rem;
    text-align: center;
}

.mo-sp-table-light th {
    background: #f1f5f9;
    font-weight: 700;
}

/* 上映情報 */
.mo-subpage--schedule {
    background: #e5e5e5;
}

.mo-subpage--schedule .mo-subpage__hero {
    background: #e5e5e5;
}

.mo-subpage--schedule .mo-sp-bar {
    text-align: left;
}

.mo-schedule-sec {
    margin-top: 1.2rem;
}

.mo-schedule-grid {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 1rem 0.85rem;
}

.mo-schedule-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mo-schedule-card__img-wrap {
    display: block;
    background: #c9c9c9;
    border-radius: 2px;
    overflow: hidden;
}

.mo-schedule-card__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.mo-schedule-card__title {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.86rem;
    line-height: 1.45;
    color: #111827;
    font-weight: 700;
}

.mo-schedule-card__release {
    display: inline-block;
    margin-top: 0.38rem;
    padding: 0.12rem 0.45rem;
    font-size: 0.72rem;
    line-height: 1.3;
    color: #111827;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 999px;
}

.mo-schedule-empty {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: #374151;
}

/* プライバシーポリシー */
.mo-subpage--privacy {
    background: #fff;
}

.mo-privacy {
    padding: clamp(1.5rem, 4vw, 2.5rem) 16px clamp(2.5rem, 5vw, 4rem);
}

.mo-privacy__body {
    max-width: 42em;
    margin: clamp(1.5rem, 4vw, 2.25rem) auto 0;
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--mo-sp-text);
}

.mo-privacy__block + .mo-privacy__block {
    margin-top: clamp(1.35rem, 3vw, 1.85rem);
    padding-top: clamp(1.35rem, 3vw, 1.85rem);
    border-top: 1px solid var(--mo-sp-cream-dark);
}

.mo-privacy__heading {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--mo-sp-navy);
    letter-spacing: 0.04em;
}

.mo-privacy__block p {
    margin: 0 0 0.75rem;
}

.mo-privacy__block p:last-child {
    margin-bottom: 0;
}

.mo-privacy__contact {
    margin-top: 0.35rem;
}

.mo-privacy__contact a {
    color: var(--mo-sp-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mo-privacy__contact a:hover,
.mo-privacy__contact a:focus-visible {
    color: var(--mo-sp-orange-soft);
}

/* スペシャルインタビュー（movieon.jp archives/pickup 系に準拠） */
.mo-subpage--interview {
    background: #fff;
}

.mo-subpage--interview .special-interview {
    padding: 60px 20px;
    background: #ffffff;
    color: #222;
    line-height: 1.9;
}

.mo-subpage--interview .interview-inner {
    max-width: 900px;
    margin: 0 auto;
}

.mo-subpage--interview .interview-label {
    margin: 0 0 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #7a7a7a;
}

.mo-subpage--interview .interview-title {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

.mo-subpage--interview .interview-subtitle {
    margin: 0 0 30px;
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 700;
    color: #5b2ca0;
}

.mo-subpage--interview .interview-hero {
    margin: 0 0 28px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #0b1221;
}

.mo-subpage--interview .interview-hero__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.mo-subpage--interview .mo-interview__entry {
    font-size: 1rem;
    line-height: 1.9;
    color: #222;
}

.mo-subpage--interview .mo-interview__entry > *:first-child {
    margin-top: 0;
}

.mo-subpage--interview .mo-interview__entry .aligncenter,
.mo-subpage--interview .mo-interview__entry .wp-block-image.aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mo-subpage--interview .mo-interview__entry img {
    max-width: 100%;
    height: auto;
}

.mo-subpage--interview .interview-lead {
    margin-bottom: 50px;
    padding: 28px;
    background: #f7f7fb;
    border-radius: 12px;
}

.mo-subpage--interview .interview-lead p {
    margin: 0 0 1.2em;
}

.mo-subpage--interview .interview-lead p:last-child {
    margin-bottom: 0;
}

.mo-subpage--interview .qa-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mo-subpage--interview .qa-item {
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e5e5;
}

.mo-subpage--interview .qa-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.mo-subpage--interview .question {
    margin: 0 0 14px;
    font-weight: 700;
    color: #111;
}

.mo-subpage--interview .answer {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .mo-subpage--interview .special-interview {
        padding: 40px 16px;
    }

    .mo-subpage--interview .interview-title {
        font-size: 1.6rem;
    }

    .mo-subpage--interview .interview-subtitle {
        font-size: 1.1rem;
    }

    .mo-subpage--interview .interview-lead {
        padding: 20px;
    }
}

/* 会社概要 */
.mo-subpage--company {
    background: #fff;
}

.mo-subpage--company .mo-subpage__hero {
    background: #fff;
}

.mo-co-message {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 560px);
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: start;
    margin-top: 1.5rem;
    justify-content: center;
}

.mo-co-message__portrait {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
}

.mo-co-message__lead {
    font-size: clamp(1.15rem, 2.3vw, 1.35rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.mo-co-message__accent {
    color: var(--mo-sp-orange);
}

.mo-co-message__body p {
    margin: 0 0 1rem;
    font-size: 0.84rem;
    line-height: 1.95;
    letter-spacing: 0.01em;
}

.mo-co-sign {
    text-align: left;
    font-weight: 700;
    margin-top: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
}

.mo-co-sign__label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mo-co-sign__name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mo-co-overview {
    background: var(--mo-sp-navy);
    color: #fff;
    padding: clamp(2rem, 5vw, 3rem) 16px;
    margin-top: clamp(2.5rem, 6vw, 4rem);
}

.mo-co-table {
    width: 100%;
    max-width: 720px;
    margin: 1.5rem auto 0;
    border-collapse: collapse;
    font-size: 0.88rem;
    table-layout: fixed;
}

.mo-co-table th,
.mo-co-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-align: left;
    vertical-align: top;
}

.mo-co-table th {
    width: 50%;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.mo-co-table a {
    color: #93c5fd;
    text-decoration: underline;
}

.mo-co-table a:hover,
.mo-co-table a:focus-visible {
    color: #bfdbfe;
}

.mo-co-map-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 0;
}

.mo-co-map-frame iframe {
    display: block;
    width: 100%;
    height: clamp(260px, 38vw, 420px);
    border: 0;
}

.mo-co-map-wrap {
    margin-top: 0;
}

@media (max-width: 768px) {
    .mo-sp-opt-grid {
        grid-template-columns: 1fr;
    }

    .mo-adv-item {
        grid-template-columns: 1fr;
    }

    .mo-adv-item__poster {
        max-width: 160px;
    }

    .mo-food-hero-banner {
        grid-template-columns: 1fr;
    }

    .mo-food-split {
        grid-template-columns: 1fr;
    }

    .mo-fac-grid--2 {
        grid-template-columns: 1fr;
    }

    .mo-fac-block--last {
        width: 100%;
    }

    .mo-co-message {
        grid-template-columns: 1fr;
    }

    .mo-sp-price-row {
        grid-template-columns: 1fr;
    }

    .mo-sp-price-row__label {
        border-right: none;
        border-bottom: 1px solid #e5e0d4;
    }

    .mo-sp-svc-table {
        font-size: 0.72rem;
    }

    .mo-sp-svc-table th,
    .mo-sp-svc-table td {
        padding: 0.4rem 0.45rem;
    }
}

/* Service campaign LP pages */
.mo-service-lp {
    color: #121212;
    background: #f5f5f5;
    padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.mo-service-lp__hero {
    padding: clamp(2.5rem, 5vw, 4rem) 16px clamp(2rem, 4vw, 3.2rem);
    background: linear-gradient(125deg, var(--hero-start, #0f172a), var(--hero-end, #1d4ed8));
    color: #fff;
}

.mo-service-lp__hero-inner,
.mo-service-lp__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.mo-service-lp__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    opacity: 0.85;
}

.mo-service-lp__title {
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.12;
    font-weight: 800;
}

.mo-service-lp__lead {
    margin: 0.9rem 0 0;
    max-width: 46em;
    font-size: clamp(0.95rem, 1.7vw, 1.15rem);
    line-height: 1.8;
}

.mo-service-lp__section {
    padding: clamp(1.4rem, 3vw, 2rem) 16px 0;
}

.mo-service-lp__section--alt {
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.mo-service-lp__heading {
    margin: 0;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    letter-spacing: 0.03em;
}

.mo-service-lp__text {
    margin: 0.9rem 0 0;
    font-size: 0.95rem;
    line-height: 1.9;
}

.mo-service-lp__list,
.mo-service-lp__notes {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    line-height: 1.85;
    font-size: 0.92rem;
}

.mo-service-lp__image-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.mo-service-lp__placeholder {
    min-height: 180px;
    border-radius: 8px;
    background: #9ca3af;
    border: 1px solid #6b7280;
    position: relative;
    overflow: hidden;
}

.mo-service-lp__placeholder::before {
    content: "IMAGE";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
}

.mo-service-lp__hero-image {
    margin-top: 1.2rem;
    min-height: clamp(180px, 32vw, 340px);
}

.mo-service-lp__placeholder--wide {
    min-height: clamp(130px, 22vw, 220px);
}

.mo-service-lp__section--cta {
    padding-top: clamp(2rem, 4vw, 3rem);
}

.mo-service-lp__cta {
    display: inline-block;
    min-width: 280px;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.9rem 1.6rem;
    font-weight: 800;
    background: var(--cta-bg, #0f172a);
    color: #fff;
}

.mo-service-lp--event {
    --hero-start: #1e3a8a;
    --hero-end: #9333ea;
    --cta-bg: #5b21b6;
}

.mo-service-lp--mx4d {
    --hero-start: #111827;
    --hero-end: #0f766e;
    --cta-bg: #0f766e;
}

.mo-service-lp--live {
    --hero-start: #7c2d12;
    --hero-end: #be123c;
    --cta-bg: #be123c;
}

.mo-service-lp--wyverns {
    --hero-start: #9a3412;
    --hero-end: #dc2626;
    --cta-bg: #dc2626;
}

.mo-service-lp--ticket-stub {
    --hero-start: #1f2937;
    --hero-end: #2563eb;
    --cta-bg: #2563eb;
}

.mo-service-lp--pizza {
    --hero-start: #7f1d1d;
    --hero-end: #ea580c;
    --cta-bg: #ea580c;
}

.mo-service-lp--morning {
    --hero-start: #0369a1;
    --hero-end: #0ea5e9;
    --cta-bg: #0284c7;
}

.mo-service-lp--group {
    --hero-start: #334155;
    --hero-end: #0f172a;
    --cta-bg: #0f172a;
}

.mo-service-lp--mail {
    --hero-start: #4c1d95;
    --hero-end: #1d4ed8;
    --cta-bg: #1d4ed8;
}

@media (max-width: 768px) {
    .mo-service-lp__image-row {
        grid-template-columns: 1fr;
    }

    .mo-service-lp__cta {
        min-width: 100%;
    }
}

/* Independent service page designs */
.mo-svc-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    color: #fff;
    background: #111827;
    text-decoration: none;
    font-weight: 700;
}

.mo-svc-ph {
    min-height: 180px;
    background: #9ca3af;
    border: 1px solid #6b7280;
    border-radius: 8px;
    color: #f9fafb;
    display: grid;
    place-items: center;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

[class*="mo-svc-"] h1,
[class*="mo-svc-"] h2 {
    margin: 0;
}

.mo-svc-event__inner,
.mo-svc-mx4d__inner,
.mo-svc-live__inner,
.mo-svc-wyv__inner,
.mo-svc-stub__inner,
.mo-svc-pizza__inner,
.mo-svc-morning__inner,
.mo-svc-group__inner,
.mo-svc-mail__inner {
    max-width: 1050px;
    margin: 0 auto;
    padding: 1.2rem 16px;
}

.mo-svc-event__hero { background: #4c1d95; color: #fff; padding: 1.8rem 0; }
.mo-svc-event__feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.mo-svc-event__feature-grid article { background: #faf5ff; border: 1px solid #ddd6fe; padding: 1rem; border-radius: 10px; }
.mo-svc-event__note { margin-top: 0.8rem; font-size: 0.88rem; }

.mo-svc-mx4d__hero { background: radial-gradient(circle at center, #0f766e, #111827); color: #fff; padding: 2rem 0; }
.mo-svc-mx4d__split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; align-items: start; }
.mo-svc-mx4d__split ul { margin: 0; padding: 1rem 1.1rem; background: #ecfeff; border-radius: 8px; }
.mo-svc-mx4d__warn { background: #fef3c7; border: 1px solid #f59e0b; padding: 0.8rem; border-radius: 8px; }

.mo-svc-live__hero { background: linear-gradient(90deg,#7f1d1d,#be123c); color: #fff; padding: 2rem 0; }
.mo-svc-live__timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.mo-svc-live__item { background: #fff1f2; border-left: 4px solid #e11d48; padding: 0.8rem; }
.mo-svc-live__gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.8rem; }
.mo-svc-live__gallery p { grid-column: 1 / -1; font-size: 0.88rem; margin: 0; }

.mo-svc-wyv__hero { background: linear-gradient(120deg,#7f1d1d,#dc2626); color: #fff; padding: 2rem 0; }
.mo-svc-wyv__price { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.mo-svc-wyv__card { background: #fef2f2; padding: 1rem; border-radius: 10px; border: 1px solid #fecaca; }
.mo-svc-wyv__card span { display: block; font-size: 0.75rem; color: #991b1b; }
.mo-svc-wyv__card strong { display: block; margin-top: 0.3rem; }

.mo-svc-stub__hero { background: linear-gradient(120deg,#38bdf8,#6366f1); color: #fff; padding: 2rem 0; }

.mo-svc-pizza__hero { background: linear-gradient(120deg,#7c2d12,#ea580c); color: #fff; padding: 2rem 0; }
.mo-svc-pizza__menu { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.8rem; }
.mo-svc-pizza__menu article { background: #fff7ed; border: 1px solid #fdba74; border-radius: 10px; padding: 0.9rem; }

.mo-svc-morning__hero { background: linear-gradient(120deg,#0369a1,#0ea5e9); color: #fff; padding: 2rem 0; }
.mo-svc-morning__list { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.mo-svc-morning__list article { background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 10px; padding: 0.9rem; }

.mo-svc-group__hero { background: #0f172a; color: #fff; padding: 2rem 0; }
.mo-svc-group__uses { background: #f8fafc; border-radius: 10px; }
.mo-svc-group__uses ul { margin: 0.8rem 0 0; padding-left: 1.2rem; line-height: 1.8; }

.mo-svc-mail__hero { background: linear-gradient(120deg,#4c1d95,#1d4ed8); color: #fff; padding: 2rem 0; }
.mo-svc-mail__benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.mo-svc-mail__benefits article { background: #eef2ff; border: 1px solid #c7d2fe; border-radius: 10px; padding: 1rem; }

@media (max-width: 768px) {
    .mo-svc-event__feature-grid,
    .mo-svc-live__timeline,
    .mo-svc-live__gallery,
    .mo-svc-wyv__price,
    .mo-svc-pizza__menu,
    .mo-svc-morning__list,
    .mo-svc-mail__benefits,
    .mo-svc-mx4d__split {
        grid-template-columns: 1fr;
    }
}

/* Premium redesign overrides */
.mo-svc-shell {
    position: relative;
    overflow: hidden;
}

.mo-svc-shell::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -140px;
    top: -180px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0));
    pointer-events: none;
}

.mo-svc-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.mo-svc-copy {
    margin: 0.6rem 0 0;
    max-width: 46em;
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    line-height: 1.95;
    opacity: 0.94;
}

.mo-svc-ph--hero {
    margin-top: 1rem;
    min-height: clamp(200px, 32vw, 350px);
    border-radius: 14px;
}

[class*="mo-svc-"] h1 {
    font-size: clamp(2rem, 6vw, 4.2rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.mo-svc-btn {
    background: linear-gradient(135deg, #111827, #374151);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mo-svc-btn:hover,
.mo-svc-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.26);
}

.mo-svc-event { background: #0f0f17; color: #e5e7eb; }
.mo-svc-event__feature-grid article { background: linear-gradient(180deg, #17172a, #121321); border-color: #312e81; }
.mo-svc-event__feature-grid h2 { color: #a5b4fc; font-size: 0.88rem; letter-spacing: 0.1em; }
.mo-svc-event__note { color: #9ca3af; }

.mo-svc-mx4d { background: #020617; color: #d1fae5; }
.mo-svc-mx4d__split ul { background: linear-gradient(180deg, #052e2b, #022c22); border: 1px solid #115e59; color: #d1fae5; }
.mo-svc-mx4d__warn { background: #082f49; border-color: #0284c7; color: #e0f2fe; }

.mo-svc-live { background: #1a0c12; color: #ffe4e6; }
.mo-svc-live__item { background: linear-gradient(180deg, #3a0e1e, #250a16); border-left-color: #fb7185; }
.mo-svc-live__item strong { font-size: 1.4rem; color: #fda4af; display: block; margin-bottom: 0.2rem; }
.mo-svc-live__gallery p { color: #fecdd3; }

.mo-svc-wyv { background: #140707; color: #fee2e2; }
.mo-svc-wyv__card { background: linear-gradient(180deg, #3f0f0f, #2b0b0b); border-color: #7f1d1d; }
.mo-svc-wyv__card span { color: #fca5a5; }

.mo-svc-stub { background: #f8fafc; color: #1e293b; }

.mo-svc-pizza { background: #1c0d04; color: #ffedd5; }
.mo-svc-pizza__menu article { background: linear-gradient(180deg, #44210d, #2f1709); border-color: #9a3412; }
.mo-svc-pizza__menu h2 { color: #fdba74; font-size: 0.95rem; letter-spacing: 0.08em; }

.mo-svc-morning { background: #071825; color: #dbeafe; }
.mo-svc-morning__list article { background: linear-gradient(180deg, #0c2f4a, #092338); border-color: #0369a1; }
.mo-svc-morning__list h2 { color: #7dd3fc; font-size: 0.85rem; letter-spacing: 0.1em; }

.mo-svc-group { background: #020617; color: #e2e8f0; }
.mo-svc-group__uses { background: linear-gradient(180deg, #111827, #0b1220); border: 1px solid #334155; }
.mo-svc-group__uses h2 { color: #cbd5e1; font-size: 1rem; letter-spacing: 0.08em; }

.mo-svc-mail { background: #140a2e; color: #e9d5ff; }
.mo-svc-mail__benefits article { background: linear-gradient(180deg, #2b1455, #1b0f36); border-color: #6d28d9; }
.mo-svc-mail__benefits h2 { color: #c4b5fd; font-size: 0.9rem; letter-spacing: 0.08em; }

@media (max-width: 768px) {
    [class*="mo-svc-"] h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
    .mo-svc-shell::after { width: 260px; height: 260px; right: -90px; top: -130px; }
}

/* Fully independent service page designs */
.ev-wrap,.mx-container,.wv-wrap,.ts-wrap,.pz-wrap,.am-wrap,.gr-wrap,.mm-wrap{max-width:1100px;margin:0 auto;padding:24px 16px}
.ev-main-visual {
    margin: 0;
    padding: 0;
    border: 1px solid #3f3f46;
    border-radius: 10px;
    overflow: hidden;
    background: #171425;
    line-height: 0;
}

.ev-main-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.wv-image,.ts-image,.pz-image,.am-image,.gr-image,.mm-image{min-height:210px;background:#9ca3af;border:1px solid #6b7280;border-radius:10px;display:grid;place-items:center;color:#fff;letter-spacing:.12em;font-size:.76rem}

.mo-event-tile{
  background:#fff;
  color:#111827;
  padding-bottom:0;
}

body:not(.home) .site-main.mo-event-tile{
  padding-top:0 !important;
}

.mo-event-tile__hero{
  min-height:52vh;
  display:grid;
  place-items:center;
  text-align:center;
  padding:16px 16px 72px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.24)),
    url("../images/event_title_bg.png") center/cover no-repeat;
}

.mo-event-tile__hero-inner{
  width:min(100%,900px);
}

.mo-event-tile__title-image{
  margin:0;
  line-height:0;
}
.mo-event-tile__title-image img{
  display:block;
  width:100%;
  height:auto;
}

.mo-event-tile__lead{
  margin:1rem auto 0;
  max-width:56em;
  padding:0;
  border-radius:0;
  border:0;
  background:transparent;
  font-size:clamp(1rem,1.8vw,1.15rem);
  line-height:2.1;
  color:#f8fafc;
}
.mo-event-tile__lead p{
  margin:0;
}
.mo-event-tile__lead p + p{
  margin-top:1.45rem;
}

.mo-event-tile__lead-accent{
  color:#fde047;
  font-weight:800;
}

.mo-event-tile__gallery{
  display:flex;
  flex-direction:row;
  gap:14px;
  padding:16px 14px 18px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  background:#fff;
}

.mo-event-tile__card{
  flex:0 0 clamp(460px, 68vw, 760px);
  display:grid;
  grid-template-columns:minmax(0, 66%) minmax(0, 34%);
  min-height:190px;
  margin:0;
  overflow:hidden;
  position:relative;
  scroll-snap-align:start;
  border-radius:14px;
  background:linear-gradient(145deg, rgba(15,23,42,.94), rgba(30,41,59,.94));
  border:1px solid rgba(148,163,184,.3);
  box-shadow:0 14px 30px rgba(2,6,23,.48);
}

.mo-event-tile__card-media{
  margin:0;
  overflow:hidden;
  border-right:1px solid rgba(148,163,184,.26);
}

.mo-event-tile__card-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.mo-event-tile__card-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:0.55rem;
  padding:1rem 1.1rem;
}

.mo-event-tile__card-kicker{
  margin:0;
  font-size:.74rem;
  letter-spacing:.15em;
  font-weight:700;
  color:#fdba74;
}

.mo-event-tile__card-title{
  margin:0;
  font-size:clamp(1.28rem,2.4vw,1.9rem);
  line-height:1.45;
  color:#fff;
}

.mo-event-tile__card-sub{
  margin:.2rem 0 0;
  font-size:.92rem;
  color:#cbd5e1;
  letter-spacing:.04em;
}

.mo-event-tile__gallery::-webkit-scrollbar{
  height:10px;
}

.mo-event-tile__gallery::-webkit-scrollbar-thumb{
  background:rgba(148,163,184,.55);
  border-radius:999px;
}

.mo-event-tile__gallery::-webkit-scrollbar-track{
  background:rgba(15,23,42,.45);
  border-radius:999px;
}

.mo-event-tile__empty{
  margin:0;
  width:100%;
  padding:2rem 1rem;
  text-align:center;
  color:#cbd5e1;
}

.mo-event-tile__outro{
  margin-top:0;
  padding:58px 16px 46px;
  text-align:center;
  color:#e5e7eb;
  background:linear-gradient(180deg, #111827 0%, #0f172a 100%);
  border-top:1px solid rgba(148,163,184,.28);
  border-bottom:0;
  box-shadow:none;
}

.mo-event-tile__outro p{
  margin:0;
  line-height:1.85;
  letter-spacing:.02em;
  text-shadow:none;
}
.mo-event-tile__outro p:first-child{
  font-size:clamp(1.08rem,2.2vw,1.35rem);
  font-weight:800;
  color:#fde047;
}
.mo-event-tile__outro p + p{
  margin-top:.4rem;
  font-size:clamp(.92rem,1.5vw,1.02rem);
  color:#cbd5e1;
}

@media (max-width: 1024px){
  .mo-event-tile__card{
    flex-basis:clamp(420px, 78vw, 680px);
    min-height:170px;
  }
}

@media (max-width: 768px){
  .mo-event-tile__hero{
    min-height:42vh;
    padding:56px 14px;
  }
  .mo-event-tile__gallery{
    gap:10px;
    padding:10px 10px 14px;
  }
  .mo-event-tile__card{
    grid-template-columns:1fr;
    min-height:0;
  }
  .mo-event-tile__card-media{
    border-right:none;
    border-bottom:1px solid rgba(148,163,184,.22);
  }
  .mo-event-tile__card-media img{
    aspect-ratio:16 / 9;
  }
  .mo-event-tile__card-body{
    padding:1rem 1.1rem 1.15rem;
  }
  .mo-event-tile__card-title{
    font-size:clamp(1.08rem,4.8vw,1.42rem);
  }
}

/* event: static gallery (no marquee/slider) */
.mo-event-tile .mo-event-tile__gallery{
  display:grid !important;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:14px;
  padding:14px;
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  box-sizing:border-box;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../images/event_gallery_bg.png") center/cover no-repeat;
  overflow:visible !important;
}
.mo-event-tile .mo-event-tile__card{
  grid-column:span 2;
  display:block;
  overflow:hidden;
  border-radius:12px;
  background:#fff;
  border:3px solid #f97316;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
}
.mo-event-tile .mo-event-tile__card:nth-child(4):nth-last-child(2){
  grid-column:2 / span 2;
}
.mo-event-tile .mo-event-tile__card:nth-child(5):last-child{
  grid-column:4 / span 2;
}
.mo-event-tile .mo-event-tile__card-media{
  margin:0;
  border:0;
}
.mo-event-tile .mo-event-tile__card-media img{
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  height:auto;
  object-fit:cover;
}
.mo-event-tile .mo-event-tile__card-body{
  padding:.7rem .85rem .85rem;
}
.mo-event-tile .mo-event-tile__card-title{
  margin:0;
  font-size:clamp(.88rem,1.3vw,1rem);
  line-height:1.4;
  color:#111827;
}
@media (max-width: 900px){
  .mo-event-tile .mo-event-tile__gallery{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .mo-event-tile .mo-event-tile__card{
    grid-column:span 1;
  }
  .mo-event-tile .mo-event-tile__card:nth-child(4):nth-last-child(2),
  .mo-event-tile .mo-event-tile__card:nth-child(5):last-child{
    grid-column:auto;
  }
}

.mo-event-tile .mo-event-tile__gallery--feature{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr);
  gap:28px;
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:18px clamp(16px, 4vw, 48px) 74px;
  background:#fff;
  background-position:0 0;
}

.mo-event-tile .mo-event-feature{
  display:grid;
  grid-template-columns:minmax(280px, 1fr) minmax(320px, 1fr);
  gap:22px;
  align-items:center;
  width:100%;
  max-width:1160px;
  margin:0 auto;
}

.mo-event-tile .mo-event-feature--reverse .mo-event-feature__body{
  order:2;
}

.mo-event-tile .mo-event-feature--reverse .mo-event-feature__media{
  order:1;
}

.mo-event-tile .mo-event-feature__body{
  color:#111827;
}

.mo-event-tile .mo-event-feature__title{
  margin:0 0 .8rem;
  font-size:clamp(1.2rem, 2vw, 1.45rem);
  line-height:1.45;
  color:#f97316;
  padding-bottom:.35rem;
  border-bottom:2px solid #f97316;
}

.mo-event-tile .mo-event-feature__text{
  margin:0;
  font-size:clamp(.94rem, 1.35vw, 1.04rem);
  line-height:1.95;
  color:#1f2937;
}

.mo-event-tile .mo-event-feature__media{
  margin:0;
  width:100%;
  aspect-ratio:auto;
  border-radius:6px;
  overflow:visible;
  display:block;
  background:transparent;
}

.mo-event-tile .mo-event-feature__media img{
  width:100%;
  height:auto;
  max-width:100%;
  display:block;
}

.mo-event-tile .mo-event-feature__media-group{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:10px;
}

.mo-event-tile .mo-event-feature__media-group--two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.mo-event-tile .mo-event-feature__media--placeholder{
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, #d1d5db, #9ca3af);
  border:1px solid #9ca3af;
}

.mo-event-tile .mo-event-feature__media--placeholder span{
  color:#111827;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.02em;
}

@media (max-width: 900px){
  .mo-event-tile .mo-event-feature{
    grid-template-columns:minmax(0, 1fr);
    gap:12px;
  }
  .mo-event-tile .mo-event-feature__media-group--two{
    grid-template-columns:minmax(0, 1fr);
  }
  .mo-event-tile .mo-event-feature--reverse .mo-event-feature__body,
  .mo-event-tile .mo-event-feature--reverse .mo-event-feature__media{
    order:initial;
  }
}

.mx-intro{background:#021b1f;color:#e6fffa;padding:36px 0}
.mx-intro h1{margin:0;font-size:clamp(2.3rem,6vw,4rem)}
.mx-intro__hero{margin:1rem 0 0;padding:0;border:1px solid #155e75;border-radius:12px;overflow:hidden;background:#000;line-height:0}
.mx-intro__hero img{display:block;width:100%;height:auto}
.mx-intro__copy{width:100%;max-width:none;margin:1.25rem 0 0;line-height:1.85}
.mx-intro__copy p{margin:0}
.mx-footer p{margin:0;background:#082f49;color:#e0f2fe;border:1px solid #0284c7;padding:12px;border-radius:10px}
.mx-btn{display:inline-block;margin-top:10px;background:#0ea5e9;color:#031521;text-decoration:none;padding:10px 16px;border-radius:6px;font-weight:700}
.mx-notes{margin-top:12px}
.mx-notes h2{margin:0 0 10px;font-size:1.05rem;letter-spacing:.08em;color:#99f6e4}
.mx-notes__section{background:#082f49;border:1px solid #0284c7;border-radius:10px;padding:12px;margin-top:10px}
.mx-notes__section h3{margin:0 0 8px;font-size:.95rem;color:#ffc500}
.mx-notes__section p{margin:0 0 8px;color:#dbeafe;font-size:.88rem;line-height:1.75}
.mx-notes__section ul{margin:0;padding-left:1.2em;color:#dbeafe;font-size:.85rem;line-height:1.75}
.mx-notes__section li{margin:0 0 .2rem}
.mx-movies{margin-top:8px}
.mx-movies h2{margin:0 0 10px;font-size:1rem;letter-spacing:.08em;color:#99f6e4}
.mx-movies__grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(145px,1fr));gap:12px}
.mx-movies__card a{text-decoration:none;color:#d1fae5;display:block}
.mx-movies__poster{display:block;background:#0b2230;border:1px solid #115e59;border-radius:8px;overflow:hidden;aspect-ratio:2/3}
.mx-movies__poster img{display:block;width:100%;height:100%;object-fit:cover}
.mx-movies__poster-ph{display:grid;place-items:center;width:100%;height:100%;font-size:.7rem;letter-spacing:.08em;color:#94a3b8;background:#334155}
.mx-movies__title{display:block;margin-top:6px;font-size:.82rem;line-height:1.45}
.mx-movies__date{display:block;margin-top:4px;font-size:.75rem;color:#93c5fd;line-height:1.4}
.mx-movies__empty{margin:0;color:#7dd3fc;font-size:.9rem}

.lv-head{
  background:#2a0616;
  color:#ffe4e6;
  padding:0 0 40px;
  position:relative;
  overflow:hidden;
}
.lv-head__hero-image{margin:0;line-height:0}
.lv-head__hero-image{position:relative;z-index:1}
.lv-head__hero-image img{
  display:block;
  width:100%;
  height:auto;
}
.lv-head__prism{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  overflow:hidden;
}
.lv-head__prism::before,
.lv-head__prism::after{
  content:"";
  position:absolute;
  top:-35%;
  width:42vw;
  height:180%;
  transform-origin:50% 0%;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.72) 0%,
    rgba(147,197,253,.44) 35%,
    rgba(255,255,255,0) 100%
  );
  clip-path:polygon(50% 0, 61% 8%, 100% 100%, 0 100%, 39% 8%);
  filter:blur(1.6px);
  opacity:.28;
}
.lv-head__prism::before{
  left:22%;
  transform:translateX(-50%);
  animation:lvSweepLeft 5.5s ease-in-out infinite alternate;
}
.lv-head__prism::after{
  left:78%;
  transform:translateX(-50%);
  animation:lvSweepRight 6.2s ease-in-out infinite alternate;
}
.lv-head__prism-fragment{
  --lv-pos-x-s: 0vw;
  --lv-pos-y-s: 0vh;
  --lv-angle-s: 0deg;
  --lv-pos-x-e: 0vw;
  --lv-pos-y-e: 0vh;
  --lv-angle-e: 0deg;
  --lv-scale: 1;
  --lv-duration: 8s;
  --lv-delay: 0s;
  --lv-opacity: .35;
  position:absolute;
  top:0;
  left:0;
  width:calc(((100vmin + 100vmax) / 2) * 0.06);
  height:calc(((100vmin + 100vmax) / 2) * 0.06);
  opacity:var(--lv-opacity);
  mix-blend-mode:screen;
  mask-image:radial-gradient(closest-side circle at center, #fff 52%, transparent 100%);
  background:linear-gradient(
    180deg,
    rgba(236, 72, 153, var(--lv-opacity)) 24%,
    rgba(192, 132, 252, var(--lv-opacity)),
    rgba(129, 140, 248, var(--lv-opacity)),
    rgba(56, 189, 248, var(--lv-opacity)),
    rgba(34, 197, 94, var(--lv-opacity)),
    rgba(250, 204, 21, var(--lv-opacity)),
    rgba(251, 146, 60, var(--lv-opacity)),
    rgba(248, 113, 113, var(--lv-opacity)) 78%
  );
  transform:
    skew(calc(var(--lv-angle-s) / 2), var(--lv-angle-s))
    rotate(calc(var(--lv-angle-s) * -2))
    translate3d(var(--lv-pos-x-s), var(--lv-pos-y-s), 0)
    scale3d(calc(var(--lv-scale) / 1.8), var(--lv-scale), 1);
  transform-origin:center top;
  will-change:transform;
  display:none;
}
.lv-head__prism-fragment:nth-child(even){
  animation-direction:alternate-reverse;
}
.lv-head__content{
  position:relative;
  z-index:3;
  max-width:1160px;
  margin:0 auto;
  padding:clamp(18px,2.2vw,28px) clamp(16px,3vw,24px);
}
.lv-head p{line-height:1.85}
.lv-head__subtitle{margin:.85rem 0 0;font-size:clamp(1.15rem,2.8vw,1.6rem);line-height:1.5;color:#fecdd3;font-weight:800}
.lv-head__description{
  margin:1.35rem auto 0;
  max-width:70ch;
  font-size:clamp(1rem,1.35vw,1.1rem);
  line-height:2.05;
  letter-spacing:.01em;
  color:#fff1f5;
  background:linear-gradient(180deg,rgba(33, 9, 24, .82),rgba(24, 6, 17, .82));
  border:1px solid rgba(255, 150, 172, .58);
  border-radius:14px;
  padding:1.05rem 1.2rem;
  box-shadow:
    0 0 0 1px rgba(255, 170, 190, .28) inset,
    0 0 14px rgba(255, 120, 170, .34),
    0 0 32px rgba(255, 80, 140, .24);
}
.lv-head__description-accent{color:#fde047;font-weight:800}

@property --lv-pos-x {
  syntax:"<length>";
  inherits:true;
  initial-value:0px;
}
@property --lv-pos-y {
  syntax:"<length>";
  inherits:true;
  initial-value:0px;
}
@property --lv-angle {
  syntax:"<angle>";
  inherits:true;
  initial-value:0deg;
}
@keyframes lvSweepLeft{
  0%{transform:translateX(-50%) rotate(-24deg);}
  100%{transform:translateX(-50%) rotate(-8deg);}
}
@keyframes lvSweepRight{
  0%{transform:translateX(-50%) rotate(24deg);}
  100%{transform:translateX(-50%) rotate(8deg);}
}

.lv-flow{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.lv-flow article{background:#3a0a1f;border:1px solid #be123c;padding:14px;border-radius:12px;color:#ffe4e6}
.lv-flow h2{font-size:1.5rem;color:#fda4af;margin:0 0 6px}
.lv-movies{margin-top:8px}
.lv-movies h2{margin:0 0 10px;font-size:1rem;letter-spacing:.08em;color:#fda4af}
.lv-movies__grid{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(480px,1fr));gap:20px}
.lv-movies__card-link{display:flex;flex-direction:column;gap:6px;height:100%;text-decoration:none;color:inherit}
.lv-movies__card-link:hover .lv-movies__title{text-decoration:underline}
.lv-movies__poster{display:block;background:#3a0a1f;border:1px solid #be123c;border-radius:8px;overflow:hidden;aspect-ratio:16/9}
.lv-movies__poster img{display:block;width:100%;height:100%;object-fit:cover}
.lv-movies__poster-ph{display:grid;place-items:center;width:100%;height:100%;font-size:.7rem;letter-spacing:.08em;color:#fda4af;background:#4c0510}
.lv-movies__title{margin:6px 0 0;font-size:1rem;line-height:1.45;font-weight:700;color:#ffe4e6}
.lv-movies__date{margin:0;font-size:.78rem;line-height:1.45;color:#fda4af}
.lv-movies__empty{margin:0;color:#fecdd3;font-size:.9rem}
.lv-footnote{margin:1rem 0 0;color:#fecdd3;font-size:.9rem;line-height:1.65}
.lv-news-link{display:inline-block;margin-top:12px;font-size:.95rem;font-weight:700;color:#fda4af;text-decoration:underline}
.lv-news-link:hover{color:#ffe4e6}
.mo-lv-single .lv-single{padding:24px 16px 48px;max-width:720px;margin:0 auto}
.mo-lv-single .lv-single__head{margin-bottom:1rem}
.mo-lv-single .lv-single__title{margin:0;font-size:clamp(1.35rem,4vw,1.85rem);color:#ffe4e6}
.mo-lv-single .lv-single__visual{margin:0 0 1.25rem;border:1px solid #be123c;border-radius:10px;overflow:hidden;background:#3a0a1f;line-height:0}
.mo-lv-single .lv-single__visual img{display:block;width:100%;height:auto}
.mo-lv-single .lv-single__summary{margin:0 0 1.25rem}
.mo-lv-single .lv-single__summary-body{font-size:.95rem;line-height:1.75;color:#fecdd3}
.mo-lv-single .lv-single__poster{margin:0 0 1.25rem;max-width:420px;border:1px solid #be123c;border-radius:10px;overflow:hidden;background:#3a0a1f;line-height:0}
.mo-lv-single .lv-single__poster img{display:block;width:100%;height:auto}
.mo-lv-single .lv-single__spec{margin:0;display:grid;grid-template-columns:auto 1fr;gap:6px 16px;font-size:.95rem;color:#fecdd3}
.mo-lv-single .lv-single__spec dt{margin:0;font-weight:700;color:#fda4af}
.mo-lv-single .lv-single__spec dd{margin:0}
.mo-lv-single .lv-single__ticket{margin:1.5rem 0 0}
.mo-lv-single .lv-single__ticket-body{font-size:.95rem;line-height:1.75;color:#fecdd3}
.mo-lv-single .lv-single__ticket-body a{color:#fda4af}
.mo-lv-single .lv-single__ticket-body p{margin:.65em 0}
.mo-lv-single .lv-single__ticket-body p:first-child{margin-top:0}
.mo-lv-single .lv-single__ticket-body p:last-child{margin-bottom:0}
.mo-lv-single .lv-single__ticket-body ul{margin:.5em 0;padding-left:1.25em}
.mo-lv-single .lv-single__actions{margin:1.5rem 0 0}
.mo-lv-single .lv-single__ticket-body .lv-single__actions{margin-top:0}
.mo-lv-single .lv-single__back{margin:2rem 0 0;font-size:.9rem}
.mo-lv-single .lv-single__back a{color:#fda4af}

.wv-hero{background:#18072d;color:#f5e8ff;padding:0 0 34px}
.wv-hero h1{margin:0;font-size:clamp(1.8rem,5vw,3.2rem)}
.wv-hero__visual{
    margin:0;
    width:100vw;
    max-width:none;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
}
.wv-hero__visual img{
    display:block;
    width:100%;
    height:auto;
    border-radius:0;
}
.wv-hero__side-image{
    margin:0;
    width:min(46vw, 430px);
    flex:0 0 auto;
}
.wv-hero__side-image img{
    display:block;
    width:100%;
    height:auto;
    border-radius:10px;
    border:1px solid rgba(167,139,250,.45);
}
.wv-hero__intro{
    margin:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:.7rem;
    flex:1 1 200px;
}
.wv-hero__intro p{
    margin:0;
}
.wv-hero__body{
    margin-top:1.1rem;
    display:flex;
    align-items:flex-start;
    gap:clamp(16px, 3vw, 34px);
}
.mo-svc-wyv .wv-hero__subtitle{
  margin:0;
  font-size:clamp(1.25rem,3.2vw,1.7rem);
  line-height:1.5;
  color:#f97316;
  font-weight:800;
}
@media (max-width: 900px){
  .wv-hero__body{flex-direction:column;}
  .wv-hero__intro{order:1;}
  .wv-hero__side-image{order:2;}
  .wv-hero__side-image{
    width:min(100%, 430px);
  }
  .lv-movies__grid{
    grid-template-columns:minmax(0, 1fr);
    gap:12px;
  }
}
.wv-wrap.wv-cards{
  display:block;
  position:relative;
  isolation:isolate;
  box-sizing:border-box;
  width:auto;
  max-width:none !important;
  margin:0;
  padding:24px 0 0;
  background:transparent;
  border-radius:12px;
}
.wv-wrap.wv-cards::before{
  content:"";
  position:absolute;
  z-index:0;
  top:0;
  bottom:0;
  left:calc(50% - 50vw);
  right:calc(50% - 50vw);
  background:
    linear-gradient(180deg, rgba(23, 6, 38, .34), rgba(23, 6, 38, .34)),
    url("../images/pv_bg.jpg") center / cover no-repeat;
}
.wv-cards__layout{
  display:grid;
  grid-template-columns:auto auto;
  justify-content:center;
  align-items:start;
  gap:14px;
  width:fit-content;
  max-width:none;
  margin:0 auto;
  position:relative;
  z-index:1;
}
.wv-wrap.wv-cards > div{
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
}
.wv-cards__player{
  width:360px;
  margin:0;
  display:flex;
  align-self:end;
  align-items:flex-end;
  justify-content:flex-start;
}
.wv-cards__player img{
  display:block;
  width:100%;
  max-width:none;
  height:auto;
  object-fit:contain;
  object-position:center top;
  vertical-align:bottom;
}
.wv-cards__content{
  width:min(100%, 620px) !important;
  max-width:620px !important;
  justify-self:start !important;
  margin:0;
  padding:8px 18px 24px 0 !important;
  display:flex;
  flex-direction:column;
  gap:12px;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.wv-cards__block{
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  padding-right:0 !important;
  margin-right:0 !important;
  color:#f3e8ff;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  box-shadow:none !important;
}
.wv-cards__block + .wv-cards__block{
  padding-top:12px;
  border-top:none !important;
}
.wv-cards h2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 8px;
  padding:.28rem .7rem;
  background:#dc2626;
  border-radius:4px;
  color:#fff;
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1.2;
}
.wv-cards p{margin:.35rem 0 0;line-height:1.7}
.wv-cards__price{
    margin:.5rem 0 0;
    font-size:clamp(1.65rem,4.4vw,2.45rem);
    font-weight:800;
    letter-spacing:.06em;
    line-height:1.15;
    color:#fff;
}
.wv-cards__note{
    font-size:0.82em;
    line-height:1.65;
    color:#e9d5ff;
    opacity:.92;
}
.wv-cards__accent{
    color:#fde047;
    font-weight:800;
}
.wv-btn{display:inline-block;margin-top:10px;background:#7c3aed;color:#fff;text-decoration:none;padding:10px 16px;border-radius:8px}

@media (max-width: 1024px){
  .wv-wrap.wv-cards{
    padding:20px 0 0;
  }
  .wv-cards__layout{
    grid-template-columns:auto auto;
    gap:12px;
    max-width:none;
  }
  .wv-cards__player{
    width:280px;
  }
  .wv-cards__player img{
    max-width:none;
  }
}

@media (max-width: 768px){
  .wv-hero > .wv-wrap{
    padding-top:8px;
    padding-bottom:8px;
  }
  .wv-wrap.wv-cards{
    gap:10px;
    padding:16px 0 0;
    border-radius:0;
  }
  .wv-cards__layout{
    grid-template-columns:minmax(0, 1fr);
    width:100%;
    justify-content:stretch;
    gap:10px;
  }
  .wv-cards__player{
    align-self:end;
    align-items:flex-end;
    justify-content:center;
  }
  .wv-cards__player img{
    max-width:220px;
  }
  .wv-wrap.wv-cards > div,
  .wv-cards__content{
    width:100%;
  }
  .wv-cards__content{
    padding:6px 12px 16px !important;
  }
  .wv-hero{
    padding:0 0 14px;
  }
  .wv-hero__body{
    margin-top:.45rem;
    gap:6px;
  }
  .wv-hero__intro{
    gap:.35rem;
  }
  .wv-hero__intro p{
    line-height:1.65;
  }
  .mo-svc-wyv .wv-hero__subtitle{
    margin:.2rem 0 .25rem;
    font-size:clamp(1.05rem,5.2vw,1.35rem);
  }
}

/* 半券LP — シンプル・読みやすさ優先（単一カラム・抑えた装飾・適度な行長） */
.ts-hero{
  padding:2.25rem 0 2rem;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
}
@media (min-width:768px){
  .ts-hero{padding:2.75rem 0 2.5rem}
}
.ts-hero__inner{
  max-width:40rem;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.ts-hero__title{
  margin:0;
  font-size:clamp(1.5rem,4vw,2rem);
  font-weight:700;
  line-height:1.35;
  color:#0f172a;
}
#ts-hero-title{
  font-size:clamp(2rem,6vw,2.2rem);
}
.ts-hero__subtitle{
  margin:1rem 0 0;
  font-size:clamp(1.05rem,2.6vw,1.25rem);
  font-weight:700;
  line-height:1.55;
  color:#c2410c;
}
.ts-body{margin-top:8px;padding-top:8px}
.ts-body__lead{margin:0 0 1rem;line-height:1.85;color:#334155;font-size:1rem;max-width:none}
.ts-body__notes{margin:0;padding-left:1.25em;color:#64748b;font-size:.9375rem;line-height:1.75;max-width:40rem}
.ts-body__notes li{margin:.4em 0}
.ts-stores{margin-top:2rem;padding-bottom:8px}
.ts-stores__heading{margin:0 0 1.25rem;font-size:1.125rem;font-weight:700;color:#0f172a}
.ts-stores__list{margin:0;padding:0;list-style:none;display:grid;gap:12px}
@media (min-width:640px){
  .ts-stores__list{grid-template-columns:repeat(2,1fr);gap:16px}
}
.ts-store{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:8px;
  padding:1rem 1.1rem;
}
.ts-store__name{
  position:relative;
  margin:1rem -10px .9rem;
  padding:1rem 1.25rem;
  background:#fb923c;
  font-size:1.0625rem;
  font-weight:700;
  color:#fff7ed;
  line-height:1.4;
}
.ts-store__name::before,
.ts-store__name::after{
  position:absolute;
  content:"";
}
.ts-store__name::before{
  bottom:-10px;
  left:0;
  width:0;
  height:0;
  border-top:10px solid #c2410c;
  border-left:10px solid transparent;
}
.ts-store__name::after{
  right:0;
  bottom:-10px;
  width:0;
  height:0;
  border-top:10px solid #c2410c;
  border-right:10px solid transparent;
}
.ts-store__benefits{
  margin:0 1.25rem;
  padding:0;
  list-style:none;
  color:#334155;
  font-size:.95rem;
  line-height:1.75;
}
.ts-store__benefits li{
  margin:.45em 0;
}
/* 1行目（有効期限）は控えめ */
.ts-store__benefits li:first-child{
  font-size:.84rem;
  color:#64748b;
}
/* 2行目以降（特典）は目立たせる */
.ts-store__benefits li + li{
  padding:.55rem .7rem;
  border-radius:10px;
  background:linear-gradient(180deg,#fff7ed 0%, #ffedd5 100%);
  border:1px solid #fdba74;
  color:#9a3412;
  font-weight:800;
  line-height:1.6;
  box-shadow:0 3px 10px rgba(251,146,60,.18);
}
.ts-store__benefits li.ts-store__benefit-note{
  margin:.2rem 0 0;
  padding:0;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none;
  color:#64748b;
  font-size:.78rem;
  font-weight:500;
  line-height:1.55;
}
.ts-store__links{margin:.75rem 1.25rem 0;font-size:.9375rem}
.ts-store__link{display:inline-flex;align-items:center;justify-content:center;min-width:56px;padding:.35rem .7rem;border-radius:999px;background:#fb923c;color:#fff7ed;font-weight:700;text-decoration:none;line-height:1.2;transition:background-color .2s ease,transform .2s ease}
.ts-store__link:hover,.ts-store__link:focus-visible{background:#ea580c;color:#fff7ed;transform:translateY(-1px)}
.ts-store__link-sep{display:none}
.ts-foot{margin-top:2rem;padding-bottom:2.5rem}
.ts-foot__note{margin:0;color:#64748b;font-size:.875rem;line-height:1.65;max-width:40rem}

.pz-top{background:#2a1207;color:#ffedd5;padding:0 0 34px}
.pz-top > .pz-wrap{padding-top:0}
.pz-top h1{margin:0 0 .8rem;font-size:clamp(2rem,5.6vw,3.6rem)}
.pz-top__subtitle{display:inline-block;font-size:clamp(1rem,2.2vw,1.35rem);font-weight:700;letter-spacing:.08em}
.pz-top__title-image{
  margin:0 0 4rem;
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.pz-top__title-image img{
  display:block;
  width:100%;
  height:auto;
}
.pz-menu{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.pz-menu article{background:#3a1a0a;border:1px solid #9a3412;border-radius:10px;padding:12px;color:#ffedd5}
.pz-menu h2{margin:0 0 8px;color:#fdba74;font-size:.95rem}
.pz-foot{
  display:grid;
  grid-template-columns:minmax(260px, 360px) minmax(0, 1fr);
  gap:clamp(14px, 2.4vw, 24px);
  align-items:start;
}
.pz-foot__media{
  margin:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.pz-foot__media img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto !important;
  object-fit:contain;
  object-position:center top;
  border-radius:8px;
}
.pz-foot__body{
  min-width:0;
}
.pz-foot__lead{
  margin:0 0 1rem;
  font-size:clamp(1.04rem,2vw,1.22rem);
  line-height:1.8;
  font-weight:700;
}
.pz-foot__price-table{
  margin:0;
  max-width:820px;
  background:linear-gradient(180deg, rgba(7,7,16,.96), rgba(14,8,21,.92));
  border:1px solid rgba(250,204,21,.38);
  border-radius:10px;
  overflow:hidden;
}
.pz-price-list{
  margin:0;
  padding:0;
}
.pz-price-list__row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:end;
  padding:10px 14px;
  border-top:2px dashed rgba(250,204,21,.86);
}
.pz-price-list__row:first-child{
  border-top:none;
}
.pz-price-list dt,
.pz-price-list dd{
  margin:0;
}
.pz-price-list dt{
  color:#fff;
  font-weight:800;
  font-size:clamp(.92rem,2vw,1.3rem);
  line-height:1.35;
}
.pz-price-list dt span{
  font-size:0.72em;
  opacity:.92;
}
.pz-price-list dd{
  color:#fff;
  font-weight:900;
  white-space:nowrap;
  font-size:clamp(1.02rem,2.3vw,1.55rem);
}
.pz-foot__note{
  margin:.75rem 0 0;
  font-size:.78rem;
  line-height:1.6;
  color:#fde68a;
}
.pz-image img{display:block;width:100%;height:100%;object-fit:cover}
.pz-btn{display:inline-block;margin-top:10px;background:#ea580c;color:#fff;text-decoration:none;padding:10px 18px;border-radius:8px}

.am-hero{background:#09263b;color:#dbeafe;padding:36px 0}
.am-hero h1{margin:0;font-size:clamp(2rem,5.8vw,3.8rem)}
.am-list{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.am-list article{background:#0b304d;border:1px solid #0369a1;border-radius:10px;padding:12px;color:#e0f2fe}
.am-list h2{margin:0 0 6px;color:#7dd3fc;font-size:.84rem;letter-spacing:.08em}
.am-btn{display:inline-block;margin-top:10px;background:#0284c7;color:#fff;text-decoration:none;padding:10px 16px;border-radius:999px}

.gr-hero{background:#0b0f19;color:#e2e8f0;padding:34px 0}
.gr-hero h1{margin:0;font-size:clamp(1.9rem,5.2vw,3.4rem)}
.gr-hero__subtitle{margin:.85rem 0 0;font-size:clamp(1.05rem,2.6vw,1.25rem);line-height:1.55;color:#f97316;font-weight:800}
.gr-uses{display:grid;grid-template-columns:minmax(220px,0.72fr) minmax(0,1.28fr);gap:24px;align-items:start;background:#101827;border:1px solid #334155;border-radius:10px}
.gr-uses__media{margin:0;max-width:340px;justify-self:start;border-radius:10px;overflow:hidden}
.gr-uses__media img{display:block;width:100%;height:auto}
.gr-uses__body{min-width:0}
.gr-uses h2{margin:0;font-size:.9rem;letter-spacing:.08em;color:#cbd5e1}
.gr-uses ul{margin:8px 0 0;padding-left:18px;line-height:1.9}
.gr-note{font-size:.85em;line-height:1.6;color:#cbd5e1}
.gr-btn{display:inline-block;margin-top:10px;background:#334155;color:#fff;text-decoration:none;padding:10px 16px;border-radius:6px}

.mm-hero{background:#1b0a36;color:#e9d5ff;padding:34px 0}
.mm-hero h1{margin:0;font-size:clamp(2rem,5.7vw,3.6rem)}
.mm-hero__subtitle{margin:.85rem 0 0;font-size:clamp(1.05rem,2.6vw,1.25rem);line-height:1.55;color:#c4b5fd;font-weight:800}
.mm-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.mm-cards article{background:#26124a;border:1px solid #6d28d9;border-radius:10px;padding:12px;color:#ede9fe}
.mm-cards h2{margin:0 0 6px;color:#c4b5fd;font-size:.9rem}
.mm-btn{display:inline-block;margin-top:10px;background:#7c3aed;color:#fff;text-decoration:none;padding:10px 18px;border-radius:999px}
.mm-guide{display:grid;grid-template-columns:minmax(0,0.95fr) minmax(0,1.25fr);gap:12px;margin-top:10px;align-items:start}
.mm-guide__media{margin:0;background:#26124a;border:1px solid #6d28d9;border-radius:10px;overflow:hidden}
.mm-guide__media img{display:block;width:100%;height:auto}
.mm-guide__content{display:grid;grid-template-columns:1fr;gap:10px}
.mm-guide__block{background:#26124a;border:1px solid #6d28d9;border-radius:10px;padding:12px;color:#ede9fe}
.mm-guide__block h2{margin:0 0 6px;color:#c4b5fd;font-size:.98rem}
.mm-guide__block p{margin:0;line-height:1.75}
.mm-guide__block a{color:#ddd6fe;text-decoration:underline}

@media (max-width: 860px){
  .ev-layout,.lv-flow,.wv-cards,.pz-menu,.am-list,.mm-cards,.mm-guide{grid-template-columns:1fr}
}

@media (max-width: 768px){
  .lv-head{
    padding:0 0 26px;
  }
  .lv-head__description{
    margin:1rem auto 0;
    line-height:1.95;
    padding:.92rem .95rem;
  }
}

/* --------------------------------------------------------------------------
 * 2026 Refresh: サービス・キャンペーン配下ページ 共通モダン化
 * -------------------------------------------------------------------------- */
:root{
  --mo-svc-card-radius:16px;
  --mo-svc-card-border:1px solid rgba(255,255,255,.14);
  --mo-svc-shadow:0 10px 28px rgba(0,0,0,.22);
}

.mo-svc-event,.mo-svc-mx4d,.mo-svc-live,.mo-svc-wyv,.mo-svc-stub,.mo-svc-pizza,.mo-svc-morning,.mo-svc-group,.mo-svc-mail{
  color:#e8edf7;
  padding-bottom:clamp(2.5rem,5vw,4rem);
}

.ev-wrap,.mx-container,.wv-wrap,.ts-wrap,.pz-wrap,.am-wrap,.gr-wrap,.mm-wrap{
  max-width:1160px;
  padding:clamp(18px,2.2vw,28px) clamp(16px,3vw,24px);
}

/* Hero readability and hierarchy */
.ev-hero,.mx-intro,.lv-head,.wv-hero,.pz-top,.am-hero,.gr-hero,.mm-hero{
  position:relative;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.ev-hero::after,.mx-intro::after,.wv-hero::after,.pz-top::after,.am-hero::after,.gr-hero::after,.mm-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.06) 0%, rgba(0,0,0,.28) 100%);
  pointer-events:none;
}
.ev-hero > .ev-wrap,.mx-intro > .mx-container,.wv-hero > .wv-wrap,.pz-top > .pz-wrap,.am-hero > .am-wrap,.gr-hero > .gr-wrap,.mm-hero > .mm-wrap{
  position:relative;
  z-index:1;
}

/* Card surfaces (bento-like consistency) */
.ev-points li,.mx-movies__card a,.lv-flow article,.wv-cards > div,.pz-menu article,.am-list article,.gr-uses,.mm-cards article,.mm-guide__block,.mx-notes__section,.ts-store{
  border-radius:var(--mo-svc-card-radius);
  border:var(--mo-svc-card-border);
  box-shadow:var(--mo-svc-shadow);
}

.mx-movies__card a{
  padding:10px;
  background:linear-gradient(180deg,#10223a 0%,#0a1628 100%);
}
.mx-movies__title{
  font-size:.85rem;
  font-weight:700;
}

.lv-flow article,.wv-cards > div,.pz-menu article,.am-list article,.mm-cards article,.mm-guide__block{
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

/* Buttons */
.mx-btn,.wv-btn,.pz-btn,.am-btn,.gr-btn,.mm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:.65rem 1.1rem;
  font-weight:800;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 8px 18px rgba(0,0,0,.24);
  transition:transform .2s ease, filter .2s ease;
}
.mx-btn:hover,.wv-btn:hover,.pz-btn:hover,.am-btn:hover,.gr-btn:hover,.mm-btn:hover,
.mx-btn:focus-visible,.wv-btn:focus-visible,.pz-btn:focus-visible,.am-btn:focus-visible,.gr-btn:focus-visible,.mm-btn:focus-visible{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

/* Mobile density tuning */
@media (max-width: 860px){
  .ev-wrap,.mx-container,.wv-wrap,.ts-wrap,.pz-wrap,.am-wrap,.gr-wrap,.mm-wrap{
    padding:16px;
  }
  .pz-foot{
    grid-template-columns:minmax(0, 1fr);
    gap:12px;
  }
  .pz-foot__media{
    max-width:420px;
  }
  .gr-uses{grid-template-columns:1fr}
  .ev-points li,.mx-movies__card a,.lv-flow article,.wv-cards > div,.pz-menu article,.am-list article,.gr-uses,.mm-cards article,.mm-guide__block,.mx-notes__section,.ts-store{
    border-radius:12px;
  }
}

/* Wyverns detail section: keep content clean and centered */
.wv-wrap.wv-cards > .wv-cards__layout{
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.wv-wrap.wv-cards .wv-cards__content,
.wv-wrap.wv-cards .wv-cards__block{
  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
