@charset "UTF-8";
/* =========================================================================
   HOTEL PATIO 料金ページ専用CSS（page-price.php からのみ読み込む）
   -------------------------------------------------------------------------
   雛形（旧ソフィアサイト）の common/css/*.css は原本のまま。ここは新規追加分。
   クラスはすべて .ptPrice__ 名前空間で、既存CSS・SWELLと衝突しない。
   2026-08-28 作成
   ========================================================================= */

/* 🔴 配色トークン（--ptp-ink / --ptp-sub / --ptp-line / --ptp-soft /
   --ptp-acc / --ptp-acc-soft）は common/css/patio.css の :root が正本。
   ヘッダー等の共通パーツと同じ値を使うため、ここでは再定義しない（2026-08-28）。
   ここで定義するのはこのページ固有のレイアウト値だけ。 */
.ptPrice {
    --ptp-col1: 92px;   /* ランク列の幅（横スクロール時に固定） */
    --ptp-col2: 116px;  /* 料金区分列の幅 */

    color: var(--ptp-ink);
    background: #fff;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ptPrice__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 5% 88px;
}

/* ---- リード ------------------------------------------------------------ */
.ptPrice__lead {
    font-size: 16px;
    line-height: 2.05;
    color: var(--ptp-sub);
    margin: 0 0 8px;
    text-align: center;
}

.ptPrice__points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
}

.ptPrice__points li {
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--ptp-acc);
    background: var(--ptp-acc-soft);
    border: 1px solid #ece1cc;
    border-radius: 999px;
    padding: 7px 16px;
    line-height: 1;
}

/* ---- 料金表へのジャンプリンク ------------------------------------------
   🔴 タブで片方を隠さない。平日・休日とも常時表示し、ここは移動用のリンク。 */
.ptPrice__jump {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}

.ptPrice__jumpInner {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    background: #f2efeb;
    border-radius: 999px;
}

.ptPrice__jumpBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ptp-sub);
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .25s, color .25s, box-shadow .25s;
}

.ptPrice__jumpBtn::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .6;
}

.ptPrice__jumpBtn:hover {
    background: #fff;
    color: var(--ptp-ink);
    box-shadow: 0 2px 10px rgba(34, 31, 29, .10);
}

.ptPrice__jumpBtn:focus-visible {
    outline: 2px solid var(--ptp-acc);
    outline-offset: 2px;
}

/* ---- パネル（平日／休日。どちらも常時表示） ---------------------------- */
.ptPrice__panel {
    margin-top: 44px;
    scroll-margin-top: 110px; /* 固定ヘッダー(90px)にタイトルが隠れないように */
}

.ptPrice__panel + .ptPrice__panel {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid var(--ptp-line);
}

.ptPrice__h2 {
    font-family: 'Playfair Display', "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.ptPrice__h2 span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    letter-spacing: .22em;
    color: var(--ptp-acc);
    margin-top: 10px;
}

.ptPrice__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
}

.ptPrice__meta li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ptp-ink);
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 10px;
    padding: 9px 16px;
}

.ptPrice__meta b {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #fff;
    background: var(--ptp-ink);
    border-radius: 4px;
    padding: 4px 8px;
    white-space: nowrap;
}

/* ---- 横スクロール枠 ---------------------------------------------------- */
.ptPrice__tableWrap {
    position: relative;
    margin-top: 26px;
}

/* 右端のフェード（まだ右にスクロールできることを示す） */
.ptPrice__tableWrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 44px;
    pointer-events: none;
    border-radius: 0 16px 16px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, .92));
    opacity: 0;
    transition: opacity .25s;
}

.ptPrice__tableWrap.is-scrollable::after { opacity: 1; }
.ptPrice__tableWrap.is-scrollEnd::after { opacity: 0; }

.ptPrice__scroller {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--ptp-line);
    box-shadow: 0 10px 30px rgba(34, 31, 29, .06);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.ptPrice__hint {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
    color: var(--ptp-sub);
    margin: 0 2px 8px;
}

.ptPrice__tableWrap.is-scrollable .ptPrice__hint { display: flex; }
.ptPrice__tableWrap.is-scrollEnd .ptPrice__hint { display: none; }

/* ---- テーブル本体 ------------------------------------------------------ */
.ptPrice__table {
    width: 100%;
    min-width: 860px;
    border-collapse: separate;   /* position:sticky を効かせるため collapse は使わない */
    border-spacing: 0;
    background: #fff;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.ptPrice__table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* 見出し行 */
.ptPrice__table thead th {
    background: #2c2825;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.35;
    text-align: center;
    padding: 16px 12px;
    white-space: nowrap;
    border-bottom: 0;
}

.ptPrice__table thead th small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    opacity: .72;
    margin-top: 5px;
}

.ptPrice__table thead th.is-service {
    background: #3c342a;
    color: #f0e2c6;
}

/* 休日料金は見出し行を暖色ブラウンにして、平日料金（炭色）と一目で区別できるようにする
   ※ 色の切替は data-pt-panel="holiday" だけを見ている。表の構造・クラスは平日と共通。 */
.ptPrice__panel[data-pt-panel="holiday"] .ptPrice__table thead th {
    background: #75512b;
}

.ptPrice__panel[data-pt-panel="holiday"] .ptPrice__table thead th.is-service {
    background: #8a6238;
    color: #fbeed6;
}

/* 見出し（H2）側にも同じ色味を効かせて対応関係を分かりやすくする */
.ptPrice__panel[data-pt-panel="holiday"] .ptPrice__h2 span { color: #8a6238; }
.ptPrice__panel[data-pt-panel="holiday"] .ptPrice__meta b { background: #75512b; }

/* 左2列を固定 */
.ptPrice__table th.ptPrice__rank,
.ptPrice__table thead th.ptPrice__thRank {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    width: var(--ptp-col1);
    min-width: var(--ptp-col1);
}

.ptPrice__table th.ptPrice__plan,
.ptPrice__table thead th.ptPrice__thPlan {
    position: -webkit-sticky;
    position: sticky;
    left: var(--ptp-col1);
    width: var(--ptp-col2);
    min-width: var(--ptp-col2);
}

.ptPrice__table thead th.ptPrice__thRank,
.ptPrice__table thead th.ptPrice__thPlan { z-index: 3; }

.ptPrice__table tbody th.ptPrice__rank,
.ptPrice__table tbody th.ptPrice__plan { z-index: 2; }

/* 固定列の右側に境界線（sticky でも影で切れ目を見せる） */
.ptPrice__table th.ptPrice__plan::after,
.ptPrice__table thead th.ptPrice__thPlan::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    bottom: -1px;
    width: 10px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(34, 31, 29, .07), rgba(34, 31, 29, 0));
}

.ptPrice__table th.ptPrice__plan,
.ptPrice__table thead th.ptPrice__thPlan { position: sticky; }

/* ランクセル */
.ptPrice__table tbody th.ptPrice__rank {
    background: #fff;
    text-align: center;
    vertical-align: middle;
    padding: 18px 8px;
    border-bottom: 1px solid var(--ptp-line);
    border-right: 1px solid var(--ptp-line);
}

.ptPrice__rankBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.ptPrice__rankBadge.-a { background: #a1854f; }
.ptPrice__rankBadge.-b { background: #7e8a86; }
.ptPrice__rankBadge.-c { background: #9a8f86; }

.ptPrice__rankTxt {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--ptp-sub);
    margin-top: 7px;
}

/* 料金区分セル */
.ptPrice__table tbody th.ptPrice__plan {
    background: #fff;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 16px 14px;
    border-bottom: 1px solid var(--ptp-line);
    white-space: nowrap;
}

.ptPrice__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
    background: var(--ptp-acc);
    border-radius: 3px;
    padding: 3px 7px;
    margin-right: 7px;
    vertical-align: 1px;
}

/* 金額セル */
.ptPrice__table tbody td {
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.4;
    padding: 16px 12px;
    white-space: nowrap;
    border-bottom: 1px solid var(--ptp-line);
    background: #fff;
    transition: background .2s;
}

.ptPrice__yen {
    font-size: 12px;
    font-weight: 500;
    color: var(--ptp-sub);
    margin-right: 1px;
}

/* 会員料金の行 */
.ptPrice__row.-member th.ptPrice__plan,
.ptPrice__row.-member td {
    background: var(--ptp-acc-soft);
}

.ptPrice__row.-member td { color: #7d6533; }
.ptPrice__row.-member .ptPrice__yen { color: #a08a5d; }

/* ランクの区切り（2行で1グループ） */
.ptPrice__row.-member th.ptPrice__rank,
.ptPrice__row.-member th.ptPrice__plan,
.ptPrice__row.-member td { border-bottom: 1px solid #ddd5c6; }

.ptPrice__table tbody tr:last-child th,
.ptPrice__table tbody tr:last-child td { border-bottom: 0; }

/* サービスタイム列を薄く強調 */
.ptPrice__table tbody td.is-service { background: #fbf8f2; }
.ptPrice__row.-member td.is-service { background: #f3ebda; }

/* 行ホバー */
.ptPrice__table tbody tr:hover td { background: #f6f3ef; }
.ptPrice__table tbody tr.-member:hover td { background: #f2ebdc; }
.ptPrice__table tbody tr:hover th.ptPrice__rank,
.ptPrice__table tbody tr:hover th.ptPrice__plan { background: #f6f3ef; }
.ptPrice__table tbody tr.-member:hover th.ptPrice__plan { background: #f2ebdc; }

/* ---- 注記 -------------------------------------------------------------- */
.ptPrice__notes {
    list-style: none;
    margin: 26px 0 0;
    padding: 20px 22px;
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 12px;
}

.ptPrice__notes li {
    position: relative;
    font-size: 14px;
    line-height: 1.9;
    color: var(--ptp-sub);
    padding-left: 1.3em;
}

.ptPrice__notes li + li { margin-top: 6px; }

.ptPrice__notes li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--ptp-acc);
}

.ptPrice__notes a { color: var(--ptp-acc); }

/* ---- CTA --------------------------------------------------------------- */
.ptPrice__cta {
    margin-top: 56px;
    padding: 40px 5%;
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 18px;
    text-align: center;
}

.ptPrice__ctaLead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ptp-sub);
    margin: 0 0 18px;
}

.ptPrice__tel {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    color: var(--ptp-ink);
    text-decoration: none;
}

.ptPrice__tel small {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: .16em;
    color: var(--ptp-acc);
    margin-right: 10px;
    vertical-align: 5px;
}

.ptPrice__telNote {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ptp-sub);
    margin: 12px 0 0;
}

.ptPrice__ctaBtns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.ptPrice__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 17px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    transition: background .25s, color .25s, border-color .25s;
}

.ptPrice__btn.-solid {
    background: var(--ptp-ink);
    color: #fff;
    border: 1px solid var(--ptp-ink);
}

.ptPrice__btn.-solid:hover { background: #453f3a; border-color: #453f3a; color: #fff; }

.ptPrice__btn.-ghost {
    background: #fff;
    color: var(--ptp-ink);
    border: 1px solid #d8d1c9;
}

.ptPrice__btn.-ghost:hover { background: #efeae4; color: var(--ptp-ink); }

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media only screen and (max-width: 1000px) {
    .ptPrice__inner { padding: 44px 5% 72px; }
}

@media only screen and (max-width: 767px) {
    .ptPrice {
        --ptp-col1: 62px;
        --ptp-col2: 92px;
    }

    .ptPrice__inner { padding: 32px 4% 60px; }

    .ptPrice__lead { font-size: 14px; line-height: 1.95; text-align: left; }
    .ptPrice__points { justify-content: flex-start; gap: 8px; margin-top: 20px; }
    .ptPrice__points li { font-size: 12px; padding: 6px 12px; }

    .ptPrice__jump { margin-top: 30px; }
    .ptPrice__jumpInner { width: 100%; }
    .ptPrice__jumpBtn { flex: 1 1 0; padding: 13px 8px; font-size: 14px; }
    .ptPrice__jumpBtn::after { margin-left: 7px; }

    .ptPrice__panel { margin-top: 32px; scroll-margin-top: 70px; }
    .ptPrice__panel + .ptPrice__panel { margin-top: 44px; padding-top: 40px; }

    .ptPrice__h2 { font-size: 20px; }
    .ptPrice__h2 span { font-size: 10px; margin-top: 8px; }

    .ptPrice__meta { justify-content: flex-start; gap: 8px; margin-top: 18px; }
    .ptPrice__meta li { font-size: 13px; padding: 8px 12px; gap: 8px; width: 100%; }

    .ptPrice__scroller { border-radius: 12px; }
    .ptPrice__table { min-width: 700px; }

    .ptPrice__table thead th { font-size: 12px; padding: 12px 8px; }
    .ptPrice__table thead th small { font-size: 10px; margin-top: 4px; }

    .ptPrice__table tbody th.ptPrice__rank { padding: 14px 4px; }
    .ptPrice__rankBadge { width: 30px; height: 30px; font-size: 15px; }
    .ptPrice__rankTxt { font-size: 10px; margin-top: 5px; }

    .ptPrice__table tbody th.ptPrice__plan { font-size: 12px; padding: 12px 8px; white-space: normal; }
    .ptPrice__badge { display: block; margin: 0 0 4px; width: -webkit-fit-content; width: fit-content; }

    .ptPrice__table tbody td { font-size: 14px; padding: 12px 8px; }
    .ptPrice__yen { font-size: 11px; }

    .ptPrice__notes { padding: 16px 18px; }
    .ptPrice__notes li { font-size: 13px; line-height: 1.85; }

    .ptPrice__cta { margin-top: 40px; padding: 30px 6%; border-radius: 14px; }
    .ptPrice__ctaLead { font-size: 14px; }
    .ptPrice__tel { font-size: 27px; }
    .ptPrice__tel small { font-size: 12px; margin-right: 8px; vertical-align: 4px; }
    .ptPrice__telNote { font-size: 12px; }
    .ptPrice__ctaBtns { gap: 10px; margin-top: 22px; }
    .ptPrice__btn { min-width: 0; width: 100%; padding: 16px 20px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .ptPrice *,
    .ptPrice *::before,
    .ptPrice *::after { transition: none !important; }
}
