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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: 80px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   カラー変数
   ========================================= */
:root {
    --navy:        #1e3a6e;
    --navy-mid:    #2a4d8f;
    --navy-pale:   #eaf0f9;
    --gold:        #b8963a;
    --gold-light:  #d4b05c;
    --bg:          #f6f8fc;
    --bg-subtle:   #f2f5fa;
    --text:        #1a1a1a;
    --text-mid:    #444;
    --text-sub:    #6b7280;
    --border:      #dde3ee;
    --white:       #ffffff;
}

/* =========================================
   FIRST VIEW
   ========================================= */
.fv-container {
    position: relative;
    width: 100%;
    min-height: 580px;
    background: #fff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* 右パネル：斜めクリップで白とペールブルーを分割 */
.fv-container::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 44%;
    height: 100%;
    background: linear-gradient(170deg, #edf3fb 0%, #d8e6f5 100%);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* 右側：弁護士写真 */
.fv-photo-area {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 2;
}

.fv-lawyer-photo {
    height: 88%;
    max-height: 490px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-3px 0 14px rgba(30, 58, 110, 0.1));
    display: block;
}

/* 左側：テキストコンテンツ */
.fv-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 58%;
    padding: 48px 48px 64px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ヘッダー */
.fv-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.fv-logo {
    height: 34px;
    width: auto;
}

.fv-firm-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.06em;
}

/* バッジ：洗練されたタグ形式 */
.badges-container {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: var(--navy);
    border-radius: 2px;
    padding: 5px 10px;
    gap: 0;
}

.badge-icon-txt {
    display: none;
}

.badge-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
}

.badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.03em;
}

.badge-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

/* キャッチコピー */
.main-copy {
    margin-bottom: 18px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
}

.copy-intro {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-sub);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.copy-headline {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.65;
    color: var(--navy);
    letter-spacing: 0.04em;
}

.highlight-accent {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    background: none;
    padding: 0;
}

/* サブコピー */
.sub-copy {
    margin-bottom: 28px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.85;
    padding: 12px 16px;
    border-left: 2px solid var(--gold);
    background: var(--bg-subtle);
    border-radius: 0 4px 4px 0;
}

/* CTAコンテナ */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s, box-shadow 0.15s;
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cta-tel {
    background: #d84315;
}

.cta-line {
    background: #00a040;
}

.cta-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.cta-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.cta-number {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cta-main-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.cta-balloon {
    background: #b71c1c;
    color: #fff;
    padding: 4px 14px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    align-self: flex-start;
    letter-spacing: 0.04em;
}

.cta-balloon::after {
    display: none;
}

.line-hours-note {
    font-size: 0.76rem;
    color: var(--text-sub);
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* スクロール誘導 */
.scroll-indicator {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: #fff;
    color: var(--navy);
    border-top: 1px solid var(--border);
}

/* =========================================
   共通セクション
   ========================================= */
.section {
    padding: 72px 20px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 48px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 0.06em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--gold);
}

/* =========================================
   悩み別導線
   ========================================= */
.problem-section {
    background: var(--bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.problem-card {
    background: #fff;
    border-radius: 6px;
    padding: 22px 18px;
    box-shadow: 0 1px 4px rgba(30, 58, 110, 0.05);
    border-top: 2px solid var(--navy);
    transition: box-shadow 0.2s;
}

.problem-card:hover {
    box-shadow: 0 4px 16px rgba(30, 58, 110, 0.1);
}

.problem-card-other {
    border-top-color: var(--gold);
}

.problem-card-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.problem-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.02em;
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card ul li {
    font-size: 0.82rem;
    color: var(--text-sub);
    padding: 4px 0 4px 14px;
    position: relative;
    line-height: 1.55;
}

.problem-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 6px;
}

.problem-message {
    text-align: center;
    font-size: 0.93rem;
    line-height: 2.1;
    color: var(--text-mid);
}

/* =========================================
   CTA セクション
   ========================================= */
.cta-section {
    background: var(--navy);
    padding: 56px 20px;
}

.cta-lead-text {
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
    line-height: 1.95;
    letter-spacing: 0.03em;
}

.cta-final {
    background: #16305e;
}

/* =========================================
   選ばれる理由
   ========================================= */
.strengths-section {
    background: #fff;
}

.achievements-block {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.achievement-item {
    padding: 22px 28px;
    text-align: center;
    flex: 1;
    min-width: 130px;
    border-right: 1px solid var(--border);
}

.achievement-item:last-child {
    border-right: none;
}

.achievement-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-sub);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

.achievement-value {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.achievement-unit {
    font-size: 0.78rem;
    color: var(--text-sub);
    margin-left: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.strength-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.strength-item:hover {
    border-color: var(--navy-mid);
    box-shadow: 0 2px 10px rgba(30, 58, 110, 0.07);
}

.strength-num {
    flex: 0 0 40px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0;
    line-height: 1;
    padding-top: 3px;
}

.strength-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.strength-body p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.85;
}

/* =========================================
   相談の流れ
   ========================================= */
.flow-section {
    background: var(--bg);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.flow-step {
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.flow-step:first-child {
    border-radius: 6px 6px 0 0;
}

.flow-step:last-child {
    border-radius: 0 0 6px 6px;
}

.flow-step:not(:last-child) {
    border-bottom: none;
}

.flow-step:not(:last-child)::after {
    content: '▼';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 0.8rem;
    z-index: 2;
    background: var(--bg);
    padding: 2px 6px;
    line-height: 1;
}

.step-num {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 2px;
    font-size: 0.74rem;
    margin-bottom: 14px;
    display: inline-block;
    letter-spacing: 0.12em;
}

.step-content h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.step-content p {
    font-size: 0.87rem;
    color: var(--text-sub);
    line-height: 1.85;
    max-width: 480px;
}

/* =========================================
   所属弁護士
   ========================================= */
.lawyers-section {
    background: #fff;
}

.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lawyer-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lawyer-profile:hover {
    border-color: var(--navy-mid);
    box-shadow: 0 4px 14px rgba(30, 58, 110, 0.08);
}

.lawyer-image-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    margin-bottom: 16px;
}

.lawyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-info h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: 0.08em;
}

.lawyer-role {
    font-size: 0.74rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
}

.lawyer-meta {
    font-size: 0.75rem;
    color: var(--text-sub);
    letter-spacing: 0.02em;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section {
    background: var(--bg);
}

.faq-item {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #9aabcc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 17px 48px 17px 20px;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.faq-question::before {
    content: 'Q';
    display: inline-block;
    background: var(--navy);
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 900;
    margin-right: 12px;
    vertical-align: middle;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--text-sub);
    font-weight: 300;
    line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 18px 52px;
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.85;
    border-top: 1px solid var(--border);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--navy);
    color: #fff;
    padding: 56px 20px 40px;
    text-align: center;
}

.footer-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: inline-block;
    letter-spacing: 0.1em;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.office-item {
    background: rgba(255,255,255,0.04);
    padding: 16px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.07);
}

.office-item-main {
    background: rgba(255,255,255,0.09);
    border-color: rgba(184,150,58,0.35);
}

.office-item h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 8px;
    letter-spacing: 0.07em;
}

.office-item-main h4 {
    color: #e8c870;
}

.office-item p {
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.55);
}

.contact-info {
    font-weight: 700;
    color: rgba(255,255,255,0.88) !important;
    letter-spacing: 0.02em;
}

.office-hours {
    font-size: 0.74rem !important;
    color: rgba(255,255,255,0.38) !important;
}

.copyright {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.06em;
}

/* =========================================
   Sticky Footer
   ========================================= */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 -1px 10px rgba(0,0,0,0.1);
    padding: 10px 14px;
    z-index: 1000;
    border-top: 1px solid var(--border);
}

.sticky-buttons {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 9px 5px;
    border-radius: 5px;
    color: #fff;
    gap: 8px;
    transition: opacity 0.2s;
}

.sticky-btn:active { opacity: 0.8; }

.sticky-tel  { background: #d84315; }
.sticky-line { background: #00a040; }

.sticky-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-label {
    font-size: 0.58rem;
    font-weight: 500;
    opacity: 0.82;
    letter-spacing: 0.01em;
}

.sticky-main {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================
   Mobile（768px以下）
   ========================================= */
@media (max-width: 768px) {
    /* FV：モバイルはシンプルな薄いグレー背景 */
    .fv-container {
        min-height: auto;
        background: var(--bg);
    }

    .fv-container::before {
        display: none;
    }

    .fv-photo-area {
        display: none;
    }

    .fv-content {
        max-width: 100%;
        padding: 32px 20px 48px;
    }

    .copy-headline {
        font-size: 1.65rem;
    }

    .copy-intro {
        font-size: 0.82rem;
    }

    .cta-number {
        font-size: 1.45rem;
    }

    /* 問題カード：1列 */
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section {
        padding: 52px 16px;
    }

    /* 弁護士：1列・横並び */
    .lawyers-grid {
        grid-template-columns: 1fr;
    }

    .lawyer-profile {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 18px 16px;
    }

    .lawyer-image-wrapper {
        margin-bottom: 0;
        flex: 0 0 68px;
        width: 68px;
        height: 68px;
    }

    /* 実績 */
    .achievements-block {
        flex-direction: column;
    }

    .achievement-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .achievement-item:last-child {
        border-bottom: none;
    }

    /* 強み */
    .strength-item {
        padding: 20px 16px;
    }

    /* 解決事例：1列 */
    .case-grid {
        grid-template-columns: 1fr;
    }

    /* 費用：1列 */
    .fee-grid {
        grid-template-columns: 1fr;
    }

    /* 担当弁護士 */
    .lawyer-featured {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
        gap: 20px;
    }

    .lawyer-message {
        text-align: left;
    }

    /* アクセス */
    .access-inner {
        flex-direction: column;
    }

    /* フッター */
    .footer {
        padding: 40px 16px 32px;
    }
}

/* =========================================
   解決事例
   ========================================= */
.case-section {
    background: var(--bg);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.case-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.case-card:hover {
    border-color: var(--navy-mid);
    box-shadow: 0 4px 16px rgba(30, 58, 110, 0.08);
}

.case-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    color: #fff;
    letter-spacing: 0.06em;
    align-self: flex-start;
}

.case-tag-rikon  { background: #1e3a6e; }
.case-tag-souzoku { background: #5d4037; }
.case-tag-isya   { background: #6a1565; }

.case-client {
    font-size: 0.78rem;
    color: var(--text-sub);
    margin: 0;
}

.case-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.case-body {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.85;
    flex: 1;
}

.case-result {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.case-result-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    flex: 0 0 auto;
}

.case-result-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.case-note {
    font-size: 0.76rem;
    color: var(--text-sub);
    text-align: center;
    letter-spacing: 0.02em;
}

/* =========================================
   費用の目安
   ========================================= */
.fee-section {
    background: #fff;
}

.fee-intro {
    text-align: center;
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 36px;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.fee-block {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.fee-block-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--navy);
    padding: 10px 16px;
    letter-spacing: 0.06em;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.fee-table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.fee-table td:first-child {
    color: var(--text-sub);
    white-space: nowrap;
}

.fee-table td:last-child {
    font-weight: 700;
    color: var(--navy);
    text-align: right;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-reward {
    font-size: 0.78rem;
    color: var(--text-sub);
    padding: 8px 14px 10px;
    line-height: 1.6;
    background: var(--bg-subtle);
}

.fee-note {
    font-size: 0.8rem;
    color: var(--text-sub);
    text-align: center;
    padding: 14px 20px;
    background: var(--bg-subtle);
    border-radius: 4px;
    line-height: 1.7;
    border: 1px solid var(--border);
}

/* =========================================
   担当弁護士（リデザイン）
   ========================================= */
.lawyer-featured {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--bg-subtle);
    border-radius: 8px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.lawyer-featured-photo {
    flex: 0 0 140px;
}

.lawyer-featured-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.lawyer-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.lawyer-featured-body {
    flex: 1;
}

.lawyer-featured-role {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.lawyer-featured-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.lawyer-featured-bar {
    font-size: 0.78rem;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.lawyer-message {
    border-left: 2px solid var(--gold);
    padding: 12px 18px;
    margin: 0;
    background: #fff;
    border-radius: 0 4px 4px 0;
}

.lawyer-message p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.9;
}

.lawyer-backup {
    font-size: 0.82rem;
    color: var(--text-sub);
    text-align: center;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-subtle);
}

/* =========================================
   アクセス
   ========================================= */
.access-section {
    background: var(--bg);
}

.access-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.access-map iframe {
    border-radius: 6px;
    display: block;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access-address h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.access-address p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 4px;
}

.access-tel a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 1px;
}

.access-hours {
    font-size: 0.82rem;
    color: var(--text-sub);
}

.access-route h4,
.access-area h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.03em;
}

.access-route ol {
    padding-left: 20px;
}

.access-route ol li {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 4px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.area-tags span {
    font-size: 0.78rem;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 3px 10px;
    letter-spacing: 0.02em;
}

/* =========================================
   PC（769px以上）
   ========================================= */
@media (min-width: 769px) {
    /* CTAボタン横並び */
    .cta-buttons-wrapper {
        flex-direction: row;
    }

    .cta-button {
        flex: 1;
    }

    /* 問題カード：3列 */
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 相談の流れ：横並び3ステップ */
    .flow-steps {
        flex-direction: row;
        align-items: stretch;
    }

    .flow-step {
        flex: 1;
        padding: 28px 20px;
        justify-content: flex-start;
    }

    .flow-step:first-child {
        border-radius: 6px 0 0 6px;
    }

    .flow-step:last-child {
        border-radius: 0 6px 6px 0;
        border-right: 1px solid var(--border);
    }

    .flow-step:not(:last-child) {
        border-bottom: 1px solid var(--border);
        border-right: none;
    }

    .flow-step:not(:last-child)::after {
        content: '▶';
        bottom: auto;
        left: auto;
        right: -13px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg);
        padding: 4px 3px;
        font-size: 0.75rem;
    }

    /* 解決事例：3列 */
    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 費用：3列 */
    .fee-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 担当弁護士：横並び */
    .lawyer-featured {
        flex-direction: row;
    }

    /* アクセス：地図左・情報右 */
    .access-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 36px;
    }

    .access-map {
        flex: 0 0 48%;
    }

    .access-info {
        flex: 1;
    }

    /* フッター拠点：2×2グリッド */
    .office-locations {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 720px;
        margin: 0 auto 30px;
    }

    .office-item {
        min-width: 0;
    }
}
