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

/* 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;
}
.service-list {
    margin: 1.5rem 0 0;
    padding: 24px 28px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-accent);
    list-style: none;
}
.content-sec.alt .service-list {
    background: white;
}
.service-list li {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 2;
    letter-spacing: 0.05em;
    padding-left: 20px;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    transform: rotate(45deg);
}
.closing-message {
    margin-top: 3rem;
    padding: 32px;
    background: var(--color-cream);
    border-top: 2px solid var(--color-accent);
    text-align: center;
}
.content-sec.alt .closing-message {
    background: white;
}
.closing-message p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* 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; }
    .closing-message { padding: 24px 20px; }
}
