@charset "UTF-8";

/* ================================================================
   LP_空家管理① — Steady Guard（堅実な守り）
   ================================================================ */

:root {
    --primary:        #3D5A80;
    --primary-dark:   #2C4360;
    --primary-light:  #E8EEF4;
    --accent:         #5E8B6A;
    --accent-dark:    #477054;
    --accent-light:   #EDF5EF;
    --text:           #333;
    --text-light:     #555;
    --white:          #fff;
    --bg:             #FAFBFC;
    --section-bg:     #F2F5F7;
    --charcoal:       #1E2D3D;
    --charcoal-dark:  #141F2E;
    --border:         #D5DAE2;
    --border-light:   #EDF0F4;
    --gray:           #8A9AAA;
    --footer-bg:      #FAFBF9;
    --footer-accent:  #7FA3C0;
    --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;
    scroll-margin-top: 80px;
}

body {
    min-width: 0 !important;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ================================================================
   Utility
   ================================================================
   u-hidden-sp / u-hidden-pc: レスポンシブ表示切替
   [data-animate]: Intersection Observer アニメーション基盤
   ================================================================ */

/* 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
   ================================================================
   全セクション共通のタイトル構造（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;
    }
}

/* 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: transparent;
}

.c-button--outline-dark:hover {
    color: #fff !important;
    background: var(--primary);
}

/* 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-card / c-card-grid
   ================================================================
   汎用カード + グリッドコンテナ。
   参照: component-css.md §4
   ================================================================ */

/* グリッドコンテナ */
.c-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 600px) {
    .c-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .c-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

/* カード本体 */
.c-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    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: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* 画像エリア */
.c-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    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__badge {
    position: absolute;
    padding: 5px 14px 4px;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border-radius: 20px;
    z-index: 2;
}

@media (min-width: 769px) {
    .c-card__badge {
        top: 16px;
        left: 16px;
        font-size: 13px;
    }
}

/* カード本文 */
.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: #444;
}

/* ================================================================
   Component — c-accordion
   ================================================================
   開閉パネル。2つの制御方式をサポート:
     A) <details> ネイティブ（component-css.md §6 準拠）
     B) .is-open クラス＋JS制御（不動産⑦実装）
   参照: component-css.md §6
   ================================================================ */

.c-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.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型バナー。タイトル+説明(left) + ボタン(right) の2カラム型。
   参照: s-ai-assessment--standard
   ================================================================ */

.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: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@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: #555;
}

.c-banner__desc span {
    font-weight: 700;
    color: var(--text);
}

.c-banner__action {
    flex-shrink: 0;
    text-align: center;
}

.c-banner__button {
    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: var(--white) !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__button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.3);
}

/* ================================================================
   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
   ================================================================
   統計カード（実績数値等）。
   参照: 不動産⑦ style.css 実装値
   ================================================================ */

.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);
}

/* ================================================================
   Layout — l-container
   ================================================================
   ページ幅制限コンテナ。
   max-width: 1140px（テナントCSS変数で上書き可）
   ================================================================ */

.l-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   Layout — l-header
   ================================================================
   固定ヘッダー + ハンバーガー + モバイルメニュー。
   モバイルメニュー背景: var(--charcoal) で制御。
   参照: 不動産⑦ style.css 実装値
   ================================================================ */

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, 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(from var(--charcoal) r g b / 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
   ================================================================
   フッター + コピーライト。
   参照: 不動産⑦ style.css 実装値
   ================================================================ */

.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: 1fr 160px 160px 160px;
        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-dark) !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;
    display: flex;
    align-items: center;
    min-height: 520px;
    background: url('../img/akiya-kanri/hero-bg.jpg') center / cover no-repeat;
    background-color: #dde4ec;
    background-position: 60% 50%;
}

@media (min-width: 769px) {
    .s-hero {
        min-height: 630px;
    }
}

.s-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,45,61,.72) 0%, rgba(61,90,128,.55) 100%);
    z-index: 1;
}

.s-hero .l-container {
    position: relative;
    z-index: 2;
}

.s-hero__content {
    max-width: 680px;
    padding: 60px 0;
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .s-hero__content {
        padding: 80px 0;
    }
}

.s-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(33px, 5vw, 55px);
    font-weight: 900;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.s-hero__text {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    margin-bottom: 32px;
}

.s-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 769px) {
    .s-hero__actions {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

/* --- s-hero__numbers（すりガラス風 実績数値） --- */

.s-hero__numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.s-hero__numbers-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
}

.s-hero__numbers-item span {
    font-family: var(--font-num);
    font-size: clamp(13px, 2.2vw, 18px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    white-space: normal;
    line-height: 1.4;
}

.s-hero__numbers-item span .s-hero__numbers-num {
    font-size: 1.6em;
    line-height: 1;
}

@media (min-width: 769px) {
    .s-hero__numbers {
        margin-top: 48px;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .s-hero__numbers-item {
        padding: 24px 20px;
    }

    .s-hero__numbers-item span {
        white-space: nowrap;
    }
}


/* ================================================================
   Section — s-catchcopy
   ================================================================ */

.s-catchcopy {
    padding: 48px 0;
    background: var(--primary);
    text-align: center;
}

@media (min-width: 769px) {
    .s-catchcopy {
        padding: 56px 0;
    }
}

.s-catchcopy__text {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.8vw, 24px);
    font-weight: 700;
    line-height: 1.8;
    color: #fff;
    letter-spacing: 0.04em;
}


/* ================================================================
   Section — s-numbers
   ================================================================ */

.s-numbers {
    padding: 64px 0;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-numbers {
        padding: 80px 0;
    }
}

.s-numbers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .s-numbers__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.s-numbers__item {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.s-numbers__value {
    display: block;
    font-family: var(--font-num);
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.s-numbers__unit {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    color: var(--primary);
}

.s-numbers__label {
    display: block;
    margin-top: 8px;
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-light);
}


/* ================================================================
   Section — s-worry（お悩み — card-grid型）
   ================================================================ */

.s-worry {
    padding: 72px 12px;
}

@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);
    border-radius: var(--radius);
    background-color: var(--white);
    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);
}


/* ================================================================
   Section — s-risk
   ================================================================
   インパクトワード（数字/キーワード）+ テキストの横並びリスト型。
   アイコン不使用。左のキーワードで視線を掴み、右の本文で詳細を伝える。
   ================================================================ */

.s-risk {
    padding: 72px 12px;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-risk {
        padding: 100px 12px;
    }
}

.s-risk__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
}

.s-risk__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.s-risk__item:first-child {
    padding-top: 0;
}

.s-risk__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 769px) {
    .s-risk__item {
        gap: 40px;
        padding: 40px 0;
    }
}

.s-risk__keyword {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #8B2D1A;
    line-height: 1.2;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .s-risk__keyword {
        width: 120px;
        font-size: 30px;
    }
}

.s-risk__body {
    flex: 1;
    min-width: 0;
    padding-left: 16px;
    border-left: 3px solid #C4613C;
}

@media (min-width: 769px) {
    .s-risk__body {
        padding-left: 32px;
    }
}

.s-risk__title {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(17px, 2.2vw, 19px);
    font-weight: 700;
    color: var(--text);
}

.s-risk__text {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.7;
    color: var(--text-light);
}


/* ================================================================
   Section — s-compare（管理プラン比較 — pricing-card型）
   ================================================================ */

.s-compare {
    padding: 72px 12px;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-compare {
        padding: 100px 12px;
    }
}

.s-compare__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .s-compare__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.s-compare__card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

@media (min-width: 769px) {
    .s-compare__card {
        padding: 32px 24px;
    }
}

.s-compare__card:hover {
    box-shadow: var(--shadow-hover);
}

.s-compare__card--highlight {
    border: 1px solid var(--accent);
    box-shadow: 0 4px 20px rgba(94, 139, 106, .15);
}

.s-compare__card-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(94, 139, 106, 0.08);
    border: 1px solid var(--accent);
    border-radius: 100px;
    white-space: nowrap;
    vertical-align: middle;
}

.s-compare__card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--text);
}

.s-compare__card-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.s-compare__card-price-num {
    font-family: var(--font-num);
    font-size: clamp(36px, 5vw, 44px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.s-compare__card-price-unit {
    font-size: clamp(13px, 1.4vw, 14px);
    font-weight: 500;
    color: var(--text-light);
}

.s-compare__card-list {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
    text-align: left;
}

.s-compare__card-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.6;
    color: var(--text);
}

.s-compare__card-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 13px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}

.s-compare__card .c-button {
    margin-top: auto;
}

.s-compare__actions {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.s-compare__actions .c-button {
    min-width: 40%;
}

@media (min-width: 769px) {
    .s-compare__actions {
        margin-top: 48px;
    }
}

.s-compare__note {
    margin: 35px auto 0;
    max-width: 730px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(61, 90, 128, 0.25);
    border-radius: var(--radius-sm, 8px);
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.6;
}

@media (min-width: 769px) {
    .s-compare__note {
        margin-top: 50px;
        text-align: center;
    }
}


/* ================================================================
   Section — s-service（サービス — accent-card-grid型）
   ================================================================ */

.s-service {
    padding: 72px 12px;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-service {
        padding: 100px 12px;
    }
}

.s-service__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 769px) {
    .s-service__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 28px;
    }
    .s-service__grid .s-service__card {
        grid-column: span 2;
    }
    .s-service__grid .s-service__card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .s-service__grid .s-service__card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.s-service__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__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.6vw, 16px);
    line-height: 1.8;
    color: var(--text);
}


/* ================================================================
   Section — s-area（対応エリア）
   ================================================================ */
.s-area {
    padding: 72px 12px;
    background: var(--section-bg);
}

@media (min-width: 769px) {
    .s-area {
        padding: 100px 12px;
    }
}

.s-area__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

@media (min-width: 480px) {
    .s-area__grid {
        gap: 16px;
    }
}

@media (min-width: 769px) {
    .s-area__grid {
        gap: 20px;
    }
}

.s-area__grid li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 12px) / 2);
    padding: 12px 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 8px);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    color: var(--text);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

@media (min-width: 480px) {
    .s-area__grid li {
        width: calc((100% - 16px * 2) / 3);
    }
}

.s-area__grid li:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.s-area__note {
    margin-top: 28px;
    text-align: center;
    font-size: clamp(15px, 1.8vw, 16px);
    color: var(--text-light);
    line-height: 1.6;
}


/* ================================================================
   Section — s-cta-mid（中間CTA）
   ================================================================ */

.s-cta-mid {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

@media (min-width: 769px) {
    .s-cta-mid {
        padding: 64px 0;
    }
}

.s-cta-mid__inner {
    text-align: center;
}

.s-cta-mid__text {
    margin-bottom: 28px;
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.8vw, 24px);
    font-weight: 700;
    line-height: 1.8;
    color: #fff;
    letter-spacing: 0.04em;
}

.s-cta-mid__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 769px) {
    .s-cta-mid__actions {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}


/* ================================================================
   Section — s-reason（選ばれる理由 — horizontal-list型）
   ================================================================ */

.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;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s-reason__item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

@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（ご利用の流れ — circle-grid型）
   ================================================================ */

.s-flow {
    padding: 72px 12px;
    background: var(--white);
}

@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, #2A3B3A);
    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（管理事例 — split-detail型）
   ================================================================ */

.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(--white);
    background: var(--primary);
    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（お客様の声 — header-quote型）
   ================================================================ */

.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 {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 28px 24px;
    transition: border-color 0.3s;
}

@media (min-width: 769px) {
    .s-voice__card {
        padding: 32px 28px;
    }
}

.s-voice__card:hover {
    border-color: var(--accent);
}

.s-voice__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.s-voice__avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-light);
    background-color: #f3f4f6;
}

.s-voice__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.s-voice__name {
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 700;
    color: var(--text);
}

.s-voice__tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: clamp(12px, 1.5vw, 13px);
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 4px;
}

.s-voice__body {
    position: relative;
    padding-left: 28px;
}

.s-voice__body::before {
    content: '\201C';
    position: absolute;
    top: -4px;
    left: 0;
    font-family: var(--font-en);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    opacity: 0.4;
}

.s-voice__desc {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
    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__actions {
    margin-top: 40px;
    text-align: center;
}

@media (min-width: 769px) {
    .s-faq__actions {
        margin-top: 48px;
    }
}


/* ================================================================
   Section — s-cta（お問い合わせ）
   ================================================================ */

.s-cta {
    padding: 72px 12px;
    background: var(--primary);
    color: #fff;
}

@media (min-width: 769px) {
    .s-cta {
        padding: 100px 12px;
    }
}

.s-cta .c-section-title__en {
    color: rgba(255, 255, 255, 0.6);
}

.s-cta .c-section-title__ja {
    color: #fff;
}

.s-cta__text {
    margin: -24px auto 40px;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 769px) {
    .s-cta__text {
        margin: -30px auto 48px;
        text-align: center;
    }
}

.s-cta__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 769px) {
    .s-cta__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.s-cta__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-cta__label {
    font-size: clamp(15px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.s-cta__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-cta__tel svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.s-cta__tel:hover {
    opacity: 0.8;
}

/* ボタン（チャット・来店予約共通） */
.s-cta__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-cta__card-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.s-cta__card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* アクセントボタン（チャット相談用） */
.s-cta__card-btn--accent {
    background: var(--accent);
    color: #fff !important;
}

.s-cta__card-btn--accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 20px rgba(94, 139, 106, 0.4);
}

.s-cta__note {
    margin-top: 12px;
    font-size: clamp(14px, 1.6vw, 15px);
    color: rgba(255, 255, 255, 0.6);
}

.s-cta__notice-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 36px;
    width: 100%;
}

@media (min-width: 769px) {
    .s-cta__notice-wrapper {
        margin-top: 48px;
    }
}

.s-cta__notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    font-size: clamp(14px, 1.6vw, 15px);
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}

.s-cta__notice svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: currentColor;
}


/* ================================================================
   Section — s-ai-assessment（AI不動産査定）
   ================================================================ */

.s-ai-assessment {
    padding: 72px 12px 100px;
    background: var(--white);
}

@media (min-width: 769px) {
    .s-ai-assessment {
        padding: 100px 12px;
    }
}


/* ================================================================
   Section — s-company（会社概要 — stack型）
   ================================================================ */

.s-company {
    padding: 72px 12px;
    background: var(--white);
}

@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;
}


/* ================================================================
   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);
    }
}