/* 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/kimono-clinic-workshop.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; }
}

/* Legal */
.legal-sec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 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);
}

/* Legal Table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}
.legal-table tr {
    transition: background-color 0.2s ease;
}
.legal-table tr:nth-child(even) {
    background: rgba(245,240,232,0.4);
}
.legal-table tr:hover {
    background: var(--color-cream);
}
.legal-table th,
.legal-table td {
    padding: 20px 28px;
    text-align: left;
    border-bottom: 1px solid var(--color-warm-gray);
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.9;
    vertical-align: top;
}
.legal-table th {
    width: 200px;
    font-weight: 700;
    color: var(--color-text);
    background: rgba(157,137,74,0.06);
    white-space: nowrap;
}
.legal-table td {
    color: var(--color-text-light);
}
.legal-table tr:last-child th,
.legal-table tr:last-child td {
    border-bottom: none;
}

/* Notes */
.legal-notes {
    margin-top: 3rem;
    padding: 28px 32px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-accent);
}
.legal-notes p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 2;
    letter-spacing: 0.04em;
}
.legal-notes p + p {
    margin-top: 0.8rem;
}

/* Responsive */
@media (max-width: 767px) {
    .page-hero { height: 240px; padding: 0 0 2rem 24px; }
    .page-hero h1 { font-size: 22px; }
    .legal-sec { padding: 70px 0; }
    .sec-title .en { font-size: 30px; }
    .sec-title h2 { font-size: 18px; }
    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
        padding: 14px 20px;
    }
    .legal-table th {
        padding-bottom: 4px;
        border-bottom: none;
        background: transparent;
        font-size: 13px;
        color: var(--color-accent);
    }
    .legal-table td {
        padding-top: 4px;
        font-size: 14px;
    }
    .legal-notes { padding: 20px 24px; }
}
