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

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

/* Content */
.content-sec {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.content-sec.alt {
    background: var(--color-cream);
}
.content-block {
    margin-bottom: 3rem;
}
.content-block:last-child {
    margin-bottom: 0;
}
.content-block h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
    line-height: 1.6;
}
.content-block p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 2;
    letter-spacing: 0.06em;
}
.content-block p + p {
    margin-top: 1rem;
}
.content-lead {
    font-size: 16px !important;
    color: var(--color-text) !important;
    font-weight: 400;
    line-height: 2.2 !important;
    margin-bottom: 2.5rem;
}
.highlight-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.highlight-points .point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}
.highlight-points .point::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.note-box {
    margin-top: 1.5rem;
    padding: 24px 28px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-accent);
}
.note-box p {
    font-size: 14px;
    line-height: 1.9;
}
.note-box strong {
    color: var(--color-accent);
    font-weight: 700;
}
.content-image {
    margin: 2rem 0;
    text-align: center;
}
.content-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 767px) {
    .page-hero { height: 240px; padding: 0 0 2rem 24px; }
    .page-hero h1 { font-size: 24px; }
    .content-sec { padding: 70px 0; }
    .sec-title .en { font-size: 30px; }
    .sec-title h2 { font-size: 18px; }
    .content-block h3 { font-size: 17px; }
    .highlight-points { gap: 1rem; }
}
