@charset "UTF-8";

/* ───────── PC/SP wrapper 切替 ───────── */
.hall-detail-pc,
.hall-detail-sp {
    box-sizing: border-box;
}
.hall-detail-pc *,
.hall-detail-sp * {
    box-sizing: border-box;
}
.hall-detail-pc {
    display: none;
    font-family: var(--font-family-sans);
    color: var(--color-text-primary);
    background: #e9eaec;
    -webkit-font-smoothing: antialiased;
}
.hall-detail-sp {
    display: block;
    font-family: var(--font-family-sans);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 1031px) {
    .hall-detail-pc {
        display: block;
    }
    .hall-detail-sp {
        display: none;
    }
}

.hall-detail-pc h1,
.hall-detail-pc h2,
.hall-detail-pc h3,
.hall-detail-pc p,
.hall-detail-sp h1,
.hall-detail-sp h2,
.hall-detail-sp h3,
.hall-detail-sp p {
    margin: 0;
}
.hall-detail-pc img,
.hall-detail-sp img {
    display: block;
    max-width: 100%;
}
/* :where() で詳細度 0 にして、ボタン等の class が color を上書きできるようにする。 */
:where(.hall-detail-pc, .hall-detail-sp) a {
    color: inherit;
    text-decoration: none;
}
.hall-detail-pc button,
.hall-detail-sp button {
    font-family: inherit;
    cursor: pointer;
}

/* ════════════════ 共通コンポーネント ════════════════ */

.hall-name-eyebrow {
    display: inline-block;
    margin: 0 0 6px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--color-brand-primary);
    color: var(--color-surface);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    white-space: nowrap;
}

/* feature 4x2 grid */
.hp-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
}
.hp-feat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 7px;
    padding: 12px 8px 11px;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid #d8e7de;
    box-shadow:
        0 2px 8px rgba(31, 142, 90, 0.1),
        0 1px 0 rgba(31, 142, 90, 0.04);
}
.hp-feat-card.off {
    border: 1px solid #eceeec;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
/* badge は CSS で背景・影・上半分のハイライトを描き、SVG は白で動的色切替に対応。 */
.hp-feat-card .badge {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, #155f3d 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 2px 4px rgba(31, 142, 90, 0.18);
}
.hp-feat-card.off .badge {
    background: linear-gradient(135deg, #cbd3cd 0%, #b8c0ba 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.hp-feat-card .badge::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 50%;
    border-radius: 15px 15px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    pointer-events: none;
}
.hp-feat-card .badge svg,
.hp-feat-card .badge img {
    width: 38px;
    height: 38px;
    display: block;
}
.hp-feat-card .badge svg {
    fill: var(--color-surface);
}
.hp-feat-card .ft {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-brand-primary-deep);
    line-height: 1.4;
    white-space: nowrap;
}
.hp-feat-card.off .ft {
    color: #a8b0aa;
}
.hp-feat-card .vrow {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-top: -2px;
}
.hp-feat-card .vrow .num {
    font-family: var(--font-family-accent);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #155f3d;
    font-feature-settings: "tnum";
    line-height: 1;
}
.hp-feat-card .vrow .unit {
    font-size: 11px;
    font-weight: 500;
    color: #4a5c52;
}

/* review */
.hp-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* gallery */
.hp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.hp-gallery-cell {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #dedfe0;
    cursor: zoom-in;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
}
.hp-gallery-cell .gimg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}
.hp-gallery-cell:hover .gimg {
    transform: scale(1.06);
}
.hp-gallery-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 52%, rgba(0, 0, 0, 0.55));
    z-index: 1;
    pointer-events: none;
}
.hp-gallery-cell .glabel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 16px 13px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-surface);
}
.hp-gallery-cell .gzoom {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-circle);
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.hp-gallery-cell:hover .gzoom {
    opacity: 1;
    transform: scale(1);
}
.hp-gallery-cell .gzoom svg {
    width: 16px;
    height: 16px;
    fill: var(--color-brand-primary-dark);
}

/* ════════════════ 施設情報テーブル（PC/SP 共通） ════════════════ */
.fc-map {
    position: relative;
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.fc-map iframe {
    width: 100%;
    border: 0;
    display: block;
}
.fc-map .fc-route {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: var(--color-brand-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}
.fc-table {
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-surface);
}
.fc-row {
    display: grid;
    border-bottom: 1px solid var(--color-border);
}
.fc-row:last-child {
    border-bottom: none;
}
.fc-th {
    background: var(--color-background-tint);
    color: var(--color-text-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--color-border);
}
.fc-td {
    line-height: 1.7;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.fc-td .ml {
    display: block;
}
.fc-checks {
    display: grid;
    width: 100%;
}
.fc-checks .ci {
    display: grid;
    grid-template-columns: 1fr 16px;
    align-items: center;
    gap: 6px;
    border-bottom: 1px dotted #d6d6d6;
}
.fc-checks .ci .nm {
    font-size: 12px;
    color: var(--color-text-primary);
}
.fc-checks .ci.off .nm {
    color: #b6b6b6;
}
.fc-checks .ci .mk {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-circle);
    background: #f9f9f9;
    border: 2px solid var(--color-brand-primary);
    box-sizing: border-box;
}
.fc-checks .ci.off .mk {
    border-color: #d6d6d6;
}

/* fac-btn（PC/SP 共通ベース） */
.fac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--color-surface);
    border: none;
    cursor: pointer;
    transition:
        filter 0.15s,
        transform 0.12s;
    white-space: nowrap;
    text-decoration: none;
}
.fac-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* faq */
.hp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hp-faq-item {
    display: flex;
    flex-direction: column;
}
.hp-faq-card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    transition:
        border-color 0.15s,
        box-shadow 0.15s,
        background 0.15s;
}
.hp-faq-card:hover {
    border-color: color-mix(in srgb, var(--color-brand-primary) 45%, white);
    box-shadow: 0 4px 14px rgba(31, 142, 90, 0.1);
}
.hp-faq-card.open {
    border-color: var(--color-brand-primary);
    background: color-mix(in srgb, var(--color-brand-primary) 5%, white);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.hp-faq-card .qbadge {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, #23965f, #155f3d);
    color: var(--color-surface);
    font-family: var(--font-family-accent);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(21, 95, 61, 0.22);
}
.hp-faq-card .q {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.5;
}
.hp-faq-chev {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: var(--radius-circle);
    background: color-mix(in srgb, var(--color-brand-primary) 10%, white);
    transition: background 0.2s;
}
.hp-faq-chev::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 44%;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--color-brand-primary);
    border-bottom: 2px solid var(--color-brand-primary);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.25s;
}
.hp-faq-card.open .hp-faq-chev {
    background: var(--color-brand-primary);
}
.hp-faq-card.open .hp-faq-chev::before {
    border-color: var(--color-surface);
    transform: translate(-50%, -30%) rotate(225deg);
}
.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    background: color-mix(in srgb, var(--color-brand-primary) 5%, white);
    border-radius: 0 0 12px 12px;
}
.hp-faq-card.open + .hp-faq-answer {
    border: 1px solid var(--color-brand-primary);
    border-top: none;
    max-height: 320px;
}
.hp-faq-answer .inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0 18px;
    font-size: 13.5px;
    line-height: 1.9;
    color: var(--color-text-primary);
    transition: padding 0.28s ease;
}
.hp-faq-answer .inner .abadge {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--color-surface);
    border: 1.5px solid var(--color-brand-gold);
    color: var(--color-brand-gold);
    font-family: var(--font-family-accent);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-faq-answer .inner p {
    flex: 1;
    margin-top: 4px;
}
.hp-faq-answer .inner .hp-faq-body {
    flex: 1;
    min-width: 0;
}
.hp-faq-answer .inner .hp-faq-body p {
    margin-top: 0;
}
.hp-faq-answer .inner .hp-faq-link {
    margin-top: 10px;
}
.hp-faq-card.open + .hp-faq-answer .inner {
    padding: 16px 18px 18px;
}

.hp-addr-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-text-primary);
}
.hp-addr-line svg {
    flex: 0 0 16px;
}

/* パートナーバッジ画像 */
.partner-badge {
    display: block;
    width: auto;
    height: auto;
    flex: 0 0 auto;
}
.hp-ic-pin {
    width: 16px;
    height: 20px;
    flex: 0 0 16px;
    display: inline-block;
    vertical-align: middle;
    fill: var(--color-brand-primary);
}

/* ════════════════ PC レイアウト ════════════════ */
.hall-detail-pc .site {
    width: 100%;
    margin: 0 auto;
    background: var(--color-surface);
}
.hall-detail-pc .ad-hdr {
    background: linear-gradient(135deg, #2f7548, #073413);
    border-bottom: 2px solid var(--color-brand-gold);
}
.hall-detail-pc .ad-hdr .bar {
    height: 76px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hall-detail-pc .ad-hdr .brand {
    display: flex;
    align-items: center;
    gap: 13px;
}
.hall-detail-pc .ad-hdr .brand .logo {
    height: 30px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.hall-detail-pc .ad-hdr .fac {
    display: flex;
    align-items: center;
    gap: 13px;
}
.hall-detail-pc .ad-hdr .fac .area {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-surface);
    letter-spacing: 0.05em;
}
.hall-detail-pc .ad-hdr .fac .name {
    font-family: var(--font-family-sans);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-surface);
    letter-spacing: 0.04em;
    line-height: 1;
}
.hall-detail-pc .ad-hdr .partner-badge {
    height: 48px;
    width: auto;
}
.hall-detail-pc .contact-card .partner-badge {
    height: 42px;
    width: auto;
    align-self: flex-start;
}

.hall-detail-pc .layout {
    padding: 28px;
}
.hall-detail-pc .hall-detail-breadcrumb {
    max-width: 1030px;
    margin: 0 auto 20px;
}
.hall-detail-pc .body {
    display: grid;
    grid-template-columns: 1fr 312px;
    gap: 32px;
    align-items: start;
    max-width: 1030px;
    margin: 0 auto;
}
.hall-detail-pc .main-col {
    display: flex;
    flex-direction: column;
    gap: 64px;
    min-width: 0;
}
.hall-detail-pc .main-col section {
    scroll-margin-top: 24px;
}
.hall-detail-pc .aside {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hall-detail-pc .contact-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
    background: var(--color-surface);
}
.hall-detail-pc .contact-card .hall-name {
    font-weight: 500;
    font-size: 20px;
    color: var(--color-text-primary);
}
.hall-detail-pc .contact-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}
.hall-detail-pc .contact-cta .hp-btn-tel,
.hall-detail-pc .contact-cta .hp-btn-doc {
    width: 100%;
}
.hall-detail-pc .contact-cta .cta-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--color-text-subtle);
    letter-spacing: 0.02em;
}
.hall-detail-pc .aside-nav {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
}
.hall-detail-pc .aside-nav a {
    display: block;
    padding: 11px 16px;
    font-size: 13px;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border);
    transition:
        background 0.14s,
        color 0.14s;
}
.hall-detail-pc .aside-nav a:last-child {
    border-bottom: none;
}
.hall-detail-pc .aside-nav a::before {
    content: "—";
    color: var(--color-brand-primary);
    margin-right: 8px;
}
.hall-detail-pc .aside-nav a:hover {
    background: var(--color-background-tint);
    color: var(--color-brand-primary);
}

.hall-detail-pc .hero-lead {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hall-detail-pc .fv-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: center/cover;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    transition: opacity 0.28s ease;
}
.hall-detail-pc .strip {
    display: flex;
    gap: 10px;
    padding: 14px 0 0;
    overflow-x: auto;
}
.hall-detail-pc .strip .t {
    position: relative;
    flex: 0 0 132px;
    aspect-ratio: 16/10;
    border-radius: 7px;
    overflow: hidden;
    background: #dedfe0 center/cover;
    cursor: pointer;
    transition: filter 0.15s;
}
.hall-detail-pc .strip .t:hover {
    filter: brightness(1.07);
}
.hall-detail-pc .strip .t .tl {
    position: absolute;
    inset: auto 0 0 0;
    padding: 4px 8px;
    font-size: 11px;
    color: var(--color-surface);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    z-index: 2;
}
.hall-detail-pc .strip .t.active {
    outline: 3px solid var(--color-brand-primary);
    outline-offset: -3px;
}
.hall-detail-pc .lead-body {
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
}

/* PC 施設情報・アクセス */
.hall-detail-pc .fac-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hall-detail-pc .fc-map iframe {
    height: 300px;
}
.hall-detail-pc .fc-row {
    grid-template-columns: 110px 1fr;
}
.hall-detail-pc .fc-th {
    font-size: 12px;
    padding: 12px;
}
.hall-detail-pc .fc-td {
    padding: 11px 14px;
    font-size: 13px;
}
.hall-detail-pc .fc-checks {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 16px;
}
.hall-detail-pc .fc-checks .ci {
    padding: 7px 16px 7px 0;
}
.hall-detail-pc .fc-checks .ci:nth-last-child(-n + 3) {
    border-bottom: none;
}
.hall-detail-pc .fac-btn {
    height: 36px;
    font-size: 12px;
}

.hall-detail-pc .nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* PC 中型ブレイクポイント */
/* ════════════════ フッター（PC/SP 共通） ════════════════ */
.hall-detail-pc .footer,
.hall-detail-sp .footer {
    background: linear-gradient(135deg, #2f7548, #073413);
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.04em;
}
.hall-detail-pc .footer {
    padding: 44px 28px 52px;
}
.hall-detail-sp .footer {
    padding: 36px 20px calc(132px + env(safe-area-inset-bottom));
}
.hall-detail-pc .footer .fl,
.hall-detail-sp .footer .fl {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}
.hall-detail-pc .footer .fl img,
.hall-detail-sp .footer .fl img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ════════════════ SP レイアウト ════════════════ */
.hall-detail-sp .site {
    width: 100%;
    min-height: 100vh;
}
.hall-detail-sp .ad-hdr {
    background: linear-gradient(135deg, #2f7548, #073413);
    border-bottom: 2px solid var(--color-brand-gold);
}
.hall-detail-sp .ad-hdr .bar {
    min-height: 54px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hall-detail-sp .ad-hdr .bar .logo {
    height: 22px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.hall-detail-sp .layout {
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
}
.hall-detail-sp .hall-detail-breadcrumb {
    padding: 12px 16px 0;
}
.hall-detail-sp .main-col {
    display: flex;
    flex-direction: column;
}
.hall-detail-sp .main-col section {
    scroll-margin-top: 12px;
}
.hall-detail-sp .sp-sec {
    padding: 30px 16px;
}
.hall-detail-sp .sp-sec.hero-sec {
    padding: 16px 16px 26px;
}
.hall-detail-sp .sp-sec.tint {
    background: var(--color-background-tint);
}

.hall-detail-sp .hero-lead {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hall-detail-sp .fv-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: center/cover;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    transition: opacity 0.28s ease;
}
.hall-detail-sp .strip {
    display: flex;
    gap: 8px;
    padding: 14px 0 0;
    overflow-x: auto;
}
.hall-detail-sp .strip .t {
    position: relative;
    flex: 0 0 100px;
    aspect-ratio: 16/10;
    border-radius: 7px;
    overflow: hidden;
    background: #dedfe0 center/cover;
    cursor: pointer;
    transition: filter 0.15s;
}
.hall-detail-sp .strip .t .tl {
    position: absolute;
    inset: auto 0 0 0;
    padding: 4px 8px;
    font-size: 11px;
    color: var(--color-surface);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    z-index: 2;
}
.hall-detail-sp .strip .t.active {
    outline: 3px solid #155f3d;
    outline-offset: -3px;
}
.hall-detail-sp .lead-body {
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
}

.hall-detail-sp .hall-head {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 2px;
}
.hall-detail-sp .hall-head .hall-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.hall-detail-sp .hall-head .hall-addr {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--color-text-primary);
}
.hall-detail-sp .hall-head .hall-addr svg {
    flex: 0 0 15px;
}

.hall-detail-sp .sp-map {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    min-height: 180px;
}
.hall-detail-sp .sp-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    display: block;
}

.hall-detail-sp .hp-feat-grid {
    gap: 7px;
}
.hall-detail-sp .hp-feat-card {
    padding: 11px 3px 10px;
    gap: 6px;
}
.hall-detail-sp .hp-feat-card .badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
}
.hall-detail-sp .hp-feat-card .badge svg,
.hall-detail-sp .hp-feat-card .badge img {
    width: 28px;
    height: 28px;
}
.hall-detail-sp .hp-feat-card .ft {
    font-size: 10.5px;
    letter-spacing: 0;
}
.hall-detail-sp .hp-feat-card .vrow .num {
    font-size: 19px;
}
.hall-detail-sp .hp-feat-card .vrow .unit {
    font-size: 10px;
}

/* SP gallery */
.hall-detail-sp .hp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.hall-detail-sp .hp-gallery-cell {
    aspect-ratio: 4 / 3;
    border-radius: 9px;
}
.hall-detail-sp .hp-gallery-cell.feat {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}
/* SP はタップ操作のためズームアイコンを常時表示（PC のホバー出現と差別化） */
.hall-detail-sp .hp-gallery-cell .gzoom {
    width: 26px;
    height: 26px;
    opacity: 1;
    transform: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.hall-detail-sp .hp-gallery-cell .gzoom svg {
    width: 14px;
    height: 14px;
}

.hall-detail-sp .hp-review-grid {
    grid-template-columns: 1fr;
}

/* SP facility */
.hall-detail-sp .fac-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hall-detail-sp .fc-map {
    background: var(--color-surface);
}
.hall-detail-sp .fc-map iframe {
    height: 190px;
}
.hall-detail-sp .fc-row {
    grid-template-columns: 78px 1fr;
}
.hall-detail-sp .fc-th {
    font-size: 11.5px;
    padding: 12px 9px;
}
.hall-detail-sp .fc-td {
    padding: 11px;
    font-size: 12.5px;
    min-width: 0;
}
.hall-detail-sp .fc-checks {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 12px;
}
.hall-detail-sp .fc-checks .ci {
    padding: 8px 16px 8px 0;
}
.hall-detail-sp .fc-checks .ci:nth-last-child(-n + 2) {
    border-bottom: none;
}
.hall-detail-sp .fac-btn {
    height: 38px;
    font-size: 12.5px;
}

/* SP nearby: 1列 */
.hall-detail-sp .nearby-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ════════════════ Lightbox ════════════════ */
.hall-detail-sp .hp-gallery-cell[data-hp-zoom] {
    cursor: zoom-in;
}
.hp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 60px;
    -webkit-tap-highlight-color: transparent;
}
.hp-lightbox-img {
    max-width: 100%;
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease;
}
.hp-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
}
.hp-lightbox-close:hover {
    background: var(--color-surface);
}
.hp-lightbox-prev,
.hp-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px;
    z-index: 2;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}
.hp-lightbox-prev {
    left: 16px;
}
.hp-lightbox-next {
    right: 16px;
}
.hp-lightbox-prev:hover,
.hp-lightbox-next:hover {
    background: var(--color-surface);
}
.hp-lightbox-prev:active,
.hp-lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}
.hp-lightbox-counter {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--color-surface);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    z-index: 2;
}
@media (max-width: 480px) {
    .hp-lightbox {
        padding: 18px 12px;
    }
    .hp-lightbox-prev,
    .hp-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
    .hp-lightbox-prev {
        left: 8px;
    }
    .hp-lightbox-next {
        right: 8px;
    }
}

/* ════════════════ 自社式場 固有セクション（選ばれる理由 / イベント / 流れ / TVCM）════════════════ */

/* ---- 選ばれる理由（anshin）---- */
.anshin-lead {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    text-wrap: pretty;
    margin-bottom: 26px;
}
.anshin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.anshin-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid #d8e7de;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(31, 142, 90, 0.07);
}
.anshin-card .an-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 13px 13px 0 0;
    background-size: cover;
    background-position: center;
    background-color: #dededa;
}
.anshin-card .an-num {
    position: absolute;
    top: -16px;
    left: -8px;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50% 50% 0 50%;
    background: linear-gradient(135deg, #23965f, #155f3d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-surface);
    box-shadow: 0 4px 10px rgba(31, 142, 90, 0.35);
}
.anshin-card .an-num .lb {
    font-family: var(--font-family-accent);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
}
.anshin-card .an-num .nm {
    font-family: var(--font-family-accent);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
}
.anshin-card .an-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 11px;
    padding: 22px 22px 26px;
}
.anshin-card .an-ic {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -46px;
    position: relative;
    z-index: 2;
    background: var(--color-surface);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(31, 142, 90, 0.16);
}
.anshin-card .an-ic svg {
    width: 30px;
    height: 30px;
    fill: var(--color-brand-primary);
}
.anshin-card .an-h {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-brand-primary-dark);
    letter-spacing: 0.02em;
    line-height: 1.45;
}
.anshin-card .an-d {
    font-size: 13px;
    line-height: 1.85;
    color: var(--color-text-primary);
    text-wrap: pretty;
}

/* ---- イベント（events）---- */
.ev-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ev-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 22px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
}
.ev-photo {
    width: 190px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #dededa;
}
.ev-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
}
.ev-head {
    display: inline-flex;
    align-items: stretch;
    align-self: flex-start;
    border-radius: 6px;
    overflow: hidden;
}
.ev-chip {
    display: flex;
    align-items: center;
    background: var(--color-brand-primary);
    color: var(--color-surface);
    padding: 5px 12px;
    font-size: 11.5px;
    font-weight: 600;
}
.ev-date {
    display: flex;
    align-items: center;
    background: color-mix(in srgb, var(--color-brand-primary) 12%, white);
    color: var(--color-brand-primary-dark);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
}
.ev-date b {
    font-family: var(--font-family-accent);
    font-weight: 800;
    letter-spacing: 0.01em;
}
.ev-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brand-primary-dark);
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.ev-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--color-text-primary);
    text-wrap: pretty;
}
.ev-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

/* ---- ご葬儀の流れ（flow）---- */
.flow-steps {
    display: flex;
    flex-direction: column;
}
.flow-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    position: relative;
    padding-bottom: 24px;
}
.flow-step:last-child {
    padding-bottom: 0;
}
.flow-step .fs-num {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #23965f, #155f3d);
    color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-accent);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 3px 8px rgba(21, 95, 61, 0.25);
}
.flow-step::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 50px;
    bottom: -2px;
    width: 2px;
    background: color-mix(in srgb, var(--color-brand-primary) 30%, white);
    z-index: 1;
}
.flow-step:last-child::before {
    display: none;
}
.flow-step .fs-body {
    padding-top: 5px;
}
.flow-step .fs-h {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-brand-primary-dark);
    margin-bottom: 5px;
    letter-spacing: 0.02em;
}
.flow-step .fs-d {
    font-size: 13.5px;
    line-height: 1.85;
    color: var(--color-text-primary);
    text-wrap: pretty;
}

/* ---- テレビCM（cm）---- */
.cm-block .cm-head {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    color: var(--color-brand-primary-dark);
    letter-spacing: 0.05em;
    margin-bottom: 22px;
}
.cm-video {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-color: #dededa;
    cursor: pointer;
}
.cm-video::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 56px;
    background: #f00;
    border-radius: 23%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.15s;
}
.cm-video::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #fff;
    z-index: 2;
}
.cm-video:hover::before {
    background: #e60000;
}
.cm-video.playing {
    cursor: default;
}
.cm-video.playing::before,
.cm-video.playing::after {
    display: none;
}
.cm-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---- SP 固有調整 ---- */
.hall-detail-sp .anshin-lead {
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 22px;
}
.hall-detail-sp .anshin-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.hall-detail-sp .anshin-card .an-photo {
    aspect-ratio: 16 / 9;
}
.hall-detail-sp .anshin-card .an-body {
    gap: 9px;
    padding: 20px 18px 22px;
}
.hall-detail-sp .anshin-card .an-h {
    font-size: 16px;
}
.hall-detail-sp .anshin-card .an-d {
    font-size: 12.5px;
}
.hall-detail-sp .ev-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}
.hall-detail-sp .ev-photo {
    width: 100%;
    max-width: 160px;
    align-self: center;
}
.hall-detail-sp .ev-title {
    font-size: 15px;
}
.hall-detail-sp .flow-step {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-bottom: 20px;
}
.hall-detail-sp .flow-step .fs-num {
    width: 42px;
    height: 42px;
    font-size: 18px;
}
.hall-detail-sp .flow-step::before {
    left: 20px;
    top: 44px;
}
.hall-detail-sp .flow-step .fs-h {
    font-size: 15.5px;
}
.hall-detail-sp .flow-step .fs-d {
    font-size: 12.5px;
}
.hall-detail-sp .cm-block .cm-head {
    font-size: 19px;
    margin-bottom: 16px;
}
.hall-detail-sp .cm-video::before {
    width: 54px;
    height: 38px;
}
.hall-detail-sp .cm-video::after {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left: 15px solid #fff;
}

/* ════════════════ 近隣カルーセル ════════════════ */
.nb-wrap {
    position: relative;
}
.nb-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 12px;
    margin: 0 46px;
    scrollbar-width: none;
}
.nb-track::-webkit-scrollbar {
    display: none;
}
.nb-cell {
    flex: 0 0 272px;
    scroll-snap-align: start;
    display: flex;
}
.nb-cell > .hall-card {
    width: 100%;
    height: 100%;
}
.nb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    border: none;
    background: rgb(225, 240, 232);
    color: var(--color-brand-primary);
    font-family: var(--font-family-accent);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition:
        background 0.15s,
        color 0.15s;
}
.nb-arrow:hover {
    background: var(--color-brand-primary);
    color: var(--color-surface);
}
.nb-arrow.prev {
    left: -6px;
}
.nb-arrow.next {
    right: -6px;
}
/* SP: 矢印を隠してスワイプ操作、セルは画面幅にスナップ */
.hall-detail-sp .nb-arrow {
    display: none;
}
.hall-detail-sp .nb-track {
    margin: 0 -16px;
    padding: 4px 16px 12px;
    gap: 12px;
}
.hall-detail-sp .nb-cell {
    flex: 0 0 84%;
    scroll-snap-align: center;
}
