/* =========================
  Reset / Base
========================= */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, "Noto Sans JP", sans-serif;
    color: #2d2d2d;
    background: #f3f4f6;
}

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

/* =========================
  縦スワイプ本体
========================= */
.v-swipe {
    height: 100svh;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* 1画面＝1枚 */
.screen {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    background: #fff;
    scroll-snap-align: start;
}

/* dvh対応（iOS実機対策） */
@supports (height: 100dvh) {

    .v-swipe,
    .screen {
        height: 100dvh;
    }
}

/* =========================
  1枚目：FV（左右余白が出ない最終版）
========================= */
.screen--fv {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
}

/* FV画像エリア：高さを持たせない */
.screen--fv .fv-visual {
    flex: 0 0 auto;
    min-height: auto;
}

/* FV画像：幅基準で表示（左右余白を出さない） */
.screen--fv .fv-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: initial;
}

/* =========================
  FVボタン・ヒント
========================= */
.screen--fv .btn {
    margin-top: 24px;
}

.hint {
    margin: 15px 0 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(0, 0, 0, .55);
    font-weight: 600;
}

/* =========================
  ボタン共通
========================= */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .02em;
    font-size: 18px;
    text-align: center;
}

.btn--primary {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #c89b3c, #b8872b);
    box-shadow: 0 12px 26px rgba(200, 155, 60, .28);
    margin: 15px auto !important;
}

/* =========================
  2枚目：背景画像
========================= */
.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* =========================
  2枚目：下部カード
========================= */
.content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -14px 34px rgba(0, 0, 0, .10);

    display: grid;
    gap: 10px;
}

/* =========================
  Typography
========================= */
.eyebrow {
    margin: 20px 0 0 0;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .03em;
    color: rgba(0, 0, 0, .65);
    text-align: center;
}

.h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
}

.h2-pink {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    color: #d090a6;
}

.h2-blue {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    color: #4383bf;
}

.h2-brown {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    color: #876338;
}

.note {
    margin: 0;
    font-size: 13px;
    color: rgba(0, 0, 0, .74);
    font-weight: 600;
    margin-top: 25px;
    text-align: center;
}


/* =========================
  悩みチップ
========================= */
/* 2枚目だけ absolute を殺す */
#s2 .content {
    position: static;
}

/* 2〜5枚目は通常フロー */
#s2 .content,
#s3 .content,
#s4 .content,
#s5 .content {
    position: static;
}

.chips {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.chips li {
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
    font-weight: 800;
    font-size: 14px;
}

/* 画像：上余白を作らない */
.worry-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 10px;
    border-radius: 12px;
}

/* =========================
  小さい画面
========================= */
@media (max-width: 360px) {
    .h2 {
        font-size: 22px;
    }
}

/* ol の余白を完全削除 */
#s3 .list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* li を通常フローに戻す（最重要） */
#s3 .reason-item {
    display: block !important;
    overflow: hidden;
    /* float を内包 */
    margin-bottom: 32px;
}

/* =========================
   s3：選ばれる理由（最終確定）
========================= */

/* li */
#s3 .reason-item {
    margin-bottom: 28px;
}

/* 理由ラベル：100% */
#s3 .reason-label {
    display: block;
    /* ★これが重要 */
    width: 100%;
    /* ★全幅 */
    background: #dacaa9;
    color: #644b16;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
}

/* 下の2カラム */
#s3 .reason-row {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 16px;
    align-items: start;
}

/* 左：テキスト */
#s3 .reason-text {
    min-width: 0;
}

#s3 .h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
}

#s3 .p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* 右：画像 */
#s3 .reason-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* =========================
   お客様の声（便箋風）
========================= */
.voices {
    display: grid;
    gap: 24px;
    margin: 0px 0 10px;
}

.voice {
    background:
        repeating-linear-gradient(to bottom,
            #fffdf9,
            #fffdf9 28px,
            #f1e8d8 29px);
    border: 2px solid #e4d6b8;
    border-radius: 14px;
    padding: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    /* 追記：レイアウト */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* 左：テキスト */
.voice-text {
    flex: 1;
}

/* コメント本文 */
.voice .q {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 700;
    color: #3a2f1e;
    margin: 0 0 12px;
}

/* 属性 */
.voice .m {
    font-size: 13px;
    color: #7a6a55;
    text-align: right;
}

/* 右：お客様イラスト */
.voice-face {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.voice-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #e4d6b8;
    background: #fff;
}

/* =========================
   安心ポイント（枠で囲う）
========================= */
.check {
    list-style: none;
    margin: 0;
    padding: 25px 24px;

    /* 背景画像 */
    background-image: url("image/yakusoku-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.check li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #6c5536;
    font-weight: 600;
    border-bottom: 1px dotted #6c5536;
    padding-bottom: 3px;
}

.check li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

/* =========================
   5枚目：キャンペーン
========================= */

/* 今月あと◯名 */
.badge {
    background: #c60000;
    color: #fff;
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

/* 見出し */
.h2 {
    color: #c60000;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin: 10px 0 20px;
}

/* 価格ボックス */
.pricebox {
    text-align: center;
    margin-bottom: 0px;
    margin-top: -15px !important;
}

.pricebox .row {
    font-size: 16px;
    margin-bottom: 6px;
}

.pricebox .row strong {
    font-size: 24px;
    margin-left: 6px;
}

/* 通常価格（取り消し） */
.pricebox .row:not(.row--em) strong {
    text-decoration: line-through;
    color: #777;
}

/* 今だけ価格 */
.pricebox .row--em strong {
    font-size: 44px;
    color: #c60000;
    font-weight: 800;
}

/* 注意書き */
.pricebox .small,
.content>.small {
    text-align: center;
    font-size: 13px;
    color: #555;
}

/* =========================
   ボタン共通サイズ
========================= */
.btn--lg {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0px auto;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
}

/* 既存：予約ボタン */
.btn--primary-top {
    border: none;
    width: 90%;
    margin: 15px auto 25px !important;
    color: #fff;
    background: linear-gradient(135deg, #c89b3c, #b8872b);
    box-shadow: 0 12px 26px rgba(200, 155, 60, .28);
}

.btn--primary {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #c89b3c, #b8872b);
    box-shadow: 0 12px 26px rgba(200, 155, 60, .28);
}

/* LINEボタン */
.btn--line {
    background: #06c755;
    color: #fff;
    box-shadow: 0 12px 26px rgba(6, 199, 85, .28);
    margin-top: -10px;
}