/* =========================
  Variables
========================= */
:root {
    --green: #a9d3c1;
    --green-deep: #7fae98;
    --green-dark: #678d7a;
    --cream: #f7f1ed;
    --cream-2: #eee6dc;
    --beige: #d8c8b9;
    --brown: #40352f;
    --text: #2f2926;
    --muted: #716760;
    --line: #e8ded4;
    --white: #fff;
    --instagram: #c78172;
}

/* =========================
  Base
========================= */
html {
    scroll-behavior: auto;
    font-size: 62.5%;
}

body {
    background: #eee9e2;
    color: var(--text);
    font-family: "Noto Serif JP", serif;
    line-height: 1.8;
    font-size: 1.6rem;
}

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

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

/* =========================
  Utility
========================= */
.sp-br {
    display: none;
}

@media screen and (max-width: 767px) {
    .sp-br {
        display: inline;
    }
}

.pc-br {
    display: none;
}

@media screen and (min-width: 900px) {
    .pc-br {
        display: block;
    }
}

.no-wrap {
    white-space: nowrap;
}

.inline-block {
    display: inline-block;
}

/* =========================
  Layout
========================= */
.page {
    margin: 0 auto;
    background: var(--cream);
    min-height: 100vh;
    box-shadow: 0 20px 60px rgba(70, 55, 40, 0.16);
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .page {
        max-width: 100%;
        box-shadow: none;
    }
}

@media screen and (min-width: 768px) {
    .page {
        max-width: 100%;
        box-shadow: none;
    }
}

.inner {
    width: 100%;
    max-width: 92rem;
    margin-inline: auto;
    padding-inline: 2rem;
}

/* =========================
  Common Components
========================= */
.section {
    padding: 58px 0;
    position: relative;
    border-bottom: 1px solid rgba(232, 222, 212, 0.7);
}

@media screen and (min-width: 768px) {
    .section {
        padding: 72px 0;
    }
}

.section-label {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.4rem;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.section-title {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 2.2rem;
    line-height: 1.8;
    letter-spacing: 0.09em;
    font-weight: 500;
}

.section-text {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    color: var(--muted);
    line-height: 2;
    letter-spacing: 0.01em;
}

@media screen and (min-width: 768px) {
    .section-text {
        font-size: 1.8rem;
    }
}

.button {
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

@media (hover: hover) {
    .button:hover {
        transform: translateY(-0.3rem);
        box-shadow: 0 0.8rem 1.8rem rgba(64, 53, 47, 0.14);
        opacity: 0.88;
    }
}

@media screen and (min-width: 768px) {
    .button {
        min-width: 190px;
    }
}

.button::before {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.0rem;
    font-weight: 700;
    letter-spacing: 0;
}

.button-line {
    background: var(--green-deep);
    color: #fff;
    box-shadow: 0 8px 20px rgba(111, 146, 125, 0.22);
}

.button-line::before {
    content: "LINE";
    background: rgba(255, 255, 255, 0.96);
    color: var(--green-deep);
    font-size: 0.8rem;
}

.button-instagram {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid #d6b7ac;
    color: var(--brown);
}

.button-instagram::before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    background-color: #d7a7a0;
    mask-image: url("../images/instagram-icon.png");
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("../images/instagram-icon.png");
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    flex-shrink: 0;
    border: none;
    border-radius: 0;
}

/* =========================
  Header
========================= */
.header {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(251, 248, 242, 0.92);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(232, 222, 212, 0.7);
}

@media screen and (min-width: 768px) {
    .header {
        height: 84px;
        padding: 0 3vw;
    }
}

@media screen and (min-width: 900px) {
    .header {
        padding: 0 6vw;
    }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo-img {
    max-width: 120px;
    object-fit: contain;
}

@media screen and (min-width: 768px) and (max-width: 899px) {
    .logo-img {
        max-width: 105px;
    }
}

.logo-icon {
    width: 72px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 0.88;
    font-style: italic;
    letter-spacing: 0.03em;
    text-align: center;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .logo-icon {
        width: auto;
        height: auto;
        font-size: 2.8rem;
        line-height: 0.82;
    }
}

.logo-copy {
    display: grid;
    gap: 2px;
}

.logo-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--brown);
    letter-spacing: 0.03em;
}

.logo-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.9rem;
    line-height: 1;
    color: var(--muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* =========================
  Navigation
========================= */
.header-right {
    display: none;
}

@media screen and (min-width: 768px) {
    .header-right {
        display: flex;
        align-items: center;
        gap: 1.6rem;
    }
}

@media screen and (min-width: 900px) {
    .header-right {
        gap: 2.0rem;
    }
}

.pc-nav {
    display: none;
}

@media screen and (min-width: 768px) {
    .pc-nav {
        display: flex;
        align-items: center;
        gap: 1.8rem;
        font-family: "Noto Serif JP", serif;
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--muted);
        letter-spacing: 0.02em;
    }
}

@media screen and (min-width: 900px) {
    .pc-nav {
        gap: 1.6rem;
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 1024px) {
    .pc-nav {
        gap: 2.8rem;
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .pc-nav a {
        position: relative;
        padding-block: 8px;
        white-space: nowrap;
        transition: opacity 0.3s ease;
    }

    @media (hover: hover) {
        .pc-nav a:hover {
            opacity: 0.65;
        }
    }

    .pc-nav a::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--green-dark);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    @media (hover: hover) {
        .pc-nav a:hover::after {
            transform: scaleX(1);
        }
    }
}

.header-btn-line {
    display: none;
}

@media screen and (min-width: 768px) {
    .header-btn-line {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        background: var(--green-deep);
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(111, 146, 125, 0.18);
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        flex-shrink: 0;
        white-space: nowrap;
    }

    @media (hover: hover) {
        .header-btn-line:hover {
            transform: translateY(-0.2rem);
            box-shadow: 0 0.6rem 1.2rem rgba(111, 146, 125, 0.25);
            opacity: 0.88;
        }
    }

    .header-btn-line::before {
        content: "LINE";
        display: grid;
        place-items: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.96);
        color: var(--green-deep);
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0;
        flex-shrink: 0;
    }
}

@media screen and (min-width: 900px) {
    .header-btn-line {
        gap: 6px;
        height: 38px;
        padding: 0 16px;
        font-size: 1.2rem;
    }

    .header-btn-line::before {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

.menu-box {
    width: 38px;
    height: 28px;
    position: relative;
    font-size: 0;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 50;
}

@media screen and (min-width: 768px) {
    .menu-box {
        display: none;
    }
}

.menu-box::before,
.menu-box::after,
.menu-box span {
    content: "";
    position: absolute;
    right: 0;
    width: 30px;
    height: 1px;
    background: var(--brown);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-box::before {
    top: 5px;
}

.menu-box span {
    top: 14px;
}

.menu-box::after {
    top: 23px;
}

.menu-box.is-open::before {
    top: 14px;
    transform: rotate(35deg);
}

.menu-box.is-open span {
    opacity: 0;
}

.menu-box.is-open::after {
    top: 14px;
    transform: rotate(-35deg);
}

.sp-nav {
    position: fixed;
    top: 68px;
    right: 0;
    width: 70%;
    height: auto;
    padding: 40px 0 48px;
    background: rgba(251, 248, 242, 0.96);
    border-bottom: 1px solid var(--line);
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: transform 0.4s ease;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
}

@media screen and (min-width: 768px) {
    .sp-nav {
        display: none;
    }
}

.sp-nav.is-open {
    transform: translate3d(0, 0, 0);
}

.sp-nav.is-no-transition {
    transition: none;
}

.sp-nav a {
    display: block;
    width: 100%;
    padding: 8px 20px;
    color: var(--muted);
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
    .sp-nav a:hover {
        opacity: 0.7;
        background-color: rgba(169, 211, 193, 0.16);
    }
}

.sp-nav .sp-nav-btn {
    display: flex;
    width: 80%;
    max-width: 240px;
    height: 44px;
    margin: 12px auto 0;
    padding: 0 16px;
    color: #fff;
    background-color: var(--green-deep);
    border-radius: 999px;
}

@media (hover: hover) {
    .sp-nav .sp-nav-btn:hover {
        opacity: 0.88;
        background-color: var(--green-deep);
        transform: translateY(-0.2rem);
        box-shadow: 0 0.6rem 1.2rem rgba(111, 146, 125, 0.25);
    }
}

/* =========================
  FV
========================= */
.hero {
    position: relative;
    min-height: 570px;
    padding-inline: clamp(32px, 8vw, 56px);
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .hero {
        min-height: 720px;
        padding: 0 8vw 60px;
    }
}

@media screen and (min-width: 1200px) {
    .hero {
        min-height: clamp(720px, 48vw, 840px);
    }
}

.hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slider .slick-list,
.hero__slider .slick-track,
.hero__slide {
    height: 100%;
}

.hero__slide {
    position: relative;
}

.hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(251, 248, 242, 0.95) 0%,
            rgba(251, 248, 242, 0.72) 45%,
            rgba(251, 248, 242, 0.12) 100%);
}

.hero__slide--woman::before {
    background: linear-gradient(90deg,
            rgba(251, 248, 242, 0.82) 0%,
            rgba(251, 248, 242, 0.55) 25%,
            rgba(251, 248, 242, 0.12) 48%,
            rgba(251, 248, 242, 0) 65%);
}

@media screen and (max-width: 767px) {
    .hero__slide--woman::before {
        background: linear-gradient(90deg,
                rgba(251, 248, 242, 0.96) 0%,
                rgba(251, 248, 242, 0.82) 42%,
                rgba(251, 248, 242, 0.3) 72%,
                rgba(251, 248, 242, 0) 100%);
    }
}

.hero__slide img {
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

@media screen and (max-width: 767px) {
    .hero__slide--woman img {
        object-position: 25% center;
    }
}

@media screen and (max-width: 500px) {
    .hero__slide--woman img {
        object-position: 60% center;
    }
}

@media screen and (max-width: 360px) {
    .hero__slide--woman img {
        object-position: 55% center;
    }
}

@media screen and (min-width: 768px) and (max-width: 899px) {
    .hero__slide--woman img {
        object-position: 30% center;
    }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
    .hero__slide--woman img {
        object-position: 35% center;
    }
}

@media screen and (min-width: 1200px) {
    .hero__slide--woman img {
        object-position: 38% 25%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 768px) {
    .hero-content {
        max-width: 540px;
        padding-top: 70px;
    }
}

.hero-title {
    font-family: "Marcellus", "Cormorant Garamond", serif;
    font-size: clamp(4.2rem, 7vw, 5.2rem);
    line-height: 1.18;
    letter-spacing: 0.045em;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--brown);
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.92);
}

@media screen and (min-width: 768px) {
    .hero-title {
        font-size: 6.4rem;
    }
}

.hero-lead {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.4rem, 3.7vw, 1.5rem);
    color: var(--muted);
    line-height: 2;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    max-width: 282px;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
}

@media screen and (min-width: 768px) {
    .hero-lead {
        max-width: 440px;
        font-size: 1.5rem;
    }
}

.button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 260px;
}

@media screen and (min-width: 768px) {
    .button-row {
        display: flex;
        gap: 16px;
        max-width: none;
    }
}

/* =========================
  Trouble
========================= */
.trouble {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.trouble-bg-top-left,
.trouble-bg-left,
.trouble-bg-right {
    display: none;
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: rgba(103, 141, 122, 0.08);
}

@media screen and (min-width: 768px) {

    .trouble-bg-top-left,
    .trouble-bg-left,
    .trouble-bg-right {
        display: block;
    }
}

.trouble-bg-top-left {
    left: 0;
    top: 0;
    width: 80px;
    height: 100px;
}

.trouble-bg-left {
    left: 0;
    bottom: 0;
    width: 80px;
    height: 180px;
}

.trouble-bg-right {
    right: 0;
    bottom: 0;
    width: 100px;
    height: 220px;
}

.trouble .inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trouble-deco {
    width: 100px;
    height: 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(103, 141, 122, 0.7);
}

.trouble-deco svg {
    width: 100%;
    height: 100%;
}

.trouble-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--brown);
    text-align: center;
    margin: 0 auto 12px;
    width: fit-content;
}

.trouble-list {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media screen and (max-width: 767px) {
    .trouble-list {
        width: 88%;
        max-width: 540px;
        margin-inline: auto;
        padding-inline: 0;
    }
}

@media screen and (min-width: 768px) {
    .trouble-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 60px;
    }
}

.trouble-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-block: 10px;
    border-bottom: 1px solid rgba(232, 222, 212, 0.6);
}

@media screen and (max-width: 767px) {
    .trouble-item {
        padding-block: 24px;
        padding-inline: 0;
    }
}

@media screen and (min-width: 768px) {

    .trouble-item:nth-child(3),
    .trouble-item:nth-child(4) {
        border-bottom: none;
    }
}

.trouble-item:last-child {
    border-bottom: none;
}

.trouble-icon {
    width: 54px;
    height: 73px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .trouble-icon {
        width: 56px;
        height: 76px;
    }
}

.trouble-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(1) saturate(1.5) brightness(0.25) contrast(2.8);
}

@media screen and (max-width: 767px) {
    .trouble-icon img {
        filter: brightness(0.4) contrast(1.8) saturate(1.2);
    }
}

.trouble-text {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    color: var(--muted);
    line-height: 1.8;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
    .trouble-text {
        font-size: 1.6rem;
    }
}

.trouble-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 36px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .trouble-footer {
        margin-top: 24px;
    }
}

.trouble-footer .trouble-deco {
    margin-bottom: 16px;
}

.trouble-lead {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
    letter-spacing: 0.06em;
}

/* =========================
  Concept
========================= */
.concept {
    background-color: var(--cream-2);
}

.concept-heading {
    display: flex;
    align-items: baseline;
    justify-content: left;
    gap: 6px;
    margin-bottom: 12px;
    width: 100%;
}

.concept-heading__en {
    margin-bottom: 0;
}

.concept-heading__ja {
    font-family: "Noto Serif JP", serif;
    font-size: 2.0rem;
    font-weight: 500;
    color: var(--green-dark);
}

.concept-lead-area {
    text-align: left;
    margin-bottom: 32px;
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
}

.concept-lead-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.06em;
    color: var(--brown);
    margin-bottom: 20px;
}

.concept-lead-title span {
    display: block;
}


.concept-lead-text {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.4rem, 1.2vw + 0.8rem, 1.5rem);
    color: var(--muted);
    line-height: 2.1;
    letter-spacing: 0.04em;
    width: 100%;
    max-width: 720px;
}

.concept-lead-paragraph:last-child {
    margin-bottom: 0;
}

.concept-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    margin-top: 0;
}

@media screen and (min-width: 900px) {
    .concept-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.concept-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.concept-feature-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(92, 74, 55, 0.08);
    margin-bottom: 16px;
    background-color: #f7f5f2;
}

.concept-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-feature-img--stylist img {
    object-position: center 7%;
}

.concept-feature-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--brown);
    margin-top: 12px;
}

@media screen and (min-width: 900px) {
    .concept-feature-title {
        font-size: clamp(1.2rem, 1.35vw, 1.4rem);
        white-space: nowrap;
        letter-spacing: 0;
    }
}

.concept-message,
.menu-message {
    text-align: center;
    margin-top: 4.0rem;
    margin-bottom: 1.6rem;
    width: 100%;
}

.concept-message-text,
.menu-message-text {
    font-family: "Noto Serif JP", serif;
    font-size: 1.3rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .concept-message,
    .menu-message {
        margin-top: 3.2rem;
        margin-bottom: 1.2rem;
    }
    .concept-message-text,
    .menu-message-text {
        font-size: 1.1rem;
    }
}

.concept-btn-wrapper .button {
    margin: 0 auto;
    max-width: 26.0rem;
}

/* =========================
  Menu
========================= */
.service-section {
    background-color: var(--cream);
}

@media screen and (max-width: 360px) {
    .service-section .inner {
        padding-inline: 1.2rem;
    }
}


.service-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
    margin-inline: auto;
}

@media screen and (min-width: 900px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 920px;
        margin-inline: auto;
        margin-top: 40px;
    }
}

.service-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px 2.8rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 12px 28px rgba(92, 74, 55, 0.06);
}

@media screen and (min-width: 900px) {
    .service-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 36px 2.8rem;
    }
}

.service-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin-top: 4px;
    align-self: start;
}

@media screen and (min-width: 900px) {
    .service-thumb {
        margin-top: 0;
    }
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media screen and (min-width: 900px) {
    .service-content {
        width: 100%;
        align-items: center;
        flex-grow: 1;
    }
}

.service-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-style: italic;
    color: var(--brown);
    line-height: 1.4;
    text-align: left;
}

@media screen and (min-width: 900px) {
    .service-title {
        text-align: center;
    }
}

.service-menu-list {
    display: grid;
    gap: 2px;
    list-style: none;
    font-size: 1.8rem;
    color: var(--muted);
    line-height: 1.8;
    font-family: "Noto Serif JP", serif;
    width: 100%;
    text-align: left;
}

@media screen and (min-width: 900px) {
    .service-menu-list {
        justify-items: start;
        align-content: start;
        text-align: left;
        font-size: 1.6rem;
        width: 100%;
        min-height: calc(7.2em + 6px);
    }
}

.service-price {
    margin-top: 18px;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--brown);
    font-family: "Noto Serif JP", serif;
    text-align: center;
}

@media screen and (max-width: 899px) {
    .service-price {
        text-align: left;
    }
}

.service-note {
    padding-top: 10px;
    line-height: 1.7;
    color: var(--green-dark);
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    border-top: 1px solid var(--line);
    text-align: left;
    font-size: 1.3rem;
    width: 100%;
}

@media screen and (min-width: 900px) {
    .service-note {
        text-align: center;
        font-size: 1.4rem;
        min-height: calc(3.4em + 10px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.menu-note {
    margin: 28px 0 16px;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--muted);
    text-align: center;
}

@media screen and (max-width: 767px) {
    .menu-note {
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }
}

.menu-note-br {
    display: none;
}

@media screen and (max-width: 390px) {
    .menu-note-br {
        display: block;
    }
}

.menu-sns-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .menu-sns-links {
        flex-direction: row;
        justify-content: center;
    }
}

.menu-sns-links .button {
    width: 100%;
    max-width: 260px;
    min-width: 0;
}

@media screen and (min-width: 768px) {
    .menu-sns-links .button {
        flex: 1;
        max-width: 190px;
    }
}

/* =========================
  Stylist / Owner
========================= */
.owner-section {
    background-color: var(--cream-2);
}

.owner-section h2 {
    text-align: center;
}


.owner-name {
    font-size: 1.3rem;
    color: var(--green-dark);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.profile-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media screen and (min-width: 768px) {
    .profile-row {
        display: grid;
        grid-template-columns: 100px 1fr;
        /* gap: 20px; */
    }
}

.profile-label {
    font-weight: 700;
    color: var(--green-dark);
    font-family: "Noto Serif JP", serif;
}

.profile-value {
    color: var(--muted);
    margin: 0;
}

.profile-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
    max-width: 840px;
    margin-inline: auto;
}

@media screen and (min-width: 768px) {
    .profile-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
        margin-top: 40px;
    }
}

@media screen and (min-width: 900px) {
    .profile-card {
        gap: 50px;
    }
}

.profile-image {
    width: 100%;
    margin-inline: auto;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(92, 74, 55, 0.12);
}

@media screen and (min-width: 768px) {
    .profile-image {
        width: 40%;
        margin-inline: 0;
        flex-shrink: 0;
    }
}

.profile-content {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .profile-content {
        flex: 1;
    }
}

/* =========================
  Salon
========================= */
.salon-section {
    background-color: var(--cream);
}

@media screen and (min-width: 900px) {
    .salon-section .inner {
        max-width: 1000px;
    }
}

.salon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
    margin-top: 30px;
}

@media screen and (min-width: 900px) {
    .salon-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
}

.salon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.salon-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(92, 74, 55, 0.08);
    margin-bottom: 16px;
    background-color: #f7f5f2;
}

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

.salon-caption {
    font-family: "Noto Serif JP", serif;
    font-size: 1.4rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.salon-btn-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.salon-btn-wrapper .button {
    width: 100%;
    max-width: 260px;
    min-width: 0;
}

@media screen and (min-width: 768px) {
    .salon-btn-wrapper .button {
        max-width: 190px;
    }
}


/* =========================
  Access
========================= */
.access {
    background-color: var(--cream);
}

.access h2 {
    text-align: center;
}

.access-content {
    margin-top: 30px;
}

@media screen and (min-width: 900px) {
    .access-content {
        margin-top: 40px;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 48px;
        align-items: start;
    }
}

.access-table {
    border-top: 1px solid var(--line);
    margin-bottom: 24px;
    font-size: 1.3rem;
}

@media screen and (min-width: 900px) {
    .access-table {
        margin-bottom: 0;
    }
}

.access-row {
    display: grid;
    grid-template-columns: 6.8em 1fr;
    gap: 0 24px;
    border-bottom: 1px solid var(--line);
}

@media screen and (max-width: 767px) {
    .access-row {
        gap: 0 12px;
    }
}

.access-head {
    padding: 12px 0;
    font-size: 1.5rem;
    color: var(--green-dark);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .access-head {
        padding: 8px 0;
    }
}

.access-body {
    padding: 12px 0;
    font-size: 1.5rem;
    color: var(--muted);
}

@media screen and (max-width: 767px) {
    .access-body {
        padding: 8px 0;
    }
}

.access-body span {
    display: inline-block;
}

.access-body .tel-link {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.access-body .access-note {
    display: block;
    font-size: 1.1rem;
    color: #8e837a;
    margin-top: 4px;
    line-height: 1.5;
}

.map-box {
    height: 400px;
    overflow: hidden;
    background: #e9e5df;
    position: relative;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font-weight: 700;
}

@media screen and (min-width: 900px) {
    .access .map-box {
        height: 380px;
    }
}

.access iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================
  Contact
========================= */
.contact {
    background-color: #DCCFCB;
    text-align: center;
}

.contact::before {
    display: none;
}

.contact>* {
    position: relative;
    z-index: 1;
}

.contact .button {
    margin: 24px auto 0;
    max-width: 260px;
}

.contact-text {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    color: var(--muted);
    line-height: 2;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
    .contact-text {
        font-size: 1.7rem;
        max-width: calc(100% - 40px);
    }
}

.contact-text span {
    display: block;
}

.contact-sub-text {
    margin-top: 2.4rem;
}

/* =========================
  Footer
========================= */
.footer {
    padding: 36px 0 32px;
    background-color: #625A55;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 52px 0 48px;
    }
}

.footer-logo-area {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 200px;
}

.footer-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-family: "Cormorant Garamond", serif;
    font-size: 3.0rem;
    line-height: 0.82;
    font-style: italic;
    letter-spacing: 0.02em;
    text-align: center;
    flex-shrink: 0;
}

.footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 18px;
}

.footer-sns__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brown);
    font-size: 1.0rem;
    font-weight: 700;
    letter-spacing: 0;
    border: 1px solid rgba(64, 53, 47, 0.24);
    box-shadow: 0 2px 8px rgba(64, 53, 47, 0.08);
}

.footer-sns__icon--instagram {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #c78172;
    mask-image: url("../images/instagram-icon.png");
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("../images/instagram-icon.png");
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

.footer-sns__link--line {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.footer-logo-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.0rem;
    line-height: 1;
    color: var(--brown);
    letter-spacing: 0.04em;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: #f7f1ed;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .footer-nav {
        gap: 12px 14px;
    }
}

.footer-nav a {
    color: #f7f1ed;
}

@media screen and (max-width: 767px) {
    .footer-nav a {
        text-align: center;
        white-space: nowrap;
    }
}

.copy {
    font-size: 1.3rem;
    color: #f7f1ed;
    font-weight: 500;
}

/* =========================
  Fixed CTA
========================= */
.fixed-cta {
    position: sticky;
    bottom: 0;
    z-index: 40;
    background: rgba(251, 248, 242, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 18px 14px;
}

.fixed-cta .button {
    height: 48px;
    max-width: 350px;
    margin: 0 auto;
}

/* =========================
  Page Top Button
========================= */
.page-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d6b7ac;
    background-color: rgba(251, 248, 242, 0.85);
    color: var(--brown);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease, color 0.3s ease;
}

.page-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.page-top-chevron {
    transition: transform 0.3s ease;
}

.page-top-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 2px;
}

@media screen and (min-width: 900px) {
    .page-top-btn {
        width: 54px;
        height: 54px;
        bottom: 30px;
        right: 30px;
    }

    .page-top-btn:hover {
        transform: translateY(-4px);
        border-color: var(--green-dark);
        color: var(--green-dark);
    }
}

@media screen and (max-width: 899px) {
    body:has(.fixed-cta) .page-top-btn {
        bottom: 90px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-top-btn {
        transition: opacity 0.2s ease;
        transform: none !important;
    }

    .page-top-btn.is-visible {
        transform: none !important;
    }

    .page-top-btn:hover {
        transform: none !important;
    }
}

/* =========================
  Accessibility
========================= */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--green-dark);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(103, 141, 122, 0.2);
}