@charset "UTF-8";


body {
    margin: 0;
    padding: 0;
    font-family:
        "Yu Mincho", "YuMincho",
        /* Windows/Mac用游明朝 */
        "Hiragino Mincho ProN",
        /* Mac/iPhone用ヒラギノ明朝 */
        "MS PMincho",
        /* 古いWindows用 */
        "Noto Serif JP",
        /* Webフォント（バックアップ） */
        serif;
    /* 最終手段の明朝体指定 */

    color: #333;
    -webkit-font-smoothing: antialiased;
    /* 文字の縁を滑らかにする（Mac/iOS用） */

    /* ▼ 背景画像を1枚で固定にする設定 ▼ */

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}


@media screen and (min-width: 1000px) {
    body {
        background-image:
            linear-gradient(rgba(135, 105, 10, 0.7), rgba(135, 105, 10, 0.7)), url('img/back.jpg');
    }
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   コンテンツエリア（スマホファースト）
   ============================================ */
.article {
    width: 100%;
    max-width: 430px;
    margin: 0px 20%;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.section {
    padding: 40px 20px;
    /* min-height: 80vh;  */
    margin-bottom: 0;
    background-color: #fff;
}


#sec01 {
    background-color: #FEDF48;
    color: #fff;
}

/* #sec02 { background-color: #3cb371; color: #fff; } */
#sec03 {
    background-color: #f0e68c;
    color: #333;
    margin-bottom: 35px;
}

#sec04 {
    background-color: #006400;
    color: #fff;
    margin-bottom: 40px;
}



/* ============================================
   ナビゲーション（PC用サイドメニュー）
   ============================================ */
.nav_wrapper {
    display: none;
}

@media screen and (min-width: 1000px) {
    .nav_wrapper {
        display: block;
        position: fixed;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        pointer-events: none;
    }

    .nav_list {
        position: absolute;
        top: 50%;
        transform: translateY(-43%);
        right: calc(52% - 225px - 200px);
        list-style: none;
        padding: 0;
        margin: 0;
        letter-spacing: 0.1em;
        pointer-events: auto;
    }

    .nav_list li {
        margin-bottom: 15px;
        background: none;
        border: none;
        transition: transform 0.3s;
    }

    .nav_list li {
        margin-bottom: 15px;
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .nav_list li:hover {
        transform: translateX(-5px);
    }

    .nav_list a {
        display: block;
        padding: 15px 30px;
        text-decoration: none;
        /* font-weight: 700; */
        color: #fff;
    }
}


/* ============================================
   ▼▼▼ ハンバーガーメニュー追加スタイル ▼▼▼
   ============================================ */

.hamburger-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* 3本線の共通設定 */
.hamburger-btn .bar {
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 3px;
    background-color: #baab83;
    border-radius: 2px;
    transition: all 0.4s;
}

/* 開いた時（.active）は線を白くする */
.hamburger-btn.active .bar {
    background-color: #fff;
}

/* 線の位置 */
.hamburger-btn .bar-top {
    top: 13px;
}

.hamburger-btn .bar-mid {
    top: 23px;
}

.hamburger-btn .bar-bottom {
    top: 33px;
}

/* --- メニューが開いた時のボタンの変化（×印にする） --- */
.hamburger-btn.active .bar-top {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active .bar-mid {
    opacity: 0;
    /* 真ん中の線を消す */
}

.hamburger-btn.active .bar-bottom {
    transform: translateY(-10px) rotate(-45deg);
}

/* --- スマホ用メニュー本体のスタイル --- */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #baab83;
    z-index: 99;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* クラスがついたら表示 */
.sp-nav.active {
    opacity: 1;
    visibility: visible;
}

.sp-nav_list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: -90px;
}

.sp-nav_item {
    margin: 20px 0;
}

.sp-nav_item a {
    display: block;
    font-size: 1.2rem;
    /* font-weight: bold; */
    color: #fff;
    text-decoration: none;
    padding: 10px;
}



#sec01::after {
    content: "";
    position: absolute;
    top: 230px;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

@media screen and (max-width: 600px) {
    .article {
        margin: 0px auto;
    }

    #sec01::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;


        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0) 100%);
        z-index: 5;

        pointer-events: none;

    }

    #sec01::after {
        content: "";
        position: absolute;
        top: 182px;
        left: 0;
        width: 100%;
        height: 270px;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0) 100%);
        z-index: 5;
        pointer-events: none;
    }

}




/* --- PCサイズ（1000px以上）では非表示にする --- */
@media screen and (min-width: 1000px) {
    .hamburger-btn {
        display: none;
    }

    .sp-nav {
        display: none !important;
    }
}

/* ============================================
   ▼▼▼ 今回の追加・修正分（ロゴ周り） ▼▼▼
   ============================================ */

/* --- 共通：画像の基本設定 --- */
.logo img,
.pc-logo img {
    display: block;
    width: auto;
    height: auto;
}

/* --- SP用ヘッダー（初期表示・スマホ用） --- */
.sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* background-color: rgba(255, 255, 255, 0.9);  */
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    z-index: 90;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1);  */
}

.sp-header .logo img {
    max-height: 46px;
    margin-top: 21px;
}


.article {
    padding-bottom: 95px;
}

/* PC用ロゴはスマホでは隠す */
.pc-logo {
    display: none;
}

.pc-reserve-btn {
    display: block;
    position: absolute;
    right: calc(57% - 225px - 200px);
    top: calc(50% + 200px);
    z-index: 6;
    pointer-events: auto;
}

.pc-reserve-btn a {
    display: inline-block;
    width: 180px;
    padding: 20px 0;
    background-color: #baab83;
    color: #fff;
    text-decoration: none;
    text-align: center;
    /* font-weight: bold; */
    border-radius: 65px;
    border: none;
    letter-spacing: 0.1em;
    position: relative;
    padding-right: 40px;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ▼▼▼ ホバー時の動き ▼▼▼ */
.pc-reserve-btn a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 矢印の「線（軸）」の部分 */
.pc-reserve-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    /* 右端からの位置 */
    width: 30px;
    /* 矢印の線の長さ */
    height: 1px;
    /* 矢印の線の太さ */
    background-color: #fff;
    /* 線の色 */
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* 矢印の「先端（くの字）」の部分 */
.pc-reserve-btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    /* 線と同じ位置からスタート */
    width: 6px;
    /* 先端のサイズ */
    height: 6px;
    /* 先端のサイズ */
    border-top: 1px solid #fff;
    /* 先端の太さ */
    border-right: 1px solid #fff;
    /* 先端の太さ */
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
    z-index: 1;
}

/* ホバー時に矢印全体を少し右に動かす */
.pc-reserve-btn a:hover::after,
.pc-reserve-btn a:hover::before {
    right: 25px;
}

/* --- PC表示時（1000px以上）のスタイル上書き --- */
@media screen and (min-width: 1000px) {

    /* SPヘッダーを隠す */
    .sp-header {
        display: none;
    }

    /* PC用コンテンツの余白調整（SPの余白をリセット） */
    .article {
        padding-top: 0;
        padding-bottom: 0px;
    }

    .nav_wrapper {
        display: block;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 5;
        pointer-events: none;
    }

    .pc-logo {
        display: block;
        position: absolute;
        right: calc(55% - 225px - 200px);
        bottom: calc(50% + 180px);
        z-index: 6;
        pointer-events: auto;
    }

    .pc-logo img {
        max-width: 250px;
        height: auto;
    }



    /* ホバー時に少し左に動かすアニメーション（不要なら削除OK） */
    .nav_list li:hover {
        transform: translateX(-5px);
    }

    /* --- リンク（文字）のスタイル --- */
    .nav_list a {
        display: block;
        padding: 10px 30px;
        text-decoration: none;
        /* font-weight: 700; */
        color: #fff;
        transition: color 0.3s;
    }

    /* ▼▼▼ 追加：文字色だけを変える設定 ▼▼▼ */
    .nav_list a:hover {
        color: #baab83;
    }

}

/* スマホではPC用の予約ボタンを隠す */
@media screen and (max-width: 999px) {
    .pc-reserve-btn {
        display: none;
    }


}


/* --- Section1(FV)のレイアウト --- */
#sec01 {
    position: relative;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background-color: transparent;
}

/* スライドショーの設定 */
.fv-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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


.fv-content {
    position: absolute;
    z-index: 10;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 25px 80px;
    color: #fff;

    opacity: 0;
    animation: fvFadeUp 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

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

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


.fv-sub-copy {
    font-size: 1.2rem;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}

.fv-main-copy {
    font-size: 2.1rem;
    line-height: 0;
    margin-bottom: 19px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.fv-main-copy02 {
    font-size: 2.2rem;
    line-height: 0;
    margin-bottom: 28px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.fv-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* --- スクロールダウン全体の配置 --- */
.scrolldown {
    position: absolute;
    right: 46%;
    bottom: -180px;
    z-index: 10;
    width: 1px;
}

/* 「SCROLL」のテキスト部分 */
.scrolldown span {
    position: absolute;
    left: 4px;
    bottom: 20px;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #fff;
    font-family: sans-serif;
}

/* 矢印の「線」の部分 */
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 70px;
    background: #fff;
}

/* 矢印の「先端（くの字）」の部分 */
.scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2.5px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* --- 上下に動くアニメーション --- */
@keyframes scrollMove {
    0% {
        transform: translateY(-10px);
        /* 上に10px */
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        /* 下に10px */
        opacity: 0;
    }
}

.scrolldown {
    animation: scrollMove 3s infinite;
}


/* SP用予約ボタン（画像のデザインを再現） */
.btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 65px;
    background-color: #baab83;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
}

.btn-reserve .arrow {
    margin-left: 20px;
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

.btn-reserve .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.fv-content {
    padding-left: 26px;
    top: 47%;
}

/* PCサイズ時の調整 */
@media screen and (min-width: 1000px) {
    .sp-reserve-btn-wrap {
        display: none;
    }
}

/* PCサイズ時の調整 */
@media screen and (min-width: 1000px) {
    .about-inner {
        max-width: 800px;
    }
}



/* ABOUTセクション全体の調整 */
.about-section {
    position: relative;
    padding: 100px 0px;
    background-color: #fff;
    overflow: hidden;
}

/* 背景の大きな透過文字 (ABOUT) */
.section-bg-title {
    position: absolute;
    top: 75px;
    left: 29%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 400;
    color: #87690a;
    opacity: 0.1;
    z-index: 1;
    letter-spacing: 0.05em;
    text-align: left;
}

.efficacy-section-bg-title {
    position: absolute;
    top: 43px;
    left: 29%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 400;
    color: #87690a;
    opacity: 0.1;
    z-index: 1;
    letter-spacing: 0.05em;
    text-align: left;
}


.about-inner {
    position: relative;
    z-index: 2;
    /* max-width: 393px;  */
    margin: 0 auto;
}

/* 日本語見出し（中央揃え） */
.about-lead {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 70px;
}

.about-lead p.title01 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-lead p.title02 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    margin-top: 10px;
}
}

.about-lead h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

/* 画像エリア */
.about-img {
    width: 100%;
    margin-bottom: 40px;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    /* opacity: 0.9; */
}

/* 本文（中央配置・左寄せ） */
.about-text {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 2;
    letter-spacing: 0.05em;
}


/* 酵素浴セクション全体の指定 */
.kouso-section {
    position: relative;
    padding: 100px 25px;
    text-align: center;
    color: #fff;

    background-image:
        linear-gradient(rgba(186, 171, 131, 0.7), rgba(186, 171, 131, 0.7)),
        url('img/kouso-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}




/* キャッチコピー */
.kouso-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* 本文 */
.kouso-text {
    margin-bottom: 40px;
}

.kouso-text p {
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* 白抜きボタンのスタイル */
.kouso-btn-wrap {
    display: flex;
    justify-content: center;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 65px;
    background-color: #fff;
    color: #baab83;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
    transition: opacity 0.3s;
}

.btn-outline:hover {
    opacity: 0.9;
}

/* ボタン内の矢印（線付き） */
.arrow-line {
    margin-left: 15px;
    width: 35px;
    height: 1px;
    background-color: #baab83;
    position: relative;
}

.arrow-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3.5px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #baab83;
    border-right: 1px solid #baab83;
    transform: rotate(45deg);
}


/* こだわりセクション全体の指定 */
.commitment-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    background-image:
        linear-gradient(rgba(186, 171, 131, 0.8), rgba(186, 171, 131, 0.8)),
        url('img/commitment-bg02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}



/* キャッチコピー */
.commitment-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
}

section#sec04 p.title01 {
    font-size: 1.1rem;
    margin-bottom: 0px;
    margin-top: 0px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

section#sec04 p.title02 {
    font-size: 1.41rem;
    margin-bottom: 30px;
    margin-top: 3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}




/* 本文 */
.commitment-text {
    margin-bottom: 40px;
}

.commitment-text p {
    font-size: 0.9rem;
    line-height: 2;
    margin: 0 13px 5px;
    letter-spacing: 0.05em;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* 白抜きボタンのスタイル */
.commitment-btn-wrap {
    display: flex;
    justify-content: center;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 65px;
    background-color: #fff;
    color: #baab83;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
    transition: opacity 0.3s;
}

.btn-outline:hover {
    opacity: 0.9;
}

/* ボタン内の矢印（線付き） */
.arrow-line {
    margin-left: 15px;
    width: 35px;
    height: 1px;
    background-color: #baab83;
    position: relative;
}

.arrow-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3.5px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #baab83;
    border-right: 1px solid #baab83;
    transform: rotate(45deg);
}



/* EFFICACYセクション全体 */
.efficacy-section {
    position: relative;
    padding: 80px 0 20px;
    background-color: #fff;
    overflow: hidden;
}

/* ラベル：酵素浴の効果 */
.efficacy-label {
    display: inline-block;
    background-color: #baab83;
    color: #fff;
    padding: 10px 30px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    margin-top: 50px;
    z-index: 5;
    position: relative;
}

.efficacy-inner {
    position: relative;
    z-index: 2;
    max-width: 393px;
    margin: 0 auto;
    padding: 0 25px;
    margin-top: 50px;
}

/* 各アイテム（01, 02...）の共通スタイル */
.efficacy-item {
    margin-bottom: 80px;
}

/* 大きな数字 01 */
.efficacy-num {
    font-size: 80px;
    font-family: serif;
    color: #baab83;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0px;
    margin-left: -5px;
}

/* アイテムタイトル */
.efficacy-item-title {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 22px;
    font-weight: 500;
    position: relative;
    z-index: 3;
    text-align: center;
}

/* 画像 */
.efficacy-img {
    width: 100vw;
    margin-bottom: 25px;
}

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

/* 本文テキスト */
.efficacy-text {
    width: 100%;
    text-align: left;
}

.efficacy-text p {
    font-size: 0.95rem;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #333;
    margin: 0 20px;
}

/* PCサイズ時の調整 */
@media screen and (min-width: 1000px) {
    .efficacy-inner {
        max-width: 800px;
    }

    .efficacy-img {
        width: 100%;
        margin-left: 0;
    }
}


/* VOICEセクション全体 */
.voice-section {
    position: relative;
    padding: 80px 0 50px;
    background-color: #BAAB83;
    overflow: hidden;
}

/* 背景の大きな文字（白透過） */
.section-bg-title-white {
    position: absolute;
    top: 47px;
    left: -5px;
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    opacity: 0.2;
    z-index: 1;
    letter-spacing: 0.1em;
}

.voice-inner {
    position: relative;
    z-index: 2;
    max-width: 393px;
    margin: 60px auto;
    padding: 0 20px;
}

/* セクション見出し（白文字・中央揃え） */
.voice-lead {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

/* 白いカード部分 */
.voice-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* カード上部（アイコンとタイトル） */
.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

/* アイコン（画像） */
.voice-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    /* background-color: #eee; */
    flex-shrink: 0;
    margin-right: 15px;
}

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

/* タイトルとプロフィール */
.voice-title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
    color: #333;
}

.voice-profile {
    font-size: 0.9rem;
    color: #666;
}

/* 本文テキスト */
.voice-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.voice-text p:last-child {
    margin-bottom: 0;
}

/* PCサイズ時の調整 */
@media screen and (min-width: 1000px) {
    .voice-inner {
        max-width: 800px;
    }

    .section-bg-title-white {
        font-size: 60px;
    }
}



.flow-section,
.faq-section {
    position: relative;
    padding: 105px 0 50px;
    background-color: #fff;
    overflow: hidden;
}

.faq-section {
    padding: 105px 0 120px;
}

/* ラベル：酵素浴の効果 */
.flow-label,
.faq-label {
    display: inline-block;
    background-color: #baab83;
    color: #fff;
    padding: 10px 30px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    margin-top: 50px;
    z-index: 5;
    position: relative;
}


/* 各アイテム（01, 02...）の共通スタイル */
.flow-item,
.faq-item {
    margin-bottom: 45px;
}


/* アイテムタイトル */
.flow-item-title,
.faq-item-title {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 22px;
    font-weight: 500;
    position: relative;
    z-index: 3;
    text-align: center;
}

/* 画像 */
.flow-img,
.faq-img {
    width: 100vw;
    margin-bottom: 25px;
}

.flow-img img,
.faq-img img {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
}

/* 本文テキスト */
.flow-text,
.faq-text {
    width: 100%;
    text-align: left;
}

.flow-text p,
.faq-text p {
    font-size: 0.95rem;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #333;
    margin: 0 20px;
}

.section-bg-title-flow,
.section-bg-title-faq {
    position: absolute;
    top: 67px;
    left: 24%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 400;
    color: #87690a;
    opacity: 0.1;
    z-index: 1;
    letter-spacing: 0.05em;
    text-align: left;
}

.flow-btn-wrap,
.faq-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}


.section-bg-title-faq {
    left: 16%;
}

.btn-outline02 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 65px;
    background-color: #baab83;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
    transition: opacity 0.3s;
}

.btn-outline02:hover {
    opacity: 0.9;
}

.arrow-line02 {
    margin-left: 15px;
    width: 35px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

.arrow-line02::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3.5px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}


/* PCサイズ時の調整 */
@media screen and (min-width: 1000px) {

    .flow-img,
    .faq-img {
        width: 100%;
        margin-left: 0;
    }

}


.last-reserve-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    color: #fff;

    background-image:
        linear-gradient(rgba(186, 171, 131, 0.7), rgba(186, 171, 131, 0.7)),
        url('img/last-reserve-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}




/* キャッチコピー */
.last-reserve-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* 本文 */
.last-reserve-text {
    margin-bottom: 40px;
}

.last-reserve-text p {
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* 白抜きボタンのスタイル */
.last-reserve-btn-wrap {
    display: flex;
    justify-content: center;
}



.btn-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}


.slon-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 65px;
    background-color: #fff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
    transition: opacity 0.3s;
}

.slon-btn-outline:hover {
    opacity: 0.9;
}

.arrow-line03 {
    margin-left: 15px;
    width: 35px;
    height: 1px;
    background-color: #1a1a1a;
    position: relative;
}

.arrow-line03::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3.5px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
    transform: rotate(45deg);
}

.line-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 65px;
    background-color: #38af4f;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
    transition: opacity 0.3s;
}

.line-btn-outline:hover {
    opacity: 0.9;
}


/* フッター全体のスタイル */

section#sec10 {
    padding: 40px 20px 90px;
}

.footer {
    background-color: #baab83;
    color: #fff;
    padding: 50px 25px 30px;
    text-align: center;
}

.footer-inner {
    max-width: 393px;
    margin: 0 auto;
}

/* ロゴ */
.footer-logo {
    width: 200px;
    margin: 0 auto 40px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

/* SNSアイコン */
.footer-sns {
    margin-bottom: 34px;
}

.footer-sns img {
    width: 40px;
    height: auto;
    transition: opacity 0.3s;
}

.footer-sns a:hover img {
    opacity: 0.7;
}

/* 住所情報 */
.footer-info {
    margin-bottom: 27px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.footer-info .zip {
    font-size: 0.9rem;
    margin-bottom: -18px;
}

.footer-info .address {
    font-size: 0.9rem;
    font-weight: 400;
}

/* コピーライト */
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.footer-copy small {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* PCサイズ時の微調整 */
@media screen and (min-width: 1000px) {
    .footer {
        padding: 80px 0 40px;
    }

    .footer-inner {
        max-width: 800px;
    }
}

/* ============================================
   ▼▼▼ スマホ用固定予約ボタン ▼▼▼
   ============================================ */
.sp-fixed-btn {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sp-fixed-btn a {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 60px;
    background-color: #baab83;
    color: #fff;
    text-decoration: none;
    border-radius: 55px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform 0.3s;
}

.sp-fixed-btn a:hover {
    opacity: 0.9;
}

/* 矢印（既存のデザインを踏襲） */
.sp-fixed-btn .arrow {
    margin-left: 20px;
    width: 30px;
    height: 1px;
    background-color: #fff;
    position: relative;
    display: block;
}

.sp-fixed-btn .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 1000px以上では非表示 */
@media screen and (min-width: 1000px) {
    .sp-fixed-btn {
        display: none;
    }
}




/* ============================================
   ▼▼▼ Coming Soonページ ▼▼▼
   ============================================ */
.coming-soon-section {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 100px 20px;
    box-sizing: border-box;
    padding-top: 140px;
}

.coming-soon-inner {
    text-align: center;
}

.coming-soon-title {
    font-size: 2rem;
    color: #baab83;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.coming-soon-text {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 50px;
}

.coming-soon-btn-wrap {
    display: flex;
    justify-content: center;
}