/* =========================================================
   村岡葬研葬儀社 メインスタイル
   黒（#0a0a0a）× ゴールド（#d4af37）× ディープレッド（#8b0000）
   ========================================================= */

/* ---------- CSS変数（デザイントークン） ---------- */
:root {
    /* カラー */
    --c-black:        #0a0a0a;
    --c-black-soft:   #1a1a1a;
    --c-gray-dark:    #2d2d2d;
    --c-gray-mid:     #4a4a4a;
    --c-gray-light:   #888888;
    --c-gray-pale:    #e8e8e8;
    --c-white:        #ffffff;
    --c-cream:        #faf8f3;
    --c-gold:         #d4af37;
    --c-gold-bright:  #f0c850;
    --c-gold-dark:    #a8881e;
    --c-red:          #8b0000;
    --c-red-bright:   #c41e1e;

    /* テキスト */
    --c-text:         #2d2d2d;
    --c-text-light:   #4a4a4a;
    --c-text-inv:     #ffffff;

    /* タイポグラフィ */
    --font-jp:        "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
    --font-en:        "Cinzel", "Times New Roman", serif;
    --font-base-size: 16px;
    --font-line:      1.75;

    /* 余白・サイズ */
    --container-w:    1200px;
    --content-w:      820px;
    --space-xs:       8px;
    --space-sm:       16px;
    --space-md:       24px;
    --space-lg:       40px;
    --space-xl:       64px;
    --space-xxl:      96px;

    /* シャドウ */
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:      0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg:      0 12px 48px rgba(0,0,0,0.2);
    --shadow-gold:    0 4px 20px rgba(212,175,55,0.3);

    /* トランジション */
    --t-fast:         150ms ease;
    --t-base:         250ms ease;
    --t-slow:         400ms ease;
}

/* ---------- リセット ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-jp);
    font-size: var(--font-base-size);
    line-height: var(--font-line);
    color: var(--c-text);
    background: var(--c-white);
    overflow-x: hidden;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-gold-dark);
    text-decoration: none;
    transition: color var(--t-fast);
}
a:hover {
    color: var(--c-gold);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

ul, ol {
    padding-left: 1.5em;
}

/* ---------- ベース見出し ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-jp);
    font-weight: 700;
    line-height: 1.4;
    margin: 1.5em 0 0.6em;
}

h1 { font-size: clamp(28px, 4vw, 40px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 18px; }

/* ---------- レイアウト ---------- */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.content-container {
    max-width: var(--content-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---------- ヘッダー ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-black);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    color: var(--c-text-inv);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
    gap: var(--space-md);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--c-text-inv);
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo__img {
    display: block;
    height: 76px;            /* PC: 拡大 */
    width: auto;
    max-width: 100%;
}
/* WordPress標準カスタムロゴ用 */
.custom-logo {
    display: block;
    height: 76px;
    width: auto;
    max-width: 100%;
}

/* ============ ヘッダー右側 CTA ============ */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.header-cta--sp {
    display: none;           /* SP用はPCで非表示 */
}

/* ---- PC用：電話表示 ---- */
.header-phone {
    text-align: center;
    line-height: 1.2;
    padding: 0 var(--space-xs);
}
.header-phone__label {
    display: block;
    font-size: 12px;
    color: var(--c-gray-pale);
    margin-bottom: 2px;
}
.header-phone__number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-gold);
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    font-family: "Helvetica Neue", "Arial Black", "Yu Gothic", "Hiragino Sans", sans-serif;
    letter-spacing: 0.01em;
}
.header-phone__icon {
    width: 22px;
    height: 22px;
}

/* ---- PC用：丸みのあるCTAボタン ---- */
.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--c-white);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    transition: background var(--t-fast), transform var(--t-fast);
    border: 1px solid transparent;
}
.cta-pill:hover {
    color: var(--c-white);
    transform: translateY(-1px);
}
.cta-pill__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.cta-pill__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cta-pill__title {
    font-size: 15px;
    font-weight: 700;
}
.cta-pill__sub {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.9;
}

.cta-pill--red {
    background: var(--c-red);
    border-color: rgba(212,175,55,0.4);
}
.cta-pill--red:hover {
    background: var(--c-red-bright);
}
.cta-pill--line {
    background: #06c755;
}
.cta-pill--line:hover {
    background: #04b048;
}

/* ---- SP用：アイコンボタン ---- */
.header-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    color: var(--c-white);
    text-decoration: none;
    transition: opacity var(--t-fast);
    border: 1px solid rgba(212,175,55,0.3);
}
.header-icon:hover {
    color: var(--c-white);
    opacity: 0.85;
}
.header-icon svg {
    width: 20px;
    height: 20px;
}
.header-icon__label {
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0;
}
.header-icon--phone { color: var(--c-gold); border-color: var(--c-gold); }
.header-icon--phone svg { color: var(--c-gold); }
.header-icon--mail  { color: var(--c-white); }
.header-icon--line  { background: #06c755; border-color: #06c755; }
.header-icon--line:hover { background: #04b048; }

/* ---------- ハンバーガーボタン（スマホのみ表示） ---------- */
.hamburger {
    display: none;                /* PCでは非表示 */
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--c-gold);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    z-index: 110;
}
.hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-gold);
    margin: 5px auto;
    transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* グローバルナビ */
.global-nav {
    background: var(--c-black-soft);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.global-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--container-w);
    margin: 0 auto;
    justify-content: center;
}
.global-nav__list li a {
    display: block;
    padding: 14px 20px;
    color: var(--c-text-inv);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--t-fast), background var(--t-fast);
}
.global-nav__list li a:hover {
    color: var(--c-gold);
    background: rgba(212,175,55,0.05);
}

/* ---------- ヒーロー ---------- */
.hero {
    position: relative;
    min-height: 600px;
    background: var(--c-black);
    color: var(--c-text-inv);
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

/* ---------- ヒーロー画像（PC: 2:1 / スマホ: 4:5 picture要素出し分け） ---------- */
.hero-img {
    width: 100%;
    background: var(--c-black);
    overflow: hidden;
    line-height: 0;          /* img下に出る隙間防止 */
}
.hero-img picture,
.hero-img__src {
    display: block;
    width: 100%;
    height: auto;            /* 縦横比キープ・文字切れナシ */
    max-width: 100%;
}

/* ---------- ヒーロー直下 CTA（電話・メール・LINE） ---------- */
.hero-cta {
    background: var(--c-black);
    padding: var(--space-md) 0 var(--space-lg);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.hero-cta__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* PC: 3カラム横並び */
    gap: var(--space-sm);
    max-width: 1100px;
    margin: 0 auto;
}
.hero-cta__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 8px;
    color: var(--c-white);
    text-decoration: none;
    transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
    border: 2px solid transparent;
    min-height: 88px;
}
.hero-cta__btn:hover {
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.hero-cta__btn-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}
.hero-cta__btn-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.hero-cta__btn-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
    line-height: 1.25;
    min-width: 0;
    flex: 1;
}
.hero-cta__btn-title {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.95;
}
.hero-cta__btn-number {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.01em;
    font-family: "Helvetica Neue", "Arial Black", "Yu Gothic", "Hiragino Sans", sans-serif;
}
.hero-cta__btn-sub {
    font-size: 11px;
    opacity: 0.9;
}

/* 電話ボタン（赤系） */
.hero-cta__btn--phone {
    background: linear-gradient(135deg, #8b0000 0%, #6a0000 100%);
    border-color: rgba(212,175,55,0.5);
}
.hero-cta__btn--phone:hover {
    background: linear-gradient(135deg, #a51616 0%, #800000 100%);
}

/* メールボタン（黒×ゴールド枠） */
.hero-cta__btn--mail {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-color: var(--c-gold);
}
.hero-cta__btn--mail .hero-cta__btn-icon {
    background: rgba(212,175,55,0.2);
    color: var(--c-gold);
}
.hero-cta__btn--mail .hero-cta__btn-title,
.hero-cta__btn--mail .hero-cta__btn-number {
    color: var(--c-gold);
}
.hero-cta__btn--mail:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* LINEボタン（緑） */
.hero-cta__btn--line {
    background: linear-gradient(135deg, #06c755 0%, #04a548 100%);
    border-color: rgba(255,255,255,0.2);
}
.hero-cta__btn--line:hover {
    background: linear-gradient(135deg, #07d65d 0%, #05b850 100%);
}
/* LINEアイコン：白丸の中に緑「LINE」文字 */
.hero-cta__btn--line .hero-cta__btn-icon {
    background: var(--c-white);
}
.hero-cta__btn--line .hero-cta__btn-icon svg {
    width: 36px;
    height: 36px;
}
/* LINEボタンは2行構成なのでタイトルを大きく見せて視覚的バランス */
.hero-cta__btn--line .hero-cta__btn-body {
    gap: 4px;
}
.hero-cta__btn--line .hero-cta__btn-title {
    font-size: 17px;
    line-height: 1.3;
}
.hero-cta__btn--line .hero-cta__btn-sub {
    font-size: 12px;
}

/* ---------- ワンストップ対応セクション（茶色アイコン・上品な白基調） ---------- */
.onestop {
    background: var(--c-cream);
    padding: var(--space-xl) 0 var(--space-xxl);
    border-bottom: 1px solid #e8e0cc;
}
.onestop__head {
    text-align: center;
    margin-bottom: var(--space-lg);
}
.onestop__head-en {
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    color: #8b6914;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
}
.onestop__head-jp {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #3d2817;
    margin: 0 0 8px;
    letter-spacing: 0.05em;
}
.onestop__head-desc {
    font-size: 14px;
    color: #6b4423;
    margin: 0;
}
.onestop__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);  /* PC: 6カラム横並び */
    gap: 0;
    border-top: 1px solid #d4c5a0;
    border-bottom: 1px solid #d4c5a0;
}
.onestop-card {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    border-right: 1px solid #e8d8b8;
    background: var(--c-white);
}
.onestop-card:last-child {
    border-right: none;
}
.onestop-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    color: #6b4423;          /* 茶色アイコン色（インラインSVGにcurrentColor経由で適用） */
}
.onestop-card__icon-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}
.onestop-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #3d2817;
    margin: 0 0 6px;
    line-height: 1.4;
}
.onestop-card__desc {
    font-size: 12px;
    color: #6b4423;
    line-height: 1.5;
    margin: 0;
}

/* ---------- ヒーロー直下 SEO見出し（控えめ） ---------- */
.hero-seo {
    background: var(--c-black);
    color: var(--c-text-inv);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    text-align: center;
}
.hero-seo__title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--c-gold);
    margin: 0 0 8px;
    line-height: 1.4;
    letter-spacing: 0.04em;
}
.hero-seo__sub {
    font-size: clamp(12px, 1.5vw, 14px);
    color: var(--c-gray-pale);
    margin: 0;
    line-height: 1.6;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: var(--space-xxl) var(--space-md);
    text-align: center;
}
.hero__lead {
    font-size: 16px;
    color: var(--c-gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.1em;
}
.hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 var(--space-md);
    color: var(--c-text-inv);
}
.hero__title strong {
    color: var(--c-gold);
}
.hero__sub {
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--c-gold);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}
.hero__desc {
    font-size: 16px;
    color: var(--c-gray-pale);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}
.hero__achievement {
    display: inline-block;
    margin-top: var(--space-md);
}
.hero__achievement-number {
    font-family: var(--font-en);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
}
.hero__achievement-unit {
    font-size: 24px;
    color: var(--c-gold);
}
.hero__achievement-label {
    font-size: 14px;
    color: var(--c-text-inv);
    margin-top: var(--space-xs);
}

/* ---------- セクション共通 ---------- */
.section {
    padding: var(--space-xxl) 0;
}
.section--dark {
    background: var(--c-black);
    color: var(--c-text-inv);
}
.section--cream {
    background: var(--c-cream);
}
.section__title {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.section__title-jp {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--c-text);
    margin-bottom: var(--space-xs);
}
.section--dark .section__title-jp {
    color: var(--c-text-inv);
}
.section__title-en {
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--c-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ---------- お悩みセクション（背景画像なくてもかっこよく） ---------- */
.worries {
    background: var(--c-black);
    color: var(--c-text-inv);
    padding: var(--space-xxl) 0;
    position: relative;
}
.worries__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.worries__head-en {
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    color: var(--c-gold);
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}
.worries__head-jp {
    font-size: clamp(26px, 4.2vw, 44px);
    font-weight: 700;
    color: var(--c-gold);
    margin: 0 0 var(--space-sm);
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.worries__head-desc {
    font-size: 15px;
    color: var(--c-gray-pale);
    margin: 0;
    line-height: 1.7;
}
.sp-only {
    display: none;
}
.worries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* PC: 4カラム×2行 = 8枚 */
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.worry-card {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 6px;
    background: rgba(15,15,15,0.55);          /* 半透明黒：背景画像なくても OK */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}
.worry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
    opacity: 0.5;
    transition: opacity var(--t-base);
}
.worry-card:hover {
    border-color: var(--c-gold);
    background: rgba(212,175,55,0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.4) inset;
}
.worry-card:hover::before {
    opacity: 1;
}
.worry-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    color: var(--c-gold);
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
}
.worry-card__icon-wrap svg {
    width: 28px;
    height: 28px;
}
.worry-card__text {
    font-size: 14px;
    color: var(--c-gray-pale);
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ---------- 4つの解決策セクション ---------- */
.solutions {
    background: linear-gradient(180deg, var(--c-cream) 0%, #f5f0e3 100%);
    padding: var(--space-xxl) 0;
    border-top: 4px solid var(--c-gold);
}
.solutions__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.solutions__head-en {
    display: block;
    font-family: var(--font-en);
    font-size: 14px;
    color: #8b6914;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}
.solutions__head-jp {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.solutions__head-desc {
    font-size: 15px;
    color: #5a3e2a;
    margin: 0;
    line-height: 1.7;
}
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* PC: 4カラム */
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.solution-card {
    background: var(--c-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(60,40,20,0.08);
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212,175,55,0.2);
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(60,40,20,0.18);
    border-color: var(--c-gold);
}
.solution-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--c-black);
}
.solution-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease;
}
.solution-card:hover .solution-card__img {
    transform: scale(1.05);
}
.solution-card__num {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--c-gold) 0%, #b8951f 100%);
    color: var(--c-black);
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 900;
    padding: 8px 16px;
    letter-spacing: 0.05em;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.solution-card__body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.solution-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    line-height: 1.45;
    border-bottom: 2px solid var(--c-gold);
    padding-bottom: 10px;
}
.solution-card__desc {
    font-size: 13.5px;
    color: #4a3322;
    line-height: 1.75;
    margin: 0 0 var(--space-md);
    flex: 1;
}
.solution-card__covers {
    margin: 0;
    padding: 10px 12px;
    background: rgba(212,175,55,0.08);
    border-left: 3px solid var(--c-gold);
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    line-height: 1.5;
}
.solution-card__covers-label {
    display: block;
    color: #8b6914;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}
.solution-card__covers-text {
    color: #5a3e2a;
    font-weight: 500;
}

/* ---------- サービスアイコン ---------- */
.services {
    background: var(--c-cream);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.service-card {
    text-align: center;
    padding: var(--space-md);
    background: var(--c-white);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
}
.service-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--space-xs);
}
.service-card__desc {
    font-size: 13px;
    color: var(--c-text-light);
    line-height: 1.5;
}

/* ---------- プラン3カード（拡充版） ---------- */
.plans {
    background: linear-gradient(180deg, var(--c-cream) 0%, #f0e8d5 100%);
    padding: var(--space-xxl) 0;
}
.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}
.plan-card {
    background: var(--c-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(60,40,20,0.1);
    transition: transform var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(212,175,55,0.25);
}
.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(60,40,20,0.2);
    border-color: var(--c-gold);
}
.plan-card__num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: linear-gradient(135deg, var(--c-gold) 0%, #b8951f 100%);
    color: var(--c-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
}
.plan-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.plan-card__badge--gold {
    background: linear-gradient(135deg, var(--c-gold) 0%, #b8951f 100%);
    color: var(--c-black);
}
.plan-card__badge--warm {
    background: #6b4423;
    color: var(--c-white);
}
.plan-card__title {
    padding: var(--space-md) var(--space-md) 8px;
    font-size: 24px;
    font-weight: 900;
    color: #2a1810;
    text-align: center;
    margin: 0;
    letter-spacing: 0.03em;
    padding-top: 60px;             /* 番号バッジ分の余白 */
}
.plan-card__lead {
    padding: 0 var(--space-md);
    font-size: 13px;
    color: #5a3e2a;
    text-align: center;
    line-height: 1.65;
    margin: 0 0 var(--space-md);
}
.plan-card__img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 500ms ease;
}
.plan-card:hover .plan-card__img {
    transform: scale(1.04);
}
.plan-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--c-white);
}
.plan-card__recommend {
    background: rgba(212,175,55,0.08);
    border-left: 3px solid var(--c-gold);
    padding: 10px 14px;
    margin: 0 0 var(--space-md);
    font-size: 12.5px;
    line-height: 1.6;
    color: #4a3322;
    border-radius: 0 4px 4px 0;
}
.plan-card__recommend strong {
    display: block;
    color: #8b6914;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
}
.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}
.plan-card__features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 13.5px;
    color: #2a1810;
    line-height: 1.55;
    border-bottom: 1px dashed rgba(212,175,55,0.25);
}
.plan-card__features li:last-child {
    border-bottom: none;
}
.plan-card__features li::before {
    content: "✓";
    color: var(--c-gold);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 14px;
}
.plan-card__meta {
    margin: 0;
    padding: 10px 12px;
    background: #f7f3e8;
    border-radius: 4px;
    font-size: 12px;
    color: #4a3322;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-card__meta-label {
    display: inline-block;
    background: #2a1810;
    color: var(--c-gold);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.plan-card__price {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(180deg, #faf6ec 0%, #f0e6cc 100%);
    border-top: 2px solid var(--c-gold);
    margin-top: auto;
}
.plan-card__price-num {
    font-family: "Helvetica Neue", "Arial Black", "Yu Gothic", "Hiragino Sans", sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #2a1810;
    letter-spacing: 0.01em;
}
.plan-card__price-yen {
    font-size: 18px;
    font-weight: 700;
    color: #2a1810;
    margin-left: 2px;
}
.plan-card__price-tilde {
    font-size: 20px;
    color: #6b4423;
    margin-left: 2px;
}
.plan-card__price-note {
    display: block;
    font-size: 12px;
    color: #6b4423;
    margin-top: 4px;
}

/* プラン追加注釈 */
.plans__note {
    max-width: 900px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--c-white);
    border: 1px dashed var(--c-gold);
    border-radius: 8px;
    text-align: center;
    color: #4a3322;
    font-size: 13px;
    line-height: 1.7;
}
.plans__note p {
    margin: 0 0 6px;
}
.plans__note p:last-child {
    margin: 0;
    font-size: 12px;
    color: #6b4423;
}
.plans__note strong {
    color: var(--c-red);
}

/* ============================================
   数字で見る実績
   ============================================ */
.stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    color: var(--c-text-inv);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.stats__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.stats__head-en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.stats__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--c-gold);
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.stats__head-desc {
    color: var(--c-gray-pale);
    font-size: 14px;
    margin: 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.stat-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    background: rgba(20,20,20,0.5);
    transition: all var(--t-base);
}
.stat-item:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}
.stat-item__num {
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}
.stat-item__unit {
    font-size: 0.4em;
    color: var(--c-gold);
    margin-left: 4px;
    font-weight: 700;
}
.stat-item__label {
    font-size: 16px;
    color: var(--c-white);
    font-weight: 700;
    margin-bottom: 6px;
}
.stat-item__sub {
    font-size: 12px;
    color: var(--c-gray-pale);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   ご依頼の流れ
   ============================================ */
.flow {
    background: var(--c-cream);
    padding: var(--space-xxl) 0;
}
.flow__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.flow__head-en {
    display: block;
    font-family: var(--font-en);
    color: #8b6914;
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.flow__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.flow__head-desc {
    color: #5a3e2a;
    font-size: 14px;
    margin: 0;
}
.flow__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    position: relative;
}
.flow-step {
    position: relative;
    background: var(--c-white);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-sm) var(--space-md);
    text-align: center;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all var(--t-base);
}
.flow-step:hover {
    border-color: var(--c-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(60,40,20,0.1);
}
.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-gold);
    font-size: 24px;
    font-weight: 900;
    z-index: 2;
}
.flow-step__num {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-gold) 0%, #b8951f 100%);
    color: var(--c-black);
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}
.flow-step__icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    color: #6b4423;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
}
.flow-step__icon-wrap svg {
    width: 28px;
    height: 28px;
}
.flow-step__title {
    font-size: 15px;
    font-weight: 700;
    color: #2a1810;
    margin: 0 0 8px;
    line-height: 1.3;
}
.flow-step__desc {
    font-size: 12px;
    color: #4a3322;
    line-height: 1.55;
    margin: 0;
}
.flow__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   事例・実績（ブログ形式）
   ============================================ */
.cases {
    background: var(--c-white);
    padding: var(--space-xxl) 0;
}
.cases__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.cases__head-en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.cases__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--c-black);
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.cases__head-desc {
    color: var(--c-text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}
.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.case-card {
    display: flex;
    flex-direction: column;
    background: var(--c-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--t-base);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.case-card:hover {
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: var(--c-gold);
}
/* テキスト中心カード（画像なし前提のクリーンデザイン） */
.case-card--textonly {
    padding: 0;
}
.case-card--textonly .case-card__top {
    background: linear-gradient(135deg, #1a1a1a, #2a1810);
    color: var(--c-white);
    padding: var(--space-md) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--c-gold);
}
.case-card--textonly .case-card__top .case-card__cat {
    background: var(--c-gold);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.case-card--textonly .case-card__top .case-card__date {
    color: var(--c-gold);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.case-card--textonly .case-card__body {
    padding: var(--space-md);
}
.case-card--textonly .case-card__title {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 10px;
    color: #2a1810;
    font-weight: 700;
}
.case-card--textonly .case-card__location {
    font-size: 12px;
    color: var(--c-gold);
    margin: 0 0 10px;
    font-weight: 600;
}
.case-card--textonly .case-card__excerpt {
    font-size: 13.5px;
    line-height: 1.75;
    color: #5a4030;
    margin: 0 0 14px;
}
.case-card--textonly .case-card__more {
    display: inline-block;
    font-size: 13px;
    color: var(--c-gold);
    font-weight: 700;
    border-top: 1px solid rgba(212,175,55,0.3);
    padding-top: 10px;
    width: 100%;
}
.case-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--c-black);
}
.case-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.case-card:hover .case-card__img {
    transform: scale(1.05);
}
.case-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: rgba(212,175,55,0.5);
}
.case-card__img-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.6;
}
.case-card__img-placeholder-text {
    display: block;
    font-size: 12px;
    color: rgba(212,175,55,0.7);
    margin-top: 8px;
    letter-spacing: 0.1em;
}
.case-card--placeholder {
    pointer-events: none;
    opacity: 0.85;
}
.case-card--placeholder .case-card__more {
    opacity: 0.5;
}
.case-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--c-red);
    color: var(--c-white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.05em;
}
.case-card__media-note {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 10px;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.55);
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    pointer-events: none;
}
.case-card__body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.case-card__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 8px;
    font-size: 12px;
    color: var(--c-gray-light);
}
.case-card__date {
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-weight: 700;
}
.case-card__location::before {
    content: '📍';
    margin-right: 2px;
}
.case-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-black);
    margin: 0 0 10px;
    line-height: 1.5;
}
.case-card__excerpt {
    font-size: 13px;
    color: var(--c-text-light);
    line-height: 1.65;
    margin: 0 0 var(--space-md);
    flex: 1;
}
.case-card__more {
    color: var(--c-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.cases__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   お客様の声
   ============================================ */
.voices {
    background: linear-gradient(180deg, #f7f3e8 0%, var(--c-cream) 100%);
    padding: var(--space-xxl) 0;
}
.voices__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.voices__head-en {
    display: block;
    font-family: var(--font-en);
    color: #8b6914;
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.voices__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.voices__head-desc {
    color: #5a3e2a;
    font-size: 13px;
    margin: 0;
    line-height: 1.7;
}
.voices__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}
.voice-card {
    background: var(--c-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(60,40,20,0.1);
    border: 1px solid rgba(212,175,55,0.3);
}
.voice-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: #2a1810;
    color: var(--c-white);
}
.voice-card__stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}
.voice-card__location {
    font-size: 12px;
    color: var(--c-gold);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.voice-card__screenshot {
    background: #f0e8d5;
    padding: var(--space-md);
}
.voice-card__img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}
.voice-card__quote {
    background: var(--c-white);
    padding: var(--space-md);
    margin: 0;
    border-top: 1px solid rgba(212,175,55,0.2);
    position: relative;
}
.voice-card__quote::before {
    content: '“';
    position: absolute;
    top: 8px;
    left: 12px;
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
    color: rgba(212,175,55,0.25);
    font-weight: 900;
}
.voice-card__quote p {
    font-size: 13.5px;
    line-height: 1.85;
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    padding-left: 24px;
}
.voice-card__quote p:last-child {
    margin-bottom: 0;
}
/* お客様の声: 案件メタ（ご依頼地域・内容・対応時間・葬儀形式） */
.voice-card__meta {
    margin: 0;
    padding: var(--space-md);
    background: #fdfaf3;
    border-top: 1px solid rgba(212,175,55,0.2);
    font-size: 13px;
    color: #2a1810;
}
.voice-card__meta-row {
    display: flex;
    gap: var(--space-sm);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(212,175,55,0.25);
}
.voice-card__meta-row:last-child {
    border-bottom: 0;
}
.voice-card__meta-row dt {
    flex: 0 0 110px;
    color: var(--c-gold);
    font-weight: 700;
    margin: 0;
}
.voice-card__meta-row dd {
    margin: 0;
    flex: 1;
}
/* お客様の声: 担当スタッフより */
.voice-card__staff {
    padding: var(--space-md);
    background: #2a1810;
    color: var(--c-white);
    font-size: 13px;
    line-height: 1.85;
}
.voice-card__staff-title {
    margin: 0 0 var(--space-sm);
    font-size: 14px;
    color: var(--c-gold);
    letter-spacing: 0.05em;
    font-weight: 700;
}
.voice-card__staff p {
    margin: 0 0 var(--space-sm);
}
.voice-card__staff p:last-child {
    margin-bottom: 0;
}

/* ============================================
   お問い合わせフォーム
   ============================================ */
.contact-urgent {
    padding: var(--space-lg) 0;
    background: linear-gradient(135deg, #1a1a1a, #2a1810);
    color: var(--c-white);
    text-align: center;
}
.contact-urgent__label {
    color: #ffc107;
    font-weight: 700;
    margin: 0 0 var(--space-md);
    font-size: 15px;
    letter-spacing: 0.02em;
}
.contact-urgent__btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1a1a !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform .15s ease;
}
.contact-urgent__btn:hover {
    transform: translateY(-2px);
}
.contact-urgent__btn-tel {
    display: block;
    font-size: clamp(26px, 5vw, 36px);
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.contact-urgent__btn-sub {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 700;
}

.contact-form {
    background: #fdfaf3;
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 4px 16px rgba(60,40,20,0.06);
    margin-bottom: var(--space-lg);
}
.contact-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.contact-form__row {
    margin: 0 0 var(--space-md);
}
.contact-form__label {
    display: block;
    font-weight: 700;
    color: #2a1810;
    margin-bottom: 6px;
    font-size: 14px;
}
.contact-form__req {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c8b88a;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
    color: #2a1810;
}
.contact-form textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--c-gold);
    outline-offset: 1px;
}
.contact-form__submit {
    text-align: center;
    margin-top: var(--space-lg);
}
.contact-form__submit .cta-btn {
    padding: 16px 56px;
    font-size: 16px;
}

.contact-thanks {
    background: #f0e8d5;
    padding: var(--space-lg);
    border-radius: 8px;
    border-left: 4px solid var(--c-gold);
    margin-bottom: var(--space-lg);
}
.contact-thanks h2 {
    margin-top: 0;
    color: #b8941f;
}
.contact-error {
    background: #fff3f0;
    padding: var(--space-md);
    border-radius: 8px;
    border-left: 4px solid #c0392b;
    color: #c0392b;
    margin-bottom: var(--space-md);
}
.contact-error p {
    margin: 0 0 8px;
}
.contact-error p:last-child {
    margin-bottom: 0;
}

/* ============================================
   ニュース・ブログ アーカイブ
   ============================================ */
.news-archive-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
}
.news-archive-item {
    border-bottom: 1px solid rgba(212,175,55,0.25);
}
.news-archive-item:first-child {
    border-top: 1px solid rgba(212,175,55,0.25);
}
.news-archive-item__link {
    display: flex;
    gap: var(--space-md);
    align-items: baseline;
    padding: var(--space-md) 0;
    text-decoration: none;
    color: #2a1810;
    transition: background .15s ease;
}
.news-archive-item__link:hover {
    background: #fdfaf3;
}
.news-archive-item__date {
    flex: 0 0 100px;
    color: var(--c-gold);
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.news-archive-item__title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
}

/* news archive item: SP では縦積みに */
@media (max-width: 767px) {
    .news-archive-item__link {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 4px;
    }
    .news-archive-item__date {
        flex: 0 0 auto;
        font-size: 12px;
    }
    .news-archive-item__title {
        font-size: 14px;
        line-height: 1.55;
    }
}
.news-thumb {
    margin: 0 0 var(--space-lg);
}
.news-thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ============================================
   トップ：ヒーロー（テキストのみ・画像なし）
   ============================================ */
.hero-text {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--c-white);
    padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    position: relative;
    overflow: hidden;
}
.hero-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.hero-text::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.hero-text__container {
    text-align: center;
    position: relative;
}
.hero-text__eyebrow {
    color: var(--c-gold);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 0.1em;
    margin: 0 0 var(--space-md);
    font-weight: 600;
}
.hero-text__title {
    font-size: clamp(34px, 6vw, 64px);
    color: var(--c-white);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-weight: 700;
}
.hero-text__sub {
    color: var(--c-gold);
    font-size: clamp(18px, 2.8vw, 28px);
    font-weight: 700;
    margin: 0 0 var(--space-lg);
    letter-spacing: 0.08em;
}
.hero-text__desc {
    color: var(--c-gray-pale);
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.9;
    margin: 0 0 var(--space-lg);
}
.hero-text__seo {
    color: rgba(255,255,255,0.5);
    font-size: clamp(11px, 1.4vw, 13px);
    letter-spacing: 0.04em;
    margin: 0 0 var(--space-xl);
    font-weight: 400;
}
.hero-text__features {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}
.hero-text__feature {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 6px;
    padding: var(--space-md) var(--space-sm);
    text-align: center;
}
.hero-text__feature-title {
    display: block;
    color: var(--c-gold);
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.hero-text__feature-desc {
    display: block;
    color: var(--c-gray-pale);
    font-size: clamp(11px, 1.4vw, 13px);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .hero-text__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   トップ：最新ブログセクション
   ============================================ */
.news-latest {
    background: linear-gradient(180deg, #fdfaf3 0%, #f5ecd9 100%);
    padding: var(--space-xxl) 0;
}
.news-latest__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.news-latest__head-en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.news-latest__head-jp {
    font-size: clamp(22px, 3.2vw, 32px);
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    font-weight: 700;
}
.news-latest__head-desc {
    color: #5a4030;
    font-size: 14px;
    margin: 0;
}
.news-latest__list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-lg);
    max-width: 900px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(60,40,20,0.08);
    overflow: hidden;
}
.news-latest__item {
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.news-latest__item:last-child {
    border-bottom: 0;
}
.news-latest__link {
    display: flex;
    gap: var(--space-md);
    align-items: baseline;
    padding: var(--space-md);
    text-decoration: none;
    color: #2a1810;
    transition: background .15s ease;
}
.news-latest__link:hover {
    background: #fdfaf3;
}
.news-latest__date {
    flex: 0 0 100px;
    color: var(--c-gold);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.news-latest__title {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}
.news-latest__more {
    text-align: center;
    margin-top: var(--space-lg);
}

/* サイトマップ：ブログリスト */
.sitemap-news-list {
    list-style: disc;
    padding-left: 1.5em;
}
.sitemap-news-list li {
    margin-bottom: 6px;
    line-height: 1.6;
}
.sitemap-news-list__date {
    color: #999;
    font-size: 13px;
    margin-left: 8px;
}

/* ============================================
   対応地域
   ============================================ */
.area {
    background: var(--c-white);
    padding: var(--space-xxl) 0;
}
.area__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.area__head-en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.area__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--c-black);
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.area__head-desc {
    color: var(--c-text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}
.area__head-desc strong {
    color: var(--c-red);
    font-size: 16px;
}
.area__main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--c-cream);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.3);
}
.area__pin {
    text-align: center;
    color: var(--c-red);
}
.area__pin svg {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 4px 12px rgba(139,0,0,0.3));
}
.area__pin-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.area__pin-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-black);
    margin: 0;
    line-height: 1.4;
}
.area__pin-text span {
    display: block;
    font-size: 14px;
    color: var(--c-gold);
    font-weight: 700;
    margin-top: 4px;
}
.area__cities-title {
    font-size: 18px;
    color: var(--c-black);
    margin: 0 0 var(--space-md);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-gold);
}
.area__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 16px;
}
.area__list li {
    font-size: 13px;
    color: var(--c-text);
    padding-left: 18px;
    position: relative;
}
.area__list li::before {
    content: '✓';
    color: var(--c-gold);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}
.area__note {
    font-size: 12px;
    color: var(--c-text-light);
    margin: 0;
    padding: 10px 12px;
    background: rgba(212,175,55,0.08);
    border-left: 3px solid var(--c-gold);
    border-radius: 0 4px 4px 0;
}
.area__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   よくあるご質問
   ============================================ */
.faq {
    background: linear-gradient(180deg, #f7f3e8 0%, var(--c-cream) 100%);
    padding: var(--space-xxl) 0;
}
.faq__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.faq__head-en {
    display: block;
    font-family: var(--font-en);
    color: #8b6914;
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.faq__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: #2a1810;
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.faq__head-desc {
    color: #5a3e2a;
    font-size: 14px;
    margin: 0;
}
.faq__list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--c-white);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--t-base);
}
.faq-item[open] {
    border-color: var(--c-gold);
    box-shadow: 0 4px 16px rgba(212,175,55,0.15);
}
.faq-item__q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background var(--t-fast);
}
.faq-item__q::-webkit-details-marker {
    display: none;
}
.faq-item__q:hover {
    background: rgba(212,175,55,0.05);
}
.faq-item__q-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-gold) 0%, #b8951f 100%);
    color: var(--c-black);
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 16px;
}
.faq-item__q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #2a1810;
    line-height: 1.5;
}
.faq-item__q-toggle {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    position: relative;
    transition: transform var(--t-base);
}
.faq-item__q-toggle::before,
.faq-item__q-toggle::after {
    content: '';
    position: absolute;
    background: var(--c-gold);
    border-radius: 2px;
}
.faq-item__q-toggle::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}
.faq-item__q-toggle::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
    transition: transform var(--t-base);
}
.faq-item[open] .faq-item__q-toggle::after {
    transform: scaleY(0);
}
.faq-item__a {
    display: flex;
    gap: 14px;
    padding: 0 var(--space-md) var(--space-md);
    background: rgba(212,175,55,0.04);
}
.faq-item__a-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a1810;
    color: var(--c-gold);
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 16px;
    margin-top: var(--space-md);
}
.faq-item__a-text {
    flex: 1;
    font-size: 14px;
    color: #4a3322;
    line-height: 1.8;
    margin: var(--space-md) 0 0;
}
.faq__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================
   代表者紹介
   ============================================ */
.ceo {
    background: var(--c-white);
    padding: var(--space-xxl) 0;
    position: relative;
}
.ceo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.ceo__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.ceo__head-en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.ceo__head-jp {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--c-black);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.ceo__main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}
.ceo__photo-wrap {
    position: relative;
}
.ceo__photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 15%;  /* 頭側を優先表示・頭が切れないよう上寄りに */
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.ceo__photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px dashed var(--c-gold);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    gap: var(--space-sm);
}
.ceo__photo-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}
.ceo__photo-placeholder-text {
    font-size: 14px;
    color: var(--c-gold);
    text-align: center;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.1em;
}
.ceo__body {
    padding-top: var(--space-md);
}
.ceo__role {
    font-size: 13px;
    color: var(--c-gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.ceo__name {
    font-size: 32px;
    font-weight: 900;
    color: var(--c-black);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    border-bottom: 2px solid var(--c-gold);
    padding-bottom: 12px;
}
.ceo__name-en {
    display: inline-block;
    margin-left: 16px;
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--c-gold);
    letter-spacing: 0.2em;
    font-weight: 400;
}
.ceo__message p {
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--c-text);
    margin: 0 0 var(--space-md);
}
.ceo__message p:first-child {
    font-weight: 700;
    color: var(--c-black);
}
.ceo__credentials {
    list-style: none;
    padding: var(--space-md);
    margin: var(--space-md) 0 0;
    background: var(--c-cream);
    border-left: 4px solid var(--c-gold);
    border-radius: 0 4px 4px 0;
}
.ceo__credentials li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
    color: var(--c-text);
}
.ceo__credentials li::before {
    content: '◆';
    color: var(--c-gold);
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 12px;
}
.ceo__cta {
    margin: var(--space-lg) 0 0;
    text-align: left;
}
.ceo__cta .cta-btn {
    padding: 14px 36px;
    font-size: 15px;
}

/* ============================================
   代表挨拶ページ（page-ceo.php）
   ============================================ */
.ceo-page {
    background: var(--c-white);
    padding: var(--space-xxl) 0;
}
.ceo-page__header {
    text-align: center;
    margin-bottom: var(--space-xxl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--c-gold);
}
.ceo-page__header-en {
    display: block;
    font-family: var(--font-en);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.ceo-page__header-jp {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--c-black);
    margin: 0 0 var(--space-sm);
    font-weight: 700;
}
.ceo-page__header-sub {
    color: var(--c-text-light);
    font-size: 14px;
    margin: 0;
}
.ceo-page__main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-xxl);
    max-width: 1100px;
    margin: 0 auto;
}
.ceo-page__sidebar {
    position: sticky;
    top: var(--space-lg);
    align-self: start;
}
.ceo-page__photo-wrap {
    margin-bottom: var(--space-md);
}
.ceo-page__photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.ceo-page__profile {
    margin: 0;
    padding: var(--space-md);
    background: var(--c-cream);
    border-left: 4px solid var(--c-gold);
    border-radius: 0 4px 4px 0;
    font-size: 13px;
}
.ceo-page__profile dt {
    color: var(--c-gold);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-top: var(--space-sm);
}
.ceo-page__profile dt:first-child {
    margin-top: 0;
}
.ceo-page__profile dd {
    margin: 4px 0 0;
    color: var(--c-text);
    line-height: 1.5;
}
.ceo-page__body {
    font-size: 15px;
    line-height: 2;
    color: var(--c-text);
}
.ceo-page__body p {
    margin: 0 0 var(--space-md);
}
.ceo-page__heading {
    font-size: 22px;
    color: var(--c-black);
    margin: var(--space-xl) 0 var(--space-md);
    padding-left: var(--space-md);
    border-left: 4px solid var(--c-gold);
    line-height: 1.4;
}
.ceo-page__heading:first-child {
    margin-top: 0;
}
.ceo-page__body strong {
    color: var(--c-black);
    font-weight: 900;
    background: linear-gradient(transparent 60%, rgba(212,175,55,0.3) 60%);
}
.ceo-page__signature {
    text-align: right;
    margin: var(--space-xl) 0 0;
    color: var(--c-text);
    font-size: 14px;
}
.ceo-page__signature strong {
    background: none;
    color: var(--c-black);
    font-size: 18px;
}
.ceo-page__cta {
    text-align: center;
    margin: var(--space-xxl) auto 0;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212,175,55,0.3);
}

/* ============================================
   固定ページ 共通スタイル
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--c-black) 0%, var(--c-black-soft) 100%);
    color: var(--c-text-inv);
    padding: var(--space-xl) 0;
    border-bottom: 4px solid var(--c-gold);
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
    pointer-events: none;
}
.page-hero__breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-md);
}
.page-hero__breadcrumb a {
    color: var(--c-gold);
}
.page-hero__en {
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    color: var(--c-gold);
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.page-hero__title {
    font-size: clamp(26px, 4vw, 42px);
    color: var(--c-gold);
    margin: 0 0 var(--space-sm);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.page-hero__lead {
    font-size: 15px;
    color: var(--c-gray-pale);
    margin: 0;
    line-height: 1.85;
    max-width: 900px;
}

.page-section {
    padding: var(--space-xxl) 0;
}
.page-section--cream {
    background: var(--c-cream);
}
.page-section--dark {
    background: var(--c-black);
    color: var(--c-text-inv);
}
.page-section__title {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.page-section__title-en {
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    color: var(--c-gold);
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.page-section__title-jp {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--c-black);
    margin: 0;
    font-weight: 700;
}
.page-section--dark .page-section__title-jp {
    color: var(--c-gold);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.95;
    color: var(--c-text);
}
.page-content h2 {
    font-size: clamp(20px, 2.8vw, 26px);
    color: var(--c-black);
    margin: var(--space-xl) 0 var(--space-md);
    padding: 12px var(--space-md);
    border-left: 4px solid var(--c-gold);
    background: rgba(212,175,55,0.05);
    line-height: 1.4;
}
.page-content > h2:first-child {
    margin-top: 0;
}
.page-content h3 {
    font-size: 18px;
    color: var(--c-black);
    margin: var(--space-lg) 0 var(--space-sm);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-gold);
    font-weight: 700;
}
.page-content h4 {
    font-size: 16px;
    color: var(--c-black);
    margin: var(--space-md) 0 8px;
    padding-left: 12px;
    border-left: 3px solid #6b4423;
    font-weight: 700;
}
.page-content p {
    margin: 0 0 var(--space-md);
}
.page-content strong {
    background: linear-gradient(transparent 60%, rgba(212,175,55,0.35) 60%);
    font-weight: 700;
    color: var(--c-black);
}
.page-content a {
    color: #8b6914;
    border-bottom: 1px solid rgba(139,105,20,0.3);
    transition: all var(--t-fast);
}
.page-content a:hover {
    color: var(--c-gold-dark);
    border-bottom-color: var(--c-gold);
}
.page-content ul,
.page-content ol {
    margin: 0 0 var(--space-md);
    padding-left: 0;
    list-style: none;
}
.page-content ul li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}
.page-content ul li::before {
    content: '✓';
    color: var(--c-gold);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}
.page-content ol {
    counter-reset: list-counter;
}
.page-content ol li {
    counter-increment: list-counter;
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative;
}
.page-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 2px;
    background: var(--c-gold);
    color: var(--c-black);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 900;
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
}
.page-content table {
    width: 100%;
    margin: 0 0 var(--space-md);
    border-collapse: collapse;
    border: 1px solid rgba(212,175,55,0.4);
    font-size: 14px;
}
.page-content table th,
.page-content table td {
    padding: 12px var(--space-md);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    text-align: left;
    vertical-align: top;
}
.page-content table th {
    background: var(--c-cream);
    color: var(--c-black);
    font-weight: 700;
    width: 28%;
    border-right: 1px solid rgba(212,175,55,0.2);
}
.page-content table tr:last-child th,
.page-content table tr:last-child td {
    border-bottom: none;
}
.page-content blockquote {
    margin: 0 0 var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--c-cream);
    border-left: 4px solid var(--c-gold);
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    line-height: 1.85;
    color: #4a3322;
}
.page-content blockquote p:last-child {
    margin-bottom: 0;
}

/* 画像プレースホルダー */
.page-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background:
        repeating-linear-gradient(45deg, #f5f0e3 0, #f5f0e3 10px, #ebe4d0 10px, #ebe4d0 20px);
    border: 2px dashed var(--c-gold);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: var(--space-lg) 0;
    color: #6b4423;
    padding: var(--space-md);
}
.page-img-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}
.page-img-placeholder__caption {
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}
.page-img-placeholder__caption strong {
    display: block;
    font-size: 15px;
    color: #5a3e2a;
    margin-bottom: 4px;
    background: none;
}
.page-img-placeholder__caption small {
    color: #8b6914;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* インフォボックス */
.page-info-box {
    background: linear-gradient(135deg, #fff8e1 0%, #f8efd0 100%);
    border: 1px solid var(--c-gold);
    border-radius: 8px;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 14px;
    line-height: 1.85;
    color: #4a3322;
}
.page-info-box__title {
    color: #8b6914;
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: 0.05em;
}
.page-info-box p:last-child {
    margin-bottom: 0;
}

.page-warning-box {
    background: linear-gradient(135deg, #fef0f0 0%, #fce2e2 100%);
    border: 1px solid #c41e1e;
    border-radius: 8px;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 14px;
    line-height: 1.85;
}
.page-warning-box__title {
    color: #8b0000;
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 15px;
}

/* ページCTA帯（共通） */
.page-cta {
    background: linear-gradient(135deg, var(--c-black-soft), var(--c-black));
    color: var(--c-text-inv);
    padding: var(--space-xxl) 0;
    text-align: center;
    border-top: 4px solid var(--c-gold);
}
.page-cta__inner {
    max-width: 720px;
    margin: 0 auto;
}
.page-cta__title {
    font-size: clamp(22px, 3vw, 30px);
    color: var(--c-gold);
    margin: 0 0 var(--space-md);
    font-weight: 700;
}
.page-cta__lead {
    color: var(--c-gray-pale);
    font-size: 15px;
    margin: 0 0 var(--space-md);
    line-height: 1.8;
}
.page-cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}
.page-cta__buttons .cta-btn {
    min-width: 240px;
}

/* 会社案内ページ マップ */
.company-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .company-map iframe {
        height: 320px;
    }
}

/* 関連ページリンク */
.page-related {
    background: var(--c-cream);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(212,175,55,0.2);
}
.page-related__title {
    text-align: center;
    color: var(--c-black);
    font-size: 18px;
    margin: 0 0 var(--space-md);
}
.page-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}
.page-related__item {
    display: block;
    padding: var(--space-md);
    background: var(--c-white);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all var(--t-base);
}
.page-related__item:hover {
    border-color: var(--c-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    color: inherit;
}
.page-related__item-en {
    display: block;
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--c-gold);
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}
.page-related__item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-black);
    margin: 0 0 6px;
}
.page-related__item-desc {
    font-size: 12px;
    color: var(--c-text-light);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-hero { padding: var(--space-lg) 0; }
    .page-section { padding: var(--space-xl) 0; }
    .page-content { font-size: 14px; }
    .page-content h2 { font-size: 18px; }
    .page-content h3 { font-size: 16px; }
    .page-content table th { width: 35%; }
    .page-cta__buttons { flex-direction: column; align-items: stretch; }
    .page-cta__buttons .cta-btn { width: 100%; }
}

/* ============================================
   404 エラーページ
   ============================================ */
.error-404 {
    background: linear-gradient(180deg, var(--c-black) 0%, var(--c-black-soft) 100%);
    color: var(--c-text-inv);
    padding: var(--space-xxl) 0;
    min-height: 70vh;
}
.error-404__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.error-404__code {
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-size: clamp(80px, 14vw, 160px);
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(212,175,55,0.2);
}
.error-404__title {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--c-gold);
    margin: 0 0 var(--space-md);
    font-weight: 700;
}
.error-404__desc {
    font-size: 15px;
    color: var(--c-gray-pale);
    margin: 0 0 var(--space-xl);
    line-height: 1.8;
}
.error-404__cta {
    background: linear-gradient(135deg, #8b0000 0%, #6a0000 100%);
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    margin: 0 0 var(--space-xl);
}
.error-404__cta-label {
    font-size: 14px;
    color: var(--c-gold);
    margin: 0 0 8px;
    font-weight: 700;
}
.error-404__tel {
    display: inline-block;
    font-family: "Helvetica Neue", "Arial Black", sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 900;
    color: var(--c-white);
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.02em;
}
.error-404__cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin: 8px 0 0;
}
.error-404__sitemap,
.error-404__search {
    margin: var(--space-xl) 0;
    text-align: left;
}
.error-404__sitemap-title {
    font-size: 16px;
    color: var(--c-gold);
    margin: 0 0 var(--space-md);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    text-align: center;
}
.error-404__sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}
.error-404__sitemap-list li a {
    color: var(--c-gray-pale);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0 6px 18px;
    position: relative;
    display: block;
    transition: color var(--t-fast);
}
.error-404__sitemap-list li a::before {
    content: '›';
    color: var(--c-gold);
    position: absolute;
    left: 0;
    top: 6px;
    font-weight: 900;
}
.error-404__sitemap-list li a:hover {
    color: var(--c-gold);
}
.error-404__search .search-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}
.error-404__search .search-form input[type="search"] {
    flex: 1;
    padding: 12px var(--space-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 6px;
    color: var(--c-white);
    font-size: 14px;
}
.error-404__search .search-form input[type="search"]::placeholder {
    color: var(--c-gray-light);
}
.error-404__search .search-form button {
    padding: 12px var(--space-md);
    background: var(--c-gold);
    color: var(--c-black);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--t-fast);
}
.error-404__search .search-form button:hover {
    background: #b8951f;
}
.error-404__back {
    margin: var(--space-xl) 0 0;
}

@media (max-width: 768px) {
    .error-404__sitemap-list {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA ボタン ---------- */
.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--c-gold);
    color: var(--c-black);
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--t-base);
    text-align: center;
}
.cta-btn:hover {
    background: var(--c-gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--c-black);
}
.cta-btn--lg {
    padding: 22px 70px;
    font-size: 20px;
}
.cta-btn--red {
    background: var(--c-red);
    color: var(--c-white);
}
.cta-btn--red:hover {
    background: var(--c-red-bright);
    color: var(--c-white);
}

/* ---------- フッターCTA（ヒーロー下と同じ3カラム形式） ---------- */
.footer-cta {
    background: linear-gradient(135deg, var(--c-black-soft), var(--c-black));
    padding: var(--space-xxl) 0;
    color: var(--c-text-inv);
    border-top: 4px solid var(--c-gold);
}
.footer-cta__head {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.footer-cta__head-en {
    display: block;
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--c-gold);
    letter-spacing: 0.35em;
    margin-bottom: var(--space-sm);
}
.footer-cta__title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--c-gold);
    font-weight: 700;
    margin: 0 0 var(--space-sm);
    letter-spacing: 0.04em;
}
.footer-cta__lead {
    font-size: 14px;
    color: var(--c-gray-pale);
    margin: 0;
    line-height: 1.7;
}

/* ---------- フッター本体 ---------- */
.site-footer {
    background: var(--c-black);
    color: var(--c-gray-pale);
    padding: var(--space-xxl) 0 var(--space-md);
    border-top: 1px solid rgba(212,175,55,0.2);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: var(--space-xl);
}
.site-footer__col {
    min-width: 0;
}
.site-footer__logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}
.site-footer__logo-img {
    height: 70px;
    width: auto;
    display: block;
}
.site-footer__tagline {
    color: var(--c-gray-pale);
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 var(--space-md);
    border-left: 2px solid var(--c-gold);
    padding-left: 12px;
}
.site-footer__info {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}
.site-footer__info dt {
    color: var(--c-gold);
    font-weight: 700;
    font-size: 11px;
    margin-top: var(--space-sm);
    letter-spacing: 0.1em;
}
.site-footer__info dt:first-child {
    margin-top: 0;
}
.site-footer__info dd {
    margin: 4px 0 0;
    color: var(--c-gray-pale);
}
.site-footer__tel {
    color: var(--c-gold);
    font-family: "Helvetica Neue", "Arial Black", "Yu Gothic", "Hiragino Sans", sans-serif;
    font-weight: 900;
    font-size: 22px;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.site-footer__tel-note {
    display: inline-block;
    color: var(--c-gray-light);
    font-size: 11px;
    margin-left: 6px;
}
.site-footer__heading {
    color: var(--c-gold);
    font-size: 14px;
    margin: 0 0 var(--space-md);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    font-weight: 700;
    letter-spacing: 0.05em;
}
.site-footer__heading--mt {
    margin-top: var(--space-lg);
}
.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer__list li {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--c-gray-pale);
    line-height: 1.5;
}
.site-footer__list a {
    color: var(--c-gray-pale);
    text-decoration: none;
    transition: color var(--t-fast);
    display: inline-block;
    padding: 2px 0;
}
.site-footer__list a:hover {
    color: var(--c-gold);
}
.site-footer__list--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.site-footer__area-note {
    margin: var(--space-sm) 0 0;
    font-size: 11px;
    color: var(--c-gray-light);
    padding-left: 12px;
    border-left: 2px solid rgba(212,175,55,0.3);
}
.site-footer__links {
    max-width: 1200px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg) var(--space-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.site-footer__links-heading {
    color: var(--c-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 var(--space-md);
}
.site-footer__links-group {
    margin-bottom: var(--space-md);
}
.site-footer__links-group:last-child {
    margin-bottom: 0;
}
.site-footer__links-label {
    display: block;
    color: var(--c-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.site-footer__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.site-footer__links-list li {
    font-size: 12.5px;
    line-height: 1.5;
}
.site-footer__links-list li:not(:last-child)::after {
    content: '／';
    color: rgba(255,255,255,0.2);
    margin: 0 2px;
}
.site-footer__links-list a {
    color: var(--c-gray-pale);
    text-decoration: none;
    transition: color var(--t-fast);
    padding: 2px 0;
}
.site-footer__links-list a:hover {
    color: var(--c-gold);
    text-decoration: underline;
}
.site-footer__bottom {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.site-footer__copyright {
    font-size: 12px;
    color: var(--c-gray-light);
    margin: 0;
    letter-spacing: 0.05em;
}

/* ---------- LP（地域ランディングページ） ---------- */
.lp-hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    padding: var(--space-xl) 0;
    border-bottom: 2px solid var(--c-gold);
}
.lp-hero__area {
    display: inline-block;
    background: var(--c-gold);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.lp-hero__title {
    color: #fff;
    font-size: clamp(24px, 4.2vw, 38px);
    line-height: 1.45;
    margin: 0 0 16px;
}
.lp-hero__lead {
    color: var(--c-gray-pale);
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 var(--space-lg);
    max-width: 760px;
}
.lp-trust {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.lp-trust li {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}
.lp-trust strong {
    display: block;
    color: var(--c-gold);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}
.lp-trust span {
    display: block;
    color: var(--c-gray-pale);
    font-size: 12px;
}
.lp-cta { margin-top: var(--space-md); }
/* メイン画像（フルワイド・トップページ風） */
.lp-mainimg { margin: 0; }
.lp-mainimg__src { display: block; width: 100%; height: auto; }
.lp-mainimg__note {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin: 6px 0 0;
}
.lp-thumb { margin: var(--space-lg) auto 0; }
.lp-thumb figcaption {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}
.lp-local {
    background: var(--c-cream);
    border-radius: 8px;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.lp-local h2 { margin-top: 0; }
.lp-cta-band {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    border-radius: 10px;
    padding: var(--space-lg);
    text-align: center;
    margin: var(--space-xl) 0;
}
.lp-cta-band__text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.7;
}
.lp-cta-band__tel {
    display: inline-block;
    color: var(--c-gold);
    font-family: "Helvetica Neue", "Arial Black", "Yu Gothic", sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 6vw, 40px);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.lp-cta-band__note {
    display: block;
    color: var(--c-gray-light);
    font-size: 12px;
    margin-top: 6px;
}
@media (max-width: 600px) {
    .lp-trust { grid-template-columns: 1fr; }
}

/* --- LP本文を“LPらしく”作り込み（見出し・カード・番号ステップ・影絵・演出） --- */
.lp { position: relative; overflow: hidden; }
/* 影絵：和の上品なゴールド・モチーフを背景に薄く（装飾・SEO非干渉） */
.lp::before,
.lp::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(closest-side, rgba(212,175,55,0.10), transparent 70%);
}
.lp::before { top: 60px; right: -120px; width: 420px; height: 420px; }
.lp::after  { bottom: 200px; left: -140px; width: 460px; height: 460px; background: radial-gradient(closest-side, rgba(212,175,55,0.07), transparent 70%); }
.lp > * { position: relative; z-index: 1; }

.lp-content > h2 {
    text-align: center;
    font-size: clamp(21px, 3.4vw, 30px);
    margin: 60px 0 28px;
    padding-bottom: 16px;
    position: relative;
}
.lp-content > h2::before {
    content: '◆';
    display: block;
    color: var(--c-gold);
    font-size: 12px;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}
.lp-content > h2::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 64px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.lp-content h3 {
    border-left: 4px solid var(--c-gold);
    padding-left: 12px;
    margin: 34px 0 14px;
}
.lp-content ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}
.lp-content ul li {
    position: relative;
    padding: 13px 16px 13px 46px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.lp-content ul li::before {
    content: '✓';
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 22px;
    line-height: 22px;
    text-align: center;
    background: var(--c-gold);
    color: #1a1a1a;
    font-weight: 900;
    font-size: 12px;
    border-radius: 50%;
}
.lp-content ol {
    counter-reset: lpstep;
    list-style: none;
    padding: 0;
    margin: 22px 0;
}
.lp-content ol > li {
    position: relative;
    padding: 16px 16px 16px 60px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.lp-content ol > li::before {
    counter-increment: lpstep;
    content: counter(lpstep);
    position: absolute;
    left: 14px; top: 14px;
    width: 32px; height: 32px;
    line-height: 32px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: var(--c-gold);
    font-weight: 800;
    border-radius: 50%;
    border: 1px solid var(--c-gold);
}
.lp-content table {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-radius: 8px;
    overflow: hidden;
}

/* 本文中の挿絵（解決策・事例の画像を文章の流れに配置） */
.lp-content .lp-inline { margin: 30px 0; }
.lp-content .lp-inline img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}
.lp-content .lp-inline figcaption {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

/* 動き：スクロールで下からふわっと（JSが付与・JS無しなら常時表示でSEO安全） */
.lp-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.lp-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- パンくず ---------- */
.muraoka-breadcrumb {
    padding: var(--space-sm) var(--space-md);
    background: var(--c-cream);
    font-size: 12px;
}
.muraoka-breadcrumb ol {
    max-width: var(--container-w);
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.muraoka-breadcrumb li::after {
    content: "›";
    margin-left: 8px;
    color: var(--c-gray-light);
}
.muraoka-breadcrumb li:last-child::after {
    content: "";
}

/* ---------- 記事本文 ---------- */
.entry-content {
    max-width: var(--content-w);
    margin: var(--space-lg) auto;
    padding: 0 var(--space-md);
    font-size: 17px;
    line-height: 1.9;
}
.entry-content h2 {
    margin-top: 2.5em;
    padding: 14px 22px;
    background: linear-gradient(to right, var(--c-black-soft), var(--c-gray-dark));
    color: var(--c-gold);
    border-left: 4px solid var(--c-gold);
    font-size: 22px;
    border-radius: 4px;
}
.entry-content h3 {
    margin-top: 2em;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-gold);
    color: var(--c-black);
    font-size: 20px;
}
.entry-content h4 {
    margin-top: 1.5em;
    color: var(--c-gold-dark);
    font-size: 17px;
}
.entry-content p {
    margin: 0 0 1.5em;
}
.entry-content a {
    color: var(--c-gold-dark);
    border-bottom: 1px solid currentColor;
}
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}
.entry-content th, .entry-content td {
    padding: 10px 14px;
    border: 1px solid var(--c-gray-pale);
    text-align: left;
}
.entry-content th {
    background: var(--c-cream);
    font-weight: 700;
}
.entry-content blockquote {
    margin: 1.5em 0;
    padding: var(--space-md);
    border-left: 4px solid var(--c-gold);
    background: var(--c-cream);
    font-style: italic;
}
.entry-content ul, .entry-content ol {
    margin: 0 0 1.5em;
    padding-left: 1.8em;
}
.entry-content li {
    margin-bottom: 0.5em;
}

/* ---------- 関連記事ウィジェット ---------- */
.related-articles {
    max-width: var(--content-w);
    margin: var(--space-xl) auto;
    padding: 0 var(--space-md);
}
.related-articles__title {
    text-align: center;
    margin-bottom: var(--space-md);
}
.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}
.related-card {
    background: var(--c-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base);
}
.related-card:hover {
    transform: translateY(-2px);
}
.related-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.related-card__body {
    padding: var(--space-sm);
}

/* ---------- 404 ---------- */
.error-404 {
    text-align: center;
    padding: var(--space-xxl) var(--space-md);
}
.error-404__title {
    font-family: var(--font-en);
    font-size: clamp(64px, 12vw, 120px);
    color: var(--c-gold);
    margin: 0;
}

/* ---------- ヘルパークラス ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--c-gold); }
.text-bold { font-weight: 700; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ---------- ブログ共通ヘッダー画像 ---------- */
.news-header-img {
    margin: 0 0 var(--space-lg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.12);
    aspect-ratio: auto;
}
.news-header-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------- ブログ本文末・CTAバナー（料金ページへ誘導） ---------- */
.news-cta-banner {
    display: block;
    margin: var(--space-xl) 0 var(--space-lg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(212, 175, 55, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
}
.news-cta-banner:hover,
.news-cta-banner:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28);
    outline: none;
}
.news-cta-banner img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 767px) {
    .news-header-img {
        margin-bottom: var(--space-md);
        border-radius: 6px;
    }
    .news-cta-banner {
        margin: var(--space-lg) 0 var(--space-md);
        border-radius: 8px;
    }
}

/* ---------- 関連コンテンツセクション（内部リンク強化） ---------- */
.muraoka-related {
    margin: var(--space-xl) 0 var(--space-lg);
    padding: 24px 28px;
    background: #faf8f3;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}
.muraoka-related__title {
    font-size: 17px;
    margin: 0 0 14px;
    color: #2a1810;
    font-weight: 700;
    line-height: 1.4;
    padding: 0;
    border: none;
}
.muraoka-related__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.muraoka-related__item {
    border-bottom: 1px dashed rgba(212, 175, 55, 0.35);
    margin: 0;
    padding: 0;
}
.muraoka-related__item:last-child {
    border-bottom: none;
}
.muraoka-related__link {
    display: block;
    padding: 10px 0 10px 18px;
    color: #2a1810;
    text-decoration: none;
    line-height: 1.6;
    position: relative;
    transition: color 0.15s ease, padding-left 0.15s ease;
}
.muraoka-related__link::before {
    content: "▸";
    color: #d4af37;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 13px;
}
.muraoka-related__link:hover,
.muraoka-related__link:focus-visible {
    color: #d4af37;
    padding-left: 22px;
    text-decoration: underline;
    outline: none;
}
.muraoka-related__label {
    font-size: 15px;
}
/* バリエーション */
.muraoka-related--pillar { background: #f6f3ea; }
.muraoka-related--lp     { background: #fcf6e3; border-left-color: #b8941e; }
.muraoka-related--news   { background: #faf8f3; }

@media (max-width: 767px) {
    .muraoka-related {
        padding: 20px 18px;
        margin: var(--space-lg) 0 var(--space-md);
    }
    .muraoka-related__title { font-size: 16px; }
    .muraoka-related__label { font-size: 14px; }
}

/* ---------- 本文オートリンク（自然な青系下線） ---------- */
.muraoka-autolink {
    color: #1f4380;
    text-decoration: underline;
    text-decoration-color: rgba(31, 67, 128, 0.45);
    text-underline-offset: 2px;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.muraoka-autolink:hover,
.muraoka-autolink:focus-visible {
    color: #d4af37;
    text-decoration-color: #d4af37;
    outline: none;
}

/* ---------- ニュースカテゴリーナビ ---------- */
.news-cat-nav {
    margin: 0 0 var(--space-lg);
    padding: 20px 24px;
    background: #f8f5ec;
    border-radius: 6px;
}
.news-cat-nav__label {
    display: block;
    font-size: 13px;
    color: #5a4030;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.news-cat-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.news-cat-nav__item {
    margin: 0;
}
.news-cat-nav__link {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    color: #2a1810;
    text-decoration: none;
    font-size: 13px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.15s ease;
    line-height: 1.4;
}
.news-cat-nav__link:hover,
.news-cat-nav__link:focus-visible {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
    outline: none;
}
.news-cat-nav__item.is-current .news-cat-nav__link {
    background: #2a1810;
    color: #fff;
    border-color: #2a1810;
    font-weight: 700;
}
.news-cat-nav__count {
    font-size: 11px;
    opacity: 0.75;
    margin-left: 2px;
}

/* ---------- カテゴリバッジ（記事カード内） ---------- */
.news-archive-item__cats {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 0 12px;
    vertical-align: middle;
}
.news-archive-item__cat {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(212, 175, 55, 0.15);
    color: #8a6d1a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

/* ---------- カテゴリバッジ（記事ヘッダー） ---------- */
.page-hero__cats {
    margin: 8px 0 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.page-hero__cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.18);
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.4);
    letter-spacing: 0.03em;
    transition: all 0.15s ease;
}
.page-hero__cat-badge:hover,
.page-hero__cat-badge:focus-visible {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
    outline: none;
}

@media (max-width: 767px) {
    .news-cat-nav { padding: 16px 14px; }
    .news-cat-nav__link { padding: 7px 12px; font-size: 12px; }
    .news-archive-item__cats { margin: 4px 0 0 0; display: flex; }
}

/* ---------- 旧記事の「お悩み」ブロック（onayamai 変換後） ---------- */
.muraoka-onayamai {
    margin: var(--space-lg) 0;
    padding: 22px 26px;
    background: linear-gradient(135deg, #fcf9f0 0%, #faf5e6 100%);
    border-left: 5px solid #d4af37;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.08);
}
.muraoka-onayamai ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.muraoka-onayamai > ul > li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}
.muraoka-onayamai > ul > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.muraoka-onayamai > ul > li:first-child {
    padding-top: 0;
}
.muraoka-onayamai b {
    display: block;
    font-size: 15px;
    color: #2a1810;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.55;
}
.muraoka-onayamai p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #5a4030;
    line-height: 1.85;
}
@media (max-width: 767px) {
    .muraoka-onayamai {
        padding: 18px 16px;
        margin: var(--space-md) 0;
        border-left-width: 4px;
    }
    .muraoka-onayamai b { font-size: 14px; }
    .muraoka-onayamai p { font-size: 13px; }
}

/* ---------- ニュース本文の <img> 暴走防止（スマホ画像切れ対策） ---------- */
.page-content img,
.entry-content img,
.muraoka-onayamai img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- 旧記事の Q&A ブロック（黒背景→明るい配色に修正） ---------- */
.muraoka-faq {
    margin: var(--space-lg) 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fafafa 0%, #f4f0e7 100%);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.muraoka-faq .qa {
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}
.muraoka-faq .qa:first-child {
    padding-top: 0;
}
.muraoka-faq .qa:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.muraoka-faq .qa h3 {
    font-size: 16px;
    color: #2a1810;
    font-weight: 700;
    margin: 0 0 10px;
    padding: 0 0 0 28px;
    position: relative;
    line-height: 1.55;
    border: none;
}
.muraoka-faq .qa h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-family: var(--font-en);
    font-weight: 700;
}
.muraoka-faq .qa p {
    margin: 0;
    padding: 0 0 0 28px;
    position: relative;
    font-size: 14.5px;
    color: #3a2810;
    line-height: 1.85;
}
.muraoka-faq .qa p::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #2a1810;
    color: #d4af37;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-family: var(--font-en);
    font-weight: 700;
}
@media (max-width: 767px) {
    .muraoka-faq {
        padding: 18px 16px;
        margin: var(--space-md) 0;
    }
    .muraoka-faq .qa h3 { font-size: 15px; padding-left: 26px; }
    .muraoka-faq .qa p { font-size: 13.5px; padding-left: 26px; }
}

/* ============================================================
 * タブレット専用調整 (768〜1023px)
 * ※ PC (≥1024px) と SP (<768px) には一切影響しないように
 *    @media (min-width: 768px) and (max-width: 1023px) で完全スコープ
 *    既存ルールは触らず、追加のみ。CSS変数も触らない。
 * ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    /* --- ヘッダー全体: 詰めて1行に収める --- */
    .site-header__inner {
        padding: 8px 14px;
        gap: 10px;
    }
    .site-logo__img,
    .custom-logo {
        height: 52px;
    }

    /* --- 電話番号: 縦割れ防止＋サイズダウン --- */
    .header-phone {
        padding: 0 4px;
    }
    .header-phone__label {
        font-size: 10px;
        margin-bottom: 1px;
        white-space: nowrap;
    }
    .header-phone__number {
        font-size: 18px;
        white-space: nowrap;
        gap: 4px;
    }
    .header-phone__icon {
        width: 16px;
        height: 16px;
    }

    /* --- CTAボタン: 縦書き状態を解消・コンパクト化 --- */
    .cta-pill {
        padding: 6px 10px;
        gap: 6px;
        white-space: nowrap;
    }
    .cta-pill__icon {
        width: 18px;
        height: 18px;
    }
    .cta-pill__title {
        font-size: 12px;
        white-space: nowrap;
    }
    .cta-pill__sub {
        font-size: 9px;
        white-space: nowrap;
    }

    /* --- header-cta 全体のgap詰める --- */
    .header-cta {
        gap: 6px;
    }

    /* --- グローバルナビ: 9-10項目を圧迫させない --- */
    .global-nav__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        justify-content: flex-start;
    }
    .global-nav__list li a {
        padding: 12px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
}

