@charset "UTF-8";
/*
Theme Name: Lightning Child for ie2nd
Description: 家づくりセカンドチェック用 Lightning子テーマ
Template: lightning
Version: 2.0.0
*/

/* ========================================================
   Design System — Inspired by Sekisui House
   白を基調に、繊細なタイポグラフィと大胆な余白
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors — Earth & Natural */
    --color-primary: #2C3E2D;       /* 深い森グリーン */
    --color-secondary: #8B7355;     /* ウォームブラウン */
    --color-accent: #C4A76C;        /* ゴールドアクセント */
    --color-bg-white: #FFFFFF;
    --color-bg-warm: #FAF8F5;       /* ウォームホワイト */
    --color-bg-section: #F5F2ED;    /* ベージュグレー */
    --color-border: #E8E3DB;
    --color-text-main: #3D3D3D;
    --color-text-sub: #6B6B6B;
    --color-text-light: #9B9B9B;
    --color-text-dark: #1A1A1A;

    /* Typography */
    --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    --container-narrow: 900px;

    /* Shadows */
    --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 16px 60px rgba(0,0,0,0.12);
}

/* ========================================================
   Reset & Base
======================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    line-height: 1.9;
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-white);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.03em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover { opacity: 0.7; }

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

/* WordPress overrides */
.site-body-side { display: none !important; }
.site-body-main { width: 100% !important; max-width: 100% !important; }
.site-footer-copyright { display: none !important; }

/* ========================================================
   Layout
======================================================== */
.sh-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}
.sh-container--narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 40px;
}

.sh-section {
    padding: var(--section-padding) 0;
}
.sh-section--warm {
    background-color: var(--color-bg-warm);
}
.sh-section--beige {
    background-color: var(--color-bg-section);
}

/* ========================================================
   Typography — Sekisui Style
======================================================== */
.sh-heading-hero {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.12em;
    color: var(--color-bg-white);
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.sh-heading-section {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 20px;
}
.sh-heading-sub {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
}
.sh-heading-card {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}
.sh-text-body {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--color-text-sub);
}
.sh-text-lead {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--color-text-main);
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.sh-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 4px 16px;
    text-transform: uppercase;
}

/* ========================================================
   Header — Clean & Minimal
======================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}
.logo a {
    text-decoration: none;
}
.logo-main {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    display: block;
}
.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    display: block;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-text-main);
    text-decoration: none;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }

/* Header CTA */
.btn-cta-header {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-bg-white);
    background-color: var(--color-primary);
    padding: 10px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-cta-header:hover {
    background-color: #1E2E1F;
    opacity: 1;
}

/* ========================================================
   Hero — Full-Screen Cinematic
======================================================== */
.sh-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.sh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 2;
}
.sh-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 40px;
}
.sh-hero__catchcopy {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 24px;
}
.sh-hero__sub {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.sh-hero__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.sh-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.sh-hero__scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================================
   Buttons — Refined
======================================================== */
.sh-btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 16px 48px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}
.sh-btn--primary {
    background-color: var(--color-primary);
    color: #fff;
}
.sh-btn--primary:hover {
    background-color: #1E2E1F;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
}
.sh-btn--outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
}
.sh-btn--outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    opacity: 1;
}
.sh-btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.sh-btn--secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
    opacity: 1;
}
.sh-btn--gold {
    background-color: var(--color-accent);
    color: #fff;
}
.sh-btn--gold:hover {
    background-color: #B39558;
    opacity: 1;
}
.sh-btn--arrow::after {
    content: '→';
    margin-left: 12px;
    transition: margin-left 0.3s ease;
}
.sh-btn--arrow:hover::after {
    margin-left: 20px;
}

/* ========================================================
   Split Layout — Image + Text
======================================================== */
.sh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}
.sh-split--reverse {
    direction: rtl;
}
.sh-split--reverse > * {
    direction: ltr;
}
.sh-split__image {
    overflow: hidden;
    position: relative;
    min-height: 500px;
}
.sh-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.sh-split:hover .sh-split__image img {
    transform: scale(1.03);
}
.sh-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px;
}
.sh-split__number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 24px;
}

/* ========================================================
   Card Grid — Feature Cards
======================================================== */
.sh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sh-card {
    background: var(--color-bg-white);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
}
.sh-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.sh-card__image {
    overflow: hidden;
    height: 220px;
}
.sh-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sh-card:hover .sh-card__image img {
    transform: scale(1.05);
}
.sh-card__body {
    padding: 32px;
}
.sh-card__tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

/* ========================================================
   Pricing — Elegant
======================================================== */
.sh-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sh-pricing-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}
.sh-pricing-card--featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}
.sh-pricing-card--featured::before {
    content: '3社比較';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 6px;
}
.sh-pricing-card__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}
.sh-pricing-card__price {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 24px 0;
}
.sh-pricing-card__price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-sub);
}
.sh-pricing-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}
.sh-pricing-card__list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-bg-section);
    font-size: 0.9rem;
    color: var(--color-text-sub);
}
.sh-pricing-card__list li::before {
    content: '—';
    color: var(--color-accent);
    margin-right: 12px;
}

/* ========================================================
   FAQ — Accordion Style
======================================================== */
.sh-faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 28px 0;
}
.sh-faq-q {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.sh-faq-q::before {
    content: 'Q';
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 400;
    flex-shrink: 0;
}
.sh-faq-a {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--color-text-sub);
    padding-left: 32px;
}

/* ========================================================
   Footer
======================================================== */
.sh-footer {
    background-color: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 40px;
}
.sh-footer a { color: rgba(255,255,255,0.7); }
.sh-footer a:hover { color: #fff; }
.sh-footer__links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}
.sh-footer__copy {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

/* ========================================================
   Floating CTA (Mobile)
======================================================== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    text-align: center;
    border-top: 1px solid var(--color-border);
}
.floating-cta .sh-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
}

/* ========================================================
   Animations — Fade In on Scroll
======================================================== */
.sh-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.sh-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================
   Utility
======================================================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }

/* ========================================================
   Responsive
======================================================== */
@media (max-width: 1024px) {
    .sh-split { grid-template-columns: 1fr; }
    .sh-split__image { min-height: 350px; }
    .sh-split__content { padding: 60px 40px; }
    .sh-card-grid { grid-template-columns: repeat(2, 1fr); }
    .sh-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }
    .sh-hero__catchcopy { font-size: 1.8rem; letter-spacing: 0.08em; }
    .sh-hero__sub { font-size: 0.8rem; }
    .sh-heading-section { font-size: 1.5rem; }
    .sh-container, .sh-container--narrow { padding: 0 20px; }
    .sh-split__content { padding: 40px 20px; }
    .sh-split__number { font-size: 2.5rem; }
    .sh-card-grid { grid-template-columns: 1fr; }
    .sh-hero__cta-group { flex-direction: column; padding: 0 20px; }
    .sh-btn { width: 100%; text-align: center; }
    .header-inner { padding: 0 20px; }
    .floating-cta { display: block; }
    body { padding-bottom: 70px; }
}

/* ========================================================
   LP legacy compatibility (for sub-pages)
======================================================== */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.page-content-wrapper { background: #fff; padding: 48px; border-radius: 0; margin: 100px auto 60px; box-shadow: var(--shadow-soft); border: 1px solid var(--color-border); }
.lp-container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.lp-heading-md { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; color: var(--color-text-dark); text-align: center; margin-bottom: 48px; letter-spacing: 0.08em; }
.lp-btn-cta { display: inline-block; padding: 14px 40px; background: var(--color-primary); color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-align: center; transition: all 0.3s ease; }
.lp-btn-cta:hover { background: #1E2E1F; opacity: 1; }
.btn-cta-lg { display: inline-block; background-color: var(--color-primary); color: #fff; padding: 16px 32px; font-size: 0.95rem; font-weight: 500; text-align: center; text-decoration: none; letter-spacing: 0.1em; transition: all 0.3s ease; }
.btn-cta-lg:hover { background-color: #1E2E1F; }
.btn-cta-sm { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; color: #fff; background-color: var(--color-primary); padding: 10px 28px; text-decoration: none; transition: all 0.3s ease; }
.btn-cta-sm:hover { background-color: #1E2E1F; opacity: 1; }

/* ========================================================
   Hero Trust Bar — 安心材料バー
======================================================== */
.sh-trust-bar {
    background: #f5f2ed;
    border-top: 1px solid #e8e3db;
    border-bottom: 1px solid #e8e3db;
    padding: 14px 20px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-text-sub);
    letter-spacing: 0.03em;
    line-height: 1.7;
}
.sh-trust-bar__inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.sh-trust-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 600;
}

/* ========================================================
   Form Styles — Contact Form 7 CV改善
======================================================== */
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background: #fff;
    border: 1px solid #d1cbbf;
    border-radius: 4px;
    line-height: 1.6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44,62,45,0.1);
}
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239B9B9B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
/* 必須表示 */
.form-group label .wpcf7-required,
.required {
    color: #c0392b;
    font-size: 0.75rem;
    margin-left: 4px;
    font-weight: 500;
}
/* プラン選択カード */
.wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0 0 10px;
}
.wpcf7-radio .wpcf7-list-item-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #d1cbbf;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    line-height: 1.6;
}
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
    border-color: var(--color-primary);
    background: #f0f4f0;
}
.wpcf7-radio .wpcf7-list-item-label:hover {
    border-color: var(--color-secondary);
}
/* 同意事項 */
.consent-box {
    background: #faf9f7;
    border: 1px solid #e8e3db;
    border-radius: 6px;
    padding: 20px 24px;
}
.consent-box p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}
.wpcf7-acceptance .wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
}
.wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 0.85rem;
    color: var(--color-text-sub);
    line-height: 1.7;
    cursor: pointer;
}
/* 送信ボタン */
.btn-submit,
.wpcf7-submit {
    display: block;
    width: 100%;
    padding: 18px 24px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 8px;
}
.btn-submit:hover,
.wpcf7-submit:hover {
    background: #1E2E1F;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
/* フォームの安心メッセージ */
.form-note {
    font-size: 0.82rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 10px;
    line-height: 1.7;
}
/* エリアページ上部CTA レスポンシブ */
@media (max-width: 600px) {
    .area-top-cta {
        padding: 20px 18px !important;
    }
    .area-top-cta div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .area-top-cta a.sh-btn {
        width: 100% !important;
        text-align: center !important;
    }
}
/* 送信ボタンが入力欄などと重ならないよう */
.wpcf7 .form-group + .form-group { margin-top: 0; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    font-size: 1rem !important;
    min-height: 48px;
}
@media (max-width: 768px) {
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="url"],
    .wpcf7 select {
        min-height: 52px;
        font-size: 1rem !important;
    }
    textarea.form-control {
        min-height: 140px;
    }
    .btn-submit, .wpcf7-submit {
        padding: 20px 16px;
        font-size: 1rem;
    }
}

/* ========================================================
   Plan Cards — 希望プランをカード風に表示
======================================================== */
.plan-cards .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-cards .wpcf7-list-item {
    display: block;
    margin: 0;
}

.plan-cards .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 18px 20px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-size: 0.9rem;
    line-height: 1.7;
}

.plan-cards .wpcf7-list-item label:hover {
    border-color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(196, 167, 108, 0.15);
}

.plan-cards .wpcf7-list-item input[type="radio"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.plan-cards .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
    font-weight: 600;
}

.plan-cards .wpcf7-list-item:has(input[type="radio"]:checked) label {
    border-color: var(--color-primary);
    background: #f8faf8;
    box-shadow: 0 2px 8px rgba(44, 62, 45, 0.1);
}

@media (max-width: 768px) {
    .plan-cards .wpcf7-list-item label {
        padding: 16px;
        font-size: 0.85rem;
        min-height: 56px;
    }
}

/* ========================================================
   Form Section — セクション区切り
======================================================== */
.form-section {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-top: 28px;
}

.form-section-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
