@charset "UTF-8";
/* ================================================================
   LP_空き家_来店相談 — 空き家の売却 × 来店相談
   ================================================================ */

:root {
    --primary: #1B3A5C;
    --primary-dark: #122B45;
    --primary-light: #EAF0F7;
    --accent: #C67B5C;
    --accent-dark: #A86345;
    --accent-light: #FAF0EB;
    --text: #000;
    --text-light: #333;
    --text-heading: #1a1a1a;
    --white: #fff;
    --bg: #FAFAF8;
    --bg-gray: #F9FAFB;
    --border: #DDE3DF;
    --border-light: #ECEEF2;
    --charcoal: #2A3B3A;
    --charcoal-dark: #1F2C2B;
    --footer-accent: #8CA3C0;
    --radius: 12px;
    --btn-radius: 8px;
    --shadow: 0 2px 12px rgba(0, 0, 0, .06);
    --shadow-hover: 0 8px 28px rgba(0, 0, 0, .12);
    --transition: all 0.3s ease;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Sans JP', sans-serif;
    --font-en: serif;
    --font-num: serif;
}


/* ━━━━━━━━━━━━━━━━

 ■ 初期化

━━━━━━━━━━━━━━━━ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 80px;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    min-width: 0 !important;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ━━━━━━━━━━━━━━━━

 ■ ユーティリティ

━━━━━━━━━━━━━━━━ */

/* SP非表示 → PC表示 */
.u-hidden-sp {
    display: none;
}

@media (min-width: 769px) {
    .u-hidden-sp {
        display: block;
    }
    .u-hidden-pc {
        display: none;
    }
}

/* アニメーション基盤 */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━

 ■ コンポーネント

━━━━━━━━━━━━━━━━ */

/* ================================================================
   Component — c-section-title
   ================================================================ */

.c-section-title {
    margin-bottom: 48px;
    text-align: center;
}

@media (min-width: 769px) {
    .c-section-title {
        margin-bottom: 60px;
    }
}

.c-section-title__en {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.c-section-title__ja {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}

/* ================================================================
   Component — c-button
   ================================================================ */

.c-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid transparent;
    border-radius: var(--btn-radius);
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
}

@media (min-width: 769px) {
    .c-button {
        font-size: 15px;
    }
}

/* SVG アイコン */
.c-button svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Primary: 塗りつぶし */
.c-button--primary {
    background: var(--primary);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.c-button--primary:hover {
    color: #fff !important;
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Accent: アクセントカラー */
.c-button--accent {
    background: var(--accent);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.c-button--accent:hover {
    color: #fff !important;
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Outline: 白枠線（ヒーロー等の暗い背景用） */
.c-button--outline {
    border-color: #fff;
    color: #fff !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.c-button--outline:hover {
    color: var(--primary-dark) !important;
    background: #fff;
    transform: translateY(-2px);
}

/* Outline-dark: 色付き枠線（明るい背景用） */
.c-button--outline-dark {
    border-color: var(--primary);
    color: var(--primary) !important;
    text-decoration: none !important;
    background: var(--white);
}

.c-button--outline-dark:hover {
    color: #fff !important;
    background: var(--primary);
    transform: translateY(-2px);
}

/* LINE: LINEブランドカラー */
.c-button--line {
    background: #059B42;
    color: #fff !important;
    text-decoration: none !important;
    border-color: #059B42;
}

.c-button--line:hover {
    color: #fff !important;
    background: #048A3A;
    border-color: #048A3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ================================================================
   Component — c-panel
   ================================================================ */

.c-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 769px) {
    .c-panel {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* 左右反転 */
@media (min-width: 769px) {
    .c-panel--reverse {
        direction: rtl;
    }
    .c-panel--reverse > * {
        direction: ltr;
    }
}

.c-panel__img {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.12);
}

.c-panel__img img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.c-panel__img:hover img {
    transform: scale(1.03);
}

.c-panel__content {
    padding-top: 8px;
}

@media (min-width: 769px) {
    .c-panel__content {
        padding-top: 16px;
    }
}

.c-panel__content h3 {
    margin-bottom: 20px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--text);
}

.c-panel__content p {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    color: var(--text);
}

/* ================================================================
   Component — c-info-table
   ================================================================ */

.c-info-table {
    max-width: 800px;
}

.c-info-table__row {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 769px) {
    .c-info-table__row {
        flex-direction: row;
        align-items: baseline;
        gap: 24px;
        padding: 20px 0;
    }
}

.c-info-table__label {
    flex-shrink: 0;
    width: 140px;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

@media (min-width: 769px) {
    .c-info-table__label {
        margin-bottom: 0;
    }
}

.c-info-table__value {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.7;
    color: var(--text);
}

/* ================================================================
   CMS — h2.tit
   ================================================================ */
h2.tit {
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    background-color: transparent !important;
}

@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        font-size: clamp(24px, 30 / 1140 * 100vw, 30px);
    }
}


/* ━━━━━━━━━━━━━━━━

 ■ レイアウト

━━━━━━━━━━━━━━━━ */

/* ================================================================
   Layout — l-container
   ================================================================ */

.l-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   Layout — l-header（固定ヘッダー + ハンバーガー + モバイルメニュー）
   ================================================================ */

.l-header {
    margin-bottom: 0;
    position: relative;
    padding-top: 64px;
}

@media (min-width: 769px) {
    .l-header {
        padding-top: 72px;
    }
}

.l-header__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.l-header.is-scrolled .l-header__wrapper {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.l-header__inner {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 64px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 769px) {
    .l-header__inner {
        height: 72px;
        padding: 0 24px;
    }
}

.l-header__logo-img {
    height: 30px;
    width: auto;
}

@media (min-width: 769px) {
    .l-header__logo-img {
        height: clamp(30px, 30 / 1140 * 100vw, 35px);
    }
}

.l-header__nav {
    display: none;
}

@media (min-width: 1025px) {
    .l-header__nav {
        display: flex;
        gap: 26px;
    }

    .l-header__nav a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        transition: color 0.3s;
        text-decoration: none !important;
    }

    .l-header__nav a:hover {
        color: var(--primary);
    }
}

.l-header__cta {
    display: none;
    text-decoration: none !important;
}

@media (min-width: 1025px) {
    .l-header__cta {
        display: inline-flex;
        padding: 10px 22px;
        font-size: 13px;
    }
}

.l-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 1025px) {
    .l-header__hamburger {
        display: none;
    }
}

.l-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.l-header.is-menu-open .l-header__logo {
    visibility: hidden;
}

.l-header.is-menu-open .l-header__wrapper {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.l-header__hamburger.is-active span {
    background: #fff;
}

.l-header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.l-header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;   /* 古いブラウザ用フォールバック */
    height: 100dvh;  /* アドレスバーを除いた実視認域に追従 */
    background: rgba(27, 58, 92, 0.98);
    z-index: 999;
    padding: 80px 24px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;  /* メニュー端で背後ページが連鎖スクロールするのを防ぐ */
}

.l-header__mobile-menu.is-active {
    display: block;
}

.l-header__mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.l-header__mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s;
}

.l-header__mobile-nav a:hover {
    opacity: 0.8;
}

.l-header__mobile-nav .l-header__mobile-cta {
    display: block;
    margin-top: 16px;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: var(--btn-radius);
    border-bottom: none;
}

/* ================================================================
   Layout — l-footer
   ================================================================ */

.l-footer {
    background: var(--primary-light);
    color: var(--text-light);
    padding: 48px 20px calc(32px + 64px + env(safe-area-inset-bottom));
}

@media (min-width: 769px) {
    .l-footer {
        padding-bottom: 32px;
    }
}

.l-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 1140px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .l-footer__grid {
        grid-template-columns: 1fr 180px 180px;
        gap: 56px;
    }
}

.l-footer__logo-img {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}

.l-footer__logo {
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.l-footer__brand-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.l-footer__heading {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    opacity: 0.8;
}

.l-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.l-footer__nav a {
    font-size: 14px;
    color: var(--text-light);
    transition: opacity 0.2s;
    text-decoration: none !important;
}

.l-footer__nav a:hover {
    opacity: 1;
    color: var(--primary-dark);
}

/* コピーライト */
.copyright {
    margin: 0;
    padding: 3px 20px 58px 20px !important;
    background: var(--primary-light) !important;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

@media (min-width: 769px) {
    .copyright {
        padding: 6px 20px 10px 20px !important;
    }
}

/* ================================================================
   Layout — l-fixed-cta（SP固定: 電話 + 来店予約）
   ================================================================ */

.l-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 769px) {
    .l-fixed-cta {
        display: none;
    }
}

.l-fixed-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.l-fixed-cta__button svg {
    width: 20px;
    height: 20px;
}

.l-fixed-cta__button--tel {
    background: var(--primary);
}

.l-fixed-cta__button--reserve {
    background: var(--accent);
}

/* ================================================================
   Global — l-page-top
   ================================================================ */

.l-page-top {
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    font: inherit;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, box-shadow 0.3s;
    z-index: 800;
}

@media (min-width: 769px) {
    .l-page-top {
        display: flex;
    }

    .l-page-top.is-show {
        opacity: 1;
        visibility: visible;
    }
}

.l-page-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.l-page-top svg {
    width: 24px;
    height: 24px;
}


/* ━━━━━━━━━━━━━━━━

 ■ セクション固有

━━━━━━━━━━━━━━━━ */

/* ================================================================
   Section — s-hero-split-clip（ヒーロー）
   ================================================================ */

.s-hero-split-clip {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-hero-split-clip {
        flex-direction: row;
        align-items: stretch;
        min-height: 550px;
    }
}

.s-hero-split-clip__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
    padding: 40px 24px 48px;
    z-index: 2;
}

@media (min-width: 769px) {
    .s-hero-split-clip__content {
        order: 1;
        width: 55%;
        padding: 80px 60px 80px 40px;
    }
}

@media (min-width: 1140px) {
    .s-hero-split-clip__content {
        padding-left: calc((100vw - 1140px) / 2);
        padding-right: 40px;
    }
}

.s-hero-split-clip__title {
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #222;
}

@media (min-width: 769px) {
    .s-hero-split-clip__title {
        margin-bottom: 28px;
        line-height: 1.35;
    }
}

.s-hero-split-clip__subtitle {
    margin-bottom: 32px;
    font-family: var(--font-base);
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 400;
    line-height: 1.9;
    color: #333;
}

@media (min-width: 769px) {
    .s-hero-split-clip__subtitle {
        margin-bottom: 36px;
    }
}

.s-hero-split-clip__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.s-hero-split-clip__actions a {
    text-decoration: none !important;
}

@media (min-width: 769px) {
    .s-hero-split-clip__actions {
        justify-content: flex-start;
    }
}

/* SP: ボタンを横幅いっぱいに */
.s-hero-split-clip__actions .c-button {
    width: 100%;
    max-width: 300px;
}

@media (min-width: 769px) {
    .s-hero-split-clip__actions .c-button {
        width: auto;
        max-width: none;
    }
}

.s-hero-split-clip__image {
    position: relative;
    order: 1;
    width: 100%;
    min-height: 200px;
}

@media (min-width: 769px) {
    .s-hero-split-clip__image {
        order: 2;
        width: 50%;
        min-height: auto;
        clip-path: polygon(25% 0, 100% 0, 100% 100%, 5% 100%);
        margin-left: -2%;
    }
}

.s-hero-split-clip__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
}

@media (max-width: 768px) {
    .s-hero-split-clip__image img {
        aspect-ratio: 16 / 9;
    }
}

/* ================================================================
   Section — s-about-split-stats（私たちについて）
   ================================================================ */

.s-about-split-stats {
    padding: 72px 12px;
    background: var(--primary-light);
}

@media (min-width: 769px) {
    .s-about-split-stats {
        padding: 100px 12px;
    }
}

/* 上段: 写真 + テキストの2カラムパネル */
.s-about-split-stats__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 56px;
}

@media (min-width: 769px) {
    .s-about-split-stats__panel {
        grid-template-columns: 5fr 7fr;
        gap: 48px;
    }
}

/* 写真 */
.s-about-split-stats__img {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.s-about-split-stats__img img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background-color: #f3f4f6;
    transition: transform 0.8s ease;
}

.s-about-split-stats__img:hover img {
    transform: scale(1.03);
}

/* テキストエリア */
.s-about-split-stats__content h3 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--text);
}

.s-about-split-stats__content p {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: var(--text);
}

.s-about-split-stats__content p + p {
    margin-top: 16px;
}

/* 下段: 補足テキストボックス */
.s-about-split-stats__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

@media (min-width: 769px) {
    .s-about-split-stats__stats {
        gap: 20px;
        padding: 30px 36px;
    }
}

.s-about-split-stats__stats-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(17px, 2.4vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
}

.s-about-split-stats__note {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: var(--text);
}

/* 保有資格（アイコン + テキスト） */
.s-about-split-stats__license {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.s-about-split-stats__license-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
}

.s-about-split-stats__license-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-dark);
}

.s-about-split-stats__note strong {
    display: inline;
    font-weight: 700;
    background: linear-gradient(transparent 62%, rgba(198, 123, 92, 0.3) 62%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* ================================================================
   Section — s-worry-grid-icon（お悩み）
   ================================================================ */

.s-worry-grid-icon {
    padding: 72px 12px;
}

@media (min-width: 769px) {
    .s-worry-grid-icon {
        padding: 100px 12px;
    }
}

.s-worry-grid-icon__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .s-worry-grid-icon__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 901px) {
    .s-worry-grid-icon__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.s-worry-grid-icon__card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}

.s-worry-grid-icon__card:hover {
    border-color: var(--primary);
}

.s-worry-grid-icon__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.s-worry-grid-icon__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
}

.s-worry-grid-icon__icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-dark);
}

.s-worry-grid-icon__title {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--text);
}

.s-worry-grid-icon__text {
    font-size: clamp(15px, 1.6vw, 16px);
    line-height: 1.8;
    color: var(--text-light);
}

/* グリッド下の解決メッセージ（任意） */
.s-worry-grid-icon__solution {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 22px 26px;
    text-align: center;
    font-size: clamp(15px, 1.9vw, 18px);
    font-weight: 700;
    line-height: 1.7;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: var(--radius);
}

/* ================================================================
   Section — s-reason-split（選ばれる理由）
   ================================================================ */

.s-reason-split {
    padding: 72px 12px;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-reason-split {
        padding: 100px 12px;
    }
}

/* パネル間の余白 + グリッド比率オーバーライド */
.s-reason-split .c-panel+.c-panel {
    margin-top: 48px;
}

@media (min-width: 769px) {
    .s-reason-split .c-panel {
        grid-template-columns: 4fr 7fr;
    }

    .s-reason-split .c-panel+.c-panel {
        margin-top: 64px;
    }
}

/* 番号 */
.s-reason-split__num {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-num);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--primary);
}

/* タイトル */
.s-reason-split__title {
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.8vw, 24px);
    font-weight: 700;
    color: var(--text);
}

/* 説明テキスト */
.s-reason-split__text {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

/* ================================================================
   Section — s-service-grid（サービス）
   ================================================================ */

.s-service-grid {
    padding: 72px 12px;
}

@media (min-width: 769px) {
    .s-service-grid {
        padding: 100px 12px;
    }
}

.s-service-grid__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 769px) {
    .s-service-grid__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

.s-service-grid__card {
    display: block;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.s-service-grid__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover, 0 8px 28px rgba(0, 0, 0, .12));
}

.s-service-grid__card-img {
    aspect-ratio: 2 / 1;
    overflow: hidden;
}

.s-service-grid__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
    transition: transform 0.4s ease;
}

.s-service-grid__card:hover .s-service-grid__card-img img {
    transform: scale(1.05);
}

.s-service-grid__card-body {
    padding: 20px 24px 24px 24px;
    border-top: 3px solid var(--accent);
}

@media (min-width: 769px) {
    .s-service-grid__card-body {
        padding: 22px 28px 28px 28px;
    }
}

.s-service-grid__card-title {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--text);
}

.s-service-grid__card-text {
    font-size: clamp(15px, 1.6vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

/* ================================================================
   Section — s-compare-table（空き家の出口の比較）
   ================================================================ */

.s-compare-table {
    padding: 72px 12px;
    background: var(--primary-light);
}

@media (min-width: 769px) {
    .s-compare-table {
        padding: 100px 12px;
    }
}

.s-compare-table__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .s-compare-table__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.s-compare-table__card {
    display: flex;
    flex-direction: column;
    padding: 20px 24px 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 769px) {
    .s-compare-table__card {
        padding: 20px 28px 32px 28px;
    }
}

.s-compare-table__card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.s-compare-table__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(42, 107, 138, 0.08);
}

.s-compare-table__card-num {
    flex-shrink: 0;
    font-family: var(--font-num);
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
    color: var(--primary);
}

.s-compare-table__card-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--text);
}

.s-compare-table__card-desc {
    margin-bottom: 20px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

.s-compare-table__card-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.s-compare-table__card-merit,
.s-compare-table__card-demerit {
    padding: 0;
}

.s-compare-table__card-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 12px;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 700;
    border-radius: 20px;
}

.s-compare-table__card-label--merit {
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--primary);
}

.s-compare-table__card-label--demerit {
    color: #B91C1C;
    background: var(--white);
    border: 1px solid #E5BFBF;
}

.s-compare-table__card-merit ul,
.s-compare-table__card-demerit ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.s-compare-table__card-merit li,
.s-compare-table__card-demerit li {
    position: relative;
    padding-left: 20px;
    font-size: clamp(14px, 1.5vw, 15px);
    line-height: 1.7;
    color: var(--text);
}

.s-compare-table__card-merit li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
}

.s-compare-table__card-demerit li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B91C1C;
    opacity: 0.4;
}

.s-compare-table__card-recommend {
    margin-top: auto;
    padding: 5px 0 7px 16px;
    font-size: clamp(14px, 1.5vw, 15px);
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

/* ================================================================
   Section — s-flow-timeline-icon（来店相談から売却完了までの流れ）
   ================================================================ */

.s-flow-timeline-icon {
    padding: 72px 12px;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-flow-timeline-icon {
        padding: 100px 12px;
    }
}

.s-flow-timeline-icon__timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

/* ノード中心を貫通する縦線 */
.s-flow-timeline-icon__timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--border);
}

.s-flow-timeline-icon__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
}

.s-flow-timeline-icon__item:first-child {
    padding-top: 0;
}

.s-flow-timeline-icon__item:last-child {
    padding-bottom: 0;
}

/* アイコンノード（縦線上の円） */
.s-flow-timeline-icon__node {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
}

.s-flow-timeline-icon__node svg {
    width: 24px;
    height: 24px;
}

/* 最初のステップはアクセント色で起点を強調 */
.s-flow-timeline-icon__item:first-child .s-flow-timeline-icon__node {
    background: var(--accent);
}

.s-flow-timeline-icon__content {
    flex: 1;
    padding-top: 3px;
}

/* STEP 番号ラベル */
.s-flow-timeline-icon__step {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-num);
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.s-flow-timeline-icon__title {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--text);
}

.s-flow-timeline-icon__desc {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text-light);
}

/* ================================================================
   Section — s-voice-grid（お客様の声）
   ================================================================ */

.s-voice-grid {
    padding: 72px 12px;
    background: var(--primary-light);
}

@media (min-width: 769px) {
    .s-voice-grid {
        padding: 100px 12px;
    }
}

.s-voice-grid__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

@media (min-width: 769px) {
    .s-voice-grid__grid {
        gap: 32px;
    }
}

/* カード */
.s-voice-grid__card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow, 0 2px 12px rgba(0, 0, 0, .06));
    transition: transform 0.3s, box-shadow 0.3s;
}

/* 右下の大きな装飾引用符 */
.s-voice-grid__card::after {
    content: '"';
    position: absolute;
    right: -8px;
    bottom: -20px;
    font-family: serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.s-voice-grid__card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover, 0 8px 28px rgba(0, 0, 0, .12));
}

/* テキスト（左上に引用符アイコン） */
.s-voice-grid__text {
    position: relative;
    flex: 1;
    padding-top: 32px;
    padding-left: 4px;
    margin-bottom: 16px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

.s-voice-grid__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-family: serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
}

/* フッター（区切り線付き） */
.s-voice-grid__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

@media (min-width: 769px) {
    .s-voice-grid__footer {
        gap: 16px;
    }
}

.s-voice-grid__avatar {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

@media (min-width: 769px) {
    .s-voice-grid__avatar {
        width: 64px;
        height: 64px;
    }
}

.s-voice-grid__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.s-voice-grid__profile {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.s-voice-grid__tag {
    padding: 3px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark);
    background: var(--accent-light);
    border-radius: 4px;
}

.s-voice-grid__name {
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 700;
    color: var(--text);
}

.s-voice-grid__meta {
    font-size: clamp(14px, 1.5vw, 15px);
    color: var(--text-light);
}

/* ================================================================
   Section — s-faq-list-qa（よくあるご質問）
   ================================================================ */

.s-faq-list-qa {
    padding: 72px 12px;
    background: var(--bg);
}

@media (min-width: 769px) {
    .s-faq-list-qa {
        padding: 100px 12px;
    }
}

.s-faq-list-qa__list {
    max-width: 840px;
    margin: 0 auto;
}

.s-faq-list-qa__more {
    margin-top: 48px;
    text-align: center;
}

.s-faq-list-qa__item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.s-faq-list-qa__item:first-child {
    padding-top: 0;
}

.s-faq-list-qa__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* 質問 */
.s-faq-list-qa__q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    line-height: 1.6;
    color: var(--text);
}

/* 回答 */
.s-faq-list-qa__a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: var(--text);
}

/* Q / A バッジ（丸） */
.s-faq-list-qa__q-badge,
.s-faq-list-qa__a-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: var(--font-en);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.s-faq-list-qa__q-badge {
    background: var(--accent);
}

.s-faq-list-qa__a-badge {
    background: var(--primary);
}

/* ================================================================
   Section — s-cta-centered-dual（CTA）
   ================================================================ */

.s-cta-centered-dual {
    padding: 72px 12px;
    background: var(--primary-dark); /* fallback */
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-dark) 70%, #000), var(--primary));
    text-align: center;
}

@media (min-width: 769px) {
    .s-cta-centered-dual {
        padding: 100px 12px;
    }
}

.s-cta-centered-dual__inner {
    max-width: 720px;
    margin-inline: auto;
}

.s-cta-centered-dual__title {
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #fff;
}

.s-cta-centered-dual__text {
    margin: 0 0 32px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.s-cta-centered-dual__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.s-cta-centered-dual__buttons .c-button {
    min-width: 220px;
}

@media (max-width: 480px) {
    .s-cta-centered-dual__buttons {
        flex-direction: column;
    }
    .s-cta-centered-dual__buttons .c-button {
        width: 100%;
        min-width: 0;
    }
}

.s-cta-centered-dual__note {
    margin: 20px 0 0;
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================================================
   Section — s-cta-visit-mail（訪問説明のご案内 + メールお問合せ）
   ================================================================ */

.s-cta-visit-mail {
    padding: 56px 12px;
    background-color: var(--primary-light);
    /* 細かいドットのテクスチャ（控えめ） */
    background-image: radial-gradient(rgba(27, 58, 92, 0.07) 1px, transparent 1px);
    background-size: 14px 14px;
    text-align: center;
}

@media (min-width: 769px) {
    .s-cta-visit-mail {
        padding: 72px 12px;
    }
}

.s-cta-visit-mail__inner {
    max-width: 720px;
    margin-inline: auto;
}

.s-cta-visit-mail__title {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--primary);
}

.s-cta-visit-mail__text {
    margin: 0 0 28px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.9;
    color: var(--text);
}

.s-cta-visit-mail__buttons {
    display: flex;
    justify-content: center;
}

.s-cta-visit-mail__buttons .c-button {
    min-width: 260px;
}

@media (max-width: 480px) {
    .s-cta-visit-mail__buttons .c-button {
        width: 100%;
        min-width: 0;
    }
}

/* ================================================================
   Section — s-company-split-map（会社概要）
   ================================================================ */

.s-company-split-map {
    padding: 72px 12px;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-company-split-map {
        padding: 100px 12px;
    }
}

/* 写真 + テーブルの2カラム */
.s-company-split-map__overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .s-company-split-map__overview {
        grid-template-columns: 5fr 7fr;
        gap: 48px;
    }
}

/* 写真 */
.s-company-split-map__photo {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    align-self: start;
}

.s-company-split-map__photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background-color: #f3f4f6;
}

/* c-info-table の max-width をリセット */
.s-company-split-map__overview .c-info-table {
    max-width: none;
}

/* Google Maps */
.s-company-split-map__map {
    margin-top: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.s-company-split-map__map iframe,
.s-company-split-map__map img {
    display: block;
    width: 100% !important;
    height: 300px !important;
    border: 0;
}

@media (min-width: 769px) {
    .s-company-split-map__map iframe,
    .s-company-split-map__map img {
        height: 400px !important;
    }
}

/* Company Info Tel Link */
.c-info-table__value a {
    text-decoration: none;
    color: var(--text);
}

/* FAQ More Button */
.s-faq__more {
    margin-top: 48px;
    text-align: center;
}

/* Company Detail Button */
.s-company-split-map__more {
    margin-top: 48px;
    text-align: center;
}

@media (min-width: 769px) {
    .l-footer__logo-img {
        height: 33px;
    }
}