@charset "UTF-8";

/* ================================================================
   空家相談 Gentle Trust
   ================================================================ */

:root {
    --primary: #2E7D6F;
    --primary-dark: #1D5C50;
    --primary-light: #E8F5F0;
    --accent: #C67B5C;
    --accent-dark: #A8613F;
    --accent-light: #FDF2ED;
    --text: #333;
    --text-light: #555;
    --white: #fff;
    --bg: #FAFBF9;
    --section-bg: #F3F5F2;
    --charcoal: #2A3B3A;
    --border: #DDE3DF;
    --border-light: #EEF1EE;
    --gray: #8A9A96;
    --footer-bg: #FAFBF9;
    --footer-accent: #81B5A9;
    --radius: 12px;
    --radius-sm: 8px;
    --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;
}


/* ━━━━━━━━━━━━━━━━

 ■ 初期化

━━━━━━━━━━━━━━━━ */

/* ================================================================
   Foundation — Reset
   ================================================================
   *, html, body, img, a, ul/ol のリセット。
   テンプレートの :root で --bg, --text, --font-base を定義すること。
   ================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 0 !important;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none !important;
}

ul,
ol {
    list-style: none;
}


/* ━━━━━━━━━━━━━━━━

 ■ ユーティリティ

━━━━━━━━━━━━━━━━ */

/* ================================================================
   Utility
   ================================================================
   u-hidden-sp / u-hidden-pc: レスポンシブ表示切替
   [data-animate]: Intersection Observer アニメーション基盤
   ================================================================ */
.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);
}

/* アンカースクロール時のヘッダー分オフセット */
[id] {
    scroll-margin-top: 80px;
}


/* ━━━━━━━━━━━━━━━━

 ■ コンポーネント

━━━━━━━━━━━━━━━━ */

/* ================================================================
   Component — c-section-title
   ================================================================
   全セクション共通のタイトル構造（EN + JA）。
   参照: component-css.md §1
   ================================================================ */
.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(23px, 3vw, 30px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}

/* ================================================================
   Component — c-button
   ================================================================
   5バリアント: --primary / --accent / --outline / --outline-dark / --line
   参照: component-css.md §2
   ================================================================ */

.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);
}

@media (min-width: 769px) {
    .c-button {
        font-size: 15px;
    }
}

.c-button svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.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);
}

.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);
}

.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);
}

.c-button--outline-dark {
    border-color: var(--primary);
    color: var(--primary) !important;
    text-decoration: none !important;
    background: transparent;
}

.c-button--outline-dark:hover {
    color: #fff !important;
    background: var(--primary);
}

/* ================================================================
   Component — c-card / c-card-grid
   ================================================================
   汎用カード + グリッドコンテナ。
   参照: component-css.md §4
   ================================================================ */

.c-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 641px) {
    .c-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 901px) {
    .c-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

.c-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.c-card a {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.c-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.c-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.c-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
    transition: transform 0.4s ease;
}

.c-card:hover .c-card__image img {
    transform: scale(1.05);
}

.c-card__body {
    padding: 20px;
}

.c-card__title {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

@media (min-width: 769px) {
    .c-card__title {
        font-size: 18px;
    }
}

.c-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    font-size: clamp(15px, 1.9vw, 16px);
    line-height: 1.6;
    color: var(--text);
}

/* ================================================================
   Component — c-info-table
   ================================================================
   ラベル + 値のテーブルレイアウト（会社概要等）。
   参照: component-css.md §7
   ================================================================ */

.c-info-table {
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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);
}

/* ================================================================
   Component — c-stat-box
   ================================================================
   統計カード（実績数値等）。
   ================================================================ */

.c-stat-box {
    text-align: center;
    padding: 24px 16px;
}

.c-stat-box__value {
    display: block;
    font-family: var(--font-num);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.c-stat-box__unit {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    color: var(--primary);
}

.c-stat-box__label {
    display: block;
    margin-top: 8px;
    font-size: clamp(13px, 1.5vw, 14px);
    color: var(--text-light);
}

/* 「詳しく見る」リンクテキスト */
.c-card__more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s ease;
}

.c-card__more::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.c-card:hover .c-card__more::after {
    transform: translateX(4px);
}

/* ================================================================
   Component — c-accordion
   ================================================================
   開閉パネル。2つの制御方式をサポート:
     A) <details> ネイティブ（component-css.md §6 準拠）
     B) .is-open クラス＋JS制御
   参照: component-css.md §6
   ================================================================ */

.c-accordion__item {
    margin-bottom: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.c-accordion__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 600;
    color: var(--text);
    list-style: none;
    cursor: pointer;
    transition: background 0.2s;
}

/* <details> マーカー非表示 */
.c-accordion__question::-webkit-details-marker {
    display: none;
}

.c-accordion__question:hover {
    background: #f9fafb;
}

/* 開閉アイコン（疑似要素） */
.c-accordion__question::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
}

/* 方式A: <details> ネイティブ */
.c-accordion__item[open] .c-accordion__question::after {
    content: '\2212';
    transform: rotate(180deg);
}

/* 方式B: .is-open クラス＋JS制御 */
.c-accordion__item.is-open .c-accordion__question::after {
    content: '\2212';
    transform: rotate(180deg);
}

/* 回答エリア */
.c-accordion__answer {
    padding: 0 24px 24px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

/* 方式B: JS制御時のデフォルト非表示 */
.c-accordion__item:not([open]):not(.is-open) .c-accordion__answer {
    display: none;
}

/* ================================================================
   Component — c-banner
   ================================================================
   見出し + 説明文 + CTAボタンの横並びバナーカード。
   複数ページで再利用可能な汎用コンポーネント。
   ================================================================ */

.c-banner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid rgba(27, 58, 92, 0.6);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

@media (min-width: 769px) {
    .c-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 40px 48px;
    }
}

.c-banner__body {
    flex: 1;
    min-width: 0;
}

.c-banner__title {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
}

.c-banner__desc {
    font-size: clamp(15px, 1.6vw, 16px);
    line-height: 1.8;
    color: var(--text-light);
}

.c-banner__desc span {
    font-weight: 700;
    color: var(--text);
}

.c-banner__action {
    flex-shrink: 0;
    text-align: center;
}

.c-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff !important;
    text-decoration: none !important;
    background: var(--primary);
    border: none;
    border-radius: var(--btn-radius);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.c-banner__btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.c-banner__btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.3);
}

/* ================================================================
   CMS — h2.tit
   ================================================================
   CMSが出力するH2タイトルのスタイル。
   ================================================================ */
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
   ================================================================
   ページ幅制限コンテナ。
   max-width: 1140px（テナントCSS変数で上書き可）
   ================================================================ */
.l-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   Layout — l-header
   ================================================================
   固定ヘッダー + ハンバーガー + モバイルメニュー。
   l-header: padding-top でヘッダー高さ分のスペースを確保。
   l-header__wrapper: position: fixed で画面上部に固定。
   ================================================================ */

header {
    margin-bottom: 0 !important;
}

.l-header {
    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, .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: 28px;
    }

    .l-header__nav a {
        font-size: 14px;
        font-weight: 500;
        text-decoration: none !important;
        color: var(--text);
        transition: color 0.3s;
    }

    .l-header__nav a:hover {
        color: var(--primary);
    }
}

.l-header__cta {
    display: none;
}

@media (min-width: 1025px) {
    .l-header__cta {
        display: inline-flex;
        padding: 10px 24px;
        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__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;
    background: rgba(42, 59, 58, 0.98);
    z-index: 999;
    padding: 80px 24px 24px;
}

.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;
    text-decoration: none !important;
    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-cta {
    display: block;
    margin-top: 16px;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    color: #fff !important;
    background: var(--accent);
    border-radius: var(--btn-radius);
    border-bottom: none !important;
}

/* ================================================================
   Layout — l-footer
   ================================================================
   フッター + コピーライト。
   ================================================================ */

.l-footer {
    background: var(--footer-bg);
    color: var(--text);
    padding: 40px 20px 30px;
}

.l-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .l-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 56px;
    }
}

.l-footer__logo-img {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}

@media (min-width: 769px) {
    .l-footer__logo-img {
        height: 33px;
    }
}

.l-footer__brand-desc {
    font-size: 14px;
    line-height: 1.8;
}

.l-footer__heading {
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.l-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.l-footer__nav a {
    font-size: 14px;
    text-decoration: none !important;
    color: var(--text) !important;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.l-footer__nav a:hover {
    opacity: 1;
}

/* コピーライト（footer外に配置 — システム要件） */
.copyright {
    max-width: none;
    margin: 0;
    padding: 3px 20px 58px 20px !important;
    background: var(--charcoal) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 769px) {
    .copyright {
        padding: 6px 20px 10px 20px !important;
    }
}

/* ================================================================
   Layout — l-float-cta
   ================================================================
   PC追従ボタン（相談 + 電話 + 来店予約）。
   ================================================================ */
.l-float-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: none;
    flex-direction: column;
    gap: 2px;
}

@media (min-width: 769px) {
    .l-float-cta {
        display: flex;
    }
}

.l-float-cta__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    padding: 14px 0;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    line-height: 1.3;
    transition: background 0.25s ease;
}

.l-float-cta__item:first-child {
    border-radius: 8px 0 0 0;
}

.l-float-cta__item:last-child {
    border-radius: 0 0 0 8px;
}

.l-float-cta__item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
}

.l-float-cta__item--tel {
    background: var(--charcoal);
}

.l-float-cta__item--tel:hover {
    background: color-mix(in srgb, var(--charcoal), black 20%);
}

.l-float-cta__item--mail {
    background: var(--accent-dark);
}

.l-float-cta__item--mail:hover {
    background: color-mix(in srgb, var(--accent-dark), black 20%);
}

.l-float-cta__item--visit {
    background: var(--primary-dark);
}

.l-float-cta__item--visit:hover {
    background: color-mix(in srgb, var(--primary-dark), black 20%);
}

/* ================================================================
   Layout — l-fixed-cta
   ================================================================
   SP固定ボタン（電話 + メール）。
   ================================================================ */

.l-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
}

@media (min-width: 769px) {
    .l-fixed-cta {
        display: none;
    }
}

.l-fixed-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.l-fixed-cta__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.l-fixed-cta__btn--tel {
    background: var(--charcoal);
}

.l-fixed-cta__btn--mail {
    background: var(--accent);
}

.l-fixed-cta__btn--visit {
    background: var(--primary-dark);
}

/* ================================================================
   Global — l-page-top
   ================================================================
   ページトップボタン（固定表示、右下）。
   SP: l-fixed-cta の上に配置（bottom: 80px）
   PC: 右下（bottom: 30px）
   ================================================================ */

.l-page-top {
    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
   ================================================================ */

.s-hero {
    position: relative;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    background: url('../img/akiya-soudan/hero-bg.jpg') center/cover no-repeat;
    padding: 60px 0 80px;
}

@media (min-width: 769px) {
    .s-hero {
        min-height: calc(100vh - 72px);
    }
}

.s-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(42, 59, 58, 0.45) 0%, rgba(42, 59, 58, 0.3) 60%, rgba(42, 59, 58, 0.15) 100%);
    z-index: 1;
}

@media (min-width: 769px) {
    .s-hero__overlay {
        background: linear-gradient(to right, rgba(42, 59, 58, 0.6) 0%, rgba(42, 59, 58, 0.4) 60%, rgba(42, 59, 58, 0.15) 100%);
    }
}

.s-hero .l-container {
    position: relative;
    z-index: 2;
}

.s-hero__content {
    max-width: 620px;
}

@media (min-width: 769px) {
    .s-hero__content {
        max-width: 640px;
    }
}

.s-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4.5vw, 55px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #fff;
    margin-bottom: 20px;
}

.s-hero__text {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.s-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 769px) {
    .s-hero__actions {
        flex-direction: row;
        gap: 16px;
    }
}

/* ================================================================
   Section — s-catchcopy
   ================================================================
   ヒーロー直下のキャッチコピー帯。
   プライマリカラー背景にセンター配置の1〜2行メッセージ。
   ================================================================ */

.s-catchcopy {
    background: var(--primary);
    padding: 40px 0;
    text-align: center;
}

@media (min-width: 769px) {
    .s-catchcopy {
        padding: 48px 0;
    }
}

.s-catchcopy__text {
    display: inline-block;
    padding: 8px 0;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.8vw, 24px);
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
}

/* ================================================================
   Section — s-worry
   ================================================================ */

.s-worry {
    padding: 72px 12px;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-worry {
        padding: 100px 12px;
    }
}

.s-worry__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 769px) {
    .s-worry__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.s-worry__card {
    border: 1px solid var(--border);
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.s-worry__card:hover {
    border-color: var(--primary);
}

.s-worry__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.s-worry__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
    transition: transform 0.4s ease;
}

.s-worry__card:hover .s-worry__card-img img {
    transform: scale(1.03);
}

.s-worry__card-body {
    padding: 24px;
    border-top: 2px solid var(--primary);
}

.s-worry__card-title {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--text);
}

.s-worry__card-text {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

.s-worry__note {
    max-width: 800px;
    margin: 32px auto 0;
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

@media (min-width: 769px) {
    .s-worry__note {
        margin-top: 48px;
    }
}

.s-worry__note-inner {
    display: flex;
    gap: 12px;
    padding: 20px;
}

@media (min-width: 769px) {
    .s-worry__note-inner {
        gap: 16px;
        padding: 24px 32px;
    }
}

.s-worry__note-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--accent);
    margin-top: 2px;
}

.s-worry__note-icon svg {
    width: 100%;
    height: 100%;
}

.s-worry__note-text {
    flex: 1;
    margin: 0;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.7;
    color: var(--text-light);
    text-align: left;
}

.s-worry__note-ref {
    display: inline-block;
    margin-top: 4px;
    font-size: clamp(12px, 1.5vw, 13px);
    opacity: 0.8;
}

/* ================================================================
   Section — s-service（アクセント付き縦型カード 2×2）
   ================================================================ */

.s-service {
    padding: 72px 12px;
}

@media (min-width: 769px) {
    .s-service {
        padding: 100px 12px;
    }
}

/* グリッド: SP 1列 → PC 3+2 (Flexboxによる中央寄せ) */
.s-service__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* カード */
.s-service__card {
    display: block;
    width: 100%;
    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;
}

@media (min-width: 769px) {
    .s-service__grid {
        gap: 28px;
    }
    .s-service__card {
        width: calc((100% - 28px * 2) / 3);
    }
}

.s-service__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* 画像エリア */
.s-service__card-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.s-service__card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
    transition: transform 0.4s ease;
}

.s-service__card:hover .s-service__card-img img {
    transform: scale(1.05);
}

/* テキストエリア（上辺アクセントボーダー） */
.s-service__card-body {
    padding: 20px 24px 24px 24px;
    border-top: 3px solid var(--accent);
}

@media (min-width: 769px) {
    .s-service__card-body {
        padding: 22px 28px 28px 28px;
    }
}

/* タイトル */
.s-service__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__card-text {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

/* ================================================================
   Section — s-reason
   ================================================================ */

.s-reason {
    padding: 72px 12px;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-reason {
        padding: 100px 12px;
    }
}

.s-reason__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .s-reason__list {
        gap: 30px;
    }
}

.s-reason__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px 20px 20px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
}

@media (min-width: 769px) {
    .s-reason__item {
        gap: 40px;
        padding: 20px 30px 30px 30px;
    }
}

.s-reason__num {
    flex-shrink: 0;
    font-family: var(--font-num);
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary);
    opacity: 0.25;
}

.s-reason__body {
    padding-top: 4px;
}

@media (min-width: 769px) {
    .s-reason__body {
        padding-top: 8px;
    }
}

.s-reason__title {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--text);
}

.s-reason__text {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    color: var(--text);
}

/* ================================================================
   Section — s-introduction (スタッフ紹介)
   ================================================================ */
.s-introduction {
    width: 90%;
    max-width: 800px;
    margin: 50px auto 0;
}

.s-introduction__image img {
    display: block;
    width: clamp(120px, 2.6vw, 160px);
    height: clamp(120px, 2.6vw, 160px);
    margin: 0 auto 10px auto;
    border-radius: 50%;
    object-fit: cover;
}

.s-introduction__image p {
    font-size: clamp(14px, 2.6vw, 15px);
    color: #4F5A64;
    text-align: center;
    line-height: 1.3;
}

.s-introduction__image p:last-child {
    font-size: clamp(16px, 2.6vw, 18px);
    font-weight: 700;
    color: var(--primary);
}

.s-introduction__text__inner {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding: 20px 15px;
    border: 1px solid #D4DCE4;
    border-radius: 10px;
    background-color: #fff;
    text-align: left;
    font-size: clamp(16px, 2.6vw, 17px);
    font-weight: 400;
    line-height: 1.8;
    color: #4F5A64;
}

.s-introduction__text__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 10px 20px 10px;
    border-color: transparent transparent #D4DCE4;
    transform: translate(-50%, -100%);
}

.s-introduction__text__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 7.8px 15.5px 7.8px;
    border-color: transparent transparent #fff;
    transform: translate(-50%, -100%);
}

.s-introduction__text h2 {
    margin-bottom: 10px;
    font-size: clamp(21px, 3.125vw, 25px);
    text-align: center;
    font-weight: bold;
    color: var(--primary);
    line-height: 1.3;
}

.s-introduction__text p {
    line-height: 1.7;
}

@media screen and (min-width: 768px) {
    .s-introduction {
        display: flex;
        margin-top: 80px;
    }

    .s-introduction__image {
        flex-shrink: 0;
    }

    .s-introduction__image img {
        width: clamp(140px, 10vw, 160px);
        height: clamp(140px, 10vw, 160px);
    }

    .s-introduction__text {
        margin-left: 30px;
    }

    .s-introduction__text__inner {
        margin-top: 0;
        margin-left: 20px;
        padding: 20px 24px;
    }

    .s-introduction__text__inner::before {
        top: 50%;
        left: 0;
        border-width: 11.5px 20px 11.5px 0;
        border-color: transparent #D4DCE4 transparent transparent;
        transform: translate(-100%, -50%);
    }

    .s-introduction__text__inner::after {
        top: 50%;
        left: 0;
        border-width: 9.2px 16px 9.2px 0;
        border-color: transparent #fff transparent transparent;
        transform: translate(-100%, -50%);
    }

    .s-introduction__text h2 {
        font-size: 24px;
        text-align: left;
    }

    .s-introduction__text p {
        font-size: clamp(15px, 2.6vw, 16px);
    }
}

/* ================================================================
   Section — s-flow
   ================================================================ */

.s-flow {
    padding: 72px 12px;
}

@media (min-width: 769px) {
    .s-flow {
        padding: 100px 12px;
    }
}

.s-flow__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
}

@media (min-width: 769px) {
    .s-flow__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

.s-flow__step {
    position: relative;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
}

.s-flow__step-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
}

.s-flow__step-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f3f4f6;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.s-flow__step-img:hover img {
    transform: scale(1.08);
}

.s-flow__step-num {
    position: absolute;
    bottom: 5px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-num);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--charcoal);
    border-radius: 50%;
    z-index: 2;
}

.s-flow__step-title {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(17px, 2vw, 18px);
    font-weight: 700;
    color: var(--text);
}

.s-flow__step-text {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.7;
    color: var(--text);
    text-align: left;
}

/* ================================================================
   Section — s-case
   ================================================================ */

.s-case {
    padding: 72px 12px;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-case {
        padding: 100px 12px;
    }
}

.s-case__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .s-case__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.s-case__card {
    padding: 26px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.s-case__card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.s-case__card-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 14px;
    font-family: "Arial", sans-serif;
    font-size: clamp(15px, 2.6vw, 16px);
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 9999px;
}

.s-case__card-title {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.6vw, 19px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
}

.s-case__card-dl {
    font-size: clamp(15px, 2.6vw, 16px);
    line-height: 1.7;
}

.s-case__card-dl dt {
    display: inline-block;
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 3px 12px;
    font-size: clamp(13px, 2.6vw, 14px);
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 9999px;
}

.s-case__card-dl dt:first-child {
    margin-top: 0;
}

.s-case__card-dl dt:nth-of-type(2) {
    color: var(--primary);
    background: var(--primary-light);
}

.s-case__card-dl dd {
    color: var(--text);
}

.s-case__link {
    margin-top: 48px;
    text-align: center;
}

/* ================================================================
   Section — s-voice
   ================================================================ */

.s-voice {
    padding: 72px 12px;
}

@media (min-width: 769px) {
    .s-voice {
        padding: 100px 12px;
    }
}

.s-voice__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 769px) {
    .s-voice__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* カード */
.s-voice__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);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* 右下の大きな装飾引用符 */
.s-voice__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__card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

/* テキスト（左上に引用符アイコン） */
.s-voice__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__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__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.s-voice__tag {
    padding: 3px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-dark, var(--primary));
    background: var(--accent-light, var(--primary-light));
    border-radius: 4px;
}

.s-voice__profile {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

@media (max-width: 576px) {
    .s-voice__profile {
        margin-left: 0;
        width: 100%;
        margin-top: 4px;
    }
}

.s-voice__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
}

.s-voice__name {
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 700;
    color: var(--text);
}

.s-voice__meta {
    font-size: clamp(14px, 1.5vw, 15px);
    color: var(--text-light);
}

/* ================================================================
   Section — s-faq
   ================================================================ */

.s-faq {
    padding: 72px 12px;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-faq {
        padding: 100px 12px;
    }
}

/* アコーディオン幅制限 */
.s-faq .c-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.s-faq__link {
    margin-top: 32px;
    text-align: center;
}

@media (min-width: 769px) {
    .s-faq__link {
        margin-top: 40px;
    }
}

/* ================================================================
   Section — s-company
   ================================================================ */

.s-company {
    padding: 72px 12px;
}

@media (min-width: 769px) {
    .s-company {
        padding: 100px 12px;
    }
}

.s-company__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 769px) {
    .s-company__inner {
        grid-template-columns: 1fr;
    }
}

.s-company__img {
    border-radius: var(--radius);
    overflow: hidden;
}

.s-company__img img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background-color: #f3f4f6;
}

/* ================================================================
   Section — s-contact
   ================================================================ */

.s-contact {
    padding: 72px 12px;
    background: var(--primary);
    color: #fff;
}

@media (min-width: 769px) {
    .s-contact {
        padding: 100px 12px;
    }
}

.s-contact .c-section-title__en {
    color: rgba(255, 255, 255, 0.6);
}

.s-contact .c-section-title__ja {
    color: #fff;
}

.s-contact__lead {
    max-width: 800px;
    margin: 0 auto 36px;
    text-align: center;
}

@media (min-width: 769px) {
    .s-contact__lead {
        margin-bottom: 48px;
    }
}

.s-contact__checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 24px;
    padding: 0;
}

@media (min-width: 769px) {
    .s-contact__checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 760px;
    }
}

.s-contact__checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.s-contact__checklist-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    flex-shrink: 0;
}

.s-contact__lead-text {
    font-size: clamp(15px, 2.2vw, 18px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    margin-top: 24px;
}

.s-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 769px) {
    .s-contact__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.s-contact__card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.s-contact__card-label {
    font-size: clamp(15px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.s-contact__card-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-num);
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
    text-decoration: none !important;
    color: #fff !important;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.s-contact__card-tel svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.s-contact__card-tel:hover {
    opacity: 0.8;
}

/* ボタン（チャット・来店予約共通） */
.s-contact__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none !important;
    background: #fff;
    border-radius: var(--btn-radius);
    transition: var(--transition);
}

.s-contact__card-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.s-contact__card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* アクセントボタン（チャット相談用） */
.s-contact__card-btn--accent {
    background: var(--accent);
    color: #fff !important;
}

.s-contact__card-btn--accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.s-contact__card-note {
    margin-top: 12px;
    font-size: clamp(14px, 1.6vw, 15px);
    color: rgba(255, 255, 255, 0.6);
}

/* ================================================================
   Section — s-ai-assessment
   ================================================================ */

.s-ai-assessment {
    padding: 72px 12px 100px;
}

@media (min-width: 769px) {
    .s-ai-assessment {
        padding: 100px 12px;
    }
}