/* ====================================
     Design Tokens (CSS Variables)
  ==================================== */
  :root {
    --colorAccent: #C8141F;
    --colorAccentShadow: #8E0A12;
    --colorEstate: #00375F;
    --colorEstateShadow: #052337;
    --colorText: #191919;
    --colorMuted: #6B6B6B;
    --colorBg: #FFFFFF;
    --colorSoft: #F4F1EB;
    --colorLine: #D9D2C5;
    --colorGold: #B89554;

    --fontJp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif ,-apple-system, BlinkMacSystemFont ;
    --fontSerif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
    --fontScript: "Yusei Magic", var(--fontJp);

    --containerMax: 767px;
    --sectionPadY: clamp(16px, 10vw, 20px);
}

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

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

body {
    font-family: var(--fontJp);
    line-height: 1.6;
    color: var(--colorText);
    max-width: var(--containerMax);
    margin: 0 auto;
    background-color: var(--colorBg);
}

@media (min-width: 768px) {
    html {
        background-color: #f0f0f0;
    }

    body {
        box-shadow: 0 0 24px rgba(0, 0, 0, .08);
    }
}

/* ====================================
     Common Components
  ==================================== */

/* 共通赤バーCTA（無料カタログプレゼント）: 固定フッターのデザインを参考に実装で再現 */
.ctaBanner {
    position: relative;
    display: block;
    margin: 24px auto 0;
    max-width: 480px;
    width: 100%;
    text-decoration: none;
    animation: dokunDokun 1300ms ease infinite;
}

/* 上の手書き風キャプション（画像） */
.ctaBannerCaption {
    display: block;
    max-width: 320px;
    margin: 0 auto 8px;
}

.ctaBannerCaption img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 赤いボタン本体: テキストは（左の資料アイコン領域を除いた）右側で中央寄せ＋右端に矢印 */
.ctaBannerBar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    /* 左は資料アイコン(幅146px)の領域を確保してテキストの重なりを防ぐ */
    padding: 0 40px 0 160px;
    background-color: var(--colorAccent);
    box-shadow: 0 8px 0 0 var(--colorAccentShadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media print, screen and (max-width: 767px) {
    .ctaBannerBar {
        height: 58px;
        /* SP はアイコン(幅70px)が小さいので左余白も縮小 */
        padding: 0 20px 0 84px;
        box-shadow: 0 6px 0 0 var(--colorAccentShadow);
    }
}

@media print, screen and (max-width: 470px) {
    .ctaBannerBar {
        padding: 0 20px 0 100px;
    }
}

@media print, screen and (max-width: 416px) {
    .ctaBannerBar {
        padding: 0 20px 0 110px;
    }
}

/* 光沢アニメ: 白い光がボタンを横切る（smart-safe の btn_shine を参考） */
.ctaBannerBar::before {
    position: absolute;
    content: "";
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btnShine 4s ease-in-out infinite;
    pointer-events: none;
}

/* ホバー: 押し込み（沈む）＋影を縮小、パルス停止 */
.ctaBanner:hover {
    animation: none;
}

.ctaBanner:hover .ctaBannerBar {
    transform: translateY(2px);
    box-shadow: 0 6px 0 0 var(--colorAccentShadow);
}

.ctaBanner:active .ctaBannerBar {
    transform: translateY(4px);
    box-shadow: 0 4px 0 0 var(--colorAccentShadow);
}

@media print, screen and (max-width: 767px) {
    .ctaBanner:hover .ctaBannerBar {
        box-shadow: 0 4px 0 0 var(--colorAccentShadow);
    }

    .ctaBanner:active .ctaBannerBar {
        transform: translateY(3px);
        box-shadow: 0 3px 0 0 var(--colorAccentShadow);
    }
}

@keyframes btnShine {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* 資料アイコン: バーの外（.ctaBanner 直下）に置き、バー左に重ねて配置。
   バー底に揃え、上に 12px はみ出す（バー高さ60px + 12px = 72px） */
.ctaBannerIcon {
    position: absolute;
    left: 6px;
    bottom: -33px;
    width: auto;
    height: 146px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}

@media print, screen and (max-width: 500px) {
    .ctaBannerIcon {
        left: 6px;
        bottom: -29px;
        /* バー高さ58px + 12px = 70px */
        height: 132px;
    }
}

@media print, screen and (max-width: 470px) {
    .ctaBannerIcon {
        left: 0;
        bottom: -30px;
        height: 124px;
    }
}

@media print, screen and (max-width: 400px) {
    .ctaBannerIcon {
        left: -1px;
        bottom: -29px;
        height: 120px;
    }
}

.ctaBannerIcon img {
    /* 高さ基準で幅は縦横比から自動算出（width:100% による Safari の循環参照を回避）。
       max-width:none で共通 img ルール（max-width:100%）の影響も無効化 */
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

.ctaBannerText {
    font-family: var(--fontJp);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

@media print, screen and (max-width: 767px) {
    .ctaBannerText {
        font-size: 18px;
    }
}

@media print, screen and (max-width: 470px) {
    .ctaBannerText {
        font-size: 16px;
    }
}

@media print, screen and (max-width: 400px) {
    .ctaBannerText {
        font-size: 15px;
    }
}

/* 矢印: 右端に絶対配置（smart-safe の cv8_btn-arrow に準拠） */
.ctaBannerArrow {
    position: absolute;
    right: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

@media print, screen and (max-width: 767px) {
    .ctaBannerArrow {
        right: 20px;
        width: 18px;
        height: 18px;
    }
}

@media print, screen and (max-width: 470px) {
    .ctaBannerArrow {
        right: 14px;
        width: 16px;
        height: 16px;
    }
}

@media print, screen and (max-width: 400px) {
    .ctaBannerArrow {
        right: 6px;
        width: 14px;
        height: 14px;
    }
}

.ctaBannerArrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ホバー: 矢印が右へスライド */
.ctaBanner:hover .ctaBannerArrow {
    transform: translateX(3px);
}

/* 共通紺ボタンCTA（物件探しはコチラから）: ctaBanner と同じUIを紺色で実装 */
.ctaEstate {
    display: block;
    margin: 24px auto 0;
    max-width: 480px;
    width: 100%;
    text-decoration: none;
    animation: dokunDokun 1300ms ease infinite;
}

/* 上の手書き風キャプション（画像） */
.ctaEstateCaption {
    display: block;
    max-width: 320px;
    margin: 0 auto 8px;
}

.ctaEstateCaption img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 紺のボタン本体: テキスト中央＋右端に矢印 */
.ctaEstateBar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 40px;
    background-color: var(--colorEstate);
    box-shadow: 0 8px 0 0 var(--colorEstateShadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media print, screen and (max-width: 767px) {
    .ctaEstateBar {
        height: 58px;
        padding: 0 20px;
        box-shadow: 0 6px 0 0 var(--colorEstateShadow);
    }
}

/* 光沢アニメ: 白い光がボタンを横切る */
.ctaEstateBar::before {
    position: absolute;
    content: "";
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: btnShine 4s ease-in-out infinite;
    pointer-events: none;
}

/* ホバー: 押し込み（沈む）＋影を縮小、パルス停止 */
.ctaEstate:hover {
    animation: none;
}

.ctaEstate:hover .ctaEstateBar {
    transform: translateY(2px);
    box-shadow: 0 6px 0 0 var(--colorEstateShadow);
}

.ctaEstate:active .ctaEstateBar {
    transform: translateY(4px);
    box-shadow: 0 4px 0 0 var(--colorEstateShadow);
}

@media print, screen and (max-width: 767px) {
    .ctaEstate:hover .ctaEstateBar {
        box-shadow: 0 4px 0 0 var(--colorEstateShadow);
    }

    .ctaEstate:active .ctaEstateBar {
        transform: translateY(3px);
        box-shadow: 0 3px 0 0 var(--colorEstateShadow);
    }
}

.ctaEstateText {
    font-family: var(--fontJp);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

@media print, screen and (max-width: 767px) {
    .ctaEstateText {
        font-size: 18px;
    }
}

@media print, screen and (max-width: 470px) {
    .ctaEstateText {
        font-size: 16px;
    }
}

@media print, screen and (max-width: 400px) {
    .ctaEstateText {
        font-size: 15px;
    }
}

/* 矢印: 右端に絶対配置 */
.ctaEstateArrow {
    position: absolute;
    right: 40px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

@media print, screen and (max-width: 767px) {
    .ctaEstateArrow {
        right: 20px;
        width: 18px;
        height: 18px;
    }
}

.ctaEstateArrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ホバー: 矢印が右へスライド */
.ctaEstate:hover .ctaEstateArrow {
    transform: translateX(3px);
}

/* 鼓動アニメ */
@keyframes dokunDokun {
    0%, 70%, 100% { transform: scale(1); }
    35% { transform: scale(1.03); }
}

/* ====================================
     FV（フルブリード画像 + テキスト/ロゴ全オーバーレイ）
  ==================================== */
.fv {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; /* img の baseline gap を除去 */
    background-color: #000; /* 画像読み込み前のフォールバック */
    overflow: hidden;
}

.fvHero {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    min-height: 460px;
    object-fit: cover;
}

/* 背景画像の上に半透明の黒マスクを重ね、白文字の可読性を確保 */
.fvMask {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.26);
}

.fvHeader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 16px 16px;
    line-height: 0;
}

.fvHeaderLogo img {
    height: 36px;
    width: auto;
}

@media print, screen and (max-width: 767px) {
    .fvHeaderLogo img {
        height: 30px;
    }
}

.fvContent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 64px 16px 24px;
    text-align: center;
    line-height: 1.5;
}

@media print, screen and (max-width: 767px) {
    .fvContent {
        padding: 56px 16px 20px;
    }
}

.fvLabel {
    display: inline-block;
    background-color: var(--colorAccent);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    padding: 8px 24px;
    border-radius: 4px;
    white-space: nowrap;
    margin: 0;
}

@media print, screen and (max-width: 767px) {
    .fvLabel {
        font-size: 15px;
        padding: 6px 18px;
    }
}

.fvHeading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fvTitle {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

@media print, screen and (max-width: 767px) {
    .fvTitle {
        font-size: 28px;
    }
}

.fvSubtitle {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

@media print, screen and (max-width: 767px) {
    .fvSubtitle {
        font-size: 18px;
    }
}

.fvNote {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
    font-weight: 700;
}

@media print, screen and (max-width: 767px) {
    .fvNote {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* ====================================
     CTA (フル版)
  ==================================== */
.cta {
    background-color: var(--colorBg);
    padding: 8px 16px 36px;
}

.ctaContainer {
    max-width: 480px;
    margin: 6px auto 0;
    text-align: center;
}

/* No.1 バッジ + 実績2件のまとまり。
   ブラウザ幅 370px 以上で横並び（3カラム）、未満は縦並びに切り替える。 */
.ctaStats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
}

.ctaStats .ctaNo1,
.ctaStats .ctaRecordItem {
    width: 100%;
    max-width: 240px;
    margin: 0;
}

.ctaStats img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 370px) {
    .ctaStats {
        flex-direction: row;
        gap: 8px;
    }

    /* 3枚を均等3分割。min-width:0 でカラムが縮めるようにして折り返しを防ぐ */
    .ctaStats .ctaNo1,
    .ctaStats .ctaRecordItem {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }
}

/* 資料紹介（intro 画像 + 自動再生の eBook プレビュー動画）。
   intro 画像の下向き矢印から動画へ視線が流れるよう、両者を近接配置する。 */
.ebook {
    margin: 4px auto 0;
}

.ebookIntro {
    margin-bottom: 8px;
}

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

.ebookVideo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ====================================
     SEC1
  ==================================== */
.sec1 {
    background-color: var(--colorBg);
    padding: var(--sectionPadY) 16px 36px;
}

.sec1Container {
    max-width: 540px;
    margin: 0 auto;
}

.sec1Eyebrow {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 56px;
    color: #E5C46A;
    text-align: center;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    line-height: 1.2;
}

@media print, screen and (max-width: 767px) {
    .sec1Eyebrow {
        font-size: 50px;
    }
}

.sec1Title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 32px;
    color: var(--colorText);
}

@media print, screen and (max-width: 767px) {
    .sec1Title {
        font-size: 26px;
        margin-bottom: 24px;
    }
}

.sec1TitleLine {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(transparent 80%, var(--colorAccent) 80%, var(--colorAccent) 94%, transparent 94%);
    padding: 0 4px;
}

.sec1Item {
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec1Item {
        margin-bottom: 20px;
    }
}

.sec1ItemImage {
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}

.sec1ItemImage img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
}

.sec1ItemLabel {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    font-size: 34px;
    font-family: "Parisienne", cursive;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

@media print, screen and (max-width: 767px) {
    .sec1ItemLabel {
        font-size: 28px;
        bottom: 6px;
    }
}

.sec1ItemCaption {
    font-size: 14px;
    line-height: 1.8;
    color: var(--colorText);
}

@media print, screen and (max-width: 767px) {
    .sec1ItemCaption {
        font-size: 13px;
    }
}

.sec1Highlight {
    background-color: var(--colorSoft);
    color: var(--colorText);
    border-top: 3px solid var(--colorGold);
    padding: 40px 24px;
    /* 親の padding と中央コンテナ(540px)を抜けて LP 幅いっぱい（モバイルは画面幅いっぱい）に広げる */
    width: 100vw;
    max-width: var(--containerMax);
    margin: 32px 0 0 50%;
    transform: translateX(-50%);
    text-align: center;
}

@media print, screen and (max-width: 767px) {
    .sec1Highlight {
        padding: 32px 20px;
        margin-top: 24px;
    }
}

.sec1HighlightTitle {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 540px;
    color: var(--colorText);
}

@media print, screen and (max-width: 767px) {
    .sec1HighlightTitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.sec1HighlightAccent {
    color: var(--colorEstate);
    background: linear-gradient(transparent 72%, rgba(184, 149, 84, 0.35) 72%);
    padding: 0 2px;
}

.sec1HighlightBody {
    font-size: 15px;
    line-height: 1.9;
    color: var(--colorText);
    text-align: left;
    max-width: 540px;
    margin: 0 auto;
}

@media print, screen and (max-width: 767px) {
    .sec1HighlightBody {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ====================================
     SEC2
  ==================================== */
.sec2 {
    background-color: var(--colorBg);
    padding: var(--sectionPadY) 16px 36px;
}

.sec2Hero {
    margin-bottom: 32px;
}

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

.sec2Container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 16px;
}

.sec2Eyebrow {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-size: 56px;
    color: #E5C46A;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 8px;
}

@media print, screen and (max-width: 767px) {
    .sec2Eyebrow {
        font-size: 50px;
    }
}

.sec2Title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec2Title {
        font-size: 30px;
    }
}

.sec2Lead {
    font-size: 15px;
    line-height: 1.9;
    color: var(--colorText);
    margin-bottom: 40px;
}

@media print, screen and (max-width: 767px) {
    .sec2Lead {
        font-size: 14px;
        margin-bottom: 32px;
    }
}

.sec2Subtitle {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec2Subtitle {
        font-size: 26px;
    }
}

/* 非推奨カード（新築マンション）: 白×グレーで控えめに後退させる */
.sec2Card {
    background-color: var(--colorBg);
    border: 2px solid var(--colorLine);
    border-radius: 8px;
    padding: 26px 22px;
    margin-bottom: 16px;
    text-align: center;
}

@media print, screen and (max-width: 767px) {
    .sec2Card {
        padding: 24px 20px;
    }
}

/* 推奨カード（中古＋リノベ）: 黄色の太枠で前に出す（ベタ塗り・影・バッジなし） */
.sec2CardMain {
    border: 4px solid #F5E04B;
}

.sec2CardLabel {
    font-size: 28px;
    font-weight: 800;
    color: var(--colorMuted);
    padding-bottom: 12px;
    margin: 0 0 18px;
    border-bottom: 3px solid var(--colorLine);
}

/* 推奨カードの見出しは濃い文字＋黄色下線で強調 */
.sec2CardMain .sec2CardLabel {
    color: var(--colorText);
    border-bottom-color: #F5E04B;
}

@media print, screen and (max-width: 767px) {
    .sec2CardLabel {
        font-size: 24px;
    }
}

.sec2CardSpec {
    margin: 0;
}

.sec2CardSpecTitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--colorMuted);
    margin-bottom: 6px;
}

/* 2つ目以降の見出し（カスタマイズ）の上に余白 */
.sec2CardArea + .sec2CardSpecTitle {
    margin-top: 18px;
}

.sec2CardPrice {
    font-size: 26px;
    font-weight: 800;
    color: var(--colorText);
    margin: 0 0 10px;
    line-height: 1.4;
}

@media print, screen and (max-width: 767px) {
    .sec2CardPrice {
        font-size: 22px;
    }
}

.sec2CardArea {
    font-size: 14px;
    font-weight: 700;
    color: var(--colorMuted);
    margin: 0;
}

.sec2CardCustom {
    font-size: 26px;
    font-weight: 800;
    color: var(--colorText);
    margin: 0;
}

@media print, screen and (max-width: 767px) {
    .sec2CardCustom {
        font-size: 22px;
    }
}

.sec2Caption {
    font-size: 12px;
    color: var(--colorText);
    text-align: right;
    margin-bottom: 40px;
}

@media print, screen and (max-width: 767px) {
    .sec2Caption {
        font-size: 11px;
        text-align: left;
    }
}

.sec2Summary {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 32px;
}

@media print, screen and (max-width: 767px) {
    .sec2Summary {
        font-size: 16px;
    }
}

.sec2SummaryStrong {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 8px;
}

@media print, screen and (max-width: 767px) {
    .sec2SummaryStrong {
        font-size: 20px;
    }
}

.sec2SummaryMark {
    background: linear-gradient(transparent 60%, #F5E04B 60%);
}

/* ====================================
     SEC3
  ==================================== */
.sec3 {
    background-color: var(--colorBg);
    padding: var(--sectionPadY) 16px 36px;
}

.sec3Container {
    max-width: 540px;
    margin: 0 auto;
}

.sec3Eyebrow {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-size: 56px;
    color: #E5C46A;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 8px;
}

@media print, screen and (max-width: 767px) {
    .sec3Eyebrow {
        font-size: 50px;
    }
}

.sec3Title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec3Title {
        font-size: 30px;
    }
}

.sec3Lead {
    font-size: 15px;
    line-height: 1.9;
    color: var(--colorText);
    margin-bottom: 16px;
}

@media print, screen and (max-width: 767px) {
    .sec3Lead {
        font-size: 14px;
    }
}

.sec3Card {
    background-color: var(--colorBg);
    border: 2px solid #F5E04B;
    border-radius: 8px;
    padding: 0 0 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.sec3CardTitle {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    color: var(--colorText);
    background-color: #F5E04B;
    padding: 14px 16px;
    margin: 0 0 20px;
}

@media print, screen and (max-width: 767px) {
    .sec3CardTitle {
        font-size: 26px;
    }
}

/* 注意が必要（非推奨）カード: グレーの枠＋グレーの見出し帯で「良い＝黄／注意＝グレー」と色分け */
.sec3CardCare {
    border-color: var(--colorLine);
}

.sec3CardCare .sec3CardTitle {
    background-color: #EFEFEF;
    color: var(--colorMuted);
}

.sec3CardList {
    list-style: none;
    margin: 0;
    padding: 0 22px;
}

.sec3CardList li {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--colorText);
    margin-bottom: 12px;
}

.sec3CardList li:last-child {
    margin-bottom: 0;
}

@media print, screen and (max-width: 767px) {
    .sec3CardList li {
        font-size: 17px;
    }
}

.sec3Doubt {
    text-align: center;
    margin: 16px 0 0;
}

.sec3DoubtLead {
    font-size: 20px;
    font-weight: 700;
    color: var(--colorText);
    margin-bottom: 8px;
}

.sec3DoubtTitle {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--colorText);
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec3DoubtTitle {
        font-size: 24px;
    }
}

.sec3DoubtImage {
    max-width: 280px;
    margin: 0 auto;
}

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

.sec3Pro {
    background-color: var(--colorBg);
    border: 2px solid #F5E04B;
    border-radius: 8px;
    padding: 0 0 28px;
    overflow: hidden;
    text-align: center;
}

.sec3ProTitle {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--colorText);
    background-color: #F5E04B;
    padding: 18px 16px;
    margin: 0 0 24px;
}

@media print, screen and (max-width: 767px) {
    .sec3ProTitle {
        font-size: 25px;
    }
}

.sec3ProLead {
    font-size: 15px;
    line-height: 1.9;
    color: var(--colorText);
    text-align: left;
    margin: 0 0 28px;
    padding: 0 22px;
}

@media print, screen and (max-width: 767px) {
    .sec3ProLead {
        font-size: 14px;
        padding: 0 20px;
    }
}

.sec3ProStaff {
    padding: 0 22px;
}

@media print, screen and (max-width: 767px) {
    .sec3ProStaff {
        padding: 0 20px;
    }
}

.sec3ProStaff img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ====================================
     SEC4
  ==================================== */
.sec4 {
    background-color: var(--colorBg);
    padding: var(--sectionPadY) 16px 36px;
}   

.sec4Container {
    max-width: 540px;
    margin: 0 auto;
}

.sec4Eyebrow {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-size: 56px;
    color: #E5C46A;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec4Eyebrow {
        font-size: 50px;
    }
}

.sec4Title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 40px;
}


/* キーフレーズを黄色マーカーで強調（sec1〜3 の黄色言語に統一） */
.sec4TitleMark {
    background: linear-gradient(transparent 62%, #F5E04B 62%);
    padding: 0 4px;
}

@media print, screen and (max-width: 767px) {
    .sec4Title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

.sec4Reason {
    margin-bottom: 56px;
}

@media print, screen and (max-width: 767px) {
    .sec4Reason {
        margin-bottom: 44px;
    }
}

/* 理由の見出し: 上下の罫線で挟むルールドヘッダー（上＝紺太線／下＝細線）で各項目を区切る */
.sec4ReasonTitle {
    position: relative;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--colorText);
    text-align: center;
    padding: 30px 16px 14px;
    margin-bottom: 24px;
    border-top: 2px solid var(--colorEstate);
    border-bottom: 1px solid var(--colorLine);
}

@media print, screen and (max-width: 767px) {
    .sec4ReasonTitle {
        font-size: 19px;
    }
}

/* 番号: 上罫線の中央に重ねて配置。フォントは LP の明朝（--fontSerif）で調和 */
.sec4ReasonNum {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--colorBg);
    color: var(--colorEstate);
    font-family: var(--fontSerif);
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    padding: 0 14px;
}

@media print, screen and (max-width: 767px) {
    .sec4ReasonNum {
        font-size: 28px;
    }
}

.sec4ReasonAccent {
    color: var(--colorAccent);
}

.sec4ReasonLead {
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 28px;
}

@media print, screen and (max-width: 767px) {
    .sec4ReasonLead {
        font-size: 14px;
    }
}

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

.sec4MapImage {
    margin-bottom: 24px;
}

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

.sec4Showroom {
    margin-bottom: 8px;
}

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

/* ====================================
     SEC5
  ==================================== */
.sec5 {
    background-color: var(--colorBg);
    padding: 20px 16px 36px;
}

.sec5Container {
    max-width: 540px;
    margin: 0 auto;
}

.sec5Title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 24px;
}

@media print, screen and (max-width: 767px) {
    .sec5Title {
        font-size: 27px;
    }
}

.sec5WomanImage {
    max-width: 280px;
    margin: 0 auto 32px;
}

.sec5WomanImage img {
    width: 80%;
    height: auto;
}

.sec5Qa {
    background-color: var(--colorBg);
    border: 1px solid var(--colorLine);
    border-left: 5px solid var(--colorEstate);
    border-radius: 8px;
    padding: 26px 22px;
    margin-bottom: 16px;
}

@media print, screen and (max-width: 767px) {
    .sec5Qa {
        padding: 22px 18px;
    }
}

/* 質問: Qバッジ（紺の丸）を左に置く1パターンに統一 */
.sec5QaQuestion {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--colorText);
    text-align: left;
    margin-bottom: 16px;
}

@media print, screen and (max-width: 767px) {
    .sec5QaQuestion {
        font-size: 19px;
    }
}

.sec5QaMark {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--colorEstate);
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
}

.sec5QaAnswer {
    font-size: 15px;
    line-height: 1.9;
    color: var(--colorText);
}

@media print, screen and (max-width: 767px) {
    .sec5QaAnswer {
        font-size: 14px;
    }
}

.sec5QaAnswerLabel {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    color: var(--colorEstate);
    margin-right: 4px;
}

.sec5Closing {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--colorText);
    text-align: center;
    margin: 20px 0 0;
}

@media print, screen and (max-width: 767px) {
    .sec5Closing {
        font-size: 22px;
    }
}

/* ====================================
     SEC6
  ==================================== */
.sec6 {
    background-color: var(--colorBg);
    padding-bottom: 36px;
}

.sec6Hero {
    margin-bottom: 24px;
}

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

.sec6Container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 16px;
}

.sec6Eyebrow {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-size: 56px;
    color: #E5C46A;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin-bottom: 8px;
}

@media print, screen and (max-width: 767px) {
    .sec6Eyebrow {
        font-size: 50px;
    }
}

.sec6Title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    color: var(--colorText);
    margin-bottom: 40px;
}

@media print, screen and (max-width: 767px) {
    .sec6Title {
        font-size: 27px;
        margin-bottom: 32px;
    }
}

/* お客様の声カード: 写真上＋白カード（細枠）で各件の境界を明確化 */
.sec6Voice {
    background-color: var(--colorBg);
    border: 1px solid var(--colorLine);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

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

.sec6VoiceContent {
    padding: 22px 20px 24px;
}

@media print, screen and (max-width: 767px) {
    .sec6VoiceContent {
        padding: 20px 18px 22px;
    }
}

/* 「Voice 0X」ラベル: eyebrow と同じ Italianno 金色で統一 */
.sec6VoiceNo {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-size: 34px;
    line-height: 1;
    color: #E5C46A;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.sec6VoiceHead {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--colorText);
    margin-bottom: 14px;
}

@media print, screen and (max-width: 767px) {
    .sec6VoiceHead {
        font-size: 24px;
    }
}

.sec6VoiceBody {
    font-size: 16px;
    line-height: 1.9;
    color: var(--colorText);
    margin-bottom: 16px;
}

@media print, screen and (max-width: 767px) {
    .sec6VoiceBody {
        font-size: 15px;
    }
}

/* 属性（誰の声か）: 下部に区切り線付きで配置。2行・階層型 */
.sec6VoiceMeta {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--colorLine);
}

/* 1行目: 世帯・エリア（やや濃く） */
.sec6VoiceWho {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--colorText);
}

/* 2行目: 物件情報（一段薄く小さく） */
.sec6VoiceProp {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--colorMuted);
    margin-top: 3px;
}

  /* ====================================
       Footer Section
    ==================================== */

  /* .footerのみindex.htmlに記載({$AWS_ASSETS_RENOVEFUDOSAN}の仕様があるため） */
  .footerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.footerContainer {
    max-width: 544px;
    margin: 20px auto 0;
    position: relative;
    z-index: 2;
    padding: 0;
}

.footerContent {
    display: block;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footerLogos {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-bottom: 64px;
    flex-direction: column;
}

.footerLogoMain {
    width: 240px;
}

.footerLogoSub {
    height: auto;
    width: auto;
    max-height: 70px;
}

.footerInfo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 32px;
}

.footerAddress {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.footerContact {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.footerContactTel {
    color: #119CDA;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footerPrivacy {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 40px;
}

.footerPrivacyLink {
    color: white;
    text-decoration: none;
    font-size: inherit;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footerCopyright {
    font-size: 10px;
    font-weight: 400;
}

/* ====================================
             SP Fixed Footer CTA
     ==================================== */
.spFixedCta {
    position: fixed;
    bottom: 0;
    left: 50%;
    /* translate3d で GPU 合成レイヤー化し、モバイルブラウザのアドレスバー伸縮時のズレを抑える */
    transform: translate3d(-50%, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    width: 100%;
    max-width: 767px;
    z-index: 9999;
    background-color: #00375F;
}

.spFixedCtaLink {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    /* bar 高さ固定 */
    height: 52px;
    /* 左パディングでアイコン領域（幅 + 左余白 + 右余白）を確保 */
    padding-left: 120px;
    text-decoration: none;
    color: #fff;
}

/* アイコン: サイズはそのまま、bar の底辺より下へ -60px シフトして overhang を抑える
       （request_icon.png.webp の下部には余白があるため、下側のクリップは design 本体に影響しない想定） */
.spFixedCtaIcon {
    position: absolute;
    left: 4px;
    bottom: -24px;
    width: calc((clamp(80px, 13vw, 80px) + 20px) * 1.2);
    height: calc((clamp(72px, 13vw, 72px) + 20px) * 1.2);
}

.spFixedCtaIcon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.spFixedCtaText {
    flex: 1;
    font-family: var(--fontJp);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

.spFixedCtaArrow {
    flex-shrink: 0;
    width: clamp(40px, 10vw, 56px);
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #052337;
}

.spFixedCtaArrow img {
    width: clamp(14px, 3.6vw, 18px);
    height: auto;
    filter: brightness(0) invert(1);
}

/* bodyに固定フッター分の余白を追加（bar 高さと一致） */
body {
    padding-bottom: 50px;
}

/* 540px 以上の画面では bar 幅を 400px に絞って中央寄せ
       （left: 50% + transform: translateX(-50%) が既にあるため幅だけ上書きすれば中央に収まる） */
@media (min-width: 540px) {
    .spFixedCta {
        width: 400px;
        max-width: 400px;
    }
}

/* 印刷時は非表示 */
@media print {
    body {
        padding-bottom: 0;
    }

    .spFixedCta {
        display: none;
    }
}
