body.active {
    overflow: hidden;
}

/* === ヘッダー全体 === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    /* 他要素より前に */
    transition: background 0.3s ease;
}


/* === ロゴ === */

.header__logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 700px) {
    .header {
        padding: 30px 25px 30px 5px;
    }

    .header__logo img {
        max-width: 150px;
    }
}


.header__logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.header__logo a:hover {
    opacity: 0.7;
    /* ← 透明度で薄く見せる */
}


/* === 右側ナビ === */
.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* === RESERVATION ボタン === */
.header__reservation {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #6f5b45;
    border-radius: 40px;
    color: #6f5b45;
    font-size: 18px;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.header__reservation:hover {
    background-color: rgba(111, 91, 69, 0.1);
}

@media screen and (max-width: 1200px) {
    .header__reservation {
        font-size: 0;
        border: none;
        height: 42px;
        background: url("/image/reservation_icon.png") no-repeat center / contain;
        display: inline-block;
        border-radius: 0px;
        position: relative;
        top: -3px;
    }

    .header__nav-list {
        gap: 15px;
    }

    .header__reservation:hover {
        background-color: rgba(0, 0, 0, 0);
        opacity: 0.7;
    }
}

@media screen and (max-width: 700px) {
    .header__reservation {
        height: 35px;
        top: -3px;
    }

    .header__nav-list {
        gap: 5px;
    }
}


/* === ハンバーガーメニュー === */

.header__menu {
    position: relative;
    width: 69px;
    height: 45px;
    border: 2px solid #6f5b45;
    border-radius: 25px;
    /* ← カプセル型 */
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 1001;
}

.header__menu span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #6f5b45;
    border-radius: 2px;
    transition: all 0.5s ease;
}

.header__menu:hover {
    background-color: rgba(111, 91, 69, 0.1);
}

@media screen and (max-width: 700px) {
    .header__menu {
        width: 50px;
        height: 36px;
        gap: 5px;
    }
}

/* ========================= */
/* 開いた時（バツ印に変化） */
/* ========================= */
.header__menu.active {
    background-color: rgba(111, 91, 69, 0.15);
}

/* ========================= */
/* 開いた時（バツ印に変化）のspanの色を白色にする */
/* ========================= */
.header__menu.active {
    background-color: rgba(224, 218, 210, 0.15);
    /* 【枠線の色を白に変更】*/
    border-color: #FFFBF4;
}

/* 【バツ印の線の色を白に変更】*/
.header__menu.active span {
    background-color: #FFFBF4;
}

.header__menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header__menu.active span:nth-child(2) {
    opacity: 0;
}

.header__menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 700px) {
    .header__menu.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__menu.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ========================= */
/* ドロワーメニューの設定   */
/* ========================= */
.header__drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background: linear-gradient(#b99850, #90702b);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
}

@media screen and (max-width: 1200px) {
    .header__drawer {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .header__drawer {
        width: 80%;
    }
}

.header__drawer.active {
    right: 0;
}

.header__drawer a {
    color: #FFFBF4;
    text-decoration: none;
    font-size: 20px;
    line-height: 180%;
    letter-spacing: 0.2em;
    transition: opacity 0.3s;
}

.header__drawer Ul {
    gap: 35px;
}

.header__drawer a:hover {
    opacity: 0.7;
}

.header_box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.header_insta,
.header_line {
    font-size: 20px;
    color: #FFFBF4;
    width: 120px;
    height: 95px;
    letter-spacing: 0;
    border: 1.5px solid #FFFBF4;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    /* パディング込みでサイズ固定 */
    padding: 32px 35px;
    transition: transform 1s ease, background 0.5s ease, color 0.5s ease;
}

.header_insta:hover,
.header_line:hover {
    background: #b2a390;
    color: #F3F3F3;
}

.header__drawer ul {
    /* セレクタを .header__drawer ul に修正 */
    /* 縦並びのリストアイテムに gap を適用するための設定 */
    display: flex;
    flex-direction: column;
    gap: 35px;
    /* これで li 要素間に 35px の隙間ができます */
}

@media screen and (max-width: 1200px) {
    .header__drawer a {
        font-size: 18px;
    }

    .header__drawer Ul {
        gap: 25px;
    }

    .header_insta,
    .header_line {
        font-size: 18px;
    }
}

@media screen and (max-width: 700px) {
    .header__drawer Ul {
        gap: 20px;
    }

    .header_insta,
    .header_line {
        font-size: 18px;
        width: 100px;
        height: 80px;
        border-radius: 20px;
    }

    .header_box {
        gap: 20px;
        margin-top: 60px;
    }
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bg.active {
    opacity: 1;
    visibility: visible;
}



/* MVコンテナ */
.mv {
    position: relative;
    width: 100%;
    max-height: 100dvh;
    overflow: hidden;
}

/* 画像（最背面） */
/* 画像フィット（これが重要） */
.mv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* オーバーレイ */
.mv__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 242, 242, 0.6);
    z-index: 1;
    pointer-events: none;
}

/* ロゴ＋view more（最前面） */
.mv__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .mv__content {
        top: 8%;
        gap: 5vw;
    }
}

/* ロゴ */
.mv__logo {
    max-width: 30vw;
    min-width: 200px;
    width: 100%;
    margin-bottom: 5vw;
}

.mv__logo img {
    width: 100%;
    height: auto;
}

/* view more ボタン */
.mv__word {
    background: #F0E8D8;
    font-size: 24px;
    font-weight: 500;
    color: #4B3A14;
    letter-spacing: 0.2em;
    padding: clamp(8px, 1vw, 14px) clamp(24px, 4vw, 50px);
    transition: color 0.3s ease;
}


@media screen and (max-width: 1200px) {
    .mv__word {
        font-size: 18px;
    }
}

@media screen and (max-width: 700px) {
    .mv__word {
        font-size: 16px;
    }
}

.mv__word:hover {
    color: #8E8268;
}


.about__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 160%;
    text-align: center;
}

@media (max-width: 1200px) {
    .about__title {
        font-size: 24px;
    }
}

@media (max-width: 700px) {
    .about__title {
        font-size: 18px;
    }
}

.dots {
    display: flex;
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    justify-content: center;
    gap: 19px;
    height: 200px;
}

@media (max-width: 1200px) {
    .dots {
        height: 150px;
        gap: 15px;
    }
}

@media (max-width: 700px) {
    .dots {
        height: 120px;
        gap: 13px;
    }
}

.dots span {
    width: 9px;
    height: 9px;
    background-color: #6f5b45;
    /* 茶色の丸 */
    border-radius: 50%;
    display: block;
}

@media (max-width: 1200px) {
    .dots span {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 700px) {
    .dots span {
        width: 5px;
        height: 5px;
    }
}

/*------ スライダーの横幅 ------*/
.salon_slider {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    /* 子要素を中央に */

}

/*------ スライダー画像 ------*/
.salon_slider_box {
    position: relative;
}

.swiper-pagination {
    position: relative;
}

.salon_slider img {
    border-radius: 350px;
    display: block;
    margin: 0 auto;
    /* 画像を中央寄せ */
    max-width: 1400px;
    width: 85%;
    height: 650px;
    filter: contrast(80%) brightness(120%);
    object-fit: cover;
    /* 画像が枠に収まるように */
}

@media (max-width: 1200px) {
    .salon_slider img {
        height: auto;
    }
}


.swiper-pagination-bullet {
    /*ドットのサイズを変更*/
    width: 45px;
    height: 8px;
    border-radius: 50px;
    /*ドットの間隔を変更*/
    margin: 0 8px !important;
    /*ドットの色を変更*/
    background-color: #6f5b45;
}

@media (max-width: 700px) {
    .swiper-pagination-bullet {
        width: 25px;
        height: 6px;
        margin: 0 4px !important;
    }
}

.swiper-pagination {
    bottom: -15px !important;
    margin-bottom: 60px;
}

@media (max-width: 700px) {
    .swiper-pagination {
        bottom: -8px !important;
    }

}


.about_detil {
    text-align: center;
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 100px;
}

@media (max-width: 1200px) {
    .about_detil {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .about_detil {
        font-size: 12px;
        margin: -10px 30px 80px;
    }

    @media (max-width: 700px) {
        .about_detil br {
            display: none;
        }
    }
}

.about_text {
    text-align: center;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0.5em;
    font-weight: 400;
    margin-bottom: 60px;
}

@media (max-width: 700px) {
    .about_text {
        font-size: 26px;
        letter-spacing: 0.3em;
    }
}

/* 親ボックス：横並び */
.about__box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(15px, 2vw, 40px);
    padding-bottom: 140px;
}

@media (max-width: 1000px) {
    .about__box {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}



/* 各アイテムを固定サイズ化して統一 */
.about__box>div {
    width: 280px;
    /* 全体の幅を統一 */
    text-align: center;
}

/* 画像部分（上のアーチ形状） */
.about__box img {
    width: 100%;
    height: 266px;
    /* 高さ統一 */
    object-fit: cover;
    border-top-left-radius: 50% 50%;
    border-top-right-radius: 50% 50%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: block;
}

@media (max-width: 700px) {
    .about__box>div {
        width: 250px;
        /* 全体の幅を統一 */
        text-align: center;
    }
}

/* テキスト部分 */
.care__box {
    background-color: #FFFBF4;
    padding: 20px 15px 30px;
    text-align: center;
    color: #4B3A14;
}

/* 各テキスト調整 */
.number {
    font-size: 32px;
    margin-bottom: 10px;
}

.care__text {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}

.care__detil {
    font-size: 12px;
}

@media (max-width: 700px) {
    .care__box {
        padding: 10px 15px 15px;
    }

    .about__box img {
        height: 220px;
    }

    .number {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .care__text {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .care__detil {
        font-size: 10px;
    }
}



.about__container {
    background-color: #FFFBF4;
    max-width: 1200px;
    width: 80%;
    padding: 100px 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between
}


.owner_img img {
    width: 416px !important;
    height: auto !important;
    padding-right: 100px;
}



.about__caption {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 10px;
}

.about__name__eg {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 5px;
}

.about__name {
    font-size: 28px;
    line-height: 150%;
    margin-bottom: 15px;
}

.about__work {
    font-size: 20px;
    line-height: 180%;
    margin-bottom: 50px;
}

.owner_img_sp {
    display: none;
}

.about__comment {
    font-size: 15px;
    line-height: 180%;

}

@media (max-width: 1200px) {

    .about__container {
        justify-content: center;
        width: 70%;
        padding: 55px 80px;
    }

    .about__caption {
        font-size: 20px;
    }

    .about__name {
        font-size: 26px;
    }

    .about__name__eg {
        font-size: 16px;
    }

    .about__work {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .about__comment {
        font-size: 14px;
        margin-top: 40px;
        max-width: 500px;
    }

    .owner_img img {
        display: none;
    }

    .owner_img_sp {
        max-width: 300px;
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }

    .owner_img_sp img {
        align-items: center;
    }
}

@media (max-width: 700px) {
    .about__container {
        justify-content: center;
        width: 85%;
        padding: 40px 40px;
    }

    .about__caption {
        font-size: 16px;
    }

    .about__name {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .about__name__eg {
        font-size: 12px;
    }

    .about__work {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .about__comment {
        font-size: 10px;
        margin-top: 40px;
        max-width: 500px;
    }

    .owner_img_sp {
        max-width: 200px;
    }
}


.reservation_img,
.onlineshop_img {
    position: relative;
    max-width: 600px;
    overflow: hidden;
    margin: 0 auto;
}

@media (max-width: 1000px) {

    .reservation_img,
    .onlineshop_img {
        width: 70%;
    }
}

.reservation_img img,
.onlineshop_img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 1s ease;
}

/* オーバーレイ */
.reservation_overlay,
.onlineshop_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(14, 10, 10, 0.4);
    z-index: 1;
}

/* メインテキスト */
.reservation_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    color: #F3F3F3;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.onlineshop_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F3F3F3;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

/* サブテキスト */
.reservation_detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    color: #F3F3F3;
    font-size: 16px;
    z-index: 2;
    white-space: nowrap;
    opacity: 0.9;
}

@media (max-width: 1000px) {

    .reservation_text,
    .onlineshop_text {
        font-size: 12px;
    }

    .reservation_detail {
        font-size: 10px;
    }
}


.reservation_link:hover img,
.onlineshop_link:hover img {
    transform: scale(1.2);
}


.contact_box {
    display: flex;
    justify-content: center;
    gap: 70px;
}


.contact_insta,
.contact_line {
    font-size: 24px;
    color: #6f5b45;
    width: 273px;
    height: 103px;
    border: 1.5px solid #6f5b45;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    /* パディング込みでサイズ固定 */
    padding: 32px 100px;
    transition: transform 1s ease, background 0.5s ease, color 0.5s ease;
}

@media (max-width: 700px) {

    .contact_insta,
    .contact_line {
        width: 140px;
        height: 70px;
        padding: 20px 60px;
        border-radius: 20px;
    }

    .contact_box {
        gap: 30px;
    }

    .contact_insta,
    .contact_line {
        font-size: 18px;
    }

}

.contact_insta:hover,
.contact_line:hover {
    background: #6f5b45;
    color: #F3F3F3;
}

.access__container {
    background-color: #FFFBF4;
    max-width: 1200px;
    width: 80%;
    padding: 88px 70px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 200px;
}

.access__box {
    padding-right: 20px;
}

.access__eyuge {
    font-size: 32px;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 10px;
}

.access__eyuge small {
    font-size: 18px;
    padding-top: 0.5em;
}

.access__adress {
    font-size: 16px;
    margin-bottom: 45px;
}

.access__tel {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.access__text {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 150%;
}

.access__time {
    font-size: 16px;
}

@media (max-width: 1200px) {
    .access__container {
        flex-direction: column;
        align-items: center;
        padding: 60px 40px;
        max-width: 600px;
    }

    .access__box {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .access__map iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 700px) {
    .access__container {
        padding: 20px 10px 40px;
        margin: 0 auto 150px;
    }

    .access__eyuge {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .access__eyuge small {
        font-size: 14px;
        padding-top: 0.5em;
    }

    .access__adress {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .access__tel {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .access__text {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .access__time {
        font-size: 14px;
    }

    .access__map {
        text-align: center;
    }

    .access__map iframe {
        width: 90%;
        height: 200px;
        display: inline-block;
    }
}

.footer__img-wrap {
    position: relative;
    overflow: hidden;
    /* はみ出し対策 */
}

/* 疑似要素に背景画像を入れる */
.footer__img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/image/footer_img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: opacity(0.3);
    /* ← 画像だけに適用される */
    z-index: 1;
}

/* 中の内容は上に表示 */
.footer__img-wrap>* {
    position: relative;
    z-index: 2;
}

/* タブレット */
@media (max-width: 1200px) {
    .footer__img-wrap::before {
        background-image: url('/image/footer_img_tb.jpg');
    }
}

/* スマホ */
@media (max-width: 700px) {
    .footer__img-wrap::before {
        background-image: url('/image/footer_img_sp.jpg');
    }
}


.footer__inner {
    display: flex;
    justify-content: space-between;
    padding: 90px 50px 0;
}

.footer__box {
    display: flex;
    align-items: center;
}

.footer__logo img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.footer__address {
    font-size: 16px;
    line-height: 1.8;
}

.footer__nav {
    margin-top: 22px;
}

.footer__nav ul {
    display: flex;
    gap: 30px;
}

.footer__nav a {
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #4B3A14;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer__nav a:hover {
    opacity: 0.5;
}

.footer__copy p {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 45px;
}

@media (max-width: 1200px) {

    .footer__inner {
        display: block;
    }

    .footer__nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-end;
    }
}

@media (max-width: 700px) {
    .footer__inner {
        padding: 50px 20px 0;
    }

    .footer__logo img {
        width: 60px
    }

    .footer__address {
        font-size: 12px;
    }

    .footer__nav ul {
        gap: 15px;
    }

    .footer__nav a {
        font-size: 12px;
    }

    .footer__copy p {
        font-size: 10px;
        padding-top: 70px;
        padding-bottom: 30px;
    }

}