/* Sub-page Hero */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 3rem 5vw;
    overflow: hidden;
    background: url('https://www.kimono-clinic.net/wp-content/uploads/2026/03/B5755F57-0D77-4257-8E13-75D6EBC94C80.jpg') center/cover no-repeat;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.page-hero .hero-inner {
    position: relative;
    z-index: 1;
}
.page-hero .en {
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2.25px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.8rem;
}
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-text);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(255,255,255,0.5);
}
.page-hero p {
    font-size: 15px;
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    margin-top: 0.8rem;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}

/* Sidebar */
.fixed-cta-pc {
    position: fixed;
    top: 90px;
    right: 0;
    transform: none;
    z-index: 100;
    display: none;
}
.fixed-cta-pc a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 64px;
    padding: 0;
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: white;
    border-radius: 0;
    transition: opacity 0.3s;
}
.fixed-cta-pc a:hover { opacity: 0.85; }
.fixed-cta-pc a i { font-size: 1.2rem; margin-bottom: 5px; }
.fixed-cta-pc .cta-tel { background: var(--color-accent); }
.fixed-cta-pc .cta-line { background: #06C755; }
.fixed-cta-pc .cta-insta { background: #fff; color: #333; }
@media (min-width: 992px) {
    .fixed-cta-pc { display: block; }
}

/* Section Title */
.sec-title {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.sec-title .en {
    font-family: var(--font-en);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 1.28px;
    display: block;
    margin-bottom: 0.8rem;
}
.sec-title h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.12em;
    position: relative;
    display: inline-block;
    padding-bottom: 1.2rem;
}
.sec-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

/* Price Section */
.price-sec {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Note */
.price-note {
    text-align: center;
    background: var(--color-cream);
    padding: 18px 24px;
    margin-bottom: 60px;
    font-size: 0.9rem;
    color: var(--color-text);
    letter-spacing: 0.03em;
    line-height: 1.8;
    border: 1px solid var(--color-warm-gray);
}
.price-note i {
    color: var(--color-accent);
    margin-right: 6px;
}

/* Table Card */
.price-category {
    margin-bottom: 40px;
    background: white;
    overflow: hidden;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-warm-gray);
}
.price-category:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.price-category h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em;
    padding: 16px 24px;
    margin: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #7a6b3a 100%);
    position: relative;
}
.price-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

/* Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}
.price-table thead th {
    background: var(--color-cream);
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-warm-gray);
}
.price-table thead th:last-child {
    text-align: right;
}
.price-table tbody tr {
    transition: background-color 0.2s ease;
}
.price-table tbody tr:nth-child(even) {
    background: rgba(245,240,232,0.4);
}
.price-table tbody tr:hover {
    background: var(--color-cream);
}
.price-table th,
.price-table td {
    padding: 14px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-warm-gray);
    font-size: 0.9rem;
}
.price-table tbody tr:last-child td {
    border-bottom: none;
}
.price-table td:first-child {
    color: var(--color-text);
    letter-spacing: 0.03em;
}
.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-accent);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Note Row */
.price-table .note-row td {
    font-size: 0.8rem;
    color: var(--color-text-light);
    background: var(--color-cream);
    padding: 10px 24px;
    letter-spacing: 0.02em;
    line-height: 1.7;
}
.price-table .note-row:hover td {
    background: var(--color-cream);
}

/* Responsive */
@media (max-width: 767px) {
    .page-hero { height: 240px; padding: 0 0 2rem 24px; }
    .page-hero h1 { font-size: 24px; }
    .price-sec { padding: 80px 0; }
    .sec-title .en { font-size: 30px; }
    .sec-title h2 { font-size: 18px; }
    .price-note {
        font-size: 0.85rem;
        padding: 14px 16px;
        margin-bottom: 40px;
    }
    .price-category {
        margin-bottom: 28px;
    }
    .price-category h3 {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    .price-table th,
    .price-table td {
        padding: 11px 14px;
        font-size: 0.85rem;
    }
    .price-table thead th {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
    .price-table td:last-child {
        font-size: 0.92rem;
    }
    .price-table .note-row td {
        padding: 9px 14px;
        font-size: 0.78rem;
    }
}
@media (max-width: 375px) {
    .price-table th,
    .price-table td {
        padding: 10px 10px;
        font-size: 0.82rem;
    }
    .price-table td:last-child {
        font-size: 0.88rem;
    }
    .price-category h3 {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
}
