@charset "UTF-8";


body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-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: url('images/perapera-back.png');
    }
}

html {
    scroll-behavior: smooth;
}

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

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


#fv {
    padding: 0;
    margin-bottom: 0;
}

#intro,
#voice-raw {
    padding: 0;
    margin-bottom: 0px;
    background-color: #fff;
    overflow: hidden;
}

.youtube-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

#secret {
    position: relative;
    padding: 0;
    margin-bottom: 0;
}

#secret .cta-container {
    position: absolute;
    bottom: 9%;
    /* 画像の下から約14%の位置（オレンジ枠内） */
    left: 0;
    width: 100%;
    padding: 0 15px;
    /* ボタンの横幅を調整するための余白 */
    box-sizing: border-box;
}

a.line-btn.cta-btn {
    width: 90%;
}

.fv-image img,
.intro-image img,
.voice-raw-image img,
.secret-image img,
.reason-image img,
.voice-image img,
.coach-image img,
.service-image img,
.faq-image img,
.closing-image img {
    display: block;
    width: 100%;
    height: auto;
}

.voice-raw-container {
    padding: 0px 20px 50px;
}

.cta-container {
    padding: 0px 20px 50px;
}

.font-large {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: -2px;
}

#reason,
#voice,
#coach,
#service,
#faq {
    padding: 0;
    margin-bottom: 0px;
    background-color: #fff;
}

#closing {
    padding: 0;
    margin-bottom: 0px;
    background-image: url('images/perapera-back.png');
    background-size: cover;
    background-position: center;
}

/* --- YouTube Video wrapper --- */
.youtube-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px;
}

.youtube-wrapper iframe,
.youtube-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-poster {
    cursor: pointer;
    z-index: 2;
    overflow: hidden;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12%;
    z-index: 3;
    transition: background-color 0.3s;
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.youtube-poster:hover .play-btn {
    background-color: #ff0000;
}

.faq-inner {
    padding: 20px 20px 15px;
}

.faq-list {
    max-width: 100%;
}

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

.faq-question {
    background-color: #e8f4fd;
    /* 画像の淡いブルー */
    padding: 24px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(1rem, 4vw, 1.1rem);
    line-height: 1.5;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #d9ecfb;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

/* 横線 */
.faq-icon::before {
    width: 20px;
    height: 2px;
}

/* 縦線（開いている時は消える/回転する） */
.faq-icon::after {
    width: 2px;
    height: 20px;
    transition: all 0.3s;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* 内容に合わせて十分な高さを設定 */
}

.faq-answer_inner {
    padding: 20px 10px;
    line-height: 1.8;
    font-size: 0.95rem;
}


/* #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 - 259px);
        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: 10px;
        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: 14px;
    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: #000;
    border-radius: 2px;
    transition: all 0.4s;
}

.hamburger-btn.active .bar {
    background-color: #000;
}

/* 線の位置 */
.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: #fff;

    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: -170px;
}

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

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






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




}




/* --- 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 {
    display: none;
}


/* .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.pc-salon-btn {
    top: calc(42% + 286px);
    right: calc(57% - 226px - 200px);
}

.pc-reserve-btn.pc-salon-btn a {
    background-color: #fff;
    color: #baab83;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.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.pc-salon-btn a::after {
    background-color: #baab83;
}

.pc-reserve-btn.pc-salon-btn a::before {
    border-top: 1px solid #baab83;
    /* 先端の太さ */
    border-right: 1px solid #baab83;
}

/* ホバー時に矢印全体を少し右に動かす */
.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: 45%;
        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: 5px 30px;
        text-decoration: none;
        font-weight: 600;
        color: #333;
        transition: color 0.3s;
    }

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

    /* PCサイドメニュー下の問い合わせボタン */
    .pc-nav_btn {
        position: absolute;
        top: calc(50% + 210px);
        right: calc(52% - 225px - 258px);
        width: 330px;
        z-index: 6;
        pointer-events: auto;
    }

    .pc-nav_btn .line-btn {
        height: 60px;
        /* PCでは少し高さを抑える */
    }

    .pc-nav_btn .line-btn_text {
        font-size: 0.95rem;
        /* PCでは少し小さめに */
    }

    .pc-nav_btn .line-btn::before {
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        border-radius: 40px;
    }

}

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


}



/* ============================================
   ▼▼▼ 以上はスマホファーストの共通▼▼▼
   ============================================ */

/* ============================================
   ▼▼▼ 以下からコンテンツ▼▼▼
   ============================================ */


/* FV-related styles removed */



/* ============================================
   ▼▼▼ スマホ用固定問い合わせボタン ▼▼▼
   ============================================ */
.sp-fixed-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    box-sizing: border-box;
}

.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    height: 75px;
    margin: 0 auto;
    background-color: #38af4f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: transform 0.3s, opacity 0.3s;
}

.line-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* 内枠の白い線 */
.line-btn::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #fff;
    border-radius: 45px;
    pointer-events: none;
}

.line-btn_inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 30px;
    position: relative;
}

.line-btn_icon {
    width: 35px;
    margin-right: 15px;
    flex-shrink: 0;
}

.line-btn_icon img {
    display: block;
    width: 100%;
    height: auto;
}

.line-btn_text {
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    flex-grow: 1;
    text-align: center;
    margin-bottom: 2px;
}

/* 矢印（右端の白い三角形） */
.line-btn_arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 10px;
}

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



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

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

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

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

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

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

.footer-sns {
    margin: 15px 0 25px;
}

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

.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: 60px 0 40px;
    }

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