/*
Theme Name: BlankSlate Child
Template: blankslate
*/

:root {
    --color-bg: #111111;
    --color-text: #f7f3ef;
    --color-muted: rgba(247, 243, 239, 0.78);
    --color-accent: #d8b18f;
    --color-accent-strong: #c59770;
    --color-panel: rgba(18, 18, 18, 0.92);
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.22);
    --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

html {
    background: var(--color-bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: var(--font-serif);
    line-height: 1.7;
}

.only-sp {
    display: none;
}

.only-pc {
    display: block;
}

@media screen and (max-width:425px) {
    .only-sp {
        display: block;
    }

    .only-pc {
        display: none;
    }
}

/* Utility Classes */
@media (min-width: 961px) {
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 960px) {
    .pc-only {
        display: none !important;
    }
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    min-height: 100vh;
}

#header.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 24px 40px;
    background: transparent;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
}


.site-branding {
    justify-self: start;
    text-align: left;
    display: grid;
    gap: 8px;
    color: #ebdbcc;
}

.site-branding__logo {
    font-size: clamp(1.4rem, 1rem + 1vw, 2rem);
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.site-branding__logo img {
    max-width: 70px;
    height: auto;
    display: block;
}

.site-branding__mark {
    font-size: 1.15em;
    letter-spacing: -0.08em;
}

.site-branding__sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(235, 219, 204, 0.82);
}

.site-branding__sub img {
    max-width: 122px;
}

/* .site-branding__sub::after {
    content: "";
    width: 64px;
    height: 1px;
    background: currentColor;
    opacity: 0.75;
} */

.menu-toggle {
    justify-self: end;
    width: 52px;
    height: 52px;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(210, 189, 169, 0.9);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
    content: "";
    display: block;
    width: 34px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle__lines {
    position: relative;
}

.menu-toggle__lines::before {
    position: absolute;
    top: -10px;
}

.menu-toggle__lines::after {
    position: absolute;
    top: 10px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    transform: translateY(-10px) rotate(-45deg);
}

.site-nav-panel {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: grid;
    place-items: center;
    padding: 120px 32px 48px;
    background: var(--color-panel);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-nav-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.site-nav-panel .menu {
    display: grid;
    gap: 18px;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

.site-nav-panel .menu a {
    color: #f7f3ef;
}

#container {
    min-height: 100vh;
}

.story-scroll {
    position: relative;
    height: 1000vh;
    background: #120f0d;
}

.story-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background-image: url("images/bg-philosophy.webp");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.story-scroll__progress {
    position: absolute;
    left: 40px;
    bottom: 36px;
    z-index: 4;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: rgba(247, 243, 239, 0.92);
    pointer-events: none;
}

.story-scroll__current {
    min-width: 1.8em;
    font-size: clamp(2.4rem, 1.5rem + 1.6vw, 4rem);
    line-height: 1;
}

.story-scroll__total {
    font-size: 0.92rem;
    letter-spacing: 0.2em;
    opacity: 0.62;
}

.story-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.story-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.story-panel::before,
.story-panel::after {
    content: "";
    position: absolute;
    inset: 0;
}

.story-panel::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transform-origin: center center;
}

.story-panel--hero::before {
    background-image: url("images/mv-main.webp");
    background-position: center top;
    animation: fadeInBg 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* .story-panel--hero::after {
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.12) 0, rgba(0, 0, 0, 0.12) calc(50% - 1px), rgba(255, 255, 255, 0.16) calc(50% - 1px), rgba(255, 255, 255, 0.16) calc(50% + 1px), rgba(255, 255, 255, 0) calc(50% + 1px)),
        linear-gradient(to bottom, rgba(12, 12, 14, 0.2), rgba(12, 12, 14, 0.34));
} */

.story-panel--philosophy {
    color: #be8f6b;
}

.story-panel--philosophy::before {
    background-image: none;
}

.story-panel--philosophy::after {
    background:
        radial-gradient(ellipse at 22% 28%, rgba(230, 179, 145, 0.32), rgba(230, 179, 145, 0) 18%),
        radial-gradient(ellipse at 74% 18%, rgba(233, 190, 162, 0.26), rgba(233, 190, 162, 0) 15%),
        radial-gradient(ellipse at 58% 74%, rgba(226, 172, 137, 0.18), rgba(226, 172, 137, 0) 18%);
    opacity: 0.42;
    filter: blur(18px);
}

.story-panel--concept {
    --concept-bg-scale: 0.001;
    --concept-content-opacity: 0;
    --concept-content-shift: 32px;
}

.story-panel--concept::before {
    transform: scale(var(--concept-bg-scale));
}

.story-panel--concept-01::before {
    background-image: url("images/concept-01.webp");
}

.story-panel--concept-02::before {
    background-image: url("images/concept-02.webp");
}

.story-panel--concept-03::before {
    background-image: url("images/concept-03.webp");
}

/* .story-panel--concept-01::after,
.story-panel--concept-02::after,
.story-panel--concept-03::after {
    background:
        linear-gradient(90deg, rgba(32, 20, 16, 0.58) 0%, rgba(45, 29, 22, 0.46) 34%, rgba(45, 29, 22, 0.34) 52%, rgba(27, 18, 13, 0.52) 100%),
        linear-gradient(180deg, rgba(20, 12, 10, 0.14), rgba(20, 12, 10, 0.42));
} */

.story-panel__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1440px);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.story-panel__inner--center {
    display: grid;
    place-items: center;
}

.story-panel__inner--concept {
    display: grid;
    align-items: stretch;
}

.story-panel__scroll {
    position: absolute;
    left: 50%;
    bottom: 44px;
    z-index: 2;
    transform: translateX(-50%);
    color: currentColor;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.story-panel__scroll::before {
    content: "SCROLL";
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
    font-family: var(--font-serif);
}

.story-panel__scroll-line {
    position: relative;
    width: 1px;
    height: 80px;
    background: currentColor;
    opacity: 0.82;
    transform-origin: top;
    animation: scrollLineMove 5.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.story-panel__scroll-arrow {
    display: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 1240px);
    padding: 180px 40px 88px;
    margin-top: 20vh;
    display: grid;
    justify-items: center;
    text-align: center;
    opacity: 0;
    animation: fadeInHero 1.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

.hero__eyebrow {
    margin-bottom: 12px;
}

.hero__eyebrow img {
    width: clamp(100px, 12vw, 160px);
    height: auto;
}

.hero__lead {
    margin-bottom: 16px;
    font-size: clamp(1rem, 0.75rem + 0.5vw, 1.4rem);
    font-family: serif;
    color: rgba(246, 238, 231, 0.92);
}

.hero__title {
    margin: 0;
    font-size: clamp(2.5rem, 1.8rem + 2vw, 4.2rem);
    line-height: 1.26;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero__copy {
    margin-top: 24px;
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.9rem, 0.75rem + 0.25vw, 1.1rem);
    letter-spacing: 0.1em;
}

.philosophy__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 960px);
    padding: 120px 24px 220px;
    text-align: center;
}

.philosophy__eyebrow {
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

.philosophy__title {
    margin: 0;
    font-size: clamp(3.4rem, 2rem + 3vw, 5.8rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.philosophy__subtitle {
    margin-top: 26px;
    font-size: clamp(1rem, 0.86rem + 0.45vw, 1.35rem);
    color: rgba(120, 98, 84, 0.72);
    letter-spacing: 0.12em;
}

.story-concept {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    align-items: end;
    gap: clamp(32px, 5vw, 80px);
    padding: clamp(120px, 16vh, 170px) clamp(38px, 6vw, 92px) clamp(84px, 12vh, 124px);
    color: #f5eee8;
    opacity: var(--concept-content-opacity);
    transform: translateY(var(--concept-content-shift));
}

.story-concept__main {
    max-width: 720px;
    align-self: center;
}

.story-concept__number {
    margin-bottom: 16px;
    font-size: clamp(4.2rem, 3rem + 2vw, 6rem);
    line-height: 1;
    font-weight: 300;
    color: rgba(216, 177, 143, 0.8);
}

.story-concept__title {
    margin: 0;
    font-size: clamp(2.8rem, 1.8rem + 2.4vw, 3.3rem);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #2e2a24;
}

.story-concept__copy {
    margin: 26px 0 0;
    font-size: clamp(1rem, 0.82rem + 0.35vw, 1.2rem);
    line-height: 2.2;
    color: #2e2a24;
    letter-spacing: 0.06em;
}

.story-concept__sub {
    max-width: 360px;
    justify-self: end;
    margin-bottom: 52px;
}

.story-concept__sub-title {
    margin: 0;
    font-size: clamp(1.55rem, 1.2rem + 0.8vw, 2.25rem);
    line-height: 1.6;
    font-weight: 400;
    color: #8e6f4d;
}

.story-concept__sub-copy {
    margin: 18px 0 0;
    font-size: 0.96rem;
    line-height: 1.9;
    color: #5e564b;
}

.front-page-content {
    background: #f7f2ec;
    color: #312c29;
}

.front-page-content__inner {
    width: min(100% - 40px, 960px);
    margin: 0 auto;
    padding: 88px 0 120px;
    font-size: 1rem;
    line-height: 2;
}

.floating-reserve {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 980;
    display: grid;
    grid-template-columns: auto auto;
    align-items: stretch;
    min-width: 148px;
    padding: 0;
    color: #fff7f0;
    /* background: linear-gradient(180deg, rgba(216, 177, 143, 0.97), rgba(197, 151, 112, 0.98)); */
    background-color: #8fa098;
    border: 1px solid rgba(255, 247, 240, 0.45);
    box-shadow: var(--shadow-soft);
    border-radius: 0 50px 0 0;
}

.floating-reserve__label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 14px 8px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    background: rgba(255, 255, 255, 0.08);
}

.floating-reserve__body {
    display: grid;
    gap: 8px;
    align-content: center;
    justify-items: center;
    padding: 14px 16px 12px;
    min-width: 104px;
}

.floating-reserve__text {
    display: grid;
    gap: 2px;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.floating-reserve__time {
    padding: 4px 10px;
    border: 1px solid rgba(255, 247, 240, 0.55);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

#footer {
    text-align: center;
    color: #5e5551;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

#copyright {
    padding: 32px 20px 48px;
    /* background: #f7f2ec; */
}

@media (max-width: 960px) {
    #header.site-header {
        padding: 18px 20px;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
        column-gap: 12px;
    }

    .site-branding {
        justify-self: start;
        text-align: left;
    }

    .site-branding__sub {
        justify-content: flex-start;
    }

    .site-branding__sub::after {
        width: 42px;
    }

    .story-panel__inner,
    .hero__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero__inner {
        padding-top: 168px;
        padding-bottom: 72px;
        padding-inline: 0;
    }

    .hero__title {
        font-size: clamp(2.5rem, 1rem + 5vw, 3.4rem);
    }

    .story-concept {
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
        padding-top: 128px;
        padding-bottom: 120px;
    }

    .story-concept__sub {
        justify-self: start;
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {

    .story-panel--hero::before {
        background-position: calc(100% - -210px) top;
    }

    .story-scroll {
        height: auto;
    }

    .story-scroll__sticky {
        position: relative;
        height: auto;
    }

    .story-scroll__progress {
        display: none;
    }

    .story-panel {
        position: relative;
        min-height: 100svh;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .story-panel--philosophy,
    .story-panel--concept-01,
    .story-panel--concept-02,
    .story-panel--concept-03 {
        min-height: auto;
    }

    .story-panel--concept {
        --concept-bg-scale: 1 !important;
        --concept-content-opacity: 1 !important;
        --concept-content-shift: 0px !important;
    }

    .story-panel--concept::before {
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .story-panel__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .story-panel__scroll {
        bottom: 30px;
    }

    .hero__eyebrow {
        margin-bottom: 12px;
        font-size: 1.2rem;
    }

    .hero__lead {
        margin-bottom: 18px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero__title {
        font-size: clamp(1.6rem, 1rem + 3.4vw, 3.3rem);
        letter-spacing: 0.03em;
        line-height: 1.42;
    }

    .hero__copy {
        margin-top: 24px;
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }

    .philosophy__inner {
        padding: 100px 20px 180px;
    }

    .philosophy__eyebrow {
        margin-bottom: 16px;
        font-size: 0.92rem;
    }

    .philosophy__title {
        font-size: clamp(2.5rem, 1.8rem + 5vw, 4rem);
    }

    .philosophy__subtitle {
        margin-top: 18px;
        font-size: 0.95rem;
    }

    .story-concept {
        align-items: end;
        gap: 24px;
        padding: 132px 0 92px;
    }

    .story-concept__number {
        margin-bottom: 10px;
        font-size: 3.2rem;
    }

    .story-concept__title {
        font-size: clamp(2rem, 1.3rem + 4vw, 2.9rem);
        line-height: 1.56;
    }

    .story-concept__copy {
        margin-top: 18px;
        font-size: 0.88rem;
        line-height: 2;
    }

    .story-concept__sub {
        max-width: 260px;
    }

    .story-concept__sub-title {
        font-size: 1.22rem;
        line-height: 1.55;
    }

    .story-concept__sub-copy {
        margin-top: 12px;
        font-size: 0.78rem;
        line-height: 1.8;
    }

    .front-page-content__inner {
        width: min(100% - 32px, 960px);
        padding: 64px 0 88px;
    }

    .floating-reserve {
        right: 16px;
        bottom: 16px;
        min-width: 124px;
    }

    .floating-reserve__body {
        min-width: 88px;
        padding: 12px 12px 10px;
    }

    .floating-reserve__text {
        font-size: 0.82rem;
    }

    .section-philosophy-cards,
    .section-first-time,
    .section-reasons,
    .treatment-menu-new,
    .section-case-intro,
    .section-popular-treatments,
    .section-director,
    /* .section-director__inner, */
    /* .section-cta, */
    .section-flow,
    .section-faq,
    .section-access {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }
}

@keyframes scrollLineMove {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    45% {
        transform: scaleY(1);
        transform-origin: top;
    }

    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeInBg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .story-panel,
    .story-panel__scroll {
        transition: none;
        animation: none;
    }
}

/* ==========================================================================
   Section: Philosophy Cards
   ========================================================================== */

.section-philosophy-cards {
    width: 100%;
    background-color: #fcfbf9;
    overflow: hidden;
}

.philosophy-top {
    position: relative;
    width: 100%;
    --circle-size: clamp(700px, 110vw, 1200px);
    min-height: calc(var(--circle-size) * 0.267 + 60px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 100px;
}

.philosophy-arch {
    position: absolute;
    z-index: 0;
    bottom: calc(var(--circle-size) * -0.733);
    left: 50%;
    transform: translateX(-50%);
    width: var(--circle-size);
    height: var(--circle-size);
    border: 1px solid #c8b49e;
    border-radius: 50%;
    pointer-events: none;
}

.philosophy-header {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(clamp(1.75rem, 1.25rem + 1.875vw, 2.875rem));
}

.philosophy-title {
    margin: 0;
    font-family: var(--font-serif);
    color: #ae8b6d;
    line-height: 1.25;
}

.philosophy-title .en-title {
    display: block;
    font-size: clamp(2rem, 1.5rem + 1.5vw, 3.2rem);
    letter-spacing: 0.05em;
    font-weight: 400;
}

.philosophy-title .en-subtitle {
    display: block;
    font-size: clamp(2.8rem, 2rem + 3vw, 4.6rem);
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-top: -2px;
}

.philosophy-bottom {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 120px;
}

.philosophy-bottom__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.philosophy-subtitle {
    text-align: center;
    margin: 0 0 60px;
    font-size: 1.05rem;
    color: #fcfbf9;
    letter-spacing: 0.12em;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: rgba(235, 228, 222, 0.95);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.philosophy-card__number {
    font-size: 3rem;
    line-height: 1;
    font-weight: 300;
    color: #c09d7a;
    margin-bottom: 24px;
    font-family: var(--font-serif);
}

.philosophy-card__title {
    margin: 0 0 20px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #3b3530;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.philosophy-card__copy {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.9;
    color: #4a423d;
    letter-spacing: 0.04em;
    text-align: justify;
}

@media (max-width: 960px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Section: For first time users
   ========================================================================== */

.section-first-time {
    position: relative;
    width: 100%;
    background-color: #f7f3ec;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.section-first-time__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-first-time__header {
    text-align: center;
    margin-bottom: 80px;
}

.section-first-time__header .en-subtitle {
    display: block;
    font-size: 0.95rem;
    color: #c4a98a;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
    margin-bottom: 8px;
}

.section-first-time__header .ja-title {
    margin: 0;
    font-size: clamp(1.8rem, 1.5rem + 1vw, 2.2rem);
    color: #4a423d;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.section-first-time__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.section-first-time__image-wrap {
    flex: 0 0 45%;
    max-width: 500px;
}

.section-first-time__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 500px 500px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-first-time__features {
    flex: 1;
}

.first-time-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.first-time-list__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.first-time-list__item:last-child {
    margin-bottom: 0;
}

.first-time-list__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.first-time-list__icon svg {
    width: 100%;
    height: auto;
}

.first-time-list__text {
    flex: 1;
}

.first-time-list__title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    color: #4a423d;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.first-time-list__copy {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.9;
    color: #5e564b;
    text-align: justify;
}

.section-first-time__footer {
    text-align: center;
}

.first-time-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: transparent;
    border: 1px solid #4a423d;
    color: #4a423d;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.first-time-button:hover {
    background: #4a423d;
    color: #fff;
}

.first-time-button .arrow {
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.first-time-button:hover .arrow {
    transform: translateX(5px);
}

.first-time-message .ja-message {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #4a423d;
    letter-spacing: 0.05em;
}

.first-time-message .en-message {
    margin: 0;
    font-size: 0.75rem;
    color: #bfa88c;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

@media (max-width: 960px) {
    .section-first-time__content {
        flex-direction: column;
        gap: 50px;
    }

    .section-first-time__image-wrap {
        max-width: 100%;
        flex: auto;
        padding: 0 20px;
    }

    .section-first-time__image {
        border-radius: 500px 500px 0 0;
    }

    .first-time-button {
        padding-inline: 10px;
    }
}

/* ==========================================================================
   Section: Reasons for choosing
   ========================================================================== */

.section-reasons {
    position: relative;
    width: 100%;
    background-color: #fcfbf9;
    padding: 120px 0;
}

.section-reasons__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-reasons__header {
    text-align: center;
    margin-bottom: 100px;
}

.section-reasons__header .en-subtitle {
    display: block;
    font-size: 0.95rem;
    color: #c4a98a;
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
    margin-bottom: 8px;
}

.section-reasons__header .ja-title {
    margin: 0;
    font-size: clamp(1.8rem, 1.5rem + 1vw, 2.2rem);
    color: #4a423d;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.section-reasons__content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.reason-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.reason-block--image-right {
    flex-direction: row;
}

.reason-block__image {
    flex: 0 0 50%;
    max-width: 550px;
}

.reason-block__image img {
    width: 100%;
    height: auto;
    display: block;
}

.reason-block__text {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.reason-block__number {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: #726b65;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.reason-block__number::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: #c4a98a;
}

.reason-block__en-title {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    color: #c4a98a;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.reason-block__ja-title {
    margin: 0 0 24px;
    font-size: 0.95rem;
    color: #c4a98a;
    letter-spacing: 0.1em;
}

.reason-block__copy {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.9;
    color: #4a423d;
    letter-spacing: 0.05em;
}

.section-reasons__footer {
    text-align: center;
    margin-top: 60px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background-color: #8da096;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background-color: #7a8d83;
}

.btn-view-more__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #ffffff;
    margin-right: 12px;
}

@media (max-width: 960px) {
    .section-reasons__inner {
        padding-inline: 0;
    }

    .reason-block {
        flex-direction: column;
        gap: 40px;
    }

    .reason-block--image-right {
        flex-direction: column-reverse;
    }

    .reason-block__image {
        flex: auto;
        max-width: 100%;
        width: 100%;
    }

    .reason-block__text {
        padding: 0;
    }
}

/* ==========================================================================
   Section: Treatment Menu (診療案内)
   ========================================================================== */
.treatment-menu-new {
    background-color: #f7f3ec;
    padding: 100px 0;
}

.treatment-menu-new__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.treatment-menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.treatment-menu-header .ja-title {
    display: block;
    font-size: 0.95rem;
    color: #c4a98a;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.treatment-menu-header .en-title {
    margin: 0;
    font-size: clamp(2rem, 1.5rem + 1vw, 2.8rem);
    color: #726b65;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Tabs */
.tm-top-tabs {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.tm-top-btn {
    flex: 1;
    padding: 20px 0;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tm-top-btn.active {
    background-color: #c4a98a;
    color: #fff;
}

.tm-top-btn:not(.active) {
    background-color: #fff;
    color: #c4a98a;
}

/* Main Panel */
.tm-view-panel {
    display: none;
    background-color: #fff;
    border: 1px solid #c4a98a;
    padding: 40px;
    margin-top: 0;
}

.tm-view-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gold Blocks Area */
.tm-repair-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tm-repair-area .tm-sec-title {
    display: none;
}

.tm-repair-area .tm-cat-card {
    background-color: #fff;
    color: #4a423d;
    padding: 20px;
    text-align: center;
    border: 1px solid #e1d5c9;
    border-radius: 4px;
    position: relative;
    /* Removed grid-column: span 2 to keep the original size */
}

.tm-repair-area .tm-card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tm-repair-area .tm-card-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tm-repair-area .tm-card-label {
    font-size: 1.1rem;
    color: #4a423d;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.tm-repair-area .icon-circle {
    width: 70px;
    height: 70px;
    background-color: #f7f3ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-repair-area .icon-circle img {
    width: 40px;
    height: auto;
}

.tm-repair-area .tm-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.tm-repair-area .btn-detail,
.tm-repair-area .btn-menu-open {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
}

.tm-repair-area .btn-detail {
    background-color: #8c8277;
    color: #fff;
    border: none;
}

.tm-repair-area .btn-detail::after {
    content: '›';
    font-size: 1.2rem;
}

.tm-repair-area .btn-menu-open {
    background-color: #fff;
    color: #4a423d;
    border: 1px solid #e1d5c9;
}

.tm-repair-area .btn-menu-open::after {
    content: '+';
    font-size: 1.2rem;
}

/* Float Panel (Dropdown) */
.tm-pc-float-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 90vw;
    background: #fff;
    border: 1px solid #e1d5c9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 20px;
}

.tm-pc-float-panel.active {
    display: block;
    animation: floatIn 0.3s ease forwards;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tm-float-close {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 15px;
}

.tm-float-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tm-float-content li a {
    display: flex;
    align-items: center;
    border: 1px solid #8c8277;
    border-radius: 6px;
    text-decoration: none;
    color: #8c8277;
    background-color: #fcfbf9;
    height: 100%;
    overflow: hidden;
}

.tm-float-content .thumb {
    flex: 0 0 60px;
    height: 100%;
}

.tm-float-content .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tm-float-content .txt {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tm-float-content .txt::after {
    content: '›';
    font-family: monospace;
    font-size: 1.1rem;
    margin-left: 5px;
}

@media (max-width: 480px) {
    .tm-float-content ul {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Section: Treatment Menu (お悩み別で見る)
   ========================================================================== */

.tm-concern-title {
    font-size: 1.6rem;
    color: #4a423d;
    text-align: center;
    margin: 0px 0 30px;
    letter-spacing: 0.1em;
}

.tm-concern-title .en {
    color: #c4a98a;
    font-size: 2.2rem;
    font-family: 'Times New Roman', serif;
    display: block;
    margin-bottom: 5px;
}

.tm-local-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tm-local-nav .tm-cat-card.type-mini {
    width: 100px;
    background-color: #fff;
    border: 1px solid #e1d5c9;
    border-radius: 6px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.tm-local-nav .tm-cat-card.type-mini:hover,
.tm-local-nav .tm-cat-card.type-mini.active {
    background-color: #f7f3ec;
    border-color: #c4a98a;
}

.tm-local-nav .tm-cat-card.type-mini .tm-card-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tm-local-nav .tm-cat-card.type-mini .icon-circle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1d5c9;
}

.tm-local-nav .tm-cat-card.type-mini.active .icon-circle {
    background-color: #c4a98a;
    border-color: #c4a98a;
}

.tm-local-nav .tm-cat-card.type-mini.active .icon-circle img {
    filter: brightness(0) invert(1);
}

.tm-local-nav .tm-cat-card.type-mini .icon-circle img {
    width: 26px;
    height: auto;
}

.tm-local-nav .tm-cat-card.type-mini .tm-card-label {
    font-size: 0.85rem;
    color: #4a423d;
}

.tm-local-display .tm-content-panel {
    display: none;
}

.tm-local-display .tm-content-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

/* Separator */
.tm-separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #726b65;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin: 40px 0;
}

.tm-separator::before,
.tm-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e8ccff;
}

.tm-separator::before {
    margin-right: 20px;
}

.tm-separator::after {
    margin-left: 20px;
}

/* White Blocks Area (categories) */
.tm-cat-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.tm-cat-nav .tm-cat-card {
    background-color: #fff;
    border: 1px solid #c4a98a;
    padding: 24px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.tm-cat-nav .tm-cat-card.active,
.tm-cat-nav .tm-cat-card:hover {
    background-color: #f7f3ec;
}

.tm-cat-nav .tm-card-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tm-cat-nav .icon-circle {
    width: 56px;
    height: 56px;
    background-color: #c4a98a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-cat-nav .icon-circle img {
    width: 32px;
    height: auto;
}

.tm-cat-nav .tm-card-label,
.tm-cat-nav .tm-card-sub {
    font-size: 0.8rem;
    color: #726b65;
    letter-spacing: 0.05em;
}

.tm-cat-nav .tm-card-actions {
    display: none;
}

/* Display Area */
.tm-content-display-area {
    background-color: #f7f3ec;
    padding: 60px 40px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.tm-content-panel {
    display: none;
    width: 100%;
}

.tm-content-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.tm-default-message {
    font-size: 0.9rem;
    color: #726b65;
    letter-spacing: 0.05em;
}

/* Treatment Grid inside display area */
.tm-treatment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: left;
}

@media (max-width: 960px) {
    .tm-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.tm-item-card {
    background: #fff;
    padding: 20px 10px 15px;
    border-radius: 0;
    border: 1px solid #f2eadf;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.tm-item-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.tm-item-name {
    font-size: 1rem;
    color: #4a423d;
    margin-bottom: 15px;
    order: -1;
    /* Move title ABOVE the icon */
    letter-spacing: 0.05em;
}

.tm-item-icon {
    width: 70px;
    height: 70px;
    background-color: #faf6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.tm-item-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tm-item-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    /* Push buttons to the bottom if grid heights vary */
}

/* Button Resets & Base */
.tm-item-body .btn-detail,
.tm-item-body .btn-menu-open {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.tm-item-body .btn-detail:hover,
.tm-item-body .btn-menu-open:hover {
    opacity: 0.8;
}

/* 1. Detail Button (Solid Brown) */
.tm-item-body .btn-detail {
    background-color: #928373;
    color: #ffffff;
    border: none;
}

.tm-item-body .btn-detail::after {
    content: '›';
    font-size: 1.2rem;
    line-height: 1;
}

/* 2. Menu Open Button (White Outline) */
.tm-item-body .btn-menu-open {
    background-color: #ffffff;
    color: #5c554e;
    border: 1px solid #e1d5c9;
}

.tm-item-body .btn-menu-open::after {
    content: '+';
    font-size: 1.2rem;
    line-height: 1;
}

.tm-panel-footer {
    margin-top: 30px;
}

/* Footer Button */
.treatment-menu-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-menu-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background-color: #8da096;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.btn-menu-list:hover {
    background-color: #7a8d83;
}

.btn-menu-list__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #ffffff;
    margin-right: 12px;
}

/* Responsive */
@media (max-width: 960px) {
    .tm-repair-area {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-cat-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .tm-content-display-area {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {

    .tm-repair-area,
    .tm-cat-nav {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Section: Case Introduction (症例紹介) & Popular Treatments (人気の施術)
   ========================================================================== */
.section-case-intro {
    background-color: #eae5d9;
    padding: 100px 0 0px;
}

.section-case-intro__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-case-intro__header {
    text-align: center;
    margin-bottom: 50px;
}

.section-case-intro__header .ja-title {
    display: block;
    font-size: 0.9rem;
    color: #c0a887;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.section-case-intro__header .en-title {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #3b3530;
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.case-intro__note {
    font-size: 0.75rem;
    color: #8c8277;
    margin: 20px 0 0;
    letter-spacing: 0.05em;
}

.case-intro__slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 0 10px;
}

.case-slider-btn {
    background: #fff;
    border: 1px solid #dcd5c9;
    color: #a8a096;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.case-slider-btn:hover {
    border-color: #c0a887;
    color: #c0a887;
}

.case-intro__slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.case-card {
    background: #fff;
    padding: 35px;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
}

.case-card__title {
    font-size: 1.1rem;
    color: #3b3530;
    margin: 0 0 20px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    letter-spacing: 0.05em;
}

.case-card__title .en {
    color: #c0a887;
    font-size: 0.8rem;
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 0.1em;
}

.case-card__images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.case-card__img-box {
    width: 45%;
    aspect-ratio: 3/4;
    background-color: #b4ae9f;
}

.case-card__arrow {
    color: #c0a887;
    font-size: 1.8rem;
    font-family: "Times New Roman", Times, serif;
    font-weight: lighter;
}

.case-card__copy {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #3b3530;
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
}

.section-popular-treatments {
    background-color: #eae5d9;
    padding: 20px 0 100px;
}

.section-popular-treatments__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.popular-treatments__divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #5e564b;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    margin: 60px auto 60px;
    max-width: 800px;
}

.popular-treatments__divider::before,
.popular-treatments__divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #a8a096;
}

.popular-treatments__divider::before {
    margin-right: 30px;
}

.popular-treatments__divider::after {
    margin-left: 30px;
}

.popular-treatments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.popular-card {
    text-align: center;
}

.popular-card__image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    /* border: 1px solid #c0a887; */
}

.popular-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-card__en {
    color: #c0a887;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.2rem;
    margin: 0 0 8px;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.popular-card__ja {
    color: #3b3530;
    font-size: 1rem;
    margin: 0 0 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.popular-card__copy {
    color: #3b3530;
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.05em;
}

.popular-treatments__footer {
    text-align: center;
}

@media (max-width: 960px) {
    .case-intro__slider {
        flex-direction: column;
    }

    .popular-treatments__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .popular-treatments__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Section: Director Introduction (院長紹介)
   ========================================================================== */
.section-director {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 160px;
    position: relative;
    background-color: #f7f3ec;
}

.section-director__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-director__header {
    text-align: center;
    margin-bottom: 70px;
}

.section-director__header .ja-title {
    display: block;
    font-size: 0.9rem;
    color: #c0a887;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.section-director__header .en-title {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #3b3530;
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.director-box {
    border: 1px solid #c0a887;
    border-radius: 120px 0 0 0;
    position: relative;
    padding: 60px 50px 20px 70px;
    background: transparent;
    max-width: 1100px;
    margin: 0 auto;
}

.director-box__left {
    width: 55%;
    position: relative;
    z-index: 2;
}

.director-name-area {
    margin-bottom: 25px;
}

.director-role {
    color: #c0a887;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.director-name {
    font-size: 2.2rem;
    color: #3b3530;
    margin: 0 0 20px;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.15em;
}

.director-suffix {
    font-size: 1rem;
    margin-left: 10px;
}

.director-message {
    font-size: 0.85rem;
    color: #8c8277;
    line-height: 1.8;
    margin: 0;
}

.director-strengths {
    margin-bottom: 25px;
}

.strengths-label {
    display: inline-block;
    background-color: #cba29f;
    color: #fff;
    padding: 4px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.strengths-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strengths-list li {
    position: relative;
    padding-left: 30px;
    font-size: 0.85rem;
    color: #3b3530;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.strengths-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #c0a887;
    border-bottom: 2px solid #c0a887;
    transform: rotate(45deg);
}

.director-details {
    margin-bottom: 20px;
}

.detail-block {
    margin-bottom: 5px;
}

.detail-block h4 {
    font-size: 0.95rem;
    color: #3b3530;
    /* margin: 0 0 8px; */
    font-weight: 500;
    letter-spacing: 0.1em;
}

.detail-block p {
    font-size: 0.75rem;
    color: #3b3530;
    margin: 0;
    line-height: 1.8;
}

.director-box__right {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.director-images {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 固定枠：アーチ型 */
.director-img-large {
    position: absolute;
    top: -40px;
    right: -30px;
    width: 440px;
    height: 540px;
    border-radius: 220px 220px 0 0;
    overflow: hidden;
    z-index: 1;
}

.director-img-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.director-img-large img.active {
    opacity: 1;
    z-index: 1;
}

.director-img-small {
    position: absolute;
    bottom: -50px;
    right: 330px;
    /* Using right guarantees a fixed distance from the large image, keeping the overlap perfectly stable regardless of screen size */
    width: 220px;
    height: 330px;
    border-radius: 110px 110px 0 0;
    overflow: hidden;
    border: 5px solid #fff;
    z-index: 2;
}

.director-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-pagination {
    position: absolute;
    top: 520px;
    right: 120px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 1;
}

.director-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #c0a887;
    background-color: transparent;
    display: inline-block;
}

.director-pagination .dot.active {
    background-color: #c0a887;
}

.btn-director-reserve {
    position: absolute;
    bottom: -50px;
    left: 80px;
    transform: translateY(50%);
    background-color: #cba29f;
    color: #fff;
    padding: 16px 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.btn-director-reserve:hover {
    opacity: 0.8;
    color: #fff;
}

.btn-director-reserve .btn-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #ffffff;
    margin-right: 15px;
}

@media (max-width: 960px) {
    .director-img-large {
        width: clamp(310px, calc(310px + 130 * (100vw - 750px) / 210), 440px);
        height: clamp(390px, calc(390px + 150 * (100vw - 750px) / 210), 540px);
        border-radius: clamp(155px, calc(155px + 65 * (100vw - 750px) / 210), 220px) clamp(155px, calc(155px + 65 * (100vw - 750px) / 210), 220px) 0 0;
    }

    .director-img-small {
        display: none;
    }

    .director-pagination {
        top: clamp(370px, calc(370px + 150 * (100vw - 750px) / 210), 520px);
    }
}

@media (max-width: 749px) {

    .section-director__inner {
        padding-inline: 0;
    }

    .director-box {
        padding: 40px 15px 60px;
        border-radius: 60px 0 0 0;
        margin-top: 180px;
        display: flex;
        flex-direction: column-reverse;
    }

    .director-box__left {
        width: 100%;
        padding-right: 0;
    }

    .director-box__right {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-top: -180px;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .director-img-large {
        position: relative;
        top: auto;
        right: auto;
    }

    .director-pagination {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
    }

    .btn-director-reserve {
        left: 50%;
        transform: translate(-50%, 50%);
    }
}

/* ==========================================================================
   Section: CTA
   ========================================================================== */
.section-cta {
    display: flex;
    width: 100%;
}

.cta-left,
.cta-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    position: relative;
}

.cta-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(175, 155, 140, 0.3);
    /* Subtle warm overlay for text readability */
}

.cta-left__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 500px;
    width: 100%;
}

.cta-logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 40px;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 25px;
    letter-spacing: 0.1em;
    padding-bottom: 25px;
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 300px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
}

.cta-desc p {
    font-size: 0.85rem;
    margin: 0 0 12px;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.cta-desc p:last-child {
    margin-bottom: 0;
}

.cta-right__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 400px;
}

.cta-sub {
    display: block;
    font-size: 0.9rem;
    color: #5c554e;
    font-family: var(--font-serif);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.btn-reservation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #5c554e;
    border: 1px solid #8c8277;
    padding: 16px 80px;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    background: #f7f3ec;
}

.btn-reservation .arrow {
    margin-left: 20px;
    font-size: 1.4rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .section-cta {
        flex-direction: column;
    }

    .cta-left,
    .cta-right {
        padding: 80px 20px;
    }
}

/* ==========================================================================
   Section: Flow of Visit (ご来院の流れ)
   ========================================================================== */
.section-flow {
    padding: 120px 0;
    background-color: #ffffff;
}

.section-flow__inner {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 40px; */
    padding: 0;
}

.section-flow__header {
    text-align: center;
    margin-bottom: 80px;
}

.section-flow__header .en-title {
    display: block;
    color: #c0a887;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.section-flow__header .ja-title {
    font-size: 2.2rem;
    color: #3b3530;
    margin: 0 0 30px;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.section-flow__header .desc {
    font-size: 0.95rem;
    color: #5c554e;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    border-top: 1px dashed #d3c4b1;
    z-index: 1;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.flow-step:not(:last-child)::after {
    content: '>';
    position: absolute;
    top: 30px;
    right: 0;
    transform: translate(50%, -50%);
    color: #c0a887;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    background-color: #fff;
    padding: 0 10px;
    z-index: 2;
}

.flow-step__number {
    width: 60px;
    height: 60px;
    margin: 0 auto 50px;
    border: 1px solid #c0a887;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #c0a887;
    font-family: var(--font-serif);
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.flow-step__icon {
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step__icon img {
    max-height: 100%;
    width: auto;
}

.flow-step__title {
    font-size: 0.9rem;
    color: #3b3530;
    margin: 0 0 15px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.05em;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step__divider {
    width: 25px;
    height: 2px;
    background-color: #c0a887;
    margin: 0 auto 15px;
}

.flow-step__desc {
    font-size: 0.75rem;
    color: #5c554e;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.05em;
}

.flow-note {
    text-align: center;
}

.flow-note p {
    font-size: 0.85rem;
    color: #c0a887;
    margin: 0;
    letter-spacing: 0.05em;
}

@media (max-width: 960px) {
    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-steps::before {
        display: none;
    }

    .flow-step {
        width: 100%;
        max-width: 320px;
        margin-bottom: 50px;
    }

    .flow-step:last-child {
        margin-bottom: 0;
    }

    .flow-step:not(:last-child)::after {
        content: '>';
        top: auto;
        bottom: -35px;
        right: 50%;
        transform: translate(50%, 0) rotate(90deg);
        background-color: transparent;
    }
}

/* ==========================================================================
   Section: FAQ (よくあるご質問)
   ========================================================================== */
.section-faq {
    padding: 120px 0;
    background-color: #fbfafa;
}

.section-faq__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-left {
    width: 35%;
}

.faq-left .en-title {
    display: block;
    color: #cbbca6;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.faq-left .ja-title {
    font-size: 1.1rem;
    color: #5c554e;
    margin: 0 0 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.faq-left .desc {
    font-size: 0.85rem;
    color: #7b736b;
    line-height: 2;
    letter-spacing: 0.05em;
    margin: 0;
}

.faq-right {
    width: 60%;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-q {
    background-color: #f2eade;
    color: #5c554e;
    padding: 20px 30px;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::-webkit-details-marker {
    display: none;
    /* Hide default arrow for Safari */
}

.faq-q:hover {
    background-color: #e6decb;
}

.faq-q::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1px solid #c0a887;
    border-bottom: 1px solid #c0a887;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 5px;
}

.faq-item[open] .faq-q::after {
    transform: rotate(225deg);
}

.faq-a {
    background-color: #ffffff;
    padding: 25px 30px;
}

.faq-item[open] .faq-a {
    animation: faq-fade-in 0.4s ease-out forwards;
}

@keyframes faq-fade-in {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-a p {
    margin: 0;
    font-size: 0.85rem;
    color: #5c554e;
    line-height: 1.8;
}

@media (max-width: 960px) {
    .section-faq__inner {
        flex-direction: column;
        padding-inline: 0;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-left {
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   Section: Access (店舗案内・アクセス)
   ========================================================================== */
.section-access {
    background-color: #ffffff;
    padding-top: 120px;
    text-align: center;
}

.section-access__header .en-title {
    display: block;
    color: #cbbca6;
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-access__header .ja-title {
    font-size: 1rem;
    color: #cbbca6;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.access-content {
    display: flex;
    max-width: 1100px;
    margin: 60px auto -150px;
    /* Negative margin to overlap the footer below */
    position: relative;
    z-index: 2;
    gap: 40px;
    text-align: left;
    padding: 0 40px;
}

.access-img {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.access-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.access-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.access-text {
    font-size: 0.95rem;
    color: #8c8277;
    line-height: 2;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.access-map {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: block;
}

/* ==========================================================================
   Section: Footer CTA (フッター下部CTA)
   ========================================================================== */
.section-footer-cta {
    position: relative;
    padding: 120px 0 100px;
    /* Normal padding for all pages */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.home .section-footer-cta {
    padding: 280px 0 100px;
    /* Extra top padding to make room for the overlapping access content on front page */
}

.footer-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 60, 45, 0.9);
    /* Dark brown overlay */
    z-index: 1;
}

.footer-cta__inner {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 100px;
    margin: 0 auto 30px;
    display: block;
}

.footer-cta__lead {
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.footer-cta__tel {
    font-size: 4.5rem;
    font-family: var(--font-serif);
    margin: 0 0 10px;
    font-weight: 300;
    line-height: 1;
}

.footer-cta__hours {
    font-size: 0.8rem;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.btn-footer-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8b9c94;
    color: #fff;
    padding: 20px 80px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
    margin-bottom: 15px;
}

.btn-footer-reserve:hover {
    background: #75867e;
}

.btn-footer-reserve .arrow {
    margin-left: 20px;
}

.footer-cta__note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 960px) {
    .access-content {
        flex-direction: column;
        margin-bottom: -100px;
        padding: 0;
    }

    .section-footer-cta {
        padding-top: 180px;
    }

    .footer-cta__tel {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Contact Page & Form Styles
   ========================================================================== */

.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.page-header>* {
    position: relative;
    z-index: 2;
}

.page-header .en-title {
    display: block;
    color: #8e6f4d;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.15em;
}

.page-header .ja-title {
    font-size: 2.2rem;
    color: #312c29;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.section-contact {
    background: #f7f2ec;
    padding: 80px 0 120px;
}

.section-contact__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-lead {
    font-size: 0.95rem;
    line-height: 2;
    color: #312c29;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(142, 111, 77, 0.2);
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-method-card__icon {
    margin-bottom: 25px;
}

.contact-method-card__icon img {
    height: 40px;
    width: auto;
}

.contact-method-card__title {
    font-size: 1.2rem;
    color: #8e6f4d;
    margin: 0 0 15px;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.contact-method-card__desc {
    font-size: 0.9rem;
    color: #5e564b;
    margin-bottom: 25px;
}

.contact-method-card__tel {
    margin-bottom: 15px;
}

.contact-method-card__tel a {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: #312c29;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.contact-method-card__tel a:hover {
    opacity: 0.7;
}

.contact-method-card__hours {
    font-size: 0.8rem;
    color: #5e564b;
    margin: 0;
}

/* Contact Form Header */
.contact-form-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-section__header .en-title {
    display: block;
    color: #8e6f4d;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
}

.contact-form-section__header .ja-title {
    font-size: 1.8rem;
    color: #312c29;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* Contact Form 7 Base */
.wpcf7 {
    max-width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 1em;
    padding: 1em;
    border: 1px solid #8e6f4d;
    color: #312c29;
}

.wpcf7-not-valid-tip {
    color: #c85a5a;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

.form-group {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(142, 111, 77, 0.2);
    padding-bottom: 2.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #8e6f4d;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

.form-label .required {
    background: #c4a98a;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 10px;
    margin-left: 15px;
    border-radius: 2px;
    font-family: sans-serif;
    letter-spacing: 0;
}

.form-input input[type="text"],
.form-input input[type="email"],
.form-input input[type="tel"],
.form-input textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #d2c8bc;
    color: #312c29;
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: sans-serif;
    box-sizing: border-box;
}

.form-input input[type="text"]::placeholder,
.form-input input[type="email"]::placeholder,
.form-input input[type="tel"]::placeholder,
.form-input textarea::placeholder {
    color: rgba(49, 44, 41, 0.4);
}

.form-input input[type="text"]:focus,
.form-input input[type="email"]:focus,
.form-input input[type="tel"]:focus,
.form-input textarea:focus {
    outline: none;
    border-color: #8e6f4d;
    background: #fff;
}

.form-input textarea {
    min-height: 200px;
    resize: vertical;
}

.form-input p {
    color: #312c29;
}

/* Radio buttons */
.form-radio .wpcf7-list-item {
    margin-right: 2.5rem;
    margin-bottom: 10px;
    display: inline-block;
}

.form-radio .wpcf7-list-item-label {
    color: #312c29;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-radio input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

/* Submit Button / Action Buttons */
.form-submit,
.form-submit p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
}

.form-submit {
    margin-top: 4rem;
}

@media (max-width: 768px) {

    .form-submit,
    .form-submit p {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

.btn-submit,
.btn-back,
.wpcf7-back,
.wpcf7-previous,
.form-submit input[type="button"],
.form-submit input[type="submit"] {
    background: #8b9c94;
    color: #fff;
    border: 1px solid #8b9c94;
    padding: 20px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: var(--font-serif);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    max-width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-appearance: none;
    margin: 0 !important;
    /* Override CF7 margins */
}

.btn-submit:hover,
.form-submit input[type="submit"]:hover {
    background: #75867e;
    border-color: #75867e;
}

.btn-back,
.wpcf7-back,
.wpcf7-previous,
.form-submit input[type="button"] {
    background: transparent;
    color: #8e6f4d;
    border-color: #8e6f4d;
}

.btn-back:hover,
.wpcf7-back:hover,
.wpcf7-previous:hover,
.form-submit input[type="button"]:hover {
    background: rgba(142, 111, 77, 0.05);
    color: #8e6f4d;
}

/* Scroll Fade-in Animation */
.js-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js-fade-in {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 960px) {
    .section-contact {
        padding: 0 0 120px;
    }

    .contact-form-section__header .ja-title {
        font-size: 1.5rem;
    }

    .contact-method-card {
        padding: 50px 5px;
    }

    .form-submit,
    .form-submit p {
        margin-top: 0;
    }
}