/* ========================================
   相続の手続きページ - Specific Styles
   InheritanceProc.tsx 忠実再現
   ======================================== */

/* ─── Hero ─── */
.proc-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding-top: 68px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.proc-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1733687886508-6c8daf267505?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxkb2N1bWVudCUyMHNpZ25pbmclMjBpbmhlcml0YW5jZSUyMGVzdGF0ZSUyMGxlZ2FsJTIwcGFwZXJ3b3JrfGVufDF8fHx8MTc3MzMxMTM4OHww&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.proc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 40, 0.42) 0%,
        rgba(10, 20, 40, 0.28) 40%,
        rgba(10, 20, 40, 0.65) 100%
    );
}

.proc-hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.proc-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 64px 24px 56px;
}

.proc-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.proc-hero-eyebrow-line {
    display: block;
    height: 1px;
    width: 32px;
    background-color: #c9a84c;
    opacity: 0.7;
}

.proc-hero-eyebrow-text {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: #c9a84c;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.proc-hero-title {
    font-size: clamp(26px, 4.5vw, 46px);
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    color: white;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 12px;
}

.proc-hero-subtitle {
    font-size: clamp(13px, 1.8vw, 16px);
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ─── Main wrapper ─── */
.proc-main {
    background: #fafbfc;
}

.proc-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 24px;
}

/* ─── Section headers ─── */
.proc-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.proc-section-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #c9a84c;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.proc-section-title {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: clamp(18px, 2.8vw, 24px);
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    color: #1a3152;
    letter-spacing: 0.04em;
}

.proc-section-divider {
    width: 40px;
    height: 2px;
    background-color: #c9a84c;
    border-radius: 50px;
    margin-top: 16px;
}

/* ─── Checklist block ─── */
.proc-checklist-block {
    margin-bottom: 64px;
}

.proc-checklist-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 24px rgba(26, 49, 82, 0.07);
    border: 1px solid rgba(26, 49, 82, 0.06);
}

.proc-checklist-card-header {
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a3152, #243d63);
}

.proc-checklist-card-header p {
    font-size: 11px;
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    font-weight: 300;
    margin: 0;
}

.proc-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 32px;
}

.proc-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(26, 49, 82, 0.05);
}

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

.proc-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #c9a84c;
}

.proc-checklist-item span {
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #374151;
    line-height: 1.8;
    font-weight: 400;
}

@media (min-width: 768px) {
    .proc-checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proc-checklist-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ─── CTA ─── */
.proc-cta {
    text-align: center;
    margin-top: 0;
}

.proc-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    border-radius: 50px;
    background: linear-gradient(135deg, #c9a84c, #d4b566);
    color: white;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
    transition: box-shadow 0.3s, transform 0.3s;
}

.proc-cta-button:hover {
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}