@charset "UTF-8";

/* Reproduction PROJECT — テーマパーク公式サイト風（新規） */

:root {
    --paper: #e6f4fb;
    --paper-2: #ceeaf6;
    --ink: #14384a;
    --ink-soft: #4a7383;
    --sea: #4aafc8;
    --sea-deep: #2a8fa8;
    --vermilion: #5bcde0;
    --gold: #8ddaea;
    --line: rgba(20, 90, 110, 0.14);
    --white: #ffffff;
    /* 文字コントラストが弱く見えたので、ハイライト側を暗め寄せ */
    --grad: linear-gradient(135deg, #8fdcf0 0%, #4aafc8 48%, #2a8fa8 100%);
    --grad-deep: linear-gradient(115deg, #1a6e88 0%, #2a8fa8 52%, #4aafc8 100%);
    --grad-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(214, 242, 252, 0.82) 100%);
    --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 100%);
    --glass-edge: rgba(255, 255, 255, 0.72);
    --grad-line: linear-gradient(90deg, transparent, var(--vermilion), transparent);
    --text: 14px;
    --text-s: 12px;
    --lh: 1.65;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(1100px 480px at 8% -8%, rgba(126, 207, 227, 0.5), transparent 55%),
        radial-gradient(800px 360px at 100% 0%, rgba(46, 184, 212, 0.28), transparent 48%),
        linear-gradient(180deg, #f3fbfe 0%, #e8f5fa 42%, #dceef6 100%);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", Meiryo, "メイリオ", "Yu Gothic", YuGothic, sans-serif;
    font-size: var(--text);
    font-weight: 400;
    line-height: var(--lh);
    letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: var(--sea); text-decoration: none; transition: color 0.35s ease; }
a:hover { color: var(--vermilion); }

/* グラデ塗り共通。overflow:hidden + ::before の大きなレイヤーで均一に塗る */
.grad-fill,
.btn-fill,
.stamp,
.hot,
.tags span,
.filters button.is-on,
.filters button:hover {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--sea);
    background-image: none;
    color: #fff;
    /* 明るい背景でも文字が潰れにくいよう影を追加 */
    text-shadow: 0 1px 2px rgba(0, 25, 40, 0.28);
}
.grad-fill::before,
.btn-fill::before,
.stamp::before,
.hot::before,
.tags span::before,
.filters button.is-on::before,
.filters button:hover::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    right: -200px;
    bottom: -200px;
    background: var(--grad);
    z-index: -1;
    pointer-events: none;
}

/* 見出しは丸ゴシック。本文の角ゴシックと役割を分ける */
.serif {
    font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.en,
.sec-head .en {
    font-family: "Oswald", "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-weight: 600;
}

/* ----- header ----- */
.bar {
    position: sticky;
    top: 0;
    z-index: 40;
    overflow: visible;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateZ(0);
}
.bar.is-scrolled {
    background: #fff;
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
}
.bar-in {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.mark {
    color: var(--ink);
    line-height: 1.15;
    flex: 0 0 auto;
    transition: opacity 0.35s ease, transform 0.45s ease;
}
.mark:hover { opacity: 0.75; transform: translateY(-1px); }
.logo-img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 280px;
    padding: 1px 0;
}
.nav {
    display: flex;
    align-items: stretch;
    gap: 4px;
    margin-left: auto;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    height: 56px;
}
.nav-item {
    display: flex;
    align-items: center;
    position: relative;
}
.nav-top {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 12px;
    color: var(--ink);
    position: relative;
    white-space: nowrap;
    transition: color 0.35s ease;
}
.nav-item.has-mega > .nav-top::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 8px;
    order: 1;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.45;
    transition: transform 0.3s ease;
}
.nav-item.has-mega:hover > .nav-top::before,
.nav-item.has-mega.is-open > .nav-top::before {
    transform: rotate(180deg);
}
.nav-top::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    height: 1px;
    background: var(--grad-line);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}
.nav-item:hover > .nav-top::after,
.nav-item.is-open > .nav-top::after,
.nav-top.is-here::after { transform: scaleX(1); }
.nav-top.is-here,
.nav-item:hover > .nav-top,
.nav-item.is-open > .nav-top { color: var(--vermilion); }

.drop {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    min-width: 220px;
    padding: 12px 8px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(14, 80, 100, 0.14);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.drop::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}
.nav-item.has-mega:last-of-type .drop {
    left: auto;
    right: 0;
    transform: none;
}
.nav-item.has-mega:hover .drop,
.nav-item.has-mega:focus-within .drop,
.nav-item.has-mega.is-open .drop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.drop a {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 14px 24px;
    white-space: nowrap;
    text-align: center;
    position: relative;
    transition: color 0.3s ease;
}
.drop a::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 8px;
    height: 1px;
    background: var(--grad-line);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}
.drop a:hover { color: var(--vermilion); }
.drop a:hover::after { transform: scaleX(1); }

.nav .ticket {
    align-self: center;
    margin-left: 8px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    overflow: hidden;
    z-index: 0;
    position: relative;
    border-radius: 999px;
    background: #fff;
    transition: color 0.4s ease, border-color 0.4s ease;
    isolation: isolate;
}
.nav .ticket::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: #4aafc8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 999px;
}
.nav .ticket:hover::before,
.nav .ticket.is-here::before { transform: scaleX(1); }
.nav .ticket:hover,
.nav .ticket.is-here {
    background: transparent;
    color: #fff;
    border-color: transparent;
}

/* ----- hero ----- */
.hero {
    position: relative;
    height: min(72vh, 640px);
    min-height: 380px;
    overflow: hidden;
    background: #0a4a5c;
    isolation: isolate;
    clip-path: inset(0);
}
.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
}
.slide.is-on {
    opacity: 1;
    z-index: 1;
}
.slide img {
    position: absolute;
    left: -8%;
    top: -8%;
    width: 116%;
    height: 116%;
    max-width: none;
    object-fit: cover;
    object-position: center 42%;
    transform-origin: center 42%;
    transform: scale(1.12);
    will-change: transform;
}
/* アニメーションはJSで data-ken 属性を付けたときだけ発火 */
.slide img[data-ken] {
    animation: ken-out 7s ease-out both;
}
.hero-ctrl {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 4;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #fffaf3;
    background: transparent;
    cursor: pointer;
}
.hero-dots button.is-on {
    background: #fffaf3;
}
.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(10, 70, 90, 0.18) 0%, rgba(14, 90, 120, 0.04) 38%, rgba(8, 40, 56, 0.62) 100%);
}
.hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px 56px;
    color: #fffaf3;
    z-index: 3;
}
.hero-copy h1,
.hero-copy > p,
.hero-copy .btns {
    animation: rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-copy h1 { animation-delay: 0.08s; }
.hero-copy > p { animation-delay: 0.24s; }
.hero-copy .btns { animation-delay: 0.4s; }
.hero-copy h1 {
    margin: 0 0 10px;
    font-family: "Kaisei Decol", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: clamp(26px, 4.4vw, 48px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;
    font-feature-settings: "palt";
    text-shadow: 0 8px 28px rgba(8, 40, 56, 0.4);
}
.hero-copy > p {
    margin: 0 0 18px;
    max-width: 32em;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}
.btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 44px;
    padding: 0 22px;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    border: 1.5px solid rgba(255, 255, 255, 0.88);
    color: #fff;
    border-radius: 999px;
    background: rgba(8, 40, 56, 0.42);
    box-shadow: none;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.btn:hover {
    background: #fffaf3;
    color: var(--ink);
    transform: translateY(-2px);
    border-color: #fffaf3;
    box-shadow: 0 10px 24px rgba(20, 18, 14, 0.22);
}
.btn-fill {
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(14, 80, 100, 0.22);
}
.btn-fill:hover {
    background-color: #fff;
    color: var(--ink);
    border-color: #fff;
    box-shadow: 0 10px 24px rgba(14, 80, 100, 0.18);
}
.btn-fill:hover::before {
    opacity: 0;
}

/* ----- today ----- */
.today {
    background: var(--grad-deep);
    color: #eef9fc;
}
.today-in {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: minmax(140px, 0.9fr) 1fr 1fr;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.today-in > div {
    transition: none;
}
.today-in .when {
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-top: 2px;
    opacity: 0.88;
    font-weight: 700;
}
.today .label {
    font-size: 11px;
    letter-spacing: 0.16em;
    opacity: 0.8;
    font-weight: 700;
}
.today b { font-weight: 900; font-size: 14px; }
.today a { color: #f3efe6; border-bottom: 1px solid rgba(243, 239, 230, 0.4); }
.today a:hover { color: #b8eef8; }
.today + .wrap { margin-top: 20px; }

.event-now {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.event-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.event-status article,
.event-status > a {
    display: block;
    background: var(--white);
    padding: 28px 24px 32px;
    color: inherit;
    min-height: 168px;
    transition: transform 0.45s ease, box-shadow 0.45s ease, color 0.35s ease;
}
.event-status > a:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(44, 39, 31, 0.1);
}
.event-status .en {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--vermilion);
}
.event-status h3 {
    margin: 8px 0 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}
.event-status p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ----- sections ----- */
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.sec {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}
/* PC幅で左右2カラムに並べる汎用グリッド */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: stretch;
}
.home-grid > .sec {
    border-top: 0;
    padding-top: 0;
}
.wrap > .sec:first-child {
    border-top: 0;
    padding-top: 24px;
}
.sec-head {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.sec-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 96px;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}
.sec.will-show.is-in > .sec-head::after,
.sec.will-show.is-in .sec-head::after,
.page-head.will-show.is-in .sec-head::after,
.page-head .sec-head::after {
    transform: scaleX(1);
}
.sec-head .en {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--vermilion);
}
.sec-head h1 {
    margin: 4px 0 0;
    font-size: 34px;
    font-weight: 700;
}
.sec-head h2 {
    margin: 4px 0 0;
    font-size: 26px;
    font-weight: 700;
}
.more {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--sea);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.35s ease, gap 0.35s ease;
}
.more::after {
    content: "›";
    font-size: 1.15em;
    transition: transform 0.35s ease;
}
.more:hover { gap: 10px; }
.more:hover::after { transform: translateX(3px); }

.events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: stretch;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease, color 0.35s ease;
}
.card:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(14, 80, 100, 0.12);
}
.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.card:hover img { transform: scale(1.05); }
.card .meta {
    padding: 10px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card .when {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--vermilion);
    margin: 0 0 4px;
}
.card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    transition: color 0.35s ease;
}
.card:hover h3 { color: var(--vermilion); }
.card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.stamp {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 999px;
    box-shadow: none;
}

.stack { display: grid; gap: 18px; }

.photos {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 10px;
}
.photos a:first-child { grid-row: 1 / 3; }
.photos a {
    overflow: hidden;
    display: block;
    position: relative;
}
.photos a[href$=".jpg"],
.photos a[href$=".jpeg"],
.photos a[href$=".png"] { cursor: zoom-in; }
.photos a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 14, 0);
    transition: background 0.45s ease;
}
.photos a:hover::after { background: rgba(20, 18, 14, 0.22); }
.photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.photos a:hover img { transform: scale(1.08); }

.guide {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.guide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.guide h3 {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
}
.guide p { margin: 0 0 1em; color: var(--ink-soft); }

.visit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.visit article,
.visit > a {
    background: var(--white);
    padding: 28px 24px 32px;
    min-height: 180px;
    display: block;
    color: inherit;
}
.visit > a {
    transition: transform 0.45s ease, box-shadow 0.45s ease, color 0.35s ease;
}
.visit > a:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(44, 39, 31, 0.1);
}
.visit .en {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--vermilion);
}
.visit h3 {
    margin: 8px 0 12px;
    font-size: 22px;
    font-weight: 500;
}
.visit p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.quote {
    margin: 0 0 20px;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.7;
    color: var(--ink);
}

.channels {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 16px;
}
.channels a {
    display: block;
    color: inherit;
    background: var(--white);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, color 0.35s ease;
}
.channels a:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(44, 39, 31, 0.12);
}
.channels img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.channels a:hover img { transform: scale(1.07); }
.channels .meta { padding: 20px 22px 24px; }
.channels h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.35s ease;
}
.channels a:hover h3 { color: var(--vermilion); }
.channels p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.news {
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}
.news li {
    display: grid;
    grid-template-columns: 92px 7.5em 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
}
.news time { color: var(--ink-soft); letter-spacing: 0.06em; font-weight: 700; }
.news .cat { color: var(--vermilion); letter-spacing: 0.08em; font-size: 11px; font-weight: 700; }

.cast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.cast-grid article {
    background: transparent;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
}
.cast-grid .role {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--vermilion);
}
.cast-grid h3 { margin: 2px 0 0; font-size: 14px; font-weight: 700; }

.page-head {
    padding: 16px 0 4px;
}
.page-head .sec-head {
    margin-bottom: 0;
}
.crumb {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}
.crumb a { color: var(--sea); }
.page-visual {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 340px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--line);
    margin: 12px 0 0;
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
}
.page-body.sec {
    padding-top: 16px;
    border-top: 0;
}
.page-head + .prose,
.page-visual + .prose,
.page-visual + .event-page {
    padding-top: 16px;
}

.prose {
    max-width: 760px;
    padding: 20px 0 40px;
}
.prose h2 {
    margin: 1.4em 0 0.4em;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line);
}
.prose h3 { margin: 1.1em 0 0.35em; font-size: 14px; }
.prose p { margin: 0 0 0.7em; color: var(--ink-soft); }
.prose ol { color: var(--ink-soft); }
.prose a {
    border-bottom: 1px solid rgba(26, 92, 98, 0.35);
    transition: border-color 0.35s ease, color 0.35s ease;
}
.prose a:hover { border-bottom-color: var(--vermilion); }

.slogans {
    list-style: none;
    margin: 0 0 2em;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.slogans li {
    margin: 0 0 0.35em;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.7;
    color: var(--ink);
}
.slogans li:last-child { margin-bottom: 0.2em; }
.ended {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 10px;
    background: #5a6b72;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    vertical-align: middle;
}

.event-page {
    max-width: 760px;
    padding: 16px 0 40px;
}
.event-page .event-date {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--sea-deep);
    line-height: 1.7;
}
.event-page .event-date .ended {
    margin-left: 10px;
}
.event-page h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.event-page p {
    margin: 0 0 0.8em;
    font-size: 14px;
    line-height: 1.75;
    color: var(--ink);
}
.event-page .more {
    margin-top: 12px;
}

.jobs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 0 20px;
    padding: 0;
    border-top: 1px solid var(--line);
}
.jobs li {
    list-style: none;
    background: transparent;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
}
.jobs li b {
    display: inline;
    font-size: 14px;
    font-weight: 700;
}
.jobs li p {
    margin: 4px 0 0;
    max-height: none;
    opacity: 1;
    overflow: visible;
    font-size: 12px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.hot {
    display: inline-block;
    margin: 0 0 0 8px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    box-shadow: none;
    vertical-align: middle;
}

.foot {
    margin-top: 24px;
    padding: 24px 20px 28px;
    background: var(--grad-deep);
    color: #d7eef4;
    font-size: 12px;
    font-weight: 500;
}
.foot-in {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}
.foot a { color: #d7eef4; }
.foot a:hover { color: #b8eef8; }
.foot .mark { color: #f4fcff; }
.foot .mark:hover { color: #b8eef8; }
.foot small {
    display: block;
    margin-top: 28px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.menu-btn {
    display: none;
    position: relative;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 50;
    flex: 0 0 auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.menu-btn span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    pointer-events: none;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        top 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        background 0.3s ease;
}
.menu-btn span:nth-child(1) { top: 14px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 28px; }
@media (hover: hover) and (pointer: fine) {
    .menu-btn:hover span { background: var(--vermilion); }
}
.menu-btn.is-open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-btn.is-open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.lead-park {
    max-width: 46em;
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-row a {
    display: block;
    padding: 24px 22px 26px;
    color: inherit;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
    transition: transform 0.45s ease, box-shadow 0.45s ease, color 0.35s ease;
}
.contact-row a:hover {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(14, 80, 100, 0.14);
}
.contact-row small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--vermilion);
}
.contact-icon {
    display: block;
    font-size: 28px;
    color: var(--sea);
    margin-bottom: 6px;
}
.contact-row b {
    display: block;
    margin: 8px 0 10px;
    font-size: 22px;
}
.contact-row span {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}
.contact-row .addr {
    word-break: break-all;
}

.enjoy {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.enjoy a {
    position: relative;
    overflow: hidden;
    display: block;
    color: #fffaf3;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
}
.enjoy a:hover { color: #fffaf3; }
.enjoy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s ease;
}
.enjoy a:hover img { transform: scale(1.06); }
.enjoy .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 10px 12px 12px;
    background: linear-gradient(180deg, transparent, rgba(8, 40, 56, 0.78));
}
.enjoy .cap small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.92;
    word-break: keep-all;
    line-break: strict;
}
.enjoy .cap b {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin: 2px 0 0;
    line-height: 1.4;
    letter-spacing: 0.04em;
    word-break: keep-all;
    line-break: strict;
    overflow-wrap: normal;
}
.enjoy .cap span {
    font-size: 12px;
    letter-spacing: 0.12em;
}
@media (min-width: 900px) {
    .enjoy .cap b { white-space: nowrap; }
}

.map-teaser {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    color: #fffaf3;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(14, 80, 100, 0.14);
}
.map-teaser:hover { color: #fffaf3; }
.map-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.map-teaser:hover img { transform: scale(1.04); }
.map-teaser .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 16px 14px;
    background: linear-gradient(transparent, rgba(20, 18, 14, 0.7));
}
.map-teaser p { margin: 0 0 8px; }

.map-board {
    position: relative;
    overflow: hidden;
    margin: 0 0 28px;
    background: #123;
}
.map-board > img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.pin {
    position: absolute;
    transform: translate(-50%, -100%);
    background: var(--white);
    color: var(--ink);
    padding: 6px 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(20, 18, 14, 0.25);
    transition: background 0.3s ease, color 0.3s ease;
}
.pin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: var(--white);
    border-bottom: 0;
}
.map-board .pin:hover { background: var(--vermilion); color: #fff; }
.map-board .pin:hover::after { border-top-color: var(--vermilion); }

.ops {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}
.ops th,
.ops td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    font-weight: 500;
}
.ops th {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--ink-soft);
    font-weight: 400;
}
.ops td:last-child { color: var(--ink-soft); }
.ops-note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--ink-soft);
}

.feat {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    color: inherit;
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.feat:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(44, 39, 31, 0.14);
}
.feat img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.feat:hover img { transform: scale(1.05); }
.feat .meta {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.feat .stamp { position: relative; top: auto; left: auto; margin: 0 0 8px; width: max-content; }
.feat h3 { margin: 0 0 8px; font-size: 20px; }
.feat p { margin: 0 0 10px; color: var(--ink-soft); font-size: 13px; }

.checks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.checks a {
    display: block;
    background: var(--white);
    padding: 22px 20px 24px;
    color: inherit;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.checks a:hover {
    color: inherit;
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(44, 39, 31, 0.1);
}
.checks small {
    display: block;
    color: var(--vermilion);
    letter-spacing: 0.2em;
    font-size: 11px;
}
.checks b {
    display: block;
    margin: 8px 0 6px;
    font-size: 16px;
}
.checks span { color: var(--ink-soft); font-size: 13px; }

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 8px;
    padding: 4px 0 8px;
    overflow: visible;
}
.filters button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    color: var(--ink);
    box-shadow: none;
    transform: none;
    -webkit-appearance: none;
    appearance: none;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.filters button:hover,
.filters button.is-on {
    border-color: rgba(14, 80, 100, 0.18);
    box-shadow: none;
    transform: none;
}

/* ピックアップカードを PC で 2 列に */
.pickup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.spot {
    display: grid;
    grid-template-columns: 180px 1fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 28px;
    color: inherit;
    box-shadow: 0 8px 24px rgba(14, 80, 100, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
a.spot:hover {
    color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(44, 39, 31, 0.1);
}
.spot .pic {
    position: relative;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}
.spot .pic img,
.spot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.spot .meta { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.spot h3 { margin: 6px 0 8px; font-size: 22px; font-weight: 700; }
.spot p { margin: 0 0 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.facilities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
}
.area-head {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px 0 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid var(--ink);
}
.area-head.is-off {
    display: none !important;
}
.facility {
    display: grid;
    grid-template-columns: 168px 1fr;
    align-items: stretch;
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    color: inherit;
    box-shadow: none;
    min-height: 126px;
}
.facility.is-off,
[data-kind].is-off {
    display: none !important;
}
a.facility:hover {
    color: inherit;
    background: #f7fbfd;
}
.facility .pic {
    position: relative;
    width: 168px;
    min-height: 126px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.facility .pic img,
.facility img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
a.facility:hover img { transform: scale(1.04); transition: transform 0.8s ease; }
.facility .meta { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }
.facility h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; line-height: 1.4; }
.facility p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.tags { margin: 0 0 6px; }
.tags span {
    display: inline-block;
    margin: 0 4px 4px 0;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    box-shadow: none;
}
.spec {
    margin-top: 8px !important;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

/* ----- motion ----- */
.will-show {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.will-show.is-in {
    opacity: 1;
    transform: none;
}
.page-visual.will-show {
    transform: translateY(24px) scale(1.04);
}
.page-visual.will-show.is-in {
    transform: none;
}
.card.will-show.is-in:hover,
.feat.will-show.is-in:hover,
a.spot.will-show.is-in:hover {
    transform: translateY(-3px);
}
a.facility.will-show.is-in:hover {
    transform: none;
}
.contact-row a.will-show.is-in:hover {
    transform: translateY(-4px);
}

@keyframes ken-out {
    from { transform: scale(1.12); }
    to   { transform: scale(1.0); }
}
@keyframes rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(20, 18, 14, 0.88);
    opacity: 0;
    visibility: hidden;
    cursor: zoom-out;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.is-on {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 86vh;
    width: auto;
    height: auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    transform: scale(0.96);
    transition: transform 0.45s ease;
}
.lightbox.is-on img { transform: scale(1); }

@media (max-width: 860px) {
    :root {
        --text: 13px;
        --text-s: 11px;
        --lh: 1.55;
    }
    .home-grid { grid-template-columns: 1fr; gap: 0; }
    .home-grid > .sec { border-top: 1px solid var(--line); }
    .bar-in { height: 60px; padding: 0 16px; }
    .nav {
        display: none;
        height: auto;
    }
    .nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 8px 0 20px;
        border-bottom: 1px solid var(--line);
        max-height: calc(100vh - 60px);
        overflow: auto;
        animation: rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    body.is-nav-open { overflow: hidden; }
    .nav-item { display: block; }
    .nav-top {
        height: auto;
        padding: 14px 24px;
        width: 100%;
        justify-content: space-between;
    }
    .nav-top::after { display: none; }
    .drop {
        position: static;
        transform: none;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        border: 0;
        box-shadow: none;
        background: transparent;
        padding: 0 24px 10px;
    }
    .has-mega.is-open .drop { display: flex; }
    .drop::before { display: none; }
    .nav-item.has-mega:last-of-type .drop {
        left: auto;
        right: auto;
    }
    .drop a {
        padding: 10px 0;
        text-align: left;
        border-bottom: 1px solid var(--line);
    }
    .nav .ticket {
        margin: 12px 24px 0;
        text-align: center;
    }
    .menu-btn { display: block; }
    .hero-copy h1 { animation-delay: 0.08s; }
    .hero-copy > p { animation-delay: 0.22s; }
    .today-in { grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 8px 16px; font-size: 11px; }
    .today b { font-size: 12px; }
    .events, .guide, .photos, .jobs, .foot-in, .visit, .event-status, .channels, .feat, .spot, .checks {
        grid-template-columns: 1fr;
    }
    .cast-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .cast-grid article { padding: 8px 10px; border-bottom: 1px solid var(--line); }
    .cast-grid h3 { font-size: 13px; }
    .jobs li p {
        margin-top: 4px;
        max-height: none;
        opacity: 1;
    }
    .enjoy { grid-template-columns: 1fr 1fr; gap: 6px; }
    .enjoy a { aspect-ratio: 4 / 3; }
    .enjoy .cap { padding: 8px 8px 10px; }
    .enjoy .cap b { font-size: 12px; }
    .enjoy .cap small { font-size: 10px; }
    .page-visual { aspect-ratio: 16 / 9; max-height: 180px; }
    .page-head { padding-top: 12px; }
    .feat img, .spot img { min-height: 0; }
    .pickup-grid { grid-template-columns: 1fr; }
    .spot { grid-template-columns: 1fr; }
    .spot .pic { border-radius: 8px 8px 0 0; }
    .spot .meta { padding: 16px 16px 18px; }
    .spot h3 { font-size: 18px; }
    .photos { grid-template-rows: 140px 90px 90px; gap: 6px; }
    .photos a:first-child { grid-row: auto; }
    .events { gap: 0; border-top: 1px solid var(--line); }
    .card {
        display: grid;
        grid-template-columns: 96px 1fr;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
    }
    .card img { height: 72px; width: 96px; }
    .card .meta { padding: 8px 10px; }
    .card h3 { font-size: 13px; }
    .card:hover { transform: none; box-shadow: none; }
    .hero {
        height: min(52vh, 420px);
        min-height: 280px;
    }
    .hero-copy { padding: 0 16px 58px; }
    .hero-ctrl { bottom: 14px; }
    .hero-copy h1 { font-size: clamp(24px, 7vw, 34px); }
    .hero-copy > p { font-size: 13px; margin-bottom: 16px; }
    .btn { min-height: 42px; padding: 0 18px; }
    .wrap { padding: 0 14px; }
    .sec { padding: 18px 0; }
    .wrap > .sec:first-child { padding-top: 16px; }
    .sec-head h1 { font-size: 24px; }
    .sec-head h2 { font-size: 22px; }
    .contact-row { grid-template-columns: 1fr; }
    .contact-row a { padding: 20px 16px 22px; }
    .contact-row b { font-size: 18px; }
    .news li {
        grid-template-columns: 72px 1fr;
        gap: 6px 8px;
        padding: 7px 0;
        font-size: 12px;
    }
    .news .cat {
        grid-column: 2;
        grid-row: 1;
        font-size: 10px;
    }
    .news time { font-size: 11px; }
    .news li span:last-child { grid-column: 2; }
    .facility {
        grid-template-columns: 120px 1fr;
        min-height: 90px;
    }
    .facility .pic { width: 120px; min-height: 90px; }
    .facility .meta { padding: 10px 12px; }
    .facility h3 { font-size: 15px; }
    .facility p { font-size: 12px; }
    .area-head { font-size: 14px; padding: 12px 0 6px; }
    .map-teaser { aspect-ratio: 16 / 9; }
    .map-board > img { height: 220px; }
    .btn { padding: 8px 14px; font-size: 12px; }
    .prose { padding: 12px 0 28px; }
    .event-page { padding: 12px 0 28px; }
    .foot { margin-top: 12px; padding: 16px 14px 20px; }
    .nav-top { padding: 10px 16px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .slide img,
    .slide.is-on img {
        animation: none;
        transform: none;
    }
    .hero-copy h1,
    .hero-copy > p,
    .hero-copy .btns,
    .nav.is-open {
        animation: none;
        transform: none;
    }
    .will-show {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .sec-head::after,
    .page-head .sec-head::after {
        transform: scaleX(1);
        transition: none;
    }
    .menu-btn span { transition: none; }
}


/* ===== ご来園方法 ===== */
.howto-lead {
    text-align: center;
    color: var(--ink-soft);
    font-size: var(--text);
    line-height: var(--lh);
    margin: 24px auto 36px;
    max-width: 560px;
}

/* Step list */
.howto-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.howto-list > li {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.howto-list-final {
    border-bottom: none !important;
}

.howto-step-num {
    flex: 0 0 64px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--sea);
    padding-top: 4px;
    font-family: "Oswald", sans-serif;
}

.howto-step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.howto-step-body h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: var(--ink);
}

.howto-step-body h2 small {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink-soft);
    margin-left: 6px;
}

.howto-step-body p {
    margin: 0;
    font-size: var(--text);
    line-height: var(--lh);
    color: var(--ink);
}

.ticket-note {
    font-size: var(--text-s);
    color: var(--ink-soft);
    padding: 6px 10px;
    background: var(--paper);
    border-radius: 4px;
    margin: 0;
}

.ticket-note.caution {
    color: #a04030;
    background: #fff0ee;
}

/* Ticket-style CTA buttons */
.howto-ticket-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.howto-ticket-btn {
    display: inline-flex;
    align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid transparent;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(20, 90, 110, 0.14);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    cursor: pointer;
}

.howto-ticket-btn:hover {
    box-shadow: 0 8px 24px rgba(20, 90, 110, 0.22);
    transform: translateY(-1px);
}

/* Primary (filled) */
.howto-ticket-btn:not(.howto-ticket-btn--outline):not(.howto-ticket-btn--disabled) {
    background: var(--grad);
    border-color: transparent;
}

.howto-ticket-btn:not(.howto-ticket-btn--outline):not(.howto-ticket-btn--disabled) .htb-label {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 25, 40, 0.28);
}

.howto-ticket-btn:not(.howto-ticket-btn--outline):not(.howto-ticket-btn--disabled) .htb-sub {
    color: rgba(255,255,255,0.78);
}

.howto-ticket-btn:not(.howto-ticket-btn--outline):not(.howto-ticket-btn--disabled) .htb-stub {
    background: rgba(0,0,0,0.12);
    border-left-color: rgba(255,255,255,0.35);
    color: #fff;
}

/* Outline variant */
.howto-ticket-btn--outline {
    background: #fff;
    border-color: var(--line);
}

.howto-ticket-btn--outline .htb-label { color: var(--ink); }
.howto-ticket-btn--outline .htb-sub   { color: var(--ink-soft); }
.howto-ticket-btn--outline .htb-stub  {
    background: var(--paper);
    border-left-color: var(--line);
    color: var(--ink-soft);
}

/* Disabled variant */
.howto-ticket-btn--disabled {
    background: var(--paper);
    border-color: var(--line);
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

.howto-ticket-btn--disabled:hover { transform: none; box-shadow: none; }

.howto-ticket-btn--disabled .htb-label { color: var(--ink-soft); }
.howto-ticket-btn--disabled .htb-sub   { color: var(--ink-soft); opacity: 0.7; }
.howto-ticket-btn--disabled .htb-stub  {
    background: var(--paper-2);
    border-left-color: var(--line);
    color: var(--ink-soft);
}

/* Inner label area */
.htb-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    gap: 2px;
}

.htb-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.htb-sub {
    font-size: 10px;
    letter-spacing: 0.06em;
}

/* Perforated stub */
.htb-stub {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-left: 2px dashed;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
    writing-mode: vertical-rl;
    position: relative;
}

/* Punch holes */
.htb-stub::before,
.htb-stub::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.55;
}

.htb-stub::before { top: -5px; }
.htb-stub::after  { bottom: -5px; }

.howto-feature-list {
    margin: 0;
    padding-left: 1.2em;
    font-size: var(--text);
    line-height: 1.9;
    color: var(--ink);
}

.howto-footer {
    text-align: center;
    margin: 36px 0 16px;
    font-size: var(--text-s);
    color: var(--ink-soft);
}

@media (max-width: 640px) {
    .howto-list > li { gap: 14px; padding: 20px 0; }
    .howto-step-num  { flex: 0 0 48px; font-size: 9px; }
    .howto-step-body h2 { font-size: 15px; }
    .howto-lead { margin: 16px auto 24px; }
    .howto-ticket-btns { flex-direction: column; }
}
