@charset "UTF-8";

/* ===============
common
=================*/

html {
    font-size: 80%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background-color: #faf7f5;
}

body {
    font-family:
        "Noto Serif JP",
        Arial,
        sans-serf;
    font-style: normal;
    color: #373737;
    line-height: 1.5;
    text-align: center;
    overflow-x: clip;
}

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

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-padding {
    padding: 100px 0;
}

/* テキストリンク */
.btn-text {
    display: inline-block;
    font-size: 1.4rem;
    color: #373737;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-text:hover {
    color: #8b7d6b;
    transform: translateX(6px);
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

@media (max-width: 1023px) {
    .sp-only {
        display: inline;
    }

    .pc-only {
        display: none;
    }

    .wrapper {
        padding: 0 50px;
    }

    .section-padding {
        padding: 64px 0;
    }
}

/* ===============
Header
=================*/

.header {
    background-color: #faf7f5;
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
}

.header--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ---- PC（ベース） ---- */

.header {
    display: flex;
    align-items: center;
    padding: 0 100px;
    height: 280px;
}

.header__icon {
    flex-shrink: 0;
}

.header__icon img {
    height: 250px;
    width: auto;
    display: block;
}

.header__btn {
    display: none;
}

.nav {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 48px;
}

.nav__header {
    display: none;
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__item a {
    display: inline-block;
    font-size: 1.5rem;
    color: #373737;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__item a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.nav__item--sns {
    margin-left: 24px;
}

.nav__item--sns img {
    width: 26px;
    height: 26px;
    display: block;
}

.nav__item--booking a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #66605C;
    color: #fff;
    border-radius: 999px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.nav__item--booking a::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    background-image: url("../images/icon-calendar.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: brightness(0) invert(1);
}

.nav__item--booking a:hover {
    background-color: #2d2520;
    color: #fff;
    transform: none;
    opacity: 1;
}

/* ---- PC（1279px以下）：コンパクト設定 ---- */
@media (max-width: 1279px) {

    .header {
        padding: 0 40px;
    }

    .nav {
        margin-left: 16px;
    }

    .nav__list {
        gap: 16px;
    }

}

/* ---- モバイル（1023px以下） ---- */
@media (max-width: 1023px) {

    /* ヘッダー */
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 80px;
    }

    .header__icon img {
        height: 70px;
        width: auto;
        display: block;
    }

    /* ハンバーガーボタン */
    .header__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
    }

    .header__btn img {
        width: 28px;
        height: 28px;
    }

    /* ナビ（スライドイン） */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100dvh;
        background-color: #faf7f5;
        z-index: 200;
        overflow-y: auto;
        padding: 0 20px 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        flex: none;
        flex-direction: column;
        margin-left: 0;
        align-items: stretch;
    }

    .nav.is-open {
        transform: translateX(0);
    }

    /* ナビ内ヘッダー（ロゴ＋閉じるボタン） */
    .nav__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 24px 0;
        margin-bottom: 8px;
        position: sticky;
        top: 0;
        background-color: #faf7f5;
        z-index: 1;
    }

    .nav__topic img {
        height: 48px;
        width: auto;
    }

    .nav__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav__btn img {
        width: 24px;
        height: 24px;
    }

    /* ナビリスト（縦並び） */
    .nav__list {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav__item {
        border-bottom: 1px solid rgba(51, 49, 48, 0.12);
    }

    .nav__item a {
        display: block;
        padding: 16px 4px;
        font-size: 1.4rem;
        color: #373737;
        text-decoration: none;
        letter-spacing: 0.05em;
    }

    /* SNSアイコン */
    .nav__item--sns {
        border-bottom: none;
        margin-top: 28px;
    }

    .nav__item--sns img {
        width: 28px;
        height: 28px;
        display: block;
    }

    /* 予約ボタン */
    .nav__item--booking {
        border-bottom: none;
        margin-top: 16px;
    }

    .nav__item--booking a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 24px;
        background-color: #66605C;
        color: #fff;
        border-radius: 999px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        text-decoration: none;
    }

    /* オーバーレイ（JS で追加される） */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 150;
    }

    .nav-backdrop.is-open {
        display: block;
    }

}

/* ===============
MV（Hero）
=================*/

/* ラッパー：左右2分割 */
.mv__wrapper {
    display: flex;
    min-height: 464px;
}

@keyframes mv-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- 左：テキストエリア ---- */
.mv__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background-color: #faf7f5;
    animation: mv-fade-in 2s ease-out 0.3s both;
    position: relative;
}

.mv__subcopy-wrap {
    display: contents;
}

.mv__illust {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 160px;
    height: auto;
    opacity: 1;
    pointer-events: none;
}

.mv__title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    margin-left: 120px;
}

.mv__logo {
    position: relative;
    isolation: isolate;
    font-size: 3rem;
    font-weight: 400;
    color: #373737;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.mv__logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 300px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 210, 179, 0.95) 0%,
        rgba(255, 210, 179, 0)  70%
    );
    z-index: -1;
    pointer-events: none;
}

.mv__copy {
    position: relative;
    z-index: 1;
    font-size: 2.0rem;
    font-weight: 500;
    color: rgba(55, 55, 55, 0.85);
    letter-spacing: 0.08em;
    line-height: 1.9;
}

.mv__subcopy {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(55, 55, 55, 0.65);
    letter-spacing: 0.06em;
    line-height: 2.0;
}

/* ---- 右：スライダー ---- */
.mv__visual {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.mv__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.mv__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2.5s ease;
}

.mv__slide.is-active {
    opacity: 1;
}

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

.mv__img--center-bottom {
    object-position: center 70%;
}


/* ---- モバイル ---- */
@media (max-width: 1023px) {

    .mv__wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .mv__content {
        width: 100%;
        padding: 48px 24px 60px;
        justify-content: center;
        background-color: #faf7f5;
    }

    .mv__title {
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-left: 0;
    }

    .mv__logo {
        font-size: 2.4rem;
        color: #373737;
    }

    /* モバイル：グラデーションサイズを調整 */
    .mv__logo::before {
        width: 400px;
        height: 160px;
    }

    .mv__copy {
        font-size: 1.7rem;
        color: rgba(55, 55, 55, 0.85);
    }

    .mv__subcopy {
        font-size: 1.3rem;
        color: rgba(55, 55, 55, 0.65);
    }

    .mv__subcopy-wrap {
        display: inline-block;
        position: relative;
    }

    .mv__illust {
        position: absolute;
        width: 60px;
        left: -40px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    /* 画像を上・テキストを下に */
    .mv__visual {
        order: -1;
        width: 100%;
        aspect-ratio: 4 / 3;
    }

}

@media (max-width: 375px) {
    .mv__illust {
        width: 40px;
    }
}

/* ===============
Section Divider
=================*/

.section-divider {
    position: relative;
    text-align: left;
    padding: 0 20px;
    margin-top: -120px;
    margin-bottom: -80px;
    z-index: 10;
}

.section-divider__illust {
    width: 450px;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
}

.section-divider--right {
    text-align: right;
    margin-top: 0px;
    margin-bottom: -120px;
    padding-right: 40px;
}

.section-divider--right .section-divider__illust {
    width: 180px;
}

@media (max-width: 1023px) {
    .section-divider {
        margin-left: -40px;
        padding: 0;
        margin-top: -80px;
        margin-bottom: -100px;
    }

    .section-divider__illust {
        width: 420px;
    }

    .section-divider--right {
        margin-top: 0;
        margin-bottom: -80px;
    }

    .section-divider--right .section-divider__illust {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .section-divider__illust {
        width: 280px;
    }

    .section-divider--right .section-divider__illust {
        width: 120px;
    }
}

/* ===============
About
=================*/

.about {
    margin-top: 100px;
}

.about__wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    text-align: left;
}

/* ---- 左：写真2枚（左上・右下） ---- */
.about__images {
    position: relative;
    flex-shrink: 0;
    width: 44%;
    aspect-ratio: 5 / 6;
}

.about__img-item {
    position: absolute;
    margin: 0;
    overflow: hidden;
}

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

.about__img-item--top {
    top: -60px;
    left: 0;
    width: 62%;
    aspect-ratio: 3 / 4;
}

.about__img-item--bottom {
    bottom: 0;
    right: 0;
    width: 73%;
    aspect-ratio: 4 / 3;
}

/* ---- 右：テキストコンテンツ ---- */
.about__content {
    flex: 1;
    min-width: 0;
    position: relative;
}

.about__header {
    margin-bottom: 32px;
}

.about__title-en {
    position: relative;
    isolation: isolate;
    display: block;
    font-size: 5.6rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* グラデーション装飾 */
.about__title-en::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 210, 179, 0.65) 0%,
        rgba(255, 210, 179, 0) 70%
    );
    pointer-events: none;
    z-index: -1;
}

.about__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

.about__text {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    line-height: 2.0;
    color: #373737;
    margin-bottom: 40px;
    text-align: left;
}

.about__link {
    position: relative;
    z-index: 1;
    text-align: right;
}

/* ---- モバイル ---- */
@media (max-width: 1023px) {

    .about {
        margin-top: 50px;
    }

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

    .about__images {
        width: 100%;
        aspect-ratio: 4 / 4.5;
    }

    .about__img-item--top {
        width: 57%;
    }

    .about__img-item--bottom {
        width: 72%;
    }

    .about__content {
        width: 100%;
    }

    .about__title-en::before {
        width: 240px;
        height: 200px;
        left: 10%;
    }

    .about__title-en {
        font-size: 4rem;
    }

    .about__text {
        font-size: 1.4rem;
    }

}

/* ===============
Commitment
=================*/

.commitment {
  position: relative;
  overflow: hidden;
}

.commitment__wrapper {
  position: relative;
}

/* ---- セクションヘッダー ---- */
.commitment__header {
    text-align: center;
    margin-bottom: 56px;
}

.commitment__title-en {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.commitment__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

/* ---- 3カラムグリッド ---- */
.commitment__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ---- 各アイテム ---- */
.commitment__item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.commitment__number {
    display: block;
    width: fit-content;
    font-family: "Mrs Saint Delafield", cursive;
    font-size: 2.8rem;
    font-weight: 300;
    color: #8b7d6b;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 28px 28px 0;
    margin-top: -18px;
    margin-left: -8px;
    transform: rotate(-6deg);
    transform-origin: left center;
}

.commitment__name {
    font-size: 1.6rem;
    font-weight: 500;
    color: #373737;
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding: 12px 28px 16px;
    border-bottom: 1px solid rgba(139, 125, 107, 0.15);
}

.commitment__text {
    font-size: 1.4rem;
    line-height: 2.0;
    color: #373737;
    text-align: left;
    padding: 20px 28px 32px;
}

/* ---- モバイル ---- */
@media (max-width: 1023px) {

    .commitment::before,
    .commitment::after {
        width: 100px;
        height: 100px;
    }

    .commitment__header {
        margin-bottom: 40px;
    }

    .commitment__title-en {
        font-size: 3rem;
    }

    .commitment__list {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 480px;
        margin: 0 auto;
    }

    .commitment__number {
        padding: 24px 24px 0;
    }

    .commitment__name {
        padding: 10px 24px 14px;
    }

    .commitment__text {
        padding: 16px 24px 28px;
    }

}

/* ===============
Limited Menu
=================*/

/* --- セクション本体：前のセクションに覆い被さる --- */
.limited-menu {
    position: relative;
    z-index: 2;
    background-color: #FFF0E6;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
}

/* --- セクションヘッダー --- */
.limited-menu__header {
    text-align: center;
    margin-bottom: 56px;
}

.limited-menu__title-en {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.limited-menu__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

/* --- スライダー --- */
.limited-menu__slider {
    overflow: hidden;
}

.limited-menu__track {
    display: flex;
    gap: 32px;
    will-change: transform;
    transition: transform 0.7s ease;
}

/* --- 各アイテム --- */
.limited-menu__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.limited-menu__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin: 0;
}

.limited-menu__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.limited-menu__img:hover img {
    transform: scale(1.04);
}

.limited-menu__name {
    font-size: 1.8rem;
    font-weight: 400;
    color: #373737;
    letter-spacing: 0.05em;
}

.limited-menu__category {
    display: block;
    font-size: 1.2rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
    margin-top: -8px;
}

.limited-menu__meta {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    font-size: 1.3rem;
    color: #373737;
}

.limited-menu__duration {
    color: #8b7d6b;
}

.limited-menu__price {
    font-weight: 500;
}

.limited-menu__text {
    font-size: 1.4rem;
    line-height: 2.0;
    color: #373737;
    flex: 1;
    text-align: left;
}

.limited-menu__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 12px 32px;
    border: 1px solid rgba(45, 37, 32, 0.35);
    border-radius: 999px;
    font-size: 1.3rem;
    color: #373737;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.limited-menu__button:hover {
    background-color: #2d2520;
    border-color: #2d2520;
    color: #faf7f5;
}

/* --- センターカード強調（PC） --- */
.limited-menu__item {
    transform: scale(0.88);
    opacity: 0.5;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.limited-menu__item.is-center {
    transform: scale(1);
    opacity: 1;
}

/* --- ドットナビゲーション --- */
.limited-menu__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.limited-menu__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(45, 37, 32, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.limited-menu__dot.is-active {
    background-color: #2d2520;
    transform: scale(1.25);
}

/* --- モバイル --- */
@media (max-width: 1023px) {

    .limited-menu {
        border-radius: 24px 24px 0 0;
        margin-top: -24px;
    }

    .limited-menu__header {
        margin-bottom: 40px;
    }

    .limited-menu__title-en {
        font-size: 3rem;
    }

    .limited-menu__img {
        aspect-ratio: 4 / 3;
    }

    .limited-menu__item {
        transform: none;
        opacity: 1;
    }

}

/* ===============
Menu
=================*/

.menu {
    background: linear-gradient(
        180deg,
        #faf7f5  0%,
        #FFF0E6 50%,
        #faf7f5 100%
    );
}

.menu__header {
    text-align: center;
    margin-bottom: 72px;
}

.menu__title-en {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.menu__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.menu__content {
    display: flex;
    align-items: center;
    gap: 56px;
}

.menu__item--reverse .menu__content {
    flex-direction: row-reverse;
}

.menu__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.menu__name-ja {
    font-size: 2.4rem;
    font-weight: 400;
    color: #373737;
    letter-spacing: 0.05em;
}

.menu__name-en {
    display: block;
    font-size: 1.2rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
    margin-top: -8px;
}

.menu__text {
    font-size: 1.4rem;
    line-height: 2.0;
    color: #373737;
    text-wrap: balance;
    text-align: left;
}

.menu__img {
    flex: 0 0 45%;
    margin: 0;
    overflow: hidden;
}

.menu__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.menu__img:hover img {
    transform: scale(1.03);
}

.menu__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: #66605C;
    color: #faf7f5;
    border-radius: 999px;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    margin-top: 8px;
    transition: background-color 0.3s ease;
}

.menu__button:hover {
    background-color: #2d2520;
}

@media (max-width: 1023px) {

    .menu__title-en {
        font-size: 3rem;
    }

    .menu__header {
        margin-bottom: 48px;
        padding-top: 40px;
    }

    .menu__list {
        gap: 56px;
    }

    .menu__content,
    .menu__item--reverse .menu__content {
        flex-direction: column;
        gap: 24px;
    }

    .menu__img {
        order: -1;
        flex: none;
        width: 100%;
    }

    .menu__name-ja {
        font-size: 1.8rem;
    }

    .menu__body {
        width: 100%;
    }

    .menu__button {
        align-self: center;
    }

}

/* ===============
Product
=================*/

.product {
    background-color: #faf7f5;
}

.product__header {
    text-align: center;
    margin-bottom: 64px;
}

.product__title-en {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.product__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

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

.product__item {
    display: flex;
    flex-direction: column;
}

.product__img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
}

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

.product__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
}

.product__name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #373737;
    letter-spacing: 0.05em;
}

.product__category {
    font-size: 1.2rem;
    color: #8b7d6b;
    letter-spacing: 0.05em;
}

.product__price {
    font-size: 1.3rem;
    color: #373737;
    letter-spacing: 0.03em;
}

.product__footer {
    text-align: center;
    margin-top: 56px;
}

.product__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: #66605C;
    color: #faf7f5;
    border-radius: 999px;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.product__button:hover {
    background-color: #2d2520;
}

@media (max-width: 1023px) {

    .product__title-en {
        font-size: 3rem;
    }

    .product__header {
        margin-bottom: 48px;
    }

    .product__list {
        grid-template-columns: 1fr;
        gap: 48px;
    }

}

/* ===============
Staff
=================*/

.staff__header {
    text-align: center;
    margin-bottom: 64px;
}

.staff__title-en {
    position: relative;
    isolation: isolate;
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* グラデーション装飾（About と同じ） */
.staff__title-en::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 210, 179, 0.65) 0%,
        rgba(255, 210, 179, 0) 70%
    );
    pointer-events: none;
    z-index: -1;
}

.staff__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

.staff__content {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.staff__img {
    flex: 0 0 48%;
    margin: 0;
    overflow: hidden;
}

.staff__img img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.staff__img:hover img {
    transform: scale(1.03);
}

.staff__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.staff__text {
    font-size: 1.4rem;
    line-height: 2.0;
    color: #373737;
    text-align: left;
}

@media (max-width: 1023px) {

    .staff__header {
        margin-bottom: 48px;
    }

    .staff__content {
        flex-direction: column;
        gap: 32px;
    }

    .staff__img {
        flex: none;
        width: 100%;
    }

}

/* ===============
News
=================*/

.news {
    background-color: #faf7f5;
}

/* --- ヘッダー --- */
.news__header {
    text-align: center;
    margin-bottom: 64px;
}

.news__title-en {
    position: relative;
    isolation: isolate;
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.news__title-en::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 210, 179, 0.65) 0%, rgba(255, 210, 179, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.news__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

/* --- リスト --- */
.news__list {
    border-top: 1px solid rgba(45, 37, 32, 0.12);
}

.news__link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    color: #373737;
    text-decoration: none;
    border-bottom: 1px solid rgba(45, 37, 32, 0.12);
    transition: color 0.4s ease;
}

.news__link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s cubic-bezier(.65, 0, .35, 1);
}

/* --- メタ（日付＋テキスト） --- */
.news__meta {
    flex: 1;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.news__date {
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 32px;
    border-right: 1px solid rgba(45, 37, 32, 0.2);
    transition: color 0.4s ease;
}

.news__text {
    font-size: 1.4rem;
    color: #373737;
    letter-spacing: 0.03em;
    padding-left: 32px;
    transition: color 0.4s ease;
}

/* --- 矢印 --- */
.news__arrow {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.news__arrow-icon {
    width: 16px;
    height: 16px;
    display: block;
}

/* --- ホバー --- */
.news__link:hover {
    color: #373737;
}

.news__link:hover::before {
    transform: scaleX(1);
}

.news__link:hover .news__meta {
    transform: translateY(-3px);
}

.news__link:hover .news__arrow {
    transform: translateX(6px);
}

/* --- フッター --- */
.news__footer {
    text-align: right;
    margin-top: 60px;
}

.news__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid rgba(45, 37, 32, 0.35);
    border-radius: 999px;
    font-size: 1.4rem;
    color: #373737;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.news__button:hover {
    background-color: #66605C;
    border-color: #66605C;
    color: #faf7f5;
}

.news__button:hover .news__arrow {
    transform: translateX(4px);
}

@media (max-width: 1023px) {
    .news__title-en {
        font-size: 3rem;
    }

    .news__title-en::before {
        width: 240px;
        height: 200px;
    }

    .news__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .news__date {
        padding-right: 0;
        border-right: none;
    }

    .news__text {
        padding-left: 0;
    }

    .news__footer {
        text-align: center;
    }
}

/* ===============
Column
=================*/

.column__header {
    text-align: center;
    margin-bottom: 56px;
}

.column__title-en {
    position: relative;
    isolation: isolate;
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.column__title-en::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 210, 179, 0.65) 0%, rgba(255, 210, 179, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.column__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

/* --- カードアイテム --- */
.column__item {
    border: 1px solid #373737;
    overflow: hidden;
}

/* --- カードグリッド --- */
.column__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* --- カードリンク --- */
.column__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* --- カード画像 --- */
.column__image {
    overflow: hidden;
    margin: 0;
}

.column__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.column__link:hover .column__image img {
    transform: scale(1.03);
}

/* --- カードコンテンツ --- */
.column__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px 12px;
    flex: 1;
    text-align: left;
}

.column__date {
    font-size: 1.2rem;
    color: #8b7d6b;
    letter-spacing: 0.08em;
}

.column__title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #373737;
    line-height: 1.7;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.column__link:hover .column__title {
    color: #373737;
}

/* --- カード下部メタ（矢印） --- */
.column__meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 20px 16px;
}

.column__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.column__arrow-icon {
    width: 18px;
    height: 18px;
    stroke: #8b7d6b;
    fill: none;
    stroke-width: 1.5;
}

.column__link:hover .column__arrow {
    transform: translateX(4px);
}

/* --- フッター（右寄せボタン） --- */
.column__footer {
    text-align: right;
    margin-top: 48px;
}

.column__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid rgba(45, 37, 32, 0.35);
    border-radius: 999px;
    font-size: 1.3rem;
    color: #373737;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.column__button:hover {
    background-color: #66605C;
    border-color: #66605C;
    color: #faf7f5;
}

.column__button-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.column__button:hover .column__button-arrow {
    transform: translateX(4px);
}

/* --- モバイル --- */
@media (max-width: 1023px) {

    .column__header {
        margin-bottom: 40px;
    }

    .column__title-en {
        font-size: 3rem;
    }

    .column__title-en::before {
        width: 240px;
        height: 200px;
    }

    .column__list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column__footer {
        margin-top: 36px;
    }

}

/* ===============
Access
=================*/

.access {
    background-color: rgb(255, 240, 230);
}

.access__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 100px;
}

/* --- ヘッダー --- */
.access__header {
    text-align: center;
    margin-bottom: 56px;
}

.access__title {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.access__subtitle {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
    margin: 0;
}

/* --- マップ --- */
.access__map {
    width: 100%;
    margin-bottom: 56px;
}

.access__map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

/* --- ボディ：2カラム --- */
.access__body {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    text-align: left;
}

/* --- サロン情報（左カラム） --- */
.access__info {
    flex: 0 0 44%;
}

.access__info-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #373737;
    line-height: 1.7;
    letter-spacing: 0.03em;
    margin: 0 0 20px;
}

.access__list {
    margin: 0;
    padding: 0;
}

.access__item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(45, 37, 32, 0.1);
}

.access__item:first-child {
    border-top: 1px solid rgba(45, 37, 32, 0.1);
}

.access__label {
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.05em;
    flex: 0 0 5.5em;
    line-height: 1.7;
}

.access__text {
    font-size: 1.4rem;
    color: #373737;
    letter-spacing: 0.03em;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

/* --- アクセス方法（右カラム） --- */
.access__route {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.access__route-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #373737;
    letter-spacing: 0.03em;
    margin: 0 0 10px;
    line-height: 1.7;
}

.access__route-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.access__route-item {
    font-size: 1.4rem;
    color: #373737;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* --- モバイル --- */
@media (max-width: 1023px) {

    .access__inner {
        padding: 64px 24px;
    }

    .access__header {
        margin-bottom: 40px;
    }

    .access__title {
        font-size: 3rem;
    }

    .access__map {
        margin-bottom: 40px;
    }

    .access__map iframe {
        height: 280px;
    }

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

    .access__info {
        flex: none;
        width: 100%;
    }

}

/* ===============
FAQ
=================*/

.faq {
    background-color: #faf7f5;
    margin-top: 60px;
}

/* --- ヘッダー --- */
.faq__header {
    text-align: center;
    margin-bottom: 64px;
}

.faq__title-en {
    position: relative;
    isolation: isolate;
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.faq__title-en::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 210, 179, 0.65) 0%, rgba(255, 210, 179, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.faq__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

/* --- リスト --- */
.faq__list {
    border-top: 1px solid rgba(45, 37, 32, 0.12);
}

.faq__item {
    border-bottom: 1px solid rgba(45, 37, 32, 0.12);
}

/* --- 質問ボタン --- */
.faq__question {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #373737;
    transition: opacity 0.2s ease;
}

.faq__question:hover {
    opacity: 0.7;
}

/* --- Q / A ラベル --- */
.faq__label {
    font-size: 1.6rem;
    font-weight: 400;
    color: #8b7d6b;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    width: 1.6em;
    line-height: 1;
}

.faq__label--answer {
    color: #373737;
    padding-top: 2px;
}

/* --- 質問テキスト --- */
.faq__question-text {
    flex: 1;
    font-size: 1.5rem;
    color: #373737;
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin: 0;
}

/* --- トグルアイコン（＋ → ─） --- */
.faq__icon {
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 16px;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: #2d2520;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* 横線（常に表示） */
.faq__icon::before {
    width: 16px;
    height: 1px;
}

/* 縦線（閉じているとき表示） */
.faq__icon::after {
    width: 1px;
    height: 16px;
}

/* is-open：縦線をフェードアウト */
.faq__item.is-open .faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* --- 回答アニメーション（grid-template-rows トリック） --- */
.faq__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__answer-wrap {
    max-height: 500px;
}

/* --- 回答エリア --- */
.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
    text-align: left;
}

/* --- 回答コンテンツ --- */
.faq__answer-text {
    font-size: 1.4rem;
    color: #373737;
    line-height: 2.0;
    letter-spacing: 0.03em;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.faq__answer-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.faq__answer-note {
    font-size: 1.4rem;
    font-weight: 500;
    color: #373737;
    letter-spacing: 0.03em;
    margin: 0;
}

.faq__answer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq__answer-list-item {
    font-size: 1.4rem;
    color: #373737;
    line-height: 1.7;
    letter-spacing: 0.03em;
    padding-left: 1em;
    text-indent: -1em;
}

/* --- モバイル --- */
@media (max-width: 1023px) {

    .faq__header {
        margin-bottom: 40px;
    }

    .faq__title-en {
        font-size: 3rem;
    }

    .faq__title-en::before {
        width: 240px;
        height: 200px;
    }

    .faq__question {
        padding: 20px 0;
        gap: 14px;
    }

    .faq__question-text {
        font-size: 1.4rem;
    }

}

/* ===============
Contact
=================*/

.contact {
    background-color: #faf7f5;
}

/* --- ヘッダー --- */
.contact__header {
    text-align: center;
    margin-bottom: 64px;
}

.contact__title-en {
    display: block;
    font-size: 4.8rem;
    font-weight: 300;
    color: #373737;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.contact__title-ja {
    display: block;
    font-size: 1.3rem;
    color: #8b7d6b;
    letter-spacing: 0.12em;
}

/* --- フォームカード --- */
.contact__inner {
    max-width: 780px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 56px 64px;
}

/* --- 送信結果モーダル --- */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(45, 37, 32, 0.5);
}

.contact-modal__box {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 440px;
    padding: 48px 32px;
    background-color: #faf7f5;
    border-radius: 8px;
    text-align: center;
    transform: translateY(12px);
    transition: transform 0.3s ease;
}

.contact-modal.is-open .contact-modal__box {
    transform: translateY(0);
}

.contact-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 2.2rem;
    line-height: 1;
    color: #8b7d6b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-modal__close:hover {
    color: #373737;
}

.contact-modal__text {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: #373737;
    line-height: 1.8;
}

.contact-modal--error .contact-modal__text {
    color: #c83c3c;
}

/* --- フォーム全体 --- */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- フォームグループ（ラベル左・インプット右） --- */
.contact__form-group {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact__label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 180px;
    padding-top: 13px;
    font-size: 1.4rem;
    color: #373737;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
}

/* 必須バッジ */
.contact__required {
    display: inline-block;
    padding: 3px 8px;
    background-color: #66605C;
    color: #FFFFFF;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-radius: 3px;
    flex-shrink: 0;
    line-height: 1.4;
}

/* --- 入力フィールド共通 --- */
.contact__input,
.contact__textarea {
    flex: 1;
    padding: 12px 16px;
    background-color: #FFFFFF;
    border: 1px solid rgba(45, 37, 32, 0.2);
    font-size: 1.4rem;
    color: #373737;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(45, 37, 32, 0.3);
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: rgba(45, 37, 32, 0.45);
}

.contact__textarea {
    height: 160px;
    resize: vertical;
    line-height: 1.7;
}

/* --- 入力ラッパー --- */
.contact__input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__input-wrap .contact__input,
.contact__input-wrap .contact__textarea {
    flex: none;
    width: 100%;
}

/* --- エラーメッセージ --- */
.contact__error-msg {
    display: none;
    font-size: 1.2rem;
    color: #c0392b;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.contact__error-msg.is-visible {
    display: block;
}

/* --- エラー状態のフィールド --- */
.contact__input.is-error,
.contact__textarea.is-error {
    border-color: #c0392b;
    background-color: rgba(192, 57, 43, 0.03);
}

/* --- プライバシー同意 --- */
.contact__privacy {
    text-align: left;
}

/* --- 送信確認 --- */
.contact__confirm {
    text-align: left;
}

.contact__confirm-note {
    margin: 8px 0 0;
    font-size: 1.2rem;
    color: #8b7d6b;
    letter-spacing: 0.03em;
}

.contact__privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    color: #373737;
    letter-spacing: 0.03em;
    cursor: pointer;
}

.contact__checkbox {
    -webkit-appearance: auto;
    appearance: auto;
    width: 16px;
    height: 16px;
    accent-color: #66605C;
    cursor: pointer;
    flex-shrink: 0;
}

.contact__privacy-link {
    color: #373737;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact__privacy-link:hover {
    opacity: 0.7;
}

/* --- 送信ボタン --- */
.contact__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: center;
    width: 340px;
    padding: 14px 40px;
    background-color: #66605C;
    color: #FFFFFF;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.contact__button:hover {
    background-color: #66605C;
}

.contact__button-icon {
    font-size: 2rem;
    line-height: 1;
    margin-left: auto;
}

/* --- モバイル --- */
@media (max-width: 1023px) {

    .contact__header {
        margin-bottom: 40px;
    }

    .contact__title-en {
        font-size: 3rem;
    }

    .contact__inner {
        padding: 40px 24px;
    }

    .contact__form {
        gap: 24px;
    }

    .contact__form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .contact__label {
        flex: none;
        padding-top: 0;
    }

    .contact__button {
        width: 100%;
        align-self: stretch;
    }

}

/* ===============
Page Top
=================*/

.page-top {
    position: fixed;
    right: 24px;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 100;
}

.page-top__line {
    width: 1px;
    height: 60px;
    background-color: rgba(55, 55, 55, 0.25);
}

.page-top__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #8b7d6b;
}

.page-top__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    color: #8b7d6b;
}

.page-top__letter {
    display: inline-block;
    line-height: 1;
    margin: -1px 0;
    transform: rotate(90deg);
}

.page-top__gap {
    height: 4px;
}

@media (max-width: 1023px) {
    .page-top {
        display: none;
    }
}


/* ===============
Breadcrumb
=================*/

.breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid rgba(45, 37, 32, 0.1);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
}

.breadcrumb__item a {
    color: #8b7d6b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
    color: #373737;
    text-decoration: underline;
}

.breadcrumb__current {
    color: #373737;
}

.breadcrumb__sep {
    margin: 0 10px;
    color: rgba(45, 37, 32, 0.3);
}

@media (max-width: 1023px) {
    .breadcrumb {
        padding: 14px 0;
    }

    .breadcrumb__item {
        font-size: 1.1rem;
    }

    .breadcrumb__sep {
        margin: 0 6px;
    }
}


/* ===============
Footer
=================*/

.footer {
    border-top: 1px solid rgba(45, 37, 32, 0.15);
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 0 60px;
}

/* ロゴ */
.footer__logo {
    font-size: 2.0rem;
    letter-spacing: 0.1em;
    color: #373737;
    font-weight: 400;
    flex: 0 0 auto;
    line-height: 1.4;
}

.footer__brand {
    flex: 0 0 auto;
    text-align: center;
}

.footer__logo-img {
    display: block;
    width: 80px;
    height: auto;
    margin: 16px auto 0;
}

/* ナビゲーション */
.footer__nav {
    display: flex;
    gap: 48px;
    flex: 1;
    justify-content: center;
}

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.footer__nav-link {
    font-size: 1.4rem;
    color: #373737;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.footer__nav-link:hover {
    opacity: 0.5;
}

/* アクション（ボタン＋SNS） */
.footer__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    flex: 0 0 260px;
}

.footer__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: #66605C;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
    transition: background-color 0.3s ease;
}

.footer__button:hover {
    background-color: #2d2520;
}

.footer__button-icon {
    width: 20px;
    height: 20px;
}

.footer__sns {
    display: inline-block;
    margin-top: 4px;
    line-height: 0;
}

.footer__sns-icon {
    width: 44px;
    height: 44px;
}

/* 下部バー */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(45, 37, 32, 0.15);
}

.footer__privacy {
    font-size: 1.2rem;
    color: #373737;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.footer__privacy:hover {
    opacity: 0.5;
}

.footer__copyright {
    font-size: 1.2rem;
    color: #373737;
    letter-spacing: 0.05em;
}

/* ---- モバイル ---- */
@media (max-width: 1023px) {

    .footer__inner {
        flex-direction: column;
        align-items: center;
        padding: 48px 0 36px;
        gap: 32px;
    }

    .footer__logo {
        font-size: 1.8rem;
        text-align: center;
    }

    .footer__nav {
        width: 100%;
        gap: 32px;
        justify-content: center;
    }

    .footer__nav-list {
        gap: 14px;
    }

    .footer__nav-link {
        font-size: 1.3rem;
    }

    .footer__actions {
        width: 100%;
        flex: none;
        align-items: center;
    }

    .footer__button {
        width: 100%;
        max-width: 320px;
        font-size: 1.3rem;
    }

    .footer__bottom {
        justify-content: center;
        gap: 24px;
        padding: 16px 0 24px;
    }

}


/* ===============
Scroll Fade-in
=================*/

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* ===============
CJK keep-all (desktop only - see mobile fallback rationale)
=================*/

@media (min-width: 1024px) {
    .about__text {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: strict;
        font-size: 1.6rem;
    }

    .commitment__text {
        font-size: 1.6rem;
    }

    .limited-menu__text {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: strict;
        font-size: 1.6rem;
    }

    .menu__text {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: strict;
        font-size: 1.6rem;
    }

    .staff__text {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: strict;
        font-size: 1.6rem;
    }

    .faq__answer-text {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-break: strict;
        font-size: 1.6rem;
    }
}
