@charset "UTF-8";

/* ==========================================================================
   ごきげん屋 遺品整理LP  完コピ用 style.css
   - PC完コピ（コンテンツ幅1040px / アートボード1440px基準）
   - 完コピ優先のため、余白・サイズは Figma の実数値(px)で記述する
   - 写真・イラストは assets/img、アイコン類はインラインSVG/CSSで再現
   ========================================================================== */

:root {
    /* --- プロジェクトカラー（style-tokens.css を上書き） ------------------- */
    --c-navy: #26438C;
    /* 目立たせ青・ブランド名 */
    --c-blue: #438FDB;
    /* 青3 */
    --c-blue-deep: #0A55B4;
    /* 青② */
    --c-pink: #E23864;
    /* メインピンク */
    --c-pink-cta: #F04664;
    /* CTA明るいピンク */
    --c-pink-deep: #D8456B;
    /* ローズ */
    --c-pink-light: #FDEEF2;
    /* 薄ピンク背景 */
    --c-pink-tag: #F8D9DF;
    /* タグ背景 */
    --c-green: #23AA41;
    /* メイン緑 */
    --c-line: #06C755;
    /* LINE緑 */
    --c-orange: #F5B30B;
    /* オレンジ(料金見出し等) */
    --c-orange-y: #FFD24D;
    /* マスタード */
    --c-orange-d: #F0AD33;
    /* 濃オレンジ */
    --c-text: #4D4D4D;
    /* 本文 */
    --c-text-weak: #5B6B80;
    /* 補助 */
    --c-text-mute: #7F868F;
    /* さらに薄い */
    --c-border: #E4ECF3;
    /* 罫線 */
    /* セクション背景 */
    --bg-blue: #EEF6FC;
    --bg-blue2: #EAF4FB;
    --bg-blue3: #DCECF9;
    --bg-cream: #FFF7E6;
    --bg-cream2: #FDF6E3;
    --bg-cream3: #FFF8DF;
    --bg-pink: #FDEEF2;
    /* フォント */
    --font-round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    /* 丸ゴシック見出し・数字 */
    --shadow-card: 0 6px 24px -12px rgba(30, 70, 120, .35);
}


/* 完コピ：body の既定字間を詰めずに通常へ（要素ごとに個別指定する） */

body {
    font-family: var(--font-base);
    color: var(--c-text);
    letter-spacing: normal;
    line-height: 1.7;
    background: #fff;
}

img {
    width: 100%;
}


/* 横はみ出しはルート(html)で制御 → .pageのoverflowを外して sticky header を成立させる */

html {
    overflow-x: hidden;
}


/* ページラッパー：FV両サイド余白はhero背景と同色にして境界線を消す */

.page {
    position: relative;
    width: 100%;
    background: var(--bg-blue);
}


/* 中央寄せ共通ラッパー */

.wrap {
    max-width: 1040px;
    margin-inline: auto;
    padding-inline: 20px;
}

.wrap-s {
    max-width: 1000px;
    margin-inline: auto;
    padding-inline: 20px;
}


/* ==========================================================================
   共通パーツ：見出し（CASE STUDY / REVIEWS 等のラベル付きタイトル）
   ========================================================================== */

.sec-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-round);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--c-orange-d);
    font-size: 14px;
}

.sec-label::before,
.sec-label::after {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.sec-title {
    text-align: center;
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 33px;
    line-height: 1.4;
    color: var(--c-navy);
    margin-top: 8px;
}

.sec-title .spark {
    color: var(--c-orange-y);
}


/* ==========================================================================
   Header (2155:1388)
   ========================================================================== */

.header {
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 12px -7px rgba(30, 70, 120, .4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__wrap {
    max-width: 1040px;
    margin-inline: auto;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 8px 20px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand__tag {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.0;
    color: var(--c-text);
}

.brand__row {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand__name {
    font-weight: 900;
    font-size: 34px;
    line-height: 1.0;
    letter-spacing: .68px;
    color: var(--c-navy);
}

.brand__area {
    background: var(--c-pink-tag);
    border-radius: 8px;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 13px;
    color: var(--c-pink);
    line-height: 1.1;
}

.header-tel {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-tel__lead {
    font-weight: 700;
    font-size: 13px;
    color: var(--c-text);
}

.header-tel__num {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ico-tel {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: var(--c-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-tel__digits {
    font-family: var(--font-round);
    font-weight: 700;
    font-size: 33px;
    line-height: 1.15;
    color: var(--c-pink);
}

.header-tel__hours {
    font-weight: 700;
    font-size: 12px;
    color: var(--c-text-weak);
}

.header-line {
    background: var(--c-green);
    border-radius: 14px;
    padding: 11px 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 9px 18px -9px rgba(6, 199, 85, .75);
    flex-shrink: 0;
}

.ico-line {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ico-line img {
    width: 20px;
    height: auto;
}

.header-line__txt {
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: #fff;
}

.header-line__main {
    font-weight: 900;
    font-size: 16px;
    line-height: 1.2;
}

.header-line__sub {
    font-weight: 700;
    font-size: 14px;
    opacity: .95;
    line-height: 1.2;
}


/* ==========================================================================
   Hero (2155:3)
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-blue);
    padding-bottom: 42px;
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
}

.hero__bg {
    position: absolute;
    inset: 0 -7.19% -111px 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg img {
    position: absolute;
    width: 122.73%;
    height: 122.76%;
    left: -11.43%;
    top: -33.35%;
    max-width: none;
    display: block;
}


/* SP専用背景はPC/TBでは隠す（SP時に切替）。
   .hero__bg img(詳細度0,1,1)に負けないよう同等の詳細度で指定 */

.hero__bg img.hero__bg--sp {
    display: none;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(93.7deg, var(--bg-blue) 4%, rgba(238, 246, 252, .5) 20%, rgba(238, 246, 252, 0) 42%);
}

.hero__leaf {
    position: absolute;
    z-index: 1;
    opacity: .8;
    pointer-events: none;
    width: auto;
}

.hero__leaf--tr {
    top: -36px;
    left: 1118px;
    width: 600px;
}


/* leaf--bl は .page 基準で画面左端へ（header約87px + hero内位置546px ≒ 633px） */

.hero__leaf--bl {
    top: 633px;
    left: 0;
    width: 384px;
    transform: rotate(180deg);
}

.hero__top .wrap {
    position: relative;
}

.hero__badge {
    position: absolute;
    z-index: 3;
    top: 150px;
    right: 0px;
    width: 248px;
}


/* SP専用バッジ（hero-feat内）はPC/TBでは隠す */

.hero__badge-sp {
    display: none;
}


/* 外側余白(.page)をhero背景と同色(var(--bg-blue))にしたので左端は境界線が出ない。
   右端は写真と余白のつなぎ目を同色フェードでぼかして溶かす */

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 340px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(270deg, var(--bg-blue) 0%, rgba(238, 246, 252, .9) 22%, rgba(238, 246, 252, .55) 48%, rgba(238, 246, 252, .22) 72%, rgba(238, 246, 252, 0) 100%);
}

.hero__top {
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 560px;
    padding-top: 70px;
}

.br-sp {
    display: none;
}

.hero-area {
    display: inline-block;
    background: #FAEC2B;
    border-radius: 999px;
    padding: 9px 22px;
    font-weight: 700;
    font-size: 16px;
    color: #404040;
    box-shadow: 0 6px 16px -8px rgba(30, 70, 120, .3);
}

.hero-pre {
    margin-top: 16px;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.4;
    color: var(--c-navy);
}

.hero-h1 {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 2px;
}

.hero-h1__main {
    font-weight: 900;
    font-size: 47.3px;
    line-height: 1.1;
    color: var(--c-navy);
}

.hero-h1__nara {
    font-weight: 900;
    font-size: 32px;
    color: var(--c-text);
}

.hero-brand {
    margin-top: 4px;
    font-weight: 900;
    font-size: 100px;
    line-height: 1.02;
    color: var(--c-pink-cta);
    text-shadow: 0 8px 16px rgba(216, 69, 107, .25), -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}

.hero-subcopy {
    margin-top: 14px;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.75;
    color: var(--c-text);
}

.hero-subcopy .em {
    color: var(--c-pink-cta);
}


/* 特徴5カード */

.hero__cta {
    position: relative;
    z-index: 2;
}


/* PCではラッパーを透明化（ul/badgeを.wrap直下扱い＝従来通り）。SPでのみ横並びにする */

.hero-feat-row {
    display: contents;
}

.hero-feat {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding-top: 36px;
}

.feat {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px -14px rgba(30, 70, 120, .45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 10px;
    text-align: center;
}

.feat__ico {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.feat b {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    color: var(--c-text);
}


/* CTAボタン2つ（電話 / LINE） */

.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 24px;
}

.cta-tel,
.cta-line {
    border-radius: 16px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-tel {
    background: var(--c-pink-cta);
    flex-direction: column;
    gap: 1px;
    padding: 15px 18px;
    color: #fff;
    text-align: center;
}

.cta-tel__lead {
    font-weight: 700;
    font-size: 14px;
}

.cta-tel__num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ico-tel--lg {
    width: 50px;
    height: 50px;
    background: #fff;
}

.cta-tel__digits {
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
}

.cta-tel__hours {
    font-weight: 700;
    font-size: 12px;
    opacity: .92;
}

.cta-line {
    background: var(--c-line);
    gap: 24px;
    padding: 13px 40px;
    color: #fff;
}

.ico-line--lg {
    width: 50px;
    height: 50px;
}

.ico-line--lg img {
    width: 25px;
    height: auto;
}

.cta-line__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-line__txt b {
    font-weight: 900;
    font-size: 23px;
    line-height: 1.4;
}

.cta-line__txt span {
    font-weight: 700;
    font-size: 13px;
}


/* ==========================================================================
   お悩み「こんなお困りごとありませんか？」 (2155:174)
   ========================================================================== */

.worry {
    width: 100%;
    padding: 40px 0;
    background-color: #F1F6FA;
}

.worry__box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 41px;
    border: 1px solid #f1e6c2;
    border-radius: 24px;
    background: linear-gradient(to bottom, #fbf8e8, #fef6d1);
    box-shadow: 0px 6px 18px -8px rgba(30, 70, 120, 0.3);
    overflow: hidden;
}

.worry__leaf {
    position: absolute;
    width: 244px;
    height: 146px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.worry__leaf--tr {
    top: 0px;
    right: 0px;
}

.worry__leaf--bl {
    bottom: 0px;
    left: 0px;
    transform: rotate(180deg);
}

.worry__title {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 1;
}

.worry__title-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.worry__title-line {
    width: 653px;
    height: 10px;
    background: #fff;
}

.worry__heading {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    line-height: 52px;
    text-align: center;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-shadow: 0px 2px 4px #ffffff;
}

.worry__h-sub {
    font-size: 40px;
    color: #535353;
}

.worry__h-main {
    font-size: 48px;
    color: #e53162;
}

.worry__br-sp {
    display: none;
}


/* SP専用改行（PCでは無効） */

.worry__spark {
    width: 31px;
    height: 36px;
    flex: none;
}

.worry__spark--l {
    margin-right: 19px;
}

.worry__spark--r {
    margin-left: 19px;
    transform: scaleX(-1);
}

.worry__grid {
    position: relative;
    width: 100%;
    height: 417px;
    z-index: 1;
}

.worry__photo {
    position: absolute;
    left: -69px;
    top: 8px;
    width: 375px;
    height: 351px;
    border-radius: 14px;
    object-fit: cover;
    z-index: 1;
}

.worry__list {
    position: absolute;
    left: 320px;
    top: 0;
    right: 0;
    height: 417px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.worry__item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 4px 13px;
    border-bottom: 1px solid #e53162;
}

.worry__item--last {
    padding: 12px 4px;
    border-bottom: none;
}

.worry__check {
    flex: none;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 2px solid #d8456b;
    border-radius: 6px;
}

.worry__check svg {
    display: block;
}

.worry__text {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    text-shadow: 0px 2px 4px #ffffff;
}

.worry__t-gray {
    color: #4d4d4d;
}

.worry__t-pink {
    color: #e53162;
}

.worry__house {
    position: absolute;
    left: 628px;
    top: 218px;
    width: 325px;
    height: 244px;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}


/* ==========================================================================
   選ばれる理由 (2155:247 + 2155:347)
   ========================================================================== */

.reason {
    width: 100%;
    padding: 60px 0;
    background-color: #F1F6FA;
}

.reason .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reason__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 16px;
    width: 100%;
    margin: 0;
}

.reason__text-block {
    display: inline;
}

.reason__line {
    display: inline;
}

.reason__deco {
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 2px;
    color: var(--c-blue);
    opacity: 0.8;
}

.reason__brand {
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    color: var(--c-blue-deep);
}

.reason__ga {
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 0.8px;
    color: var(--c-text);
}

.reason__grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

.reason__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 14px;
}

.reason__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin: 0 auto;
}

.reason__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12.3px;
    background: #fff;
    border: 1px solid var(--bg-blue3);
    border-radius: 18px;
    padding: 23px 23px 25px;
    overflow: hidden;
}

.reason__grid--3 .reason__card {
    min-height: 320px;
}

.reason__grid--2 .reason__card {
    min-height: 260px;
}

.reason__head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px dashed #cfe0ef;
}

.reason__grid--3 .reason__head {
    min-height: 115px;
}

.reason__grid--2 .reason__head {
    min-height: 88px;
}

.reason__no {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 20px;
    line-height: 35px;
    color: #fff;
}

.reason__no--blue {
    background: var(--c-blue-deep);
}

.reason__no--yellow {
    background: #f7b432;
}

.reason__h3 {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 24px;
    line-height: 33.6px;
    color: #4c4c4c;
}

.reason__hl {
    color: var(--c-blue-deep);
}

.reason__text {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 16px;
    line-height: 28.8px;
    color: var(--c-text);
}

.reason__strong {
    font-weight: 700;
    color: #275ca5;
}

.reason__ic {
    position: absolute;
    right: 14px;
    bottom: 11.7px;
    width: 62px;
    height: 62px;
}

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

.reason__ic--people {
    width: 66px;
    height: 54px;
    bottom: 14px;
}


/* ==========================================================================
   CASE STUDY 作業事例 (2155:347)
   ========================================================================== */

.case {
    width: 100%;
    padding: 60px 0;
    background-color: #F1F6FA;
}

.case .wrap {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.case__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.case__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: var(--c-blue-deep);
}

.case__kicker i {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--c-blue-deep);
}

.case__title {
    position: relative;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    color: var(--c-blue-deep);
    text-align: center;
}

.case__spark {
    position: absolute;
    top: 0;
    color: var(--c-orange-y);
    font-family: var(--font-round), sans-serif;
    font-weight: 900;
    pointer-events: none;
}

.case__spark--l {
    left: -64px;
    transform: scaleX(-1);
}

.case__spark--r {
    right: -64px;
    transform: scaleX(-1);
}

.case__spark-lg {
    position: absolute;
    top: 8px;
    font-size: 40px;
    line-height: 1;
}

.case__spark--l .case__spark-lg {
    left: 6px;
}

.case__spark--r .case__spark-lg {
    right: 6px;
}

.case__spark-sm {
    position: absolute;
    top: 34px;
    font-size: 20px;
    line-height: 1;
}

.case__spark--l .case__spark-sm {
    left: 33px;
}

.case__spark--r .case__spark-sm {
    right: 33px;
}

.case__sub {
    margin: 2px 0 0;
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--c-text-weak);
    text-align: center;
}

.case__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding: 11px 0;
    width: 100%;
}

.case__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 30px 23px 18px;
    box-shadow: 0px 6px 18px -8px rgba(30, 70, 120, 0.3);
}

.case__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.case__no {
    flex-shrink: 0;
    background: var(--c-blue-deep);
    color: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
}

.case__name {
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: var(--c-blue-deep);
    white-space: nowrap;
}

.case__ba {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
}

.case__fig {
    position: relative;
    margin: 0;
    aspect-ratio: 197.5 / 147.45;
    border-radius: 10px;
    overflow: hidden;
}

.case__fig img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case__tag {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 96px;
    display: flex;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 10px 0 12px 0;
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 0.7px;
    color: #fff;
}

.case__tag--before {
    background: var(--c-text-mute);
}

.case__tag--after {
    background: #2AB36A;
}

.case__arw {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.case__arw svg {
    display: block;
}

.case__stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--c-border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.case__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 12px 5px 14px 4px;
    border-right: 1px solid var(--c-border);
}

.case__stat:last-child {
    border-right: 0;
}

.case__stat-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.case__stat-ico svg {
    display: block;
}

.case__stat-label {
    margin-top: 2px;
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 19.25px;
    color: var(--c-text-weak);
    text-align: center;
}

.case__stat-val {
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 18.75px;
    color: var(--c-blue-deep);
    text-align: center;
}

.case__stat--net {
    background: var(--c-pink-light);
    gap: 2px;
}

.case__stat--net .case__stat-label {
    color: var(--c-pink-cta);
}

.case__stat-val--lg {
    font-size: 16px;
    line-height: 20px;
    color: var(--c-pink-cta);
}

.case__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 15px 18px;
    width: 100%;
}

.case__note-ico {
    display: flex;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.case__note-ico svg {
    display: block;
}

.case__note p {
    margin: 0;
    font-family: var(--font-base), sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--c-blue-deep);
    text-align: center;
}


/* ==========================================================================
   REVIEWS お客様の声 (2155:489)
   ========================================================================== */

.review {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.review__wrap {
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    background: #eaf4fb;
    border: 4px solid #bde4ff;
    border-radius: 20px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
}

.review__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.review__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: #0a55b4;
    white-space: nowrap;
}

.review__kicker::before,
.review__kicker::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: #0a55b4;
}

.review__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    color: #0a55b4;
    text-align: center;
}

.review__star {
    flex-shrink: 0;
    width: 36px;
    height: auto;
}

.review__catch {
    margin: 0;
    padding-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13.6px;
    width: 100%;
}

.review__catch-txt {
    font-weight: 900;
    font-size: 16px;
    line-height: 28px;
    color: #0a55b4;
    white-space: nowrap;
}

.review__catch-bar {
    width: 3px;
    height: 24px;
    border-radius: 2px;
    background: #0a55b4;
    display: inline-block;
}

.review__catch-bar--l {
    transform: rotate(-22deg);
}

.review__catch-bar--r {
    transform: rotate(22deg);
}

.review__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    padding-top: 14px;
    align-items: stretch;
}

.review__card {
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e4ecf3;
    border-radius: 18px;
    padding: 29px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0px 6px 18px -8px rgba(30, 70, 120, 0.3);
}

.review__info {
    display: contents;
}

.review__meta {
    display: contents;
}

.review__detail {
    display: contents;
}

.review__avatar {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 3px solid #dcecf9;
    overflow: hidden;
    flex-shrink: 0;
}

.review__avatar img {
    position: absolute;
    max-width: none;
    display: block;
}

.review__name {
    margin: 0;
    padding-top: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #0a55b4;
    text-align: center;
}

.review__stars {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 3px;
    color: #f5b30b;
    text-align: center;
}

.review__body {
    margin: 0;
    padding-top: 9px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 29.6px;
    color: #4d4d4d;
    text-align: left;
}

.review__foot {
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    border: 1px solid #e4ecf3;
    border-radius: 16px;
    padding: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0px 6px 18px -8px rgba(30, 70, 120, 0.3);
}

.review__foot-ic {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #438fdb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review__foot-txt {
    margin: 0;
    font-weight: 700;
    font-size: 17px;
    line-height: 29.75px;
    color: #0a55b4;
    text-align: center;
    white-space: nowrap;
}


/* ==========================================================================
   CTA band 無料見積受付中 (2155:551 / 2249:63)
   ========================================================================== */

.ctaband {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}


/* width:100%+max-widthで可変対応（1025〜1051pxの横はみ出し＝横揺れ防止） */

.ctaband__box {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1051px;
    background: #fff;
    border: 3px solid #f7c6d2;
    border-radius: 26px;
    padding: 43px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0px 18px 44px -22px rgba(216, 69, 107, 0.5);
}

.ctaband__top {
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    height: 250px;
    overflow: visible;
}

.ctaband__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 547px;
    flex-shrink: 0;
}

.ctaband__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ctaband__title-text {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 5.8px;
    color: #f04664;
    white-space: nowrap;
}

.ctaband__spark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.8px;
    color: #ffd24d;
}

.ctaband__spark--lg {
    font-size: 32px;
}

.ctaband__spark--l-lg {
    left: 62px;
    top: calc(50% - 17px);
    font-size: 38px;
}

.ctaband__spark--l-sm {
    left: 80px;
}

.ctaband__spark--r-sm {
    right: 80px;
}

.ctaband__spark--r-lg {
    right: 62px;
    top: calc(50% - 17px);
    font-size: 38px;
}

.ctaband__sub {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 20px;
    line-height: 26.25px;
    color: #4d4d4d;
    text-align: center;
}

.ctaband__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding-top: 7px;
}

.ctaband__tel-ic {
    flex-shrink: 0;
    width: 59px;
    height: 59px;
    border-radius: 63px;
    background: #f04664;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaband__num {
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 59px;
    line-height: 52px;
    letter-spacing: 5.8px;
    color: #f04664;
    text-align: center;
    text-decoration: none;
}

.ctaband__hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 51px;
    padding-top: 3px;
}

.ctaband__hours-tag {
    border: 2px solid #ffcece;
    border-radius: 6px;
    padding: 6px 11px;
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
    color: #f04664;
    white-space: nowrap;
}

.ctaband__hours-text {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 20px;
    line-height: 24.5px;
    color: #4d4d4d;
    white-space: nowrap;
}

.ctaband__mascot {
    width: 474px;
    height: 304px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.ctaband__mascot img {
    width: 452px;
    height: auto;
    display: block;
    margin-top: -54px;
}

.ctaband__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 2px;
}

.ctaband__act {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75.27px;
    box-sizing: border-box;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0px 6px 18px -8px rgba(30, 70, 120, 0.3);
    padding: 15px 20px;
}

.ctaband__act--line {
    background: #23aa41;
}

.ctaband__act--form {
    background: #f04664;
}

.ctaband__act-ic {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctaband__act-ic img {
    width: 25px;
    height: 24px;
    display: block;
}

.ctaband__act-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    white-space: nowrap;
    text-align: center;
}

.ctaband__act-main {
    font-family: var(--font-base);
    font-weight: 900;
    font-size: 24px;
    line-height: 23.4px;
}

.ctaband__act-sub {
    margin-top: 6px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 21.88px;
    opacity: 0.95;
}

.ctaband__act-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-round);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    opacity: 0.9;
}

.ctaband__foot {
    position: relative;
    width: 100%;
    height: 57.5px;
    background: #faf5e1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ctaband__foot-heart {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ctaband__foot-heart svg {
    width: 33px;
    height: 33px;
}

.ctaband__foot-text {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 24px;
    line-height: 31.5px;
    color: #474747;
    text-align: center;
    white-space: nowrap;
}

.ctaband__foot-em {
    color: #f04664;
}

.ctaband__foot-spark {
    display: flex;
    align-items: center;
    gap: 1px;
    color: #ffd24d;
    font-family: var(--font-round);
    font-weight: 900;
    flex-shrink: 0;
}

.ctaband__foot-spark span {
    line-height: 1;
}

.ctaband__foot-spark span:nth-child(1) {
    font-size: 9px;
}

.ctaband__foot-spark span:nth-child(2) {
    font-size: 18px;
    position: relative;
    top: -10px;
}

.ctaband__foot-spark span:nth-child(3) {
    font-size: 9px;
    position: relative;
    left: -3px;
    top: 3px;
}


/* ==========================================================================
   買取できるものの一例 (2155:617)
   ========================================================================== */

.buy {
    width: 100%;
    background: #fff;
    padding: 80px 0;
}

.buy__head {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
}

.buy__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: #e53162;
}

.buy__kicker::before,
.buy__kicker::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: #e53162;
}

.buy__title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: var(--font-base);
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 52px;
    margin: 0;
}

.buy__title-strong {
    font-size: 48px;
    color: #f04664;
}

.buy__title-rest {
    font-size: 40px;
    color: #393939;
}


/* buy__title中央を軸に左右対称配置。縦はタイトル中央(top:50%)に合わせて高さを揃える */

.buy__deco {
    position: absolute;
    top: 50%;
    pointer-events: none;
}

.buy__deco--swoosh-l {
    left: calc(50% - 338px);
    width: 85px;
    transform: translate(-50%, -50%) scaleX(-1);
}

.buy__deco--swoosh-r {
    left: calc(50% + 338px);
    width: 85px;
    transform: translate(-50%, -50%);
}

.buy__deco--spark-l {
    left: calc(50% - 262px);
    width: 31px;
    transform: translate(-50%, -50%);
}

.buy__deco--spark-r {
    left: calc(50% + 262px);
    width: 31px;
    transform: translate(-50%, -50%) scaleX(-1);
}

.buy__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 14px;
    margin-bottom: 26px;
}

.buy__card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 6px 18px -8px rgba(30, 70, 120, 0.3);
    display: flex;
    flex-direction: column;
}

.buy__photo {
    aspect-ratio: 236 / 261.28;
    background: #fafafa;
    overflow: hidden;
}

.buy__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buy__label {
    background: #e53162;
    color: #fff;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    text-align: center;
    padding: 8px 6px;
}

.buy__note {
    padding: 9px 8px;
}

.buy__note p {
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: var(--c-text-weak);
    text-align: center;
    margin: 0;
}

.buy__points {
    background: var(--bg-cream);
    border: 1px solid #f3e3bc;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 41px;
}

.buy__point {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 0 6px;
}

.buy__point:not(:last-child) {
    border-right: 1px solid #f3e3bc;
}

.buy__point-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.buy__point-ic {
    flex-shrink: 0;
    width: 89px;
    height: 90px;
    border-radius: 89px;
    background: var(--c-pink-light);
    display: grid;
    place-items: center;
}

.buy__point-ic img {
    width: 91px;
    height: auto;
    display: block;
}

.buy__point-ttl {
    display: block;
    font-family: var(--font-base);
    font-weight: 900;
    line-height: 25.5px;
}

.buy__point-ttl .buy__pt-gray {
    font-size: 17px;
    color: var(--c-text);
}

.buy__point-ttl .buy__pt-pink {
    font-size: 24px;
    color: var(--c-pink-cta);
}

.buy__point-ttl .buy__pt-mid {
    font-size: 24px;
    color: var(--c-pink-cta);
}

.buy__point-ttl .buy__pt-sm {
    font-size: 20px;
    color: var(--c-pink-cta);
}

.buy__point:first-child .buy__point-ttl {
    color: var(--c-text);
    font-size: 17px;
}

.buy__point:first-child .buy__point-ttl .buy__pt-mid,
.buy__point:first-child .buy__point-ttl .buy__pt-sm {
    color: var(--c-pink-cta);
}

.buy__point-txt {
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 13px;
    line-height: 20.8px;
    color: var(--c-text-weak);
    text-align: left;
    margin: 0;
}

.buy__em {
    font-weight: 700;
    color: var(--c-pink-cta);
}


/* ==========================================================================
   料金の目安 (2155:707)
   ========================================================================== */

.price {
    width: 100%;
    background: var(--bg-cream);
    padding: 80px 0;
}

.price__inner {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price__head {
    position: relative;
    height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: #0A55B4;
}

.price__kicker::before,
.price__kicker::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: #0A55B4;
}

.price__title {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: .8px;
    text-align: center;
}

.price__title--blue {
    color: #0A55B4;
}

.price__title--pink {
    color: #E53162;
}

.price__sub {
    margin: 0;
    padding-top: 2px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #5B6B80;
    text-align: center;
}

.price__deco-house,
.price__deco-brush,
.price__spark {
    position: absolute;
    pointer-events: none;
    user-select: none;
}


/* デコは price__head(幅1000px)の中心500pxを軸に左右ミラー対称。左を基準に右を鏡像化 */

.price__deco-house--l {
    left: 250px;
    top: 8px;
    width: 117px;
    height: 85px;
}

.price__deco-house--r {
    left: 645px;
    top: 25px;
    width: 101px;
    height: 60px;
}

.price__deco-brush--l {
    left: 360px;
    top: 39px;
    width: 31px;
    height: 36px;
}

.price__deco-brush--r {
    left: 609px;
    top: 39px;
    width: 31px;
    height: 36px;
    transform: scaleX(-1);
}

.price__spark {
    font-family: var(--font-round);
    font-weight: 900;
    line-height: 28.6px;
    transform: translate(-50%, -50%);
}

.price__spark--r1 {
    left: 772.5px;
    top: 16.5px;
    font-size: 30px;
    color: #F04664;
}

.price__spark--r2 {
    left: 755.5px;
    top: 28.5px;
    font-size: 19px;
    color: #CFE0EF;
}

.price__spark--l1 {
    left: 245.5px;
    top: 16.5px;
    font-size: 30px;
    color: #F04664;
}

.price__spark--l2 {
    left: 263.5px;
    top: 28.5px;
    font-size: 19px;
    color: #CFE0EF;
}

.price__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    padding-top: 16px;
}

.price__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #E4ECF3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, .3);
}

.price__card-head {
    background: #FDEEF2;
    padding: 10px 4px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 21px;
    line-height: 36.75px;
    color: #F04664;
    text-align: center;
}

.price__card-img {
    padding: 12px 10px 4px;
}

.price__card-img img {
    display: block;
    width: 87.5%;
    margin: 0 auto;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.price__card-foot {
    display: flex;
    justify-content: center;
    padding: 8px 4px 19.5px;
}

.price__amount {
    position: relative;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 18px;
    line-height: 31.5px;
    color: #F04664;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(to bottom, rgba(255, 226, 122, 0) 70%, #FFE27A 70%);
    padding: 0 2px;
}

.price__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFF7E6;
    border: 1px solid #F3E3BC;
    border-radius: 14px;
    padding: 16px 19px;
}

.price__note-ic {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    line-height: 0;
}

.price__note-txt {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #4D4D4D;
    text-align: center;
}

.price__note-strong {
    font-weight: 900;
    color: #F04664;
}


/* ==========================================================================
   相続ワンストップ (2155:778)
   ========================================================================== */

.support {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.support__wrap {
    position: relative;
    width: 1000px;
    max-width: 1040px;
    background: var(--bg-blue2, #eaf4fb);
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.support__leaf-top {
    position: absolute;
    width: 31px;
    height: 36px;
    z-index: 1;
}

.support__leaf-top--l {
    left: 154px;
    top: 79px;
}

.support__leaf-top--r {
    right: 154px;
    top: 79px;
    transform: scaleX(-1);
}

.support__leaf-side {
    position: absolute;
    width: 81px;
    height: 108px;
    z-index: 0;
}

.support__leaf-side--l {
    left: 62px;
    top: 47px;
    transform: scaleX(-1);
}

.support__leaf-side--r {
    right: 62px;
    top: 47px;
}

.support__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 18px;
    position: relative;
    z-index: 2;
}

.support__kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: var(--c-blue-deep, #0a55b4);
}

.support__kicker::before,
.support__kicker::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--c-blue-deep, #0a55b4);
}

.support__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    color: var(--c-blue-deep, #0a55b4);
    text-align: center;
}

.support__br-sp {
    display: none;
}

.support__title-pink {
    color: var(--c-pink-cta, #f04664);
}

.support__lead {
    padding-top: 2px;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--c-text-weak, #5b6b80);
    text-align: center;
}

.support__lead-pink {
    color: var(--c-pink-cta, #f04664);
}

.support__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--c-border, #e4ecf3);
    border-radius: 16px;
    padding: 15px 9px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, .3);
    position: relative;
    z-index: 2;
}

.support__fs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 9px 6px 8px;
    border-right: 1px solid #eef2f6;
}

.support__fs--last {
    border-right: none;
}

.support__check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 2px solid #e53162;
    border-radius: 13px;
    position: relative;
}

.support__check::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    width: 6px;
    height: 11px;
    border: solid #e53162;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.support__fs-ic {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.support__fs-label {
    font-weight: 900;
    font-size: 17px;
    line-height: 29.75px;
    color: var(--c-text, #4d4d4d);
    white-space: nowrap;
}

.support__hero {
    position: relative;
    height: 176px;
    background: var(--bg-blue2, #eaf4fb);
    border: 1px solid var(--c-border, #e4ecf3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, .3);
    z-index: 2;
}

.support__images {
    display: contents;
}

.support__handshake {
    position: absolute;
    left: 34px;
    top: 21px;
    width: 131px;
    height: 131px;
}

.support__hero-text {
    position: absolute;
    left: 182px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-base);
    font-weight: 700;
}

.support__hero-l1 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.48px;
    margin-bottom: 4px;
}

.support__hero-navy {
    font-size: 40px;
    color: var(--c-navy, #26438c);
}

.support__hero-pink {
    font-size: 40px;
    color: var(--c-pink-cta, #f04664);
}

.support__hero-sm {
    font-size: 32px;
    color: var(--c-text, #4d4d4d);
}

.support__hero-l2 {
    font-size: 68px;
    line-height: 1;
    letter-spacing: 0.48px;
    display: flex;
    align-items: flex-end;
}

.support__hero-tag {
    color: var(--c-pink-cta, #f04664);
    background: linear-gradient(to bottom, rgba(255, 226, 122, 0) 68%, #ffe27a 68%);
}

.support__hero-blue {
    color: var(--c-navy, #26438c);
}

.support__family {
    position: absolute;
    right: 0;
    top: 0;
    width: 312px;
    height: 185px;
    object-fit: contain;
}

.support__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.support__card {
    position: relative;
    height: 178.63px;
    background: #fff;
    border: 1px solid var(--c-border, #e4ecf3);
    border-radius: 16px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, .3);
}

.support__card-ic {
    position: absolute;
    left: 50%;
    top: 46px;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.support__card-name {
    position: absolute;
    left: 0;
    right: 0;
    top: 98px;
    text-align: center;
    font-weight: 900;
    font-size: 17px;
    line-height: 29.75px;
    color: var(--c-text, #4d4d4d);
}

.support__card-sub {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 131px;
    text-align: center;
    font-weight: 500;
    font-size: 12.5px;
    line-height: 21.88px;
    color: var(--c-text-weak, #5b6b80);
}

.support__foot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream3, #fff8df);
    border: 1px dashed #ecd9a0;
    border-radius: 14px;
    padding: 17px;
    z-index: 2;
}

.support__heart {
    width: 51px;
    height: 43px;
    object-fit: contain;
    margin-right: 10px;
}

.support__foot-text {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.support__foot-dark {
    font-weight: 700;
    color: var(--c-text, #4d4d4d);
}

.support__foot-pink {
    font-weight: 900;
    color: var(--c-pink-cta, #f04664);
}


/* ==========================================================================
   ごきげん屋のブログ (2155:891)
   ========================================================================== */

.blog {
    position: relative;
    width: 100%;
    background: #fdf6e0;
    padding: 80px 0;
}

.blog__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.blog__head {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.blog__kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: #e53162;
}

.blog__kicker-line {
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: #e53162;
}

.blog__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    text-align: center;
}

.blog__title-blue {
    color: #0a55b4;
}

.blog__title-pink {
    color: #f04664;
}

.blog__lead {
    margin-top: 2px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #5b6b80;
    text-align: center;
}

.blog__deco {
    position: absolute;
    pointer-events: none;
}

.blog__deco--clip {
    left: 750px;
    top: 25px;
    width: 126px;
    height: 97px;
}

.blog__deco--furniture {
    left: 130px;
    top: 25px;
    width: 142px;
    height: 89px;
}

.blog__carousel {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
}

.blog__arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    border: none;
    background: #fff;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, 0.3);
    color: #438fdb;
    font-family: var(--font-round);
    font-size: 26px;
    line-height: 1;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.blog__arrow--prev {
    opacity: 0.35;
}

.blog__viewport {
    flex: 1 0 0;
    min-width: 0;
    overflow: hidden;
    padding: 6px 2px;
}

.blog__track {
    display: flex;
    gap: 22px;
    align-items: stretch;
}

.blog__card {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e4ecf3;
    border-radius: 18px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, 0.3);
    overflow: hidden;
}

.blog__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 278 / 173.75;
    border-bottom: 1px solid #e4ecf3;
    background: linear-gradient(134.83deg, rgb(230, 238, 246) 0%, rgb(220, 232, 243) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.blog__thumb-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.blog__thumb-text {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 12px;
    line-height: 21px;
    color: #9db1c5;
}

.blog__cat {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #e53162;
    color: #fff;
    border-radius: 7px;
    padding: 4px 12px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 12px;
    line-height: 21px;
}

.blog__body {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 18px 20px;
}

.blog__date {
    width: 100%;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.64px;
    color: #5b6b80;
}

.blog__card-title {
    width: 100%;
    font-family: var(--font-round);
    font-weight: 700;
    font-size: 24px;
    line-height: 33.6px;
    color: #0a55b4;
}

.blog__excerpt {
    width: 100%;
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #5b6b80;
}

.blog__more {
    margin-top: auto;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 13px;
    line-height: 22.75px;
    color: #f04664;
}

.blog__dots {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9px;
}

.blog__dot {
    width: 9px;
    height: 9px;
    border: none;
    padding: 0;
    border-radius: 4.5px;
    background: #dcecf9;
    cursor: pointer;
}

.blog__dot.is-active {
    width: 24px;
    height: 9px;
    border-radius: 5px;
    background: #e53162;
}


/* ==========================================================================
   出張可能エリア (2155:1003)
   ========================================================================== */

.area {
    width: 100%;
    background: var(--bg-blue);
    padding: 80px 0;
}

.area .wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.area__sec-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.area__deco-truck {
    position: absolute;
    left: 18px;
    top: 0;
    width: 271px;
    height: 136px;
    object-fit: cover;
    pointer-events: none;
    transform: scaleX(-1);
}

.area__deco-cloud {
    position: absolute;
    right: 33px;
    top: 35px;
    width: 299px;
    height: 88px;
    object-fit: cover;
    pointer-events: none;
}

.area__kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 14px;
    line-height: 24.5px;
    letter-spacing: 1.68px;
    color: var(--c-blue-deep);
    white-space: nowrap;
}

.area__kicker::before,
.area__kicker::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--c-blue-deep);
}

.area__title {
    position: relative;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    text-align: center;
    white-space: nowrap;
}

.area__title-blue {
    color: var(--c-blue-deep);
}

.area__title-pink {
    color: #e53162;
}

.area__lead {
    position: relative;
    padding-top: 2px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--c-text-weak);
    text-align: center;
}

.area__block {
    width: 100%;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 21px 41px;
    box-sizing: border-box;
}

.area__block--shadow {
    padding: 41px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, 0.3);
}

.area__inner {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.area__map {
    flex: 0 0 450px;
    min-width: 0;
    padding: 0 30px;
}

.area__map img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.area__map:not(.area__map--wakayama) img {
    border: 3px solid var(--c-blue);
}

.area__map--wakayama {
    flex: 0 0 450px;
    width: auto;
    height: auto;
    padding: 0 30px;
}

.area__map--wakayama img {
    border: 3px solid #3fb6a8;
}

.area__cities {
    display: flex;
    flex: 1 0 0;
    min-width: 0;
    flex-direction: column;
    padding-left: 15px;
}

.area__cities--osaka {
    gap: 14.01px;
}

.area__cities--wakayama {
    gap: 14px;
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
}

.area__pref {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--c-border);
    box-sizing: border-box;
}

.area__dot {
    width: 11px;
    height: 11px;
    border-radius: 5.5px;
    flex-shrink: 0;
}

.area__pref-name {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 24px;
    line-height: 33.6px;
    letter-spacing: 0.48px;
    white-space: nowrap;
}

.area__pref--osaka .area__dot {
    background: var(--c-blue);
}

.area__pref--osaka .area__pref-name {
    color: var(--c-blue);
}

.area__pref--wakayama .area__dot {
    background: #3fb6a8;
}

.area__pref--wakayama .area__pref-name {
    color: #2f9c8f;
}

.area__city-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 6px;
    width: 371px;
    height: 258px;
}

.area__city-list--wakayama {
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 138px;
}

.area__chip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 13px 6.63px;
    border-radius: 8px;
    background: var(--bg-blue2);
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 13.5px;
    line-height: 23.63px;
    color: var(--c-blue-deep);
    white-space: nowrap;
}

.area__chip--wakayama {
    background: #e3f4f1;
    color: #2f9c8f;
}


/* ==========================================================================
   お問い合わせフォーム (2155:1117)
   ========================================================================== */

.form {
    width: 100%;
    background: #eaf4fb;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form>.wpcf7 {
    width: 100%;
    max-width: 720px;
}

.form__card {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 18px 44px -24px rgba(30, 70, 120, 0.4);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form__title {
    margin: 0;
    text-align: center;
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0.8px;
    color: var(--c-blue);
}

.form__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form__field:has(.form__addr) {
    gap: 12px;
}

.form__label {
    display: flex;
    gap: 5px;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: var(--c-text);
}

.form__req {
    color: #e53162;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    box-sizing: border-box;
    background: #eef2f6;
    border: 1px solid #dde4ec;
    border-radius: 9px;
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 15px;
    color: var(--c-text);
    outline: none;
}

.form__input,
.form__textarea {
    padding: 14px 15px;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #a9b4c0;
}

.form__input {
    line-height: 1;
}

.form__select {
    padding: 14px 31px 14px 19px;
    line-height: 21px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235b6b80' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form__textarea {
    min-height: 120px;
    line-height: 1.6;
    resize: vertical;
}

.form__addr {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__sub {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form__sublabel {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 12.5px;
    line-height: 21.88px;
    color: #5b6b80;
}

.form__field--file {
    padding-bottom: 10px;
}

.form__filelist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__file {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px dashed #cdd8e3;
    border-radius: 9px;
    padding: 10px 13px;
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 13px;
    color: var(--c-text);
}

.form__submit {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 17px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #4a9fe0, #2f80c9);
    box-shadow: 0 12px 24px -12px rgba(47, 128, 201, 0.8);
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    text-align: center;
}


/* ==========================================================================
   Footer 会社概要・グループ会社・コピーライト (2155:1230)
   ========================================================================== */

.footer {
    width: 100%;
    background: #FDF6E3;
    padding-top: 80px;
    padding-bottom: 18px;
}

.footer__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.footer__h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin: 0;
}

.footer__h-line {
    width: 40px;
    border-top: 2px dashed #D9C99A;
}

.footer__h-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 33.6px;
    letter-spacing: 0.48px;
    color: #434343;
    text-align: center;
    white-space: nowrap;
}

.footer__company {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 720px;
    max-width: 720px;
    padding-top: 4px;
}

.footer__bldg {
    flex: 1 0 0;
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
}

.footer__bldg img {
    display: block;
    width: 277px;
    height: auto;
}

.footer__co {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7.1px;
}

.footer__co-name {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 33.6px;
    color: #434343;
}

.footer__addr {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27.2px;
    color: #4D4D4D;
}

.footer__rows {
    list-style: none;
    margin: 0;
    padding-top: 6.89px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__row {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer__ic {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #F04664;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__ic svg {
    display: block;
}

.footer__label {
    width: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 21px;
    color: #F04664;
}

.footer__label--wide {
    width: 48px;
}

.footer__value {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #4D4D4D;
}

.footer__btns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 720px;
    max-width: 720px;
    padding-top: 4px;
}

.footer__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 68px;
    padding: 17px 41px 17px 21px;
    background: #fff;
    border: 1px solid #F0E4C2;
    border-radius: 14px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, 0.3);
    text-decoration: none;
}

.footer__btn-ic {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background: #F04664;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__btn-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 26.25px;
    color: #4D4D4D;
}

.footer__btn-arrow {
    position: absolute;
    right: 21px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #F04664;
}

.footer__grp-h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding-top: 9.5px;
}

.footer__grp-line {
    width: 26px;
    border-top: 2px dashed #F04664;
}

.footer__grp-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 33.6px;
    letter-spacing: 0.48px;
    color: #434343;
    text-align: center;
    white-space: nowrap;
}

.footer__services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 720px;
    max-width: 720px;
    padding-bottom: 6px;
}

.footer__svc {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 74px;
    padding: 16px 32px 16px 18px;
    background: #fff;
    border: 2px solid #F6C9D4;
    border-radius: 14px;
    box-shadow: 0 6px 18px -8px rgba(30, 70, 120, 0.3);
    text-decoration: none;
}

.footer__svc--reform {
    border-color: #F6C9D4;
    background: var(--bg-pink);
}

.footer__svc--appliance {
    border-color: #BCD9F0;
    background: var(--bg-blue);
}

.footer__svc--cleanup {
    border-color: #F3DCA0;
    background: var(--bg-cream);
}

.footer__svc-ic {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__svc-ic img {
    display: block;
    max-width: none;
    width: auto;
    height: 35px;
}

.footer__svc--appliance .footer__svc-ic img {
    height: 39px;
}

.footer__svc--cleanup .footer__svc-ic img {
    height: 29px;
}

.footer__svc-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 19.5px;
    color: #4D4D4D;
    white-space: nowrap;
}

.footer__svc-arrow {
    position: absolute;
    right: 16px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #C2C2C2;
}


/* サービス別に矢印をテーマの濃色へ */

.footer__svc--reform .footer__svc-arrow {
    color: var(--c-pink);
}

.footer__svc--appliance .footer__svc-arrow {
    color: var(--c-navy);
}

.footer__svc--cleanup .footer__svc-arrow {
    color: var(--c-orange-d);
}

.footer__copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 19px;
    border-top: 1px dashed #E3D6AB;
}

.footer__copy-txt {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    color: #A9A081;
    text-align: center;
}


/* ==========================================================================
   FV：1025〜1439px（固定1440pxをやめ流動化したことで、PC前提の
   背景引き伸ばし＆絶対配置装飾が崩れる帯域。背景はcover、装飾は整理する）
   ========================================================================== */

@media (min-width: 1025px) and (max-width: 1439px) {
    /* 背景写真：可変幅で縦横比が狂うため cover に切り替え。
     X=30%で人物を右へ寄せ、左側のコピーと顔が被らないようにする */
    .hero__bg {
        inset: 0;
    }
    .hero__bg img {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        max-width: 100%;
        object-fit: cover;
        object-position: 30% top;
    }
    /* バッジ：1440px基準の左座標(left:1010px)では右にはみ出すため右寄せに */
    .hero__badge {
        top: 130px;
        right: 0;
        width: 220px;
    }
    /* 葉の装飾：1440px基準の座標で半分見切れるため非表示 */
    .hero__leaf {
        display: none;
    }
    /* 右フェードは可変幅でも有効。位置はそのままでOK */
}


/* ==========================================================================
   タブレット（≤1024px）
   ========================================================================== */

@media (max-width: 1024px) {
    .page {
        width: 100%;
    }
    .wrap {
        max-width: 100%;
    }
    .wrap-s {
        max-width: 100%;
    }
    /* Header */
    .header__wrap {
        gap: 16px;
        padding: 8px 20px;
    }
    .brand__name {
        font-size: 28px;
    }
    .header-tel__digits {
        font-size: 26px;
    }
    /* Hero */
    .hero {
        width: 100%;
    }
    /* 背景写真：PCの引き伸ばし指定(width/height別%)は可変幅で縦横比が狂うため
     可変域は object-fit:cover に切り替えて歪みを止める */
    .hero__bg {
        inset: 0;
    }
    .hero__bg img {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        max-width: 100%;
        object-fit: cover;
        object-position: 70% top;
    }
    .hero__badge {
        top: 120px;
        right: 0;
        width: 180px;
    }
    .hero-left {
        width: 480px;
    }
    .hero-brand {
        font-size: 80px;
    }
    .hero-h1__main {
        font-size: 38px;
    }
    .hero-feat {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    /* Reason */
    .reason__brand {
        font-size: 32px;
    }
    .reason__grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .reason__grid--2 {
        max-width: 100%;
    }
    /* Case */
    .case__name {
        font-size: 16px;
    }
    /* CTAband */
    .ctaband__box {
        width: 100%;
    }
    .ctaband__num {
        font-size: 46px;
    }
    /* Blog */
    .blog__deco {
        display: none;
    }
    /* Price */
    .price__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Support */
    .support__wrap {
        width: 100%;
    }
    /* Footer */
    .footer__company {
        width: 100%;
    }
    .footer__btns {
        width: 100%;
    }
    .footer__services {
        width: 100%;
    }
}


/* ==========================================================================
   SP スマートフォン（≤768px）
   ========================================================================== */

@media (max-width: 768px) {
    /* --- Global ----------------------------------------------------------- */
    body {
        overflow-x: clip;
    }
    .page {
        width: 100%;
    }
    .wrap {
        max-width: 100%;
        padding-inline: 20px;
    }
    .wrap-s {
        max-width: 100%;
        padding-inline: 20px;
    }
    .sec-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    .sec-title {
        font-size: 24px;
    }
    /* --- Header（コンパクト化：電話は非表示・ブランド＋LINEを横1列） ------- */
    .header__wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: auto;
        gap: 10px;
        padding: 8px 16px;
    }
    .brand {
        align-items: flex-start;
    }
    /* エリアタグを名前の下へ回してブランド幅を抑える（横にLINEを置くため） */
    .brand__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    .brand__tag {
        font-size: 10px;
    }
    .brand__name {
        font-size: 22px;
        line-height: 1.1;
    }
    .brand__area {
        font-size: 10px;
        padding: 2px 8px;
    }
    /* 電話ブロックはフロートCTAがあるので非表示 */
    .header-tel {
        display: none;
    }
    .header-line {
        width: auto;
        flex-shrink: 0;
        justify-content: center;
        border-radius: 10px;
        padding: 8px 12px;
        gap: 8px;
    }
    .header-line__main {
        font-size: 13px;
    }
    .header-line__sub {
        font-size: 11px;
    }
    /* --- Hero ------------------------------------------------------------- */
    .hero {
        padding-bottom: 20px;
    }
    .hero::before,
    .hero::after {
        display: none;
    }
    /* SPは全幅なので左右フェード不要 */
    .hero__bg {
        inset: 0;
    }
    /* SP専用背景に切替（PC用は隠す）。詳細度を .hero__bg img に合わせる */
    .hero__bg img.hero__bg--pc {
        display: none;
    }
    .hero__bg img.hero__bg--sp {
        display: block;
    }
    .hero__bg img {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        max-width: 100%;
        object-fit: cover;
        object-position: 50% top;
    }
    /* 文字側(左〜中央)に軽い白膜。人物のいる右側はクリアに残す */
    .hero__bg::after {
        display: block;
        background: linear-gradient(105deg, rgba(255, 255, 255, .62) 0%, rgba(255, 255, 255, .34) 42%, rgba(255, 255, 255, .08) 70%, rgba(255, 255, 255, 0) 100%);
    }
    .hero__leaf {
        display: none;
    }
    /* SP：PC用バッジは隠し、SP用バッジを hero-feat の6個目(120×120)に並べる */
    .hero__badge {
        display: none;
    }
    /* SP：feat列とバッジを分離（rowは透明に戻す） */
    .hero-feat-row {
        display: contents;
    }
    .hero__badge-sp {
        display: block;
        position: absolute;
        width: 150px;
        height: auto;
        object-fit: contain;
        right: 0px;
        top: -38px;
        z-index: 3;
    }
    .hero__top .wrap {
        padding-inline: 20px;
    }
    .hero-left {
        width: 100%;
        margin-top: 20px;
        padding: 20px 0;
    }
    .br-sp {
        display: inline;
    }
    .hero-pre,
    .hero-h1,
    .hero-brand,
    .hero-subcopy {
        text-shadow: -2px -2px 3px rgba(255, 255, 255, 0.9), 2px -2px 3px rgba(255, 255, 255, 0.9), -2px 2px 3px rgba(255, 255, 255, 0.9), 2px 2px 3px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.75), 0 0 32px rgba(255, 255, 255, 0.4);
    }
    .hero-area {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
    .hero-pre {
        font-size: 13px;
        margin-top: 8px;
    }
    .hero-h1 {
        gap: 4px;
        flex-wrap: wrap;
    }
    .hero-h1__main {
        font-size: 22px;
        line-height: 1.2;
    }
    .hero-h1__nara {
        font-size: 16px;
    }
    .hero-brand {
        font-size: 46px;
        margin-top: 2px;
    }
    .hero-subcopy {
        font-size: 12px;
        margin-top: 8px;
    }
    .hero-feat {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 4px;
        padding-top: 8px;
        max-width: 340px;
        margin-inline: 0;
    }
    .feat {
        width: 75px;
        height: 75px;
        flex: 0 0 75px;
        padding: 8px 4px;
        gap: 4px;
        border-radius: 10px;
    }
    .feat__ico {
        height: 24px;
    }
    .feat b {
        font-size: 9px;
        line-height: 1.3;
    }
    .hero-actions {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 14px;
    }
    /* SP：ヒーローの電話ボタンは不要（フロートCTAがあるため非表示） */
    .cta-tel {
        display: none;
    }
    .cta-line {
        padding: 12px 28px;
        gap: 16px;
        border-radius: 12px;
    }
    .ico-line--lg {
        width: 40px;
        height: 40px;
    }
    .cta-line__txt b {
        font-size: 18px;
    }
    .cta-line__txt span {
        font-size: 12px;
    }
    /* --- Worry ------------------------------------------------------------ */
    .worry {
        padding: 24px 0;
    }
    /* 上下に余白を足して葉・家の装飾スペースを確保 */
    .worry__box {
        padding: 40px 16px 32px;
        gap: 14px;
    }
    /* 葉：箱の角にのぞかせる（overflow:hiddenで自然にクリップ） */
    .worry__leaf {
        display: block;
        width: 120px;
        height: auto;
    }
    .worry__leaf--tr {
        top: 2px;
        left: auto;
        right: 2px;
    }
    .worry__leaf--bl {
        top: auto;
        bottom: 2px;
        left: 2px;
    }
    .worry__title-inner {
        gap: 8px;
    }
    .worry__title-line {
        width: 100%;
    }
    .worry__heading {
        line-height: 1.4;
        white-space: normal;
    }
    .worry__br-sp {
        display: inline;
    }
    /* SPでは「お困りごと」の後で改行 */
    .worry__h-sub {
        font-size: 22px;
    }
    .worry__h-main {
        font-size: 26px;
    }
    .worry__spark {
        width: 18px;
        height: 22px;
    }
    .worry__spark--l {
        margin-right: 8px;
    }
    .worry__spark--r {
        margin-left: 8px;
    }
    /* グリッドを通常フローに */
    .worry__grid {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .worry__photo {
        position: static;
        width: 243px;
        height: 200px;
        left: auto;
        top: auto;
        border-radius: 10px;
    }
    .worry__list {
        position: static;
        left: auto;
        top: auto;
        right: auto;
        height: auto;
        gap: 8px;
    }
    .worry__item {
        padding: 10px 4px 10px;
    }
    .worry__text {
        white-space: normal;
        font-size: 14px;
    }
    /* 家：SPはリストの下に通常フローで中央配置（PCの絶対配置は解除） */
    .worry__house {
        display: block;
        position: static;
        left: auto;
        top: auto;
        width: 208px;
        height: auto;
        object-fit: contain;
        align-self: center;
        margin-top: -40px;
    }
    /* --- Reason ----------------------------------------------------------- */
    .reason {
        padding: 40px 0;
    }
    .reason .wrap {
        gap: 14px;
    }
    .reason__title {
        gap: 8px 12px;
        flex-wrap: nowrap;
        align-items: center;
    }
    .reason__text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .reason__line {
        display: block;
        text-align: center;
    }
    .reason__brand {
        font-size: 26px;
        line-height: 1.3;
    }
    .reason__ga {
        font-size: 22px;
    }
    .reason__deco {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .reason__grid--3 {
        grid-template-columns: 1fr;
        padding-top: 6px;
        gap: 14px;
    }
    .reason__grid--2 {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 14px;
    }
    .reason__grid--3 .reason__card {
        min-height: auto;
    }
    .reason__grid--2 .reason__card {
        min-height: auto;
    }
    .reason__h3 {
        font-size: 18px;
        line-height: 1.5;
    }
    .reason__text {
        font-size: 14px;
    }
    /* SP：アイコンを右下の絶対配置から、タイトル(reason__h3)の右隣へ */
    .reason__ic {
        position: static;
        flex-shrink: 0;
        margin-left: auto;
        width: 38px;
        height: 38px;
        right: auto;
        bottom: auto;
    }
    .reason__ic--people {
        width: 42px;
        height: 34px;
    }
    /* --- Case ------------------------------------------------------------- */
    .case {
        padding: 40px 0;
    }
    .case .wrap {
        gap: 20px;
    }
    .case__kicker {
        font-size: 12px;
    }
    .case__title {
        font-size: 28px;
        line-height: 1.4;
    }
    .case__spark {
        display: none;
    }
    .case__sub {
        font-size: 13px;
    }
    .case__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 6px 0;
    }
    .case__card {
        padding: 20px 16px 14px;
    }
    .case__card-head {
        gap: 10px;
        margin-bottom: 16px;
    }
    .case__name {
        font-size: 15px;
        line-height: 1.4;
        white-space: normal;
    }
    .case__ba {
        gap: 6px;
    }
    .case__arw svg {
        width: 18px;
        height: 18px;
    }
    .case__stats {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .case__stat {
        padding: 10px 3px 12px;
    }
    .case__stat-ico {
        width: 18px;
        height: 18px;
    }
    .case__stat-ico svg {
        width: 18px;
        height: 18px;
    }
    .case__stat-label {
        font-size: 9px;
    }
    .case__stat-val {
        font-size: 12px;
    }
    .case__stat-val--lg {
        font-size: 13px;
    }
    .case__note {
        padding: 12px 14px;
        gap: 8px;
    }
    .case__note p {
        font-size: 13px;
        line-height: 1.6;
        white-space: normal;
        text-align: left;
        padding-left: 1em;
        text-indent: -1em;
    }
    /* --- Review ----------------------------------------------------------- */
    .review {
        padding: 24px 0;
    }
    .review__wrap {
        padding: 24px 16px;
        gap: 20px;
        border-width: 3px;
    }
    .review__kicker {
        font-size: 12px;
        white-space: normal;
    }
    .review__catch-txt {
        font-size: 13px;
        white-space: normal;
    }
    .review__title {
        font-size: 28px;
        gap: 14px;
    }
    .review__star {
        width: 26px;
    }
    .review__catch-txt {
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }
    .review__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 8px;
    }
    .review__card {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .review__info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .review__meta {
        display: flex;
        flex-direction: column;
    }
    .review__detail {
        display: flex;
        flex-direction: column;
    }
    .review__avatar {
        width: 60px;
        height: 60px;
        border-radius: 30px;
        flex-shrink: 0;
    }
    .review__name {
        font-size: 14px;
        padding-top: 0;
        text-align: left;
    }
    .review__stars {
        font-size: 16px;
        text-align: left;
    }
    .review__body {
        font-size: 14px;
        line-height: 1.7;
    }
    .review__foot {
        padding: 14px;
        gap: 10px;
    }
    .review__foot-txt {
        font-size: 13px;
        white-space: normal;
        text-align: left;
    }
    /* --- CTAband ---------------------------------------------------------- */
    .ctaband {
        padding: 32px 20px;
    }
    .ctaband__box {
        width: 100%;
        padding: 24px 16px;
        gap: 16px;
    }
    .ctaband__top {
        flex-direction: column;
        gap: 0;
    }
    .ctaband__main {
        width: 100%;
        gap: 8px;
    }
    .ctaband__title {
        gap: 10px;
    }
    .ctaband__title-text {
        font-size: 26px;
        letter-spacing: 2px;
    }
    .ctaband__spark {
        font-size: 16px;
    }
    .ctaband__spark--l-lg {
        left: 4px;
        font-size: 22px;
        top: calc(50% - 10px);
    }
    .ctaband__spark--l-sm {
        left: 22px;
        font-size: 13px;
    }
    .ctaband__spark--r-sm {
        right: 22px;
        font-size: 13px;
    }
    .ctaband__spark--r-lg {
        right: 4px;
        font-size: 22px;
        top: calc(50% - 10px);
    }
    .ctaband__sub {
        font-size: 15px;
    }
    .ctaband__tel {
        padding-top: 4px;
        gap: 10px;
    }
    .ctaband__tel-ic {
        width: 46px;
        height: 46px;
    }
    .ctaband__tel-ic svg {
        width: 28px;
        height: 28px;
    }
    .ctaband__num {
        font-size: clamp(26px, 8.5vw, 38px);
        letter-spacing: 1px;
        line-height: 1.1;
    }
    .ctaband__hours {
        height: auto;
        gap: 6px;
        padding-top: 2px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .ctaband__hours-tag {
        font-size: 13px;
        padding: 4px 8px;
    }
    .ctaband__hours-text {
        font-size: 15px;
        white-space: normal;
    }
    .ctaband__title-text {
        white-space: normal;
    }
    .ctaband__mascot {
        width: 100%;
        height: 180px;
        justify-content: center;
        overflow: hidden;
        padding-top: 20px;
    }
    .ctaband__mascot img {
        width: 260px;
        height: auto;
    }
    .ctaband__actions {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 80px;
    }
    .ctaband__act {
        height: auto;
        padding: 12px 14px;
        gap: 8px;
    }
    .ctaband__act--line {
        padding: 12px 14px;
    }
    .ctaband__act--form {
        padding: 12px 14px;
    }
    .ctaband__act-ic {
        position: static;
        top: auto;
        transform: none;
        flex-shrink: 0;
    }
    .ctaband__act-txt {
        flex: 1;
        white-space: normal;
        text-align: center;
        min-width: 0;
    }
    .ctaband__act-arrow {
        position: static;
        top: auto;
        transform: none;
        flex-shrink: 0;
    }
    .ctaband__act-main {
        font-size: clamp(14px, 4vw, 17px);
        line-height: 1.3;
    }
    .ctaband__act-sub {
        font-size: 12px;
        margin-top: 3px;
    }
    .ctaband__foot {
        height: auto;
        padding: 14px 16px;
    }
    .ctaband__foot-text {
        font-size: 16px;
        white-space: normal;
    }
    /* --- Buy -------------------------------------------------------------- */
    .buy {
        padding: 40px 0;
    }
    .buy__head {
        gap: 6px;
        margin-bottom: 18px;
    }
    .buy__kicker {
        font-size: 12px;
    }
    .buy__title {
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1.3;
    }
    .buy__title-strong {
        font-size: 30px;
    }
    .buy__title-rest {
        font-size: 24px;
    }
    .buy__deco {
        display: none;
    }
    .buy__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding-top: 10px;
        margin-bottom: 18px;
    }
    .buy__label {
        font-size: 12px;
        padding: 6px 4px;
    }
    .buy__note p {
        font-size: 11px;
    }
    .buy__points {
        padding: 20px 16px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* アイコン左／見出し＋説明文を右に縦積み（左揃え）の横並びに */
    .buy__point {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 14px;
        row-gap: 4px;
        padding: 0;
        text-align: left;
    }
    .buy__point:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #f3e3bc;
        padding-bottom: 16px;
    }
    .buy__point-head {
        display: contents;
    }
    .buy__point-ic {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
        width: 64px;
        height: 64px;
    }
    .buy__point-ic img {
        width: 64px;
    }
    .buy__point-ttl {
        grid-column: 2;
        grid-row: 1;
    }
    .buy__point-txt {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        font-size: 13px;
    }
    .buy__point-ttl .buy__pt-pink,
    .buy__point-ttl .buy__pt-mid {
        font-size: 20px;
    }
    .buy__point-ttl .buy__pt-gray {
        font-size: 15px;
    }
    /* --- Price ------------------------------------------------------------ */
    .price {
        padding: 40px 0;
    }
    .price__inner {
        padding: 20px 14px;
        gap: 16px;
    }
    .price__head {
        height: auto;
        gap: 6px;
        margin-bottom: 8px;
    }
    .price__kicker {
        font-size: 12px;
    }
    .price__title {
        font-size: 26px;
    }
    .price__sub {
        font-size: 13px;
    }
    .price__deco-house,
    .price__deco-brush,
    .price__spark {
        display: none;
    }
    .price__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding-top: 10px;
    }
    .price__card-head {
        font-size: 17px;
        padding: 8px 4px;
    }
    .price__amount {
        font-size: 14px;
        line-height: 1.5;
        white-space: normal;
    }
    .price__note {
        padding: 12px 14px;
        gap: 8px;
    }
    .price__note-txt {
        font-size: 13px;
        line-height: 1.6;
        text-align: left;
    }
    /* --- Support ---------------------------------------------------------- */
    .support {
        padding: 40px 0;
    }
    .support__wrap {
        width: 100%;
        padding: 20px 16px;
        gap: 14px;
    }
    .support__leaf-side {
        display: none;
    }
    .support__leaf-top {
        display: none;
    }
    .support__head {
        gap: 6px;
        padding-bottom: 10px;
    }
    .support__kicker {
        font-size: 12px;
    }
    .support__title {
        font-size: 22px;
        line-height: 1.4;
        white-space: normal;
        text-align: center;
    }
    .support__br-sp {
        display: block;
    }
    .support__lead {
        font-size: 13px;
    }
    /* ストリップ2列 */
    .support__strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px 6px;
        gap: 0;
    }
    .support__fs {
        border-right: none;
        padding: 10px 6px;
        gap: 8px;
        justify-content: flex-start;
    }
    .support__fs:nth-child(odd) {
        border-right: 1px solid #eef2f6;
    }
    .support__fs--last {
        border-right: none;
    }
    .support__fs-label {
        font-size: 14px;
        white-space: normal;
    }
    /* ヒーローエリア：絶対配置の家族画像がテキストに被るため縦積み中央寄せに */
    .support__hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 18px 16px;
    }
    .support__images {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 0;
    }
    .support__handshake {
        position: static;
        width: 64px;
        height: 64px;
        margin: 0;
    }
    .support__hero-text {
        position: static;
        transform: none;
        text-align: center;
        padding: 0;
        order: -1;
        /* テキストを最上部に */
    }
    .support__hero-l1 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .support__hero-navy,
    .support__hero-pink {
        font-size: 22px;
    }
    .support__hero-sm {
        font-size: 18px;
    }
    .support__hero-l2 {
        font-size: 36px;
        justify-content: center;
    }
    .support__family {
        position: static;
        width: 150px;
        height: auto;
    }
    /* 提携先グリッド */
    .support__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .support__card {
        height: auto;
        min-height: 150px;
        padding-bottom: 16px;
    }
    .support__card-ic {
        top: 24px;
    }
    .support__card-name {
        top: 86px;
        font-size: 15px;
    }
    .support__card-sub {
        top: 114px;
        font-size: 11px;
    }
    .support__foot {
        padding: 14px;
    }
    .support__heart {
        width: 36px;
        height: 30px;
        margin-right: 8px;
    }
    .support__foot-text {
        font-size: 14px;
    }
    /* --- Blog ------------------------------------------------------------- */
    .blog {
        padding: 40px 0;
    }
    .blog__inner {
        gap: 16px;
    }
    .blog__head {
        gap: 6px;
    }
    .blog__kicker {
        font-size: 12px;
    }
    .blog__title {
        font-size: 26px;
    }
    .blog__lead {
        font-size: 13px;
    }
    .blog__deco {
        display: none;
    }
    .blog__carousel {
        gap: 6px;
        padding-top: 10px;
    }
    .blog__arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    /* SPは1枚ずつ表示（見切れ防止）。幅はviewportいっぱいに */
    .blog__card {
        width: 100%;
    }
    .blog__card-title {
        font-size: 18px;
    }
    .blog__excerpt {
        font-size: 13px;
    }
    /* --- Area ------------------------------------------------------------- */
    .area {
        padding: 40px 0;
        background: var(--bg-blue);
    }
    .area .wrap {
        gap: 16px;
    }
    .area__sec-head {
        gap: 6px;
    }
    .area__deco-truck,
    .area__deco-cloud {
        display: none;
    }
    .area__kicker {
        font-size: 12px;
    }
    .area__title {
        font-size: 26px;
    }
    .area__lead {
        font-size: 13px;
    }
    .area__block {
        padding: 16px;
    }
    .area__block--shadow {
        padding: 16px;
    }
    .area__inner {
        flex-direction: column;
        gap: 14px;
    }
    .area__map {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        flex: none;
    }
    .area__map img {
        height: auto;
        object-fit: contain;
    }
    .area__map--wakayama {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        flex: none;
    }
    .area__cities--osaka {
        padding: 0;
        gap: 10px;
    }
    .area__cities--wakayama {
        height: auto;
        gap: 10px;
        padding: 0;
    }
    .area__pref-name {
        font-size: 16px;
    }
    .area__city-list {
        width: 100%;
        height: auto;
    }
    .area__city-list--wakayama {
        height: auto;
    }
    .area__chip {
        font-size: 12px;
        padding: 4px 10px 5px;
    }
    /* --- Form ------------------------------------------------------------- */
    .form {
        padding: 32px 16px;
    }
    .form__card {
        padding: 24px 16px;
        gap: 20px;
    }
    .form__title {
        font-size: 26px;
        line-height: 1.4;
    }
    .form__label {
        font-size: 14px;
    }
    .form__sublabel {
        font-size: 11px;
    }
    .form__input,
    .form__textarea {
        font-size: 14px;
        padding: 12px 12px;
    }
    .form__select {
        font-size: 14px;
        padding: 12px 30px 12px 14px;
    }
    .form__textarea {
        min-height: 100px;
    }
    .form__submit {
        font-size: 17px;
        padding: 14px;
    }
    /* --- Footer ----------------------------------------------------------- */
    .footer {
        padding-top: 40px;
    }
    .footer__wrap {
        gap: 18px;
    }
    .footer__h {
        gap: 12px;
    }
    .footer__h-txt {
        font-size: 20px;
    }
    .footer__company {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 16px;
    }
    .footer__bldg {
        flex: none;
    }
    .footer__bldg img {
        width: 180px;
    }
    .footer__co {
        flex: none;
        width: 100%;
        align-items: flex-start;
        gap: 6px;
    }
    .footer__co-name {
        font-size: 18px;
    }
    .footer__addr {
        font-size: 14px;
    }
    .footer__rows {
        gap: 12px;
        padding-top: 4px;
    }
    .footer__value {
        font-size: 14px;
    }
    .footer__btns {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer__btn {
        height: auto;
        min-height: 56px;
        padding: 12px 40px 12px 16px;
        justify-content: center;
        align-items: center;
    }
    .footer__btn-txt {
        font-size: 14px;
        line-height: 1.5;
    }
    .footer__grp-h {
        padding-top: 4px;
    }
    .footer__grp-txt {
        font-size: 16px;
    }
    .footer__services {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer__svc {
        height: auto;
        min-height: 60px;
        padding: 12px 30px 12px 14px;
        justify-content: center;
        align-items: flex-start;
    }
    .footer__svc-txt {
        font-size: 12px;
        line-height: 1.5;
    }
}


/* ==========================================================================
   ボタン共通ホバー（浮き上がり）
   ========================================================================== */

.header-line,
.cta-tel,
.cta-line,
.ctaband__act,
.footer__btn,
.footer__svc {
    transition: transform .2s ease, box-shadow .2s ease;
}

.header-line:hover,
.cta-tel:hover,
.cta-line:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(30, 70, 120, .3);
}

.ctaband__act:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(216, 69, 107, .3);
}

.footer__btn:hover,
.footer__svc:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(30, 70, 120, .2);
}


/* ==========================================================================
   SP フロートCTA（固定バー・電話のみ）
   ========================================================================== */

.float-cta {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }
    .float-cta {
        display: block;
        position: fixed;
        bottom: 12px;
        left: 12px;
        right: 12px;
        z-index: 999;
    }
    .float-cta__tel {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        gap: 10px;
        height: 70px;
        padding: 8px 48px 8px 14px;
        background: var(--c-pink-cta);
        color: #fff;
        text-decoration: none;
        font-family: "Noto Sans JP", sans-serif;
        border-radius: 14px;
        box-shadow: 0 6px 18px -6px rgba(240, 70, 100, .45);
        -webkit-tap-highlight-color: transparent;
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .float-cta__tel:hover {
        opacity: 1;
        transform: translateY(-2px);
        box-shadow: 0 -4px 16px rgba(240, 70, 100, .35);
    }
    .float-cta__ic {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 50%;
    }
    .float-cta__txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.15;
    }
    .float-cta__label {
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
        white-space: nowrap;
    }
    .float-cta__label b {
        font-weight: 900;
    }
    .float-cta__num {
        font-family: "Zen Maru Gothic", sans-serif;
        font-size: 22px;
        font-weight: 900;
        letter-spacing: 0.5px;
        line-height: 1.2;
        white-space: nowrap;
    }
    .float-cta__hours {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        opacity: .95;
        white-space: nowrap;
    }
    .float-cta__arr {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 4px;
        padding-left: 1px;
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        color: var(--c-pink-cta);
        font-size: 20px;
        line-height: 1;
        opacity: 1;
    }
}


/* ==========================================================================
   極小画面（≤360px）追加調整
   ========================================================================== */

@media (max-width: 360px) {
    /* ヘッダーブランドロゴ縮小 */
    .brand__name {
        font-size: 22px;
    }
    .brand__area {
        font-size: 10px;
        padding: 2px 8px;
    }
    .brand__row {
        gap: 8px;
    }
    /* ヘッダー電話番号 */
    .header-tel__digits {
        font-size: 22px;
    }
    /* CTAband 電話番号・アイコン縮小 */
    .ctaband__tel {
        gap: 6px;
    }
    .ctaband__tel-ic {
        width: 30px;
        height: 30px;
    }
    .ctaband__tel-ic svg {
        width: 18px;
        height: 18px;
    }
    .ctaband__num {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    /* CTAband ボタンアイコン縮小 */
    .ctaband__act-ic {
        width: 40px;
        height: 40px;
    }
    .ctaband__act-ic img {
        width: 20px;
        height: 20px;
    }
    /* フロートCTA：ラベル非表示で収める */
    .float-cta__label {
        display: none;
    }
    .float-cta__num {
        font-size: 16px;
    }
}

@media (min-width: 1025px) and (max-width: 1300px) {
    /* 背景写真：可変幅で縦横比が狂うため cover に切り替え */
    .hero__bg {
        inset: 0;
    }
    .hero__bg img {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        max-width: 100%;
        object-fit: cover;
        object-position: 30% top;
    }
}

@media (max-width: 554px) {
    .hero-feat {
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .hero__badge-sp {
        width: 37%;
        top: -18px;
    }
    .hero-feat {
        max-width: 260px;
    }
    .hero-feat .feat {
        width: 65px;
        height: 65px;
        flex: 0 0 67px;
        padding: 8px 4px;
        gap: 4px;
        border-radius: 10px;
    }
    .wrap {
        padding-inline: 10px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1180px) {
    #WMmVayc31782357752#WMmVayc31782357752 .wm-modal .wm-modal-body-content {
        width: 50% !important;
        max-width: 50% !important;
    }
}


/* ==========================================================================
   タブレット中間帯（769〜1080px）横はみ出し補正
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1080px) {
    /* CTAband：main(547px固定)+mascot(474px固定)が合計1045pxで溢れる */
    .ctaband__main {
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }
    .ctaband__mascot {
        flex: 0 0 35%;
        width: 35%;
        height: auto;
    }
    .ctaband__mascot img {
        width: 100%;
        height: auto;
    }
    /* Area：map(450px固定)の残り幅にcity-list(371px固定)が収まらない */
    .area__map,
    .area__map--wakayama {
        flex: 0 0 38%;
    }
    .area__city-list {
        width: 100%;
        height: auto;
    }
    .area__city-list--wakayama {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .gk-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    .page .gk-toc {
        position: relative;
        top: 0;
    }
}