@charset "utf-8";
/* =====================================================================
   gram トップページ リニューアル用スタイル
   namespace: gt_ （親テーマ style12.css と衝突しないよう接頭辞で分離）
   - PC ファースト ＋ @media (max-width:768px) でスマホ最適化
   ===================================================================== */

:root {
    --gt-blue: #1769c0; /* メインブルー */
    --gt-blue-d: #0f4f9e; /* 濃いブルー */
    --gt-navy: #0e2e5c; /* 見出しネイビー */
    --gt-navy-d: #0a2348;
    --gt-orange: #f28a3c; /* CTAオレンジ */
    --gt-orange-d: #ec7a23;
    --gt-red: #e5232a; /* CTA赤（スマホFVボタン・電話ボタン） */
    --gt-bg: #eef4fb; /* 薄い水色背景 */
    --gt-bg2: #f5f9fd;
    --gt-line: #d7e3f1;
    --gt-text: #33373b;
    --gt-muted: #6b7682;
    --gt-radius: 16px;
    --gt-shadow: 0 6px 24px rgba(16, 46, 92, 0.1);
    --gt-shadow-s: 0 3px 12px rgba(16, 46, 92, 0.08);
}

/* ---------- base / reset 補助 ---------- */
.gt,
.gt_fv {
    color: var(--gt-text);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}
.gt {
    background: #fff;
    overflow-x: clip; /* 子要素の横はみ出しでページが広がるのを防ぐ */
} /* main.gt の背景は白 */
.gt *,
.gt_fv * {
    box-sizing: border-box;
}
.gt img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 親テーマ style12.css のグローバル svg/path 指定を打ち消す ---
   親には `svg{position:relative;bottom:80px;z-index:11111}` と
   `path{fill:none;stroke:#1c1c1c}` というSVGアニメ用の指定があり、
   当ページのアイコンが上にズレて黒い線画になるため、当ページ配下のみ上書きする。 */
.gt svg,
.gt_fv svg,
.gt_fvsp svg {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
}
.gt svg path,
.gt_fv svg path,
.gt_fvsp svg path {
    fill: inherit;
    stroke: none;
    stroke-dasharray: none;
    /* 親の path に animation:hello(forwards) が掛かり fill が透過に上書きされ淡色化するため停止 */
    -webkit-animation: none !important;
    animation: none !important;
}

.gt_inner {
    width: 92%;
    max-width: 1180px;
    margin-inline: auto;
}
.gt_inner--wide {
    max-width: 1280px;
}
.gt_inner--narrow {
    max-width: 980px;
}

/* セクション共通余白 */
.gt_sec {
    padding: 80px 0;
}
.gt_sec--tight {
    padding: 60px 0;
}
.gt_bg {
    background: #fff;
}
.gt_bg2 {
    background: var(--gt-bg2);
}
.gt_bg-grad {
    background: linear-gradient(180deg, #eaf3fc 0%, #dcebfa 100%);
}

/* ---------- 見出し ---------- */
.gt_head {
    text-align: center;
    margin-bottom: 48px;
}
.gt_head_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    color: var(--gt-blue);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.gt_head_eyebrow::before,
.gt_head_eyebrow::after {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--gt-blue);
    display: inline-block;
}
.gt_head_ttl {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.35;
    letter-spacing: 0.01em;
}
.gt_head_ttl .mark {
    color: var(--gt-blue);
}
/* 「こんなお悩みはありませんか？」を1行に収める（「か？」だけ改行される対策）
   PCは従来どおり最大40px、狭い画面では幅に追従して縮小 */
.gt_head_ttl--fit {
    font-size: clamp(20px, 5.6vw, 40px);
    white-space: nowrap;
}
.gt_head_lead {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #333;
}
.gt_head--white .gt_head_ttl,
.gt_head--white .gt_head_lead {
    color: #fff;
}
.gt_head--white .gt_head_eyebrow {
    color: #cfe2fb;
}
.gt_head--white .gt_head_eyebrow::before,
.gt_head--white .gt_head_eyebrow::after {
    background: #cfe2fb;
}

/* ---------- ボタン ---------- */
.gt_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
    padding: 18px 40px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    text-align: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
    box-shadow: 0 8px 20px rgba(15, 79, 158, 0.28);
}
.gt_btn svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
    flex: none;
}
.gt_btn .arw {
    width: 0.9em;
}
.gt_btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.gt_btn--blue {
    background: #032068;
    border-radius: 10px;
}
.gt_btn--orange {
    background: linear-gradient(135deg, #f8a04e 0%, var(--gt-orange-d) 100%);
    box-shadow: 0 8px 20px rgba(236, 122, 35, 0.32);
}
.gt_btn--lg {
    padding: 20px; /* PC FVボタン */
    font-size: 16px; /* 文字を小さく */
}
.gt_btn--full {
    width: 100%;
}

/* ---------- 画像プレースホルダー（実画像差し替え用） ---------- */
.gt_ph {
    position: relative;
    background: linear-gradient(135deg, #dfe9f5, #eef4fb);
    border: 1px dashed #b9cce4;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: #9fb3cc;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}
.gt_ph::after {
    content: '画像';
    position: absolute;
    inset: auto;
    opacity: 0;
}
.gt_ph[data-label]::before {
    content: attr(data-label);
}
.gt_ph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================================
   1. ファーストビュー
   ===================================================================== */
/* トップページでは miniheader（代表挨拶/会社情報）を非表示 */
.miniheader {
    display: none;
}
.gt_fv {
    position: relative;
    padding: 48px 0 0; /* miniheader削除に合わせて上の余白を縮小 */
    background: #fff; /* ヒーロー背景を白に */
    overflow: hidden;
}
.gt_fv::before {
    display: none;
} /* 旧：右側の薄い青グラデ装飾は非表示 */
.gt_fv_grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 40px;
    align-items: center;
}
/* 1050px〜1275px：左右カラムを50%ずつにする */
@media (min-width: 1050px) and (max-width: 1275px) {
    .gt_fv_grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* 769px〜1049px：右カラムの見切れ対策
   原因：ユーティリティナビ（固定幅ボタン×5＋電話・折り返しなし）で
   右カラムの最小幅が画面幅を超え、.gt_fv の overflow:hidden で切れる。
   → カラムを縮められるようにし、ナビは折り返し可能にする */
@media (min-width: 769px) and (max-width: 1049px) {
    .gt_fv_grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .gt_fv_grid > * {
        min-width: 0; /* min-content幅によるグリッドのはみ出しを防止 */
    }
    .gt_fv_utilnav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .gt_fv_utilnav a {
        width: auto;
        padding: 10px 12px;
    }
}

/* テキストは少し右へインデントし、ロゴだけ左端に出す */
.gt_fv_copy {
    padding-left: 18px;
}
.gt_fv_logo {
    margin: 0 0 50px -18px;
}
.gt_fv_logo img {
    width: 150px;
    height: auto;
    display: block;
}
/* 冒頭の2つのバッジ（移転期限がある企業様向け／30〜100坪専門） */
.gt_fv_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}
.gt_fv_tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 800;
    color: #04176d;
    line-height: 1.4;
    white-space: nowrap;
}
.gt_fv_tag svg {
    width: 1.15em;
    height: 1.15em;
    fill: #04176d;
    flex: none;
}
.gt_fv_tag--cream {
    background: #fdf3da;
    border: 1.5px solid #f0c75e;
}
.gt_fv_tag--blue {
    background: #eef5fd;
    border: 1.5px solid #a9c9f0;
}

.gt_fv_copy .gt_fv_sub {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 800;
    color: #04176d;
    line-height: 1.5;
}
.gt_fv_copy .gt_fv_sub .em {
    color: var(--gt-blue);
}
.gt_fv_catch {
    font-size: clamp(44px, 6.8vw, 92px);
    font-weight: 900;
    color: #04176d;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin: 24px 0 44px;
    white-space: nowrap;
}
/* 1173px以上：サブコピーの行間を広げ、キャッチの上下余白を拡大（上1.2倍・下1.4倍） */
@media (min-width: 1173px) {
    .gt_fv_copy .gt_fv_sub {
        line-height: 1.8;
    }
    .gt_fv_catch {
        margin: 29px 0 62px;
    }
}
.gt_fv_catch .big {
    color: var(--gt-blue);
}
.gt_fv_catch .dot {
    color: var(--gt-navy);
}

.gt_fv_speed {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 800;
    color: var(--gt-navy);
    margin-bottom: 24px;
}
.gt_fv_speed svg {
    width: 1.4em;
    height: 1.4em;
    fill: var(--gt-blue);
    flex: none;
}

.gt_fv_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.gt_fv_cta .gt_btn {
    font-size: 19px;
    padding: 20px 46px;
}

/* FV右：上部ユーティリティ（ナビ4つ＋電話）＋担当者写真 */
.gt_fv_media {
    position: relative;
}

/* 上部ユーティリティバー */
.gt_fv_utilbar {
    margin-bottom: 18px;
}
.gt_fv_utilnav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 4px;
} /* 改行なし・間隔は左右2px相当 */
.gt_fv_utilnav a {
    flex: 0 0 auto;
    width: 9.4em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--gt-line);
    border-radius: 12px;
    padding: 14px 2px;
    box-shadow: var(--gt-shadow-s);
    text-decoration: none;
    color: var(--gt-navy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    transition: 0.2s;
    white-space: nowrap;
}
.gt_fv_utilnav a:hover {
    transform: translateY(-2px);
    box-shadow: var(--gt-shadow);
}
.gt_fv_utilnav a i {
    font-size: 26px;
    color: var(--gt-blue);
    line-height: 1;
}
.gt_fv_utilnav a svg {
    width: 28px;
    height: 28px;
    color: var(--gt-blue);
}
.gt_fv_utilnav a span {
    display: block;
    letter-spacing: -0.05em;
} /* 文字間を詰める */
.gt_fv_photo {
    position: relative;
    overflow: hidden; /* 影・外枠なしで背景に馴染ませる */
}
.gt_fv_photo::before {
    /* 旧：CSSによる背景イラスト。hayashi.webp に背景込みで焼き込まれたため停止 */
    display: none;
}
.gt_fv_photo img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
} /* 横幅いっぱい・画像全体を切らず表示 */
.gt_fv_credit {
    display: none; /* 非表示（指示により） */
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: var(--gt-shadow-s);
    backdrop-filter: blur(2px);
}
.gt_fv_credit_name {
    font-weight: 800;
    color: var(--gt-navy);
    font-size: 15px;
    margin-bottom: 8px;
}
.gt_fv_credit_name small {
    font-weight: 600;
    color: var(--gt-muted);
    font-size: 12px;
}
.gt_fv_credit_badge {
    display: inline-block;
    background: var(--gt-orange);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.gt_fv_credit_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}
.gt_fv_credit_list li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gt-text);
}
.gt_fv_credit_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 15px;
    height: 15px;
    background: var(--gt-blue);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>")
        center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>")
        center/contain no-repeat;
}
.gt_fv_tel {
    margin-top: 14px;
    text-align: right;
}
.gt_fv_tel a {
    color: var(--gt-navy);
    text-decoration: none;
    font-weight: 900;
}
.gt_fv_tel .num {
    font-size: clamp(26px, 2.4vw, 32px);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}
.gt_fv_tel .num svg {
    width: 0.9em;
    height: 0.9em;
    fill: var(--gt-blue);
}
.gt_fv_tel .time {
    display: block;
    font-size: 13px;
    color: var(--gt-muted);
    font-weight: 600;
    margin-top: 2px;
}

/* FV下部：6つの強みバッジ（ファーストビュー内に収める） */
/* .gt_inner の余白を打ち消してビューポート横幅いっぱい（フルブリード）に */
.gt_fv_badges {
    position: relative;
    z-index: 2;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f3f6fc; /* カード帯の薄青背景 */
}

/* FV直下：6つの強みカード（横一列） */
.gt_fv_cards {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1480px;
    margin: 0 auto;
    padding: 26px 3% 30px;
}
.gt_fv_card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 4px 14px rgba(16, 46, 92, 0.06);
}
.gt_fv_card .ic {
    width: 30px;
    height: auto;
    flex: none;
}
.gt_fv_card .tx {
    flex: 1 1 auto;
    min-width: 0;
}
.gt_fv_card .ttl {
    color: #04176d;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 4px;
}
.gt_fv_card .txt {
    color: #4a5568;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}
/* 画面幅が狭いPCでは3列×2段に折り返す */
@media (max-width: 1180px) {
    .gt_fv_cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
.gt_fv_badges_lead {
    text-align: center;
    font-weight: 800;
    color: var(--gt-navy);
    margin-bottom: 22px;
    font-size: clamp(14px, 1.6vw, 18px);
}
.gt_fv_badges_lead::before,
.gt_fv_badges_lead::after {
    content: '—';
    color: var(--gt-blue);
    margin: 0 0.6em;
}
/* 6つの強み（画像版）：全幅なので角丸なし */
.gt_badges_img {
    margin: 0;
}
.gt_badges_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}
.gt_badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.gt_badge {
    background: #fff;
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: var(--gt-shadow-s);
    border: 1px solid #eaf0f8;
}
.gt_badge_ic {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt_badge_ic svg {
    width: 48px;
    height: 48px;
}
.gt_badge_ttl {
    font-weight: 900;
    color: var(--gt-navy);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.gt_badge_ttl .num {
    color: var(--gt-blue);
    font-size: 1.5em;
}
.gt_badge_txt {
    font-size: 11.5px;
    color: var(--gt-muted);
    line-height: 1.6;
}
.gt_badge--green .gt_badge_ic svg {
    color: #1f9d6b;
}
.gt_badge--orange .gt_badge_ic svg {
    color: var(--gt-orange-d);
}
.gt_badge--red .gt_badge_ic svg {
    color: #d94f4f;
}
.gt_badge--blue .gt_badge_ic svg {
    color: var(--gt-blue);
}

/* =====================================================================
   2. こんなお悩みはありませんか？
   ===================================================================== */
/* PC：横一列6つ。狭くなったら3列→2列 */
.gt_worry_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.gt_worry {
    background: #fff;
    border-radius: 12px;
    padding: 34px 12px 18px;
    box-shadow: var(--gt-shadow-s);
    border: 1px solid #e9eff7;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.gt_worry_no {
    position: absolute;
    top: 0;
    left: 0; /* 左上にぴたっと（余白なし） */
    background: var(--gt-blue);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    min-width: 46px;
    height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0 10px 0; /* 左上は箱の角丸に合わせる */
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}
.gt_worry_ic {
    height: auto;
    margin: 6px auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt_worry_ic img {
    width: 66px;
    height: 66px;
    object-fit: contain;
}
.gt_worry_ic svg {
    width: 52px;
    height: 52px;
    color: var(--gt-blue);
}
.gt_worry_ttl {
    font-size: 14px;
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.45;
    margin-bottom: 12px;
    min-height: 3.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt_worry_txt {
    position: relative;
    font-size: 12px;
    color: var(--gt-muted);
    line-height: 1.7;
    padding-top: 18px;
    margin-top: auto;
    text-align: center;
    min-height: calc(3 * 1.7em + 18px); /* 3行ぶんで高さを統一（区切り線の位置を揃える） */
}
.gt_worry_txt::before {
    /* 中央・短く・2px・青の区切り線 */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--gt-blue);
    border-radius: 1px;
}

.gt_onestop {
    margin-top: 48px;
    background: #f4f8fd;
    border: 1px solid var(--gt-line);
    border-radius: 14px;
    box-shadow: var(--gt-shadow-s);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 26px;
    justify-content: center;
}
/* 円形アイコン（白丸の中に画像） */
.gt_onestop_ic {
    flex: none;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(16, 46, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gt_onestop_ic img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
/* 中央テキスト（左右に区切り線） */
.gt_onestop_txt {
    text-align: center;
    padding: 2px 30px;
    border-left: 1px solid #cdddef;
    border-right: 1px solid #cdddef;
}
.gt_onestop_txt b {
    display: block;
    font-size: clamp(16px, 1.9vw, 21px);
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.5;
}
.gt_onestop_txt span {
    font-size: clamp(13px, 1.4vw, 15px);
    color: var(--gt-navy);
    font-weight: 500;
}

/* =====================================================================
   3. gramが選ばれる3つの理由
   ===================================================================== */
.gt_reason_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gt_reason {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--gt-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.gt_reason_head {
    padding: 46px 26px 0;
}
/* 番号バッジ：お悩み(.gt_worry_no)と同じデザインで左上にぴたっと */
.gt_reason_no {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gt-blue);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    min-width: 46px;
    height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 0 10px 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}
.gt_reason_ttl {
    font-size: 21px;
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.4;
}
.gt_reason_ttl .em {
    color: var(--gt-blue);
}
.gt_reason_body {
    padding: 18px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.gt_reason_lead {
    font-size: 18px;
    color: var(--gt-text);
}
.gt_reason_lead b {
    color: var(--gt-blue);
}
.gt_reason_visual {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    overflow: hidden; /* 画像の枠なし */
}
.gt_reason_visual figure {
    margin: 0;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
}
.gt_reason_visual figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gt_reason_foot {
    font-size: 16px;
    color: #333;
    margin-top: auto;
    background-color: #f0f6ff;
    padding: 16px 24px;
    border-radius: 16px;
}
.gt_reason_foot b {
    color: var(--gt-navy);
}

.gt_cta_band {
    margin-top: 44px;
    background: #fff; /* 背景なし（白） */
    border: 2px solid var(--gt-blue); /* 青系の枠線 */
    border-radius: 14px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gt_cta_band_txt {
    display: flex;
    align-items: center;
    gap: 16px;
}
.gt_cta_band_txt svg {
    width: 44px;
    height: 44px;
    color: var(--gt-blue);
    flex: none;
}
/* CTAバンドのアイコン画像：文字より少し大きく、ボタンの高さくらい */
.gt_cta_band_ic {
    width: auto;
    height: 70px !important;
    flex: none;
}
.gt_cta_band_txt p {
    font-weight: 800;
    color: var(--gt-navy);
    font-size: clamp(15px, 1.8vw, 19px);
}
.gt_cta_band_txt p b {
    color: var(--gt-blue);
}

/* =====================================================================
   4. 比較表（gram vs 一般的な仲介会社）
   ===================================================================== */
.gt_compare_intro {
    text-align: center;
    margin-bottom: 10px;
}
.gt_compare_intro .tag {
    display: inline-block;
    color: var(--gt-blue);
    font-weight: 800;
    font-size: 14px;
}
.gt_compare_intro h2 {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.35;
    margin: 6px 0 10px;
}
.gt_compare_intro h2 .em {
    color: var(--gt-blue);
}
.gt_compare_intro p {
    font-size: 15px;
    color: var(--gt-muted);
}

.gt_table_wrap {
    overflow-x: auto;
    max-width: 100%; /* 940px のテーブルでページ自体が広がるのを防ぐ */
    margin-top: 28px;
}
.gt_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    min-width: 940px; /* これ未満の画面幅では .gt_table_wrap が横スクロール */
}
.gt_table th,
.gt_table td {
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e8edf3;
    background: #fff;
}
.gt_table thead th {
    font-weight: 800;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
    border-bottom: none;
}
/* 左右のグレー帯：セル上端から10px下げて疑似要素で描画し、
   gram列カードが一段高く見えるようにする（角丸もここで付ける） */
.gt_table thead th:nth-child(1),
.gt_table thead th:nth-child(3) {
    background: transparent;
    position: relative;
    padding: 28px 20px 18px; /* 帯が10px下がる分、文字位置を下げる */
}
.gt_table thead th:nth-child(1)::before,
.gt_table thead th:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: 10px 0 0 0;
    background: #75808f;
    /* z-index:-1 だと .element のフェードイン完了後にスタッキングコンテキストが
       消え、帯がセクション背景の裏に落ちて見えなくなるため 0 とし、
       文字側（.hd / .lg）を z-index:1 で前面に出す */
    z-index: 0;
}
.gt_table thead th .hd,
.gt_table thead th .lg {
    position: relative;
    z-index: 1;
}
.gt_table thead th:nth-child(1)::before {
    border-radius: 12px 0 0 0;
}
.gt_table thead th:nth-child(3)::before {
    border-radius: 0 12px 0 0;
}
.gt_table thead th:nth-child(1) {
    width: 200px;
}
.gt_table thead th:nth-child(2) {
    background: #eef5fd;
    color: #243b8e;
    font-size: 21px;
    font-weight: 900;
    border: 2px solid #243b8e;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
}
.gt_table thead th:nth-child(2) .lg {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
}
.gt_table tbody th {
    font-weight: 800;
    color: var(--gt-navy);
    font-size: 16.5px; /* 16pxに拡大 */
    background: #fff;
    white-space: nowrap;
    vertical-align: middle; /* 高さ方向の中央に配置 */
    padding-left: 10px; /* 水平paddingを狭く */
    padding-right: 10px;
}
.gt_table tbody th .ic {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.gt_table tbody th svg {
    width: 20px;
    height: 20px;
    color: var(--gt-blue);
    flex: none;
}
/* 左列のアイコン画像（文字より少し大きめ。親の .gt img を上書きするため詳細度を上げる） */
.gt_table tbody th .gt_table_ic {
    width: auto;
    max-width: none;
    height: 30px;
    flex: none;
}
/* gram列：青枠の縦カード */
.gt_table .gram {
    background: #fff;
    border-left: 2px solid #243b8e;
    border-right: 2px solid #243b8e;
}
.gt_table .gram b {
    color: var(--gt-blue);
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}
.gt_table .other {
    color: var(--gt-muted);
}
.gt_table .other b {
    color: #333;
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}
/* 外枠線：左列の左・右列の右・最終行の下に引く（上端はグレー帯が兼ねる） */
.gt_table tbody th {
    border-left: 1px solid #dfe5ec;
}
.gt_table td.other {
    border-right: 1px solid #dfe5ec;
}
/* 最終行：表の下端を整える（gram列はカードを閉じ、左右列は角丸＋外枠線） */
.gt_table tbody tr:last-child th,
.gt_table tbody tr:last-child td {
    border-bottom: 1px solid #dfe5ec;
}
.gt_table tbody tr:last-child th {
    border-radius: 0 0 0 12px;
}
.gt_table tbody tr:last-child td.other {
    border-radius: 0 0 12px 0;
}
.gt_table tbody tr:last-child td.gram {
    border-bottom: 2px solid #243b8e;
    border-radius: 0 0 14px 14px;
}

/* =====================================================================
   5. セットアップオフィスのご相談
   ===================================================================== */
.gt_setup_main {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: stretch;
    margin-top: 8px;
}
.gt_setup_img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--gt-shadow);
    min-height: 360px;
}
.gt_setup_img .gt_ph {
    height: 100%;
    border: none;
    border-radius: 16px;
}
.gt_setup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gt_setup_box {
    background: #fff;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
} /* 白背景・外枠なし */
.gt_setup_box h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--gt-navy);
    border-bottom: 2px solid var(--gt-blue);
    padding-bottom: 10px;
}
.gt_setup_box p {
    font-size: 14.5px;
    color: var(--gt-text);
}
.gt_setup_box p .em {
    color: var(--gt-blue);
    font-weight: 800;
}
.gt_setup_points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gt_setup_points li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gt-navy);
    line-height: 1.5;
}
.gt_setup_points li svg {
    width: 38px;
    height: 38px;
    color: var(--gt-blue);
    margin: 0 auto 8px;
}
/* アイコン画像（透過版 -tp.webp を使用） */
.gt_setup_ic {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin: 0 auto 8px;
}
.gt_setup_box .gt_btn {
    margin-top: 6px;
}
.gt_setup_box .note {
    font-size: 12px;
    color: var(--gt-muted);
    text-align: center;
}

.gt_setup_cases {
    margin-top: 48px;
}
.gt_setup_cases_ttl {
    text-align: center;
    font-weight: 900;
    color: var(--gt-navy);
    font-size: 20px;
    margin-bottom: 24px;
}
.gt_setup_cases_ttl::before,
.gt_setup_cases_ttl::after {
    content: '—';
    color: var(--gt-blue);
    margin: 0 0.6em;
}
.gt_cases {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.gt_case figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--gt-shadow-s);
    aspect-ratio: 4/3;
}
.gt_case figure .gt_ph {
    height: 100%;
    border: none;
    border-radius: 12px;
}
.gt_case figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gt_case figcaption {
    text-align: center;
    font-weight: 800;
    color: var(--gt-navy);
    font-size: 13.5px;
    margin-top: 10px;
}
.gt_note_center {
    text-align: center;
    font-size: 12px;
    color: var(--gt-muted);
    margin-top: 20px;
}
/* スマホのみ有効になる改行（PC/タブレットでは無効） */
.gt_sponly_br {
    display: none;
}

/* =====================================================================
   6. 実績（移転事例） / ガイド  ※WPループ
   ===================================================================== */
.gt_cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gt_card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--gt-shadow-s);
    overflow: hidden;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.gt_card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gt-shadow);
}
.gt_card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.gt_card figure {
    margin: 0;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e8eef6;
}
.gt_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gt_card_body {
    padding: 18px 20px 22px;
}
.gt_card_date {
    font-size: 12px;
    color: var(--gt-muted);
    font-weight: 700;
}
.gt_card_ttl {
    font-size: 16px;
    font-weight: 800;
    color: var(--gt-navy);
    line-height: 1.5;
    margin-top: 8px;
}
.gt_more {
    text-align: center;
    margin-top: 40px;
}
.gt_more a {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    text-decoration: none;
    border: 2px solid var(--gt-blue);
    color: var(--gt-blue);
    font-weight: 800;
    padding: 14px 40px;
    border-radius: 999px;
    transition: 0.2s;
}
.gt_more a:hover {
    background: var(--gt-blue);
    color: #fff;
}
.gt_more a::after {
    content: '›';
    font-size: 1.3em;
    line-height: 1;
}

/* =====================================================================
   7. 代表挨拶＋経歴
   ===================================================================== */
.gt_ceo {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}
.gt_ceo_photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--gt-shadow);
    aspect-ratio: 3/4;
    background: #dde7f3;
}
.gt_ceo_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gt_ceo_name {
    font-size: 14px;
    color: var(--gt-muted);
    font-weight: 700;
    margin-bottom: 4px;
}
.gt_ceo_name b {
    font-size: 24px;
    color: var(--gt-navy);
    margin-right: 0.4em;
}
.gt_ceo_lead {
    font-size: 15px;
    color: var(--gt-text);
    margin: 16px 0 24px;
}
.gt_career {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--gt-line);
}
.gt_career li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--gt-line);
    font-size: 14px;
}
.gt_career li .yr {
    font-weight: 800;
    color: var(--gt-blue);
}

/* =====================================================================
   8. 資料ダウンロード（損失回避型）
   ===================================================================== */
.gt_dl {
    background: #032068;
    border-radius: 20px;
    padding: 44px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.gt_dl_doc {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--gt-shadow);
    color: var(--gt-text);
}
.gt_dl_doc .tag {
    display: inline-block;
    background: var(--gt-blue);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 6px;
}
.gt_dl_doc h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.4;
    margin: 14px 0;
}
.gt_dl_doc h3 .num {
    color: var(--gt-orange-d);
    font-size: 1.3em;
}
.gt_dl_doc .min {
    display: inline-block;
    background: #fff3e6;
    color: var(--gt-orange-d);
    font-weight: 800;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.gt_dl_copy h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 14px;
}
.gt_dl_copy h2 .em {
    color: #ffd089;
}
.gt_dl_copy p {
    font-size: 15px;
    color: #d7e4f5;
    margin-bottom: 24px;
}
.gt_dl_copy .gt_btn {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* =====================================================================
   9. お問い合わせフォーム
   ===================================================================== */
/* 明るい背景（new2.png準拠） */
.gt_contact {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
.gt_contact .gt_inner {
    position: relative;
    z-index: 1;
}

/* タイトル（紺＋斜めスラッシュ装飾） */
.gt_contact_ttl {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.gt_contact_ttl .sl {
    color: var(--gt-blue);
    font-weight: 400;
    transform: scale(1.6, 1.1);
    opacity: 0.7;
}

.gt_contact_grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 32px;
    align-items: start;
    margin-top: 8px;
}

/* お悩みチェック：1枚の白パネル内を区切り線で改行（アイコンは濃い青／見本準拠） */
.gt_worrycheck {
    list-style: none;
    margin: 0 0 20px;
    padding: 2px 20px;
    background: #fff;
    border: 1px solid var(--gt-line);
    border-radius: 14px;
    box-shadow: var(--gt-shadow-s);
}
.gt_worrycheck li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0; /* 行の高さを少し広げる */
    border-bottom: 1px solid #eef2f7;
}
.gt_worrycheck li:last-child {
    border-bottom: none;
}
.gt_worrycheck li .ck {
    flex: none;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--gt-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt_worrycheck li .ck svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.gt_worrycheck li .tx {
    flex: 1;
    font-weight: 700;
    font-size: 17px;
    color: var(--gt-navy);
    line-height: 1.5;
}
.gt_worrycheck li .tx b {
    color: var(--gt-blue);
}
.gt_worrycheck li .ic {
    flex: none;
    height: 34px;
    display: flex;
    align-items: center;
}
.gt_worrycheck li .ic svg {
    width: 32px;
    height: 32px;
    color: #163e74;
} /* 濃いネイビーでくっきり */
/* 画像アイコン（親の .gt img{height:auto} を上書きするため詳細度を上げる） */
.gt_worrycheck li .ic img {
    width: auto;
    max-width: none;
    height: 34px;
    display: block;
}

/* 電話ボックス：白ボックス＋上部にフォームと同じ紺ヘッダーバー＋下部にビル画像 */
.gt_tel_box {
    background: #fff;
    border: 1px solid var(--gt-line);
    border-radius: 14px;
    overflow: hidden;
    color: var(--gt-text);
    box-shadow: var(--gt-shadow);
}
.gt_tel_head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    background: #032068;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    padding: 14px;
}
.gt_tel_head svg {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
}
.gt_tel_body {
    padding: 0;
}
.gt_tel_main {
    padding: 22px 26px 18px;
}
.gt_tel_box .num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.12em;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    color: var(--gt-navy);
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.1;
    white-space: nowrap;
}
.gt_tel_box .num svg {
    width: 0.82em;
    height: 0.82em;
    fill: var(--gt-blue);
    flex: none;
}
.gt_tel_box .sub {
    font-size: clamp(17px, 2.5vw, 23px);
    font-weight: 800;
    color: var(--gt-navy);
    margin-top: 6px;
    text-align: center;
    white-space: nowrap;
}
.gt_tel_box .sub b {
    color: var(--gt-orange-d);
}
.gt_tel_info {
    margin-top: 22px;
    padding: 22px 14px 6px;
    border-top: 1px solid var(--gt-line);
}
.gt_tel_info .time,
.gt_tel_info .supp {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: clamp(16px, 2.15vw, 26px); /* 改行しない範囲で大きく */
    font-weight: 700;
    color: var(--gt-navy);
    text-align: left;
    white-space: nowrap;
}
.gt_tel_info .supp {
    margin-top: 12px;
}
.gt_tel_info .time svg,
.gt_tel_info .supp svg {
    width: 1.3em;
    height: 1.3em;
    fill: var(--gt-blue);
    flex: none;
}
.gt_tel_info .time span,
.gt_tel_info .supp span {
    flex: 1;
}
/* 下部のビル群：透過webpを横幅いっぱい・アスペクト比そのままで1枚配置 */
.gt_tel_bg {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 6px;
}

/* フォームカード：白＋紺ヘッダーバー */
.gt_form_card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--gt-shadow);
    color: var(--gt-text);
    overflow: hidden;
}
.gt_form_head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    background: #032068;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    padding: 16px;
}
.gt_form_head svg {
    width: 1.3em;
    height: 1.3em;
    fill: currentColor;
}

/* --- CF7（id=59）の実マークアップを2カラムに整形 --- */
.gt_form_card .wpcf7 {
    padding: 22px 26px 26px;
}
.gt_form_card .bl_contact_form2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}
.gt_form_card .bl_contact_form2 > p:not(.bl_contact_form_list) {
    display: none;
} /* CF7自動生成の空p */
.gt_form_card .bl_contact_form_list {
    margin: 0;
}
/* 種別・お問い合わせ内容・同意・送信は横幅いっぱい */
.gt_form_card .bl_contact_form_list:has(.menu-313),
.gt_form_card .bl_contact_form_list:has(.your-message),
.gt_form_card .bl_contact_form_list:has(.privacy-consent),
.gt_form_card .bl_contact_form2 > div:not(.bl_contact_form_list) {
    grid-column: 1 / -1;
}

.gt_form_card .bl_contact_form_list label {
    display: block;
}
.gt_form_card .bl_contact_form_list br {
    display: none;
}
.gt_form_card .bl_contact_form_txt {
    display: block;
    font-weight: 800;
    color: var(--gt-navy);
    font-size: 13.5px;
    margin-bottom: 5px;
}
.gt_form_card .hissu {
    display: inline-block;
    background: #e7506a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: 1px;
}
.gt_form_card .wpcf7-form-control-wrap {
    display: block;
}
.gt_form_card input[type='text'],
.gt_form_card input[type='email'],
.gt_form_card input[type='tel'],
.gt_form_card input[type='url'],
.gt_form_card input[type='number'],
.gt_form_card select,
.gt_form_card textarea {
    width: 100%;
    border: 1px solid var(--gt-line);
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 15px;
    font-family: inherit;
    background: #fafcff;
    color: var(--gt-text);
    box-sizing: border-box;
}
.gt_form_card textarea {
    height: 76px;
    min-height: 76px;
    resize: vertical;
} /* 約2行 */
.gt_form_card input:focus,
.gt_form_card select:focus,
.gt_form_card textarea:focus {
    outline: none;
    border-color: var(--gt-blue);
    box-shadow: 0 0 0 3px rgba(23, 105, 192, 0.12);
}
.gt_form_card .bl_contact_form_agree {
    font-size: 13px;
    color: var(--gt-text);
}
.gt_form_card .bl_contact_form_agree a {
    color: var(--gt-blue);
}
.gt_form_card .wpcf7-list-item {
    margin: 0;
}
.gt_form_card .forms {
    text-align: center;
}
.gt_form_card .wpcf7-submit {
    width: 100%;
    max-width: 420px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    background: linear-gradient(135deg, #f8a04e 0%, var(--gt-orange-d) 100%);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    padding: 17px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(236, 122, 35, 0.32);
    transition: 0.2s;
}
.gt_form_card .wpcf7-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}
.gt_form_card .wpcf7-spinner {
    margin: 0 auto;
}
.gt_form_note {
    font-size: 12px;
    color: var(--gt-muted);
    margin: 12px 26px 22px;
    text-align: center;
}

/* --- 新CF7テンプレート（cf7-soudan-form.txt / .gt_cf）用の整形 --- */
.gt_form_card .gt_cf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    padding: 22px 26px 10px;
}
.gt_form_card .gt_cf .gt_cf_field {
    margin: 0;
    min-width: 0;
}
.gt_form_card .gt_cf .is-full {
    grid-column: 1 / -1;
}
.gt_form_card .gt_cf_label {
    display: block;
    font-weight: 800;
    color: var(--gt-navy);
    font-size: 13.5px;
    margin-bottom: 5px;
}
.gt_form_card .gt_cf_req {
    display: inline-block;
    background: #e7506a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: 1px;
}
.gt_form_card .gt_cf_any {
    display: inline-block;
    background: #9aa7b5;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: 1px;
}
.gt_form_card .gt_cf .wpcf7-form-control-wrap {
    display: block;
}
.gt_form_card .gt_cf br {
    display: none;
} /* CF7自動挿入の改行を無効化 */
.gt_form_card .gt_cf > p:not([class]) {
    display: none;
} /* CF7自動生成の空p対策 */
.gt_form_card .gt_cf_input {
    width: 100%;
} /* 実体の枠線等は上の generic input/select/textarea 指定を共有 */
.gt_form_card .gt_cf_foot {
    text-align: center;
    padding: 8px 26px 4px;
}
.gt_form_card .gt_cf_agree {
    font-size: 13px;
    color: var(--gt-text);
    margin: 0 0 16px;
}
.gt_form_card .gt_cf_agree a {
    color: var(--gt-blue);
    text-decoration: underline;
}
.gt_form_card .gt_cf_agree .wpcf7-list-item {
    margin: 0;
}
.gt_form_card .gt_cf_note2 {
    font-size: 12px;
    color: var(--gt-muted);
    margin: 14px 0 0;
}

/* 送信ボタン：紺グラデ＋左に飛行機・右に矢印（背景SVG。親pathの影響を受けない） */
.gt_form_card input.gt_cf_submit {
    width: 100% !important;
    max-width: 560px !important; /* 横幅を長く */
    border: none;
    cursor: pointer;
    margin: 0 auto;
    color: #fff;
    font-weight: 800;
    font-size: 16px !important; /* 文字を少し小さく */
    padding: 18px 48px !important;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 79, 158, 0.3);
    transition:
        transform 0.2s,
        filter 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-color: #032068; /* ベタ塗り */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M2 21l21-9L2 3v7l15 2-15 2z'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8.6 5.4 7.2 6.8 12.4 12l-5.2 5.2 1.4 1.4L15.2 12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position:
        24px center,
        right 22px center;
    background-size:
        22px 22px,
        15px 15px;
}
.gt_form_card input.gt_cf_submit:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

/* 送信ボタン下の案内ボックス（見本準拠：クリーム色＋アバター） */
.gt_form_after {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 26px 24px;
    background: #fbf6ec;
    border: 1px solid #f0e6d2;
    border-radius: 12px;
    padding: 15px 18px;
}
.gt_form_after .ic {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e9eef6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt_form_after .ic svg {
    width: 24px;
    height: 24px;
    color: var(--gt-navy);
}
.gt_form_after p {
    margin: 0;
    font-weight: 700;
    color: var(--gt-navy);
    font-size: 14.5px;
    line-height: 1.6;
}

/* =====================================================================
   10. Google口コミ導線
   ===================================================================== */
.gt_review {
    text-align: center;
}
.gt_review_box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--gt-shadow-s);
    padding: 28px 40px;
    border: 1px solid var(--gt-line);
}
.gt_review_score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: var(--gt-navy);
}
.gt_review_score small {
    font-size: 0.4em;
    color: var(--gt-muted);
    display: block;
    font-family: 'Noto Sans JP';
    font-weight: 700;
}
.gt_review_stars {
    color: #f5a623;
    font-size: 28px;
    letter-spacing: 2px;
}
.gt_review_stars + span {
    display: block;
    font-size: 13px;
    color: var(--gt-muted);
    margin-top: 4px;
}
.gt_review .gt_btn {
    margin-top: 4px;
}

/* =====================================================================
   フェードイン（親フッターの .element 監視を利用）
   ===================================================================== */
.gt .element {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.gt .element.is-fadein {
    opacity: 1;
    transform: none;
}

/* =====================================================================
   レスポンシブ（タブレット）
   ===================================================================== */
@media (max-width: 1024px) {
    .gt_badges {
        grid-template-columns: repeat(3, 1fr);
    }
    .gt_cases {
        grid-template-columns: repeat(3, 1fr);
    }
    .gt_setup_points {
        grid-template-columns: repeat(4, 1fr);
    }
    .gt_worry_grid {
        grid-template-columns: repeat(3, 1fr);
    } /* 狭くなったら3列2行 */
    .gt_worry_txt {
        min-height: 0;
    } /* 幅が広がる3列/2列では高さ統一を解除 */
}

/* お悩み：最小は1行に2つ（3段） */
@media (max-width: 600px) {
    .gt_worry_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* =====================================================================
   レスポンシブ（スマホ）
   ===================================================================== */
@media (max-width: 768px) {
    /* 送信ボタンの親 .gt_cf_foot の左右padding(26px)を外し、ボタンを幅100%で載せる */
    .gt_form_card .gt_cf_foot.is-full {
        padding-left: 0;
        padding-right: 0;
    }
    /* paddingを外した分、注意書きが端に張り付かないよう余白を補う */
    .gt_form_card .gt_cf_foot.is-full .gt_cf_note2 {
        padding: 0 16px;
    }
    .gt_sec {
        padding: 54px 0;
    }
    .gt_sec--tight {
        padding: 40px 0;
    }
    .gt_head {
        margin-bottom: 32px;
    }

    /* FV：縦積み・写真を上に */
    .gt_fv {
        padding: 40px 0 40px;
    }
    .gt_fv_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* グリッド項目を内容(=utilnav)より縮められるようにして横はみ出しを防ぐ */
    .gt_fv_grid > * {
        min-width: 0;
    }
    .gt_fv_media {
        order: -1;
        min-width: 0;
    }
    .gt_fv_utilbar {
        min-width: 0;
        max-width: 100%;
    }
    .gt_fv_catch {
        font-size: clamp(40px, 12vw, 72px);
    }
    /* スマホ：5つを1行のまま横スクロール（スワイプ） */
    .gt_fv_utilnav {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
    }
    .gt_fv_utilnav a {
        scroll-snap-align: start;
    }
    .gt_fv_utilnav::-webkit-scrollbar {
        height: 4px;
    }
    .gt_fv_utilnav::-webkit-scrollbar-thumb {
        background: #cdddef;
        border-radius: 4px;
    }
    .gt_fv_tel {
        text-align: center;
    }
    .gt_fv_cta .gt_btn {
        width: 100%;
        min-width: 0; /* min-content による横はみ出しを防ぐ */
    }
    /* --lg の大きな左右paddingはスマホでは詰める（はみ出し防止） */
    .gt_fv_cta .gt_btn--lg {
        padding: 18px 20px;
        font-size: 17px;
    }
    .gt_fv_tel {
        text-align: center;
    }

    /* 強みバッジ：2列 */
    .gt_fv_badges {
        margin-top: 0;
    }
    .gt_badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gt_badge {
        padding: 18px 10px;
    }

    .gt_onestop {
        padding: 20px;
        gap: 16px;
        flex-wrap: wrap;
    }
    .gt_onestop_ic {
        width: 54px;
        height: 54px;
    }
    .gt_onestop_txt {
        order: -1;
        flex: 1 1 100%;
        border: none;
        padding: 0 0 4px;
    }

    .gt_reason_grid {
        grid-template-columns: 1fr;
    }
    .gt_cta_band {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .gt_cta_band .gt_btn {
        width: 100%;
    }
    .gt_cta_band_txt {
        flex-direction: column;
    }

    /* 比較表：横スクロール（min-width は940pxで統一）
       親 style12.css の `table td{display:block;width:100%}`(≤768px) を打ち消して
       テーブルレイアウトを維持し、縦積みではなく横スクロールにする */
    .gt_table {
        min-width: 940px;
        display: table;
    }
    .gt_table thead {
        display: table-header-group;
    }
    .gt_table tbody {
        display: table-row-group;
    }
    .gt_table tr {
        display: table-row;
    }
    .gt_table th,
    .gt_table td {
        display: table-cell;
        width: auto;
        padding: 14px;
    }

    .gt_setup_main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gt_setup_img {
        min-height: 220px;
    }
    .gt_setup_points {
        grid-template-columns: repeat(4, 1fr);
    }
    .gt_cases {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt_cards {
        grid-template-columns: 1fr;
    }

    .gt_ceo {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .gt_ceo_photo {
        max-width: 260px;
        margin-inline: auto;
    }
    .gt_career li {
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }

    .gt_dl {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }
    .gt_dl_copy {
        order: -1;
        text-align: center;
    }

    .gt_contact_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* グリッド項目を内容より縮められるようにして横はみ出しを防ぐ */
    .gt_contact_grid > * {
        min-width: 0;
    }
    .gt_form_card .wpcf7 {
        padding: 18px;
    }
    .gt_form_card .bl_contact_form2 {
        grid-template-columns: 1fr;
    }
    /* 新CF7フォーム(.gt_cf)もスマホでは1カラムに */
    .gt_form_card .gt_cf {
        grid-template-columns: 1fr;
        padding: 18px 18px 8px;
    }
    .gt_worrycheck li .tx {
        font-size: 14px;
    }
    /* タイトルは通常の折り返しに（inline-flexのはみ出し防止）＋装飾スラッシュは非表示 */
    .gt_contact_ttl {
        display: block;
    }
    .gt_contact_ttl .sl {
        display: none;
    }
    /* contact内の要素が幅を超えないように徹底 */
    .gt_contact * {
        min-width: 0;
    }
    .gt_contact_left,
    .gt_form_card,
    .gt_worrycheck,
    .gt_tel_box {
        max-width: 100%;
    }
    /* スマホでは「最短30分以内に担当者よりご連絡いたします」が
       nowrap だと右端で見切れるため、折り返しを許可しサイズも調整 */
    .gt_tel_box .sub {
        white-space: normal;
        font-size: 16px;
        line-height: 1.5;
        padding: 0 4px;
    }
    /* スマホ専用の改行を有効化 */
    .gt_sponly_br {
        display: inline;
    }
    /* 注釈は左寄せ＋指定位置で改行 */
    .gt_note_center {
        text-align: left;
    }
    /* 「セットアップオフィス事例イメージ」を1行に収める（折り返し防止） */
    .gt_setup_cases_ttl {
        font-size: 16px;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }
    .gt_setup_cases_ttl::before,
    .gt_setup_cases_ttl::after {
        margin: 0 0.3em;
    }
    .gt_form_card input,
    .gt_form_card select,
    .gt_form_card textarea {
        max-width: 100%;
    }
    /* お客様の声の吹き出しをコンテナ内に収める（ページ横はみ出し防止） */
    .gt .fl_spBet_sta > li {
        max-width: 100%;
    }
    .gt .fl_spBet_sta > li figure img {
        width: 100%;
        height: auto;
    }

    .gt_review_box {
        padding: 22px;
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .gt_badges {
        grid-template-columns: 1fr 1fr;
    }
    .gt_setup_points {
        grid-template-columns: repeat(2, 1fr);
    }
    .gt_cases {
        grid-template-columns: 1fr 1fr;
    }
}

/* =====================================================================
   ファーストビュー（スマホ専用 / fv-mobile.php）
   - wp_is_mobile() 時のみ出力。
   - 構成：ヘッダー → 電話番号 → 人物写真(上にコピー＋赤ボタン重ね) →
           代表林カード → 建物画像(横100%)。
   - 接頭辞 gt_fvsp_（PC版 gt_fv_ とは別系統で衝突なし）。
   ===================================================================== */
.gt_fvsp {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* 1. ヘッダー */
.gt_fvsp_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
}
.gt_fvsp_logo {
    display: block;
    line-height: 0;
}
.gt_fvsp_logo img {
    width: auto;
    height: 34px;
}
.gt_fvsp_head_r {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gt_fvsp_telbtn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--gt-navy);
    text-decoration: none;
}
.gt_fvsp_telbtn svg {
    width: 26px;
    height: 26px;
    fill: var(--gt-navy);
}
.gt_fvsp_telbtn_txt {
    font-size: 10px;
    font-weight: 700;
    color: var(--gt-navy);
    line-height: 1;
    letter-spacing: 0.02em;
}
.gt_fvsp_burger {
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

/* SPメニュー展開時の閉じる×ボタン（オーバーレイ右上・トップページのみ） */
.gt_menu_close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    z-index: 10001;
    cursor: pointer;
}
.gt_menu_close::before,
.gt_menu_close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}
.gt_menu_close::before {
    transform: rotate(45deg);
}
.gt_menu_close::after {
    transform: rotate(-45deg);
}
.gt_fvsp_burger_bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gt_fvsp_burger_bars i {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gt-navy);
    border-radius: 2px;
}
.gt_fvsp_burger_txt {
    font-size: 10px;
    font-weight: 700;
    color: var(--gt-navy);
    line-height: 1;
    letter-spacing: 0.02em;
}

/* 2. 電話番号（中央） */
.gt_fvsp_telno {
    text-align: center;
    padding: 18px 14px 14px; /* 電話ボタンに「電話する」を入れた分、余白をあけて下げる */
}
.gt_fvsp_telno a {
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
    text-decoration: none;
    color: var(--gt-navy);
    font-weight: 900; /* 最大太字 */
    font-size: clamp(30px, 9.5vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.01em;
}
.gt_fvsp_telno a svg {
    width: 0.85em;
    height: 0.85em;
    fill: var(--gt-navy);
}
.gt_fvsp_telno .time {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gt-muted);
}

/* 3. 人物写真＋重ねコピー＋赤ボタン */
.gt_fvsp_hero {
    position: relative;
}
.gt_fvsp_person {
    display: block;
    width: 100%;
    height: auto;
    /* 透過WebP。右下に人物、左〜上が透明 */
}
.gt_fvsp_copy {
    position: absolute;
    top: 4%;
    left: 16px;
    width: 72%; /* 右側の人物に被らない左カラムに収める */
    z-index: 2;
}
/* 上部の2つのバッジ（PC版 .gt_fv_tag を流用し、SP用に縦積み・縮小） */
.gt_fvsp_tags {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px;
}
.gt_fvsp_tags .gt_fv_tag {
    font-size: 13px;
    padding: 6px 14px;
}
.gt_fvsp_lead {
    font-size: clamp(14px, 4.4vw, 20px);
    font-weight: 800;
    color: var(--gt-navy);
    line-height: 1.7; /* 画像上の文字の行間を広げる */
}
/* 「移転期限がある企業様へ」直下の装飾平行線（2文字幅） */
.gt_fvsp_line {
    display: block;
    width: 2em;
    height: 3px;
    background: #1769c0;
    border-radius: 2px;
    margin: 7px 0;
}
.gt_fvsp_sub {
    font-size: clamp(14px, 4.4vw, 20px);
    font-weight: 800;
    color: var(--gt-navy);
    line-height: 1.7; /* 画像上の文字の行間を広げる */
    margin-bottom: 4px;
}
.gt_fvsp_sub .em {
    color: var(--gt-blue);
}
.gt_fvsp_catch {
    font-size: clamp(48px, 17vw, 84px);
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1; /* 「最短」/「解決。」の2行 */
    letter-spacing: 0.01em;
    margin: 6px 0;
}
.gt_fvsp_catch .big {
    color: var(--gt-blue);
}
.gt_fvsp_catch .dot {
    color: var(--gt-navy);
}
/* 赤ボタン：画像の底から少し上に重ねる（左寄せ） */
.gt_btn--red {
    background: #f25c01;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(242, 92, 1, 0.32);
}
.gt_fvsp_cta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6%;
    z-index: 2;
}

/* 4. 代表 林 カード */
.gt_fvsp_card {
    margin: 16px;
    background: #fff;
    border: 1px solid var(--gt-line);
    border-radius: var(--gt-radius);
    padding: 16px 18px;
    box-shadow: var(--gt-shadow-s);
}
.gt_fvsp_card_name {
    font-weight: 800;
    color: var(--gt-navy);
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.gt_fvsp_role {
    color: var(--gt-blue); /* 「代表」を水色に */
}
.gt_fvsp_lname {
    font-size: 1.5em; /* 「林」だけ1.5倍 */
}
.gt_fvsp_card_name small {
    font-weight: 600;
    color: var(--gt-muted);
    font-size: 12px;
}
.gt_fvsp_card_badge {
    display: inline-block;
    background: #fde047; /* スクショの黄色マーカー帯 */
    color: var(--gt-navy);
    font-weight: 800;
    font-size: 19px; /* 下のリスト3行（16px）の約1.2倍 */
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    white-space: nowrap; /* 改行させない */
}
.gt_fvsp_card_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.gt_fvsp_card_list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px; /* 少し大きく */
    font-weight: 700;
    color: var(--gt-text);
    line-height: 1.5;
    white-space: nowrap; /* 改行させない */
}
.gt_fvsp_card_list li + li {
    border-top: 1px dashed var(--gt-line);
    padding-top: 10px;
}
.gt_fvsp_card_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 18px;
    height: 18px;
    background: #22c55e; /* スクショの緑チェック */
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>")
        center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>")
        center/contain no-repeat;
}
.gt_fvsp_card_list li + li::before {
    top: calc(10px + 0.15em); /* padding-top 分ずらす */
}

/* 5. 建物画像（横幅100%） */
.gt_fvsp_buildings {
    margin: 0;
}
.gt_fvsp_buildings img {
    display: block;
    width: 100%;
    height: auto;
}

/* =====================================================================
   お客様の声（PC/スマホ共通・レスポンシブ / gt_voice_）
   - PC：カード2列、スマホ：1列。文言中の強調は青文字＋黄マーカー。
   ===================================================================== */
.gt_voice {
    background: var(--gt-bg);
}
.gt_voice_head {
    text-align: center;
    margin-bottom: 32px;
}
.gt_voice_icon svg {
    width: 46px;
    height: 46px;
    fill: var(--gt-navy);
}
.gt_voice_ttl {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    color: var(--gt-navy);
    line-height: 1.2;
}
.gt_voice_sub {
    margin-top: 6px;
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 700;
    color: var(--gt-text);
}
.gt_voice_stars {
    margin-top: 10px;
    color: #f5b301;
    font-size: clamp(28px, 7vw, 38px);
    letter-spacing: 0.12em;
    line-height: 1;
}
.gt_voice_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.gt_voice_item {
    position: relative; /* しっぽ（::after）の基準 */
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: var(--gt-radius);
    padding: 20px 22px;
    box-shadow: var(--gt-shadow-s);
}
/* 左下に吹き出しのしっぽ（角）を生やす */
.gt_voice_item::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 100%; /* カード下辺から下へ */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 16px 0 0; /* 左辺垂直・右へ斜辺の下向き三角 */
    border-color: #fff transparent transparent transparent;
}
.gt_voice_ic {
    flex: none;
    width: 64px;
    margin: 0;
}
.gt_voice_ic img {
    width: 100%;
    height: auto;
    display: block;
}
.gt_voice_txt {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--gt-text);
}
.gt_voice_mark {
    color: #052cd2; /* 青文字 */
    font-weight: 800;
    /* 黄色マーカー（下側のみ） */
    background: linear-gradient(transparent 58%, #fed755 58%);
    padding: 0 2px;
}

@media (max-width: 768px) {
    .gt_voice_list {
        grid-template-columns: 1fr; /* スマホは1列 */
    }
}

/* =====================================================================
   SP専用：スピード比較セクション（gt_spcompare）
   - front-page.php の比較表セクション(.gt_sec.gt_bg)で wp_is_mobile() 時のみ出力
   - 紺ヘッダー＋6行（各行 gram / 一般的な仲介会社 の2カード）
   - ラベルのアイコンは既存比較表(/img/icon-*.png)を流用
   ===================================================================== */
.gt_spcompare {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--gt-shadow-s);
    font-family: 'Noto Sans JP', sans-serif;
}

/* --- 紺帯ヘッダー --- */
.gt_spcompare_head {
    background: #03142e;
    padding: 22px 5% 20px;
}
.gt_spcompare_tag {
    display: block;
    color: #8fc1ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.gt_spcompare_ttl {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.55;
    margin: 0;
}
.gt_spcompare_ttl .em {
    color: #5ea2ff;
}

/* --- 比較リスト --- */
.gt_spcompare_list {
    padding: 2px 4% 8px;
}
.gt_spcompare_row {
    padding: 16px 0 18px;
    border-bottom: 1px solid #e8edf4;
}
.gt_spcompare_row:last-child {
    border-bottom: none;
}
.gt_spcompare_label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 10px;
    color: var(--gt-navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}
.gt_spcompare_label .ic {
    width: auto;
    height: 26px;
    flex: none;
    display: block;
}
.gt_spcompare_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
}
.gt_spcompare_card {
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
}
.gt_spcompare_card .name {
    display: block;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.4;
}
.gt_spcompare_card .txt {
    margin: 0;
    line-height: 1.55;
}
.gt_spcompare_card--gram {
    background: #eef4fe;
    border: 1.5px solid #4c7fe0;
}
.gt_spcompare_card--gram .name {
    color: var(--gt-blue);
    font-size: 13px;
}
.gt_spcompare_card--gram .txt {
    display: flex;
    gap: 6px;
    color: var(--gt-navy);
    font-weight: 700;
}
.gt_spcompare_card--gram .ck {
    color: var(--gt-blue);
    font-weight: 700;
    flex: none;
}
.gt_spcompare_card--other {
    background: #f2f4f8;
    border: 1px solid #e7ebf1;
}
.gt_spcompare_card--other .name {
    color: #8a94a3;
    font-size: 11px;
    font-weight: 600;
}
.gt_spcompare_card--other .txt {
    color: #5b6573;
    font-weight: 500;
}

/* --- CTAボタン（SP比較表の直下でも使用） --- */
.gt_spcompare_cta {
    display: block;
    margin: 10px 4% 12px;
    padding: 11px 34px;
    border-radius: 999px;
    background: #f25c01;
    box-shadow: var(--gt-shadow-s);
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
}
.gt_spcompare_cta .main {
    display: block;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}
.gt_spcompare_cta .arw {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
}
.gt_spcompare_cta .sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

/* --- 受付時間・TEL --- */
.gt_spcompare_info {
    margin: 0;
    padding: 0 4% 22px;
    text-align: center;
    color: var(--gt-navy);
    font-size: 12px;
    font-weight: 600;
}
.gt_spcompare_info a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

/* =====================================================================
   SP専用：6つの強み（gt_spfeat）
   - front-page.php で wp_is_mobile() 時のみ出力（最初の .gt_sec の直前）
   - PC幅では非表示にするガードも入れている（スマホ専用）
   ===================================================================== */
.gt_spfeat {
    background: #fff;
    padding: 24px 4% 0;
    font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 769px) {
    .gt_spfeat {
        display: none;
    }
}
.gt_spfeat_lead {
    text-align: center;
    color: var(--gt-navy);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.55;
    margin: 0 0 18px;
}

/* --- 6カードグリッド（2列×3段） --- */
.gt_spfeat_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.gt_spfeat_card {
    background: #fff;
    border: 1px solid #e7ecf3;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(16, 46, 92, 0.05);
    padding: 20px 14px 18px;
    text-align: center;
}
.gt_spfeat_card .ic {
    width: auto;
    height: 46px;
    margin: 4px auto 12px;
    display: block;
}
.gt_spfeat_card .ttl {
    color: var(--gt-navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 8px;
}
.gt_spfeat_card .txt {
    color: #5b6573;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* --- 紺色バンド（担当者様の負担を大幅に軽減） --- */
.gt_spfeat_band {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #001a46;
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 16px;
}
.gt_spfeat_band_ic {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gt_spfeat_band_ic svg {
    width: 26px;
    height: 26px;
    color: #001a46;
}
.gt_spfeat_band_txt {
    margin: 0;
    color: #fff;
}
.gt_spfeat_band_txt b {
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
}
.gt_spfeat_band_txt .mk {
    background: linear-gradient(transparent 60%, #f6c710 60%);
    padding: 0 1px;
}
.gt_spfeat_band_txt .sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 2px;
}

/* --- CTAボタン（紺色） --- */
.gt_spfeat_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    margin: 12px 0 0;
    padding: 16px 24px;
    border-radius: 999px;
    background: #001a46;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}
.gt_spfeat_cta .arw {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
}

/* =====================================================================
   SP専用：お悩みチェックリスト（gt_onayami）
   - front-page.php で wp_is_mobile() 時のみ出力（デスクトップは従来版）
   - PC幅では非表示にするガードも入れている（スマホ専用）
   ===================================================================== */
@media (min-width: 769px) {
    .gt_onayami {
        display: none;
    }
}
.gt_onayami {
    background: #fff;
    padding-top: 32px;
    padding-bottom: 36px;
}
.gt_onayami_ttl {
    text-align: center;
    color: #002988;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 20px;
}
.gt_onayami_img {
    margin: 0 0 24px;
    border-radius: 14px;
    overflow: hidden;
}
.gt_onayami_img img {
    width: 100%;
    height: auto;
    display: block;
}
.gt_onayami_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.gt_onayami_list li {
    position: relative;
    padding: 16px 8px 16px 46px;
    color: #1b2b4b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 2px dashed #cdd9ec;
}
.gt_onayami_list li:last-child {
    border-bottom: none;
}
/* チェックボックス（紺の角丸四角＋白チェック） */
.gt_onayami_list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #002988;
}
.gt_onayami_list li::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: 9px;
    height: 15px;
    margin-top: -2px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: translateY(-60%) rotate(45deg);
}

/* =====================================================================
   SP専用：コンパクト比較表（gt_sptable）
   - front-page.php の比較表セクションで wp_is_mobile() 時のみ出力
   - PC は従来の .gt_table を表示（HTMLごと出し分け）
   ===================================================================== */
.gt_sptable_wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--gt-shadow-s);
}
@media (min-width: 769px) {
    .gt_sptable_wrap,
    .gt_spcompare_cta--table,
    .gt_spcompare_info--table {
        display: none;
    }
}
.gt_sptable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}
/* 親テーマ style12.css がSP幅で `table td { display:block; width:100% }` を
   グローバルに当てており、セルが縦積みになって右列があふれるため打ち消す */
.gt_sptable tr {
    display: table-row;
}
.gt_sptable th,
.gt_sptable td {
    display: table-cell;
    width: auto;
}

/* --- ヘッダー行 --- */
.gt_sptable thead th {
    background: #091d3e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    padding: 12px 6px;
}
.gt_sptable thead th.c1 {
    width: 29%;
}
.gt_sptable thead th.c2 {
    width: 38%;
    background: #0050f2;
    padding: 8px 6px 10px;
}
.gt_sptable thead th.c3 {
    width: 33%;
}
.gt_sptable thead .nm {
    display: block;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.gt_sptable thead .bdg {
    display: inline-block;
    margin-top: 3px;
    padding: 1px 12px;
    border-radius: 999px;
    background: #f8bd05;
    color: #091d3e;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.6;
}

/* --- 本体 --- */
.gt_sptable tbody th,
.gt_sptable tbody td {
    border-bottom: 1px solid #e6eaf2;
    padding: 14px 7px;
    text-align: center;
    vertical-align: middle;
}
.gt_sptable tbody tr:last-child th,
.gt_sptable tbody tr:last-child td {
    border-bottom: none;
}

/* 比較項目（左列） */
.gt_sptable tbody th {
    background: #fff;
    color: var(--gt-navy);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}
.gt_sptable tbody th .emoji {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 5px;
}

/* gram列（青枠ハイライト） */
.gt_sptable td.gram {
    background: #f9fbff;
    border-left: 2px solid #0050f2;
    border-right: 2px solid #0050f2;
    color: var(--gt-navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}
.gt_sptable tbody tr:last-child td.gram {
    border-bottom: 2px solid #0050f2;
}
.gt_sptable td.gram .ck {
    display: block;
    font-size: 19px;
    line-height: 1;
    margin-bottom: 5px;
}

/* 一般的な仲介会社列 */
.gt_sptable td.other {
    color: #606886;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
}

/* --- 表直下のCTA・受付時間（gt_spcompare の流用＋位置調整） --- */
.gt_spcompare_cta--table {
    margin: 18px 0 12px;
}
.gt_spcompare_info--table {
    padding: 0;
}
