/* ==========================================================
   共通設定
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
    color: #333;
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
}

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

a {
    color: inherit;
}

.hanko-lp {
    width: 100%;
    overflow-x: hidden;
}

.inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-cream {
    background: #f8f3ea;
    padding: 50px 0;
}

.bg-white {
    background: #fff;
    padding: 50px 0;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    color: #333;
    margin-bottom: 30px;
}

.sub-catch {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
}

/* ==========================================================
   PC / SP 画像の出し分け
   ========================================================== */

.pc {
    display: block;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ==========================================================
   CTAボタン
   ========================================================== */

.cta-wrap {
    text-align: center;
    margin-top: 30px;
}

.cta-btn {
    display: inline-block;
    background: #be3132;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(232, 84, 62, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 84, 62, 0.45);
}

/* ==========================================================
   ②共感パート
   ========================================================== */

.worry-list {
    background: #fdf6ee;
    border: 1px solid #eadfc9;
    border-radius: 12px;
    padding: 24px 30px;
    max-width: 560px;
    margin: 0 auto 30px;
}

.worry-list p {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.connect-text {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #b5895b;
}

/* ==========================================================
   ④不安解消パート（メリットブロック）
   ========================================================== */

.merit-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #e0d8c8;
}

.merit-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.merit-block .num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #b5895b;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merit-block .content .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.merit-block .content .desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ==========================================================
   ⑤メリットまとめ（4つの理由）
   ========================================================== */

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.reason-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.reason-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.reason-card .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.reason-card .desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .reason-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .reason-card {
        padding: 20px 10px;
    }
}

/* ==========================================================
   ⑥お客様の声（既存の単発ボイス／未使用の場合は残置OK）
   ========================================================== */

.voice-box {
    background: #f8f3ea;
    border-radius: 14px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 12px;
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    position: relative;
}

.voice-name {
    text-align: right;
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    color: #888;
}

/* ==========================================================
   お客様の声（Swiperカルーセル）
   ========================================================== */

.p-voice__container {
    position: relative;
    padding-bottom: 50px;
}

.p-voice__swiper {
    width: 100%;
    padding: 10px 30px 40px;
    overflow: hidden;
}

.p-voice__swiper .swiper-slide {
    height: auto;
}

.p-voice__swiper .swiper-slide a {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p-voice__swiper .swiper-slide a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.p-voice__swiper-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f0ece4;
}

.p-voice__swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.p-voice__swiper-body {
    padding: 16px 18px 20px;
}

.p-voice__swiper-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    min-height: 3em;
}

.p-voice__swiper-name {
    font-size: 14px;
    color: #b5895b;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

/* ページネーション */
.p-voice .swiper-pagination {
    position: static;
    margin-top: 10px;
}

.p-voice .swiper-pagination-bullet {
    background: #d8c9b0;
    opacity: 1;
    width: 9px;
    height: 9px;
    margin: 0 5px !important;
}

.p-voice .swiper-pagination-bullet-active {
    background: #b5895b;
}

/* 前後ボタン */
.p-voice__btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.p-voice__btn-L,
.p-voice__btn-R {
    pointer-events: auto;
    position: static;
    width: 44px;
    height: 44px;
    background: #b5895b;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    margin: 0 -18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.p-voice__btn-L:hover,
.p-voice__btn-R:hover {
    background: #96703f;
    transform: scale(1.08);
}

.p-voice__btn-L::after,
.p-voice__btn-R::after {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

/* スマホ表示調整 */
@media (max-width: 767px) {
    .p-voice__swiper {
        padding: 10px 6px 36px;
    }

    .p-voice__swiper-text {
        font-size: 14px;
        min-height: 2.6em;
    }

    .p-voice__btn {
        bottom: 36px;
    }

    .p-voice__btn-L,
    .p-voice__btn-R {
        width: 34px;
        height: 34px;
        margin: 0 -6px;
    }

    .p-voice__btn-L::after,
    .p-voice__btn-R::after {
        font-size: 13px;
    }
}

/* ==========================================================
   ⑦料金・開業ステップ
   ========================================================== */

.step-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-collapse: collapse;
}

.step-table th,
.step-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e5ddc8;
    text-align: left;
    font-size: 15px;
}

.step-table th {
    width: 100px;
    color: #b5895b;
    font-weight: 700;
    white-space: nowrap;
}

.step-table td a {
    color: #be3132;
    font-weight: 700;
    text-decoration: none;
}

.step-table td a:hover {
    text-decoration: underline;
}

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

.faq-item {
    max-width: 640px;
    margin: 0 auto 14px;
    border: 1px solid #e5e0d5;
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: #fdf6ee;
    border: none;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    position: relative;
}

.faq-q::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #b5895b;
}

.faq-q.is-open::after {
    content: "−";
}

/*●変更●*/

.faq-a {
    display: none;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    background: #fff;
}

.faq-a.is-open {
    display: block;
}

/* ==========================================================
   ⑨最終CTA
   ========================================================== */

.final-section {
    background: #2f2a24;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    padding-bottom: 120px;
    /*●追記●*/
}

.final-lead {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
}

.final-text {
    font-size: 15px;
    line-height: 1.9;
    color: #d8d0c2;
    margin-bottom: 30px;
}

.btn-group {
    text-align: center;
}

/* ==========================================================
   スクロール追従バナー
   ========================================================== */

.fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e0d5;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* space-between → center に変更 */
    gap: 24px;
    /* 12px → 24px に変更（テキストとボタンの間隔を確保） */
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.fixed-bar-text {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    flex-shrink: 1;
}

.fixed-bar-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .fixed-bar-text {
        display: none;
    }

    .fixed-bar {
        justify-content: center;
    }
}


/* ==========================================================
   スマホ表示時：見出し・本文を左寄せに変更
   ※PC表示（768px以上）は既存の中央寄せを維持
   ========================================================== */
@media (max-width: 767px) {

    h1,
    h2 {
        text-align: left;
    }

    .sub-catch,
    .lead-text,
    .connect-text {
        text-align: left;
    }

    /* 最終CTA：見出しは文字サイズ縮小で改行崩れを防止 */
    .final-lead {
        font-size: 18px;
    }

    /* 最終CTA：本文は左寄せに変更 */
    .final-text {
        text-align: left;
    }

}