:root {
    --primary: hsl(114, 38%, 25%); 
    --primary-light: hsl(114, 38%, 35%);
    --accent: hsl(45, 93%, 47%); 
    --accent-red: hsl(0, 75%, 50%); 
    --text-main: hsl(0, 0%, 15%);
    --text-muted: hsl(0, 0%, 40%);
    --bg-page: hsl(120, 20%, 98%);
    --bg-card: hsl(0, 0%, 100%);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utilities */
.text-gold { color: var(--accent) !important; }
.text-red { color: var(--accent-red) !important; }
.text-green { color: var(--primary); }
.underline { text-decoration: underline; font-weight: bold; }
.highlight-gold { 
    background: linear-gradient(transparent 60%, hsla(45, 93%, 47%, 0.3) 60%); 
    font-weight: 700;
}
.text-center { text-align: center; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 50px; }
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 50px; }
.relative-z { position: relative; z-index: 10; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    line-height: 1.4;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo .logo-icon { font-size: 2rem; }

.header-nav {
    display: block;
}
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.header-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.header-nav a:hover {
    color: var(--accent);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pc-only { display: flex; }

.tel-number {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-main);
}
.tel-number .icon { color: var(--accent-red); }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--text-main);
    background: var(--accent);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}
.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Drawer Nav */
.drawer-nav {
    position: fixed;
    top: 0; 
    right: -100%;
    width: 90%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    z-index: 5000; /* Ensure it stays above everything */
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}
.drawer-nav.active { right: 0; }
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.drawer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.drawer-close {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: background 0.3s;
}
.drawer-close:hover {
    background: #e9ecef;
}
.drawer-nav ul { list-style: none; }
.drawer-nav li { margin-bottom: 20px; }
.drawer-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}
.drawer-cta {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.drawer-cta p { font-size: 0.9rem; margin-bottom: 10px; color: var(--text-muted); }

.drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px); /* Premium blur effect */
    z-index: 4999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }
.no-scroll { overflow: hidden; }

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-8px) scale(1.1); background: var(--primary-light); }
.back-to-top .arrow { font-size: 1.5rem; font-weight: bold; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.85), rgba(20,40,20,0.6));
    z-index: -1;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.badges {
    margin-bottom: 25px;
}

.badge {
    background: #fff;
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 10px;
    display: inline-block;
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
}
.badge:nth-child(2) {
    transform: rotate(3deg);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Anxiety Section */
.anxiety-section {
    padding: 100px 0;
    background: #fff;
}

.anxiety-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.anxiety-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    flex: 1;
    border-top: 8px solid var(--primary);
}

.anxiety-card.type-future {
    border-top-color: #5c9e89;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #eee;
}

.card-header .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.anxiety-list {
    list-style: none;
}

.anxiety-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.anxiety-list .check {
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background: rgba(243, 156, 18, 0.2);
    border-radius: 4px;
}
.anxiety-list .check::after {
    content: '✓';
    position: absolute;
    top: -2px; left: 6px;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    position: relative;
    color: #fff;
}

.solution-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.solution-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(45, 90, 39, 0.95);
    z-index: 2;
}

.solution-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
    font-weight: 900;
}

.dark-glass {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto 50px;
}

.outline-list {
    list-style: none;
}
.outline-list li {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}
.outline-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.concept-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.concept-block {
    display: flex;
    align-items: stretch; /* Stretch to keep image and text heights equal */
    background: #fff;
    color: var(--text-main);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.concept-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.concept-block.reverse {
    flex-direction: row-reverse;
}

.concept-visual {
    flex: 4; /* 40% width */
    min-height: 320px;
    overflow: hidden;
    position: relative;
}
.concept-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zoom in slightly to hide black bars on some AI-generated illustrations */
    transform: scale(1.12); 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.concept-block:hover .concept-visual img {
    transform: scale(1.2);
}

.concept-text {
    flex: 6; /* 60% width */
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concept-h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 5px;
}

.concept-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.solution-conclusion-box {
    text-align: center;
    background: #fff;
    color: var(--text-main);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--accent);
    max-width: 900px;
    margin: 0 auto;
}
.solution-conclusion {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 500;
}
.solution-conclusion strong {
    font-size: 1.5rem;
}

/* Flowchart Section (Ultra-Simplified Step-by-Step) */
.flow-step-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.title-with-badge {
    text-align: center;
    margin-bottom: 60px;
}
.top-badge {
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.stepped-flow-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.flow-step-item {
    display: flex;
    gap: 40px;
    position: relative;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.step-circle.highlight {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.step-circle.alternate {
    background: #5c9e89;
    border-color: #5c9e89;
    color: #fff;
}

.step-line {
    width: 4px;
    flex-grow: 1;
    background: #eee;
    margin: 10px 0;
}

.step-content-box {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 50px;
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s;
}
.step-content-box:hover {
    transform: translateX(10px);
}

.step-content-box.highlight {
    border: 3px solid var(--accent);
    background: #fffef0;
}

.recommend-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.step-title-bold {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
}
.step-title-bold .sub-text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 5px;
}

.step-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.step-tags-modern {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.step-tags-modern span {
    background: #f0f4f0;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.step-btn-notice {
    margin-top: 20px;
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.story-path-preview {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #ddd;
}
.path-label {
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.path-grid a {
    background: #5c9e89;
    color: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}
.path-grid a:hover {
    background: #fff;
    color: #5c9e89;
    border-color: #5c9e89;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.flow-summary-box {
    margin-top: 20px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: var(--shadow-lg);
}

/* Story Section Rich */
.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-main-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}
.story-sub-banner {
    font-size: 1.5rem;
    text-align: center;
    background: #333;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 0 20px 20px 0;
    border-left: 10px solid var(--accent);
    margin-bottom: 50px;
}

.story-grid-rich {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.rich-story-card {
    background: var(--bg-page);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.story-header {
    padding: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.story-header.solid-green { background: #5c9e89; color: #fff;}

.story-lead {
    padding: 20px 20px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}
.rich-story-card hr { margin: 15px 20px; border: 0; border-top: 1px dashed #ccc;}
.story-body {
    padding: 0 20px 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.alert-box {
    margin-top: 50px;
    background: #f8f9fa;
    border-left: 5px solid var(--accent-red);
    padding: 30px;
    font-size: 1.1rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--bg-page);
}

.pre-title { font-weight: bold; font-size: 1.2rem; }
.massive-title { font-size: 3rem; font-weight: 900; line-height: 1.3; }
.title-divider { width: 100%; height: 2px; border-top: 4px dashed #ccc; margin: 30px 0;}
.why-lead-bold { font-size: 1.3rem; font-weight: bold; line-height: 1.6;}
.why-lead-bold.massive { font-size: 1.6rem; color: var(--primary); margin-top: 20px;}

.pain-points-card {
    display: flex;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 60px;
    align-items: stretch;
}
.pain-left {
    background: #555;
    color: #fff;
    padding: 80px 40px;
    flex: 0 0 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5;
}
.text-huge { 
    font-size: 8rem; 
    font-weight: 900; 
    line-height: 1;
    margin: 15px 0;
    display: block;
    color: var(--accent);
}
.pain-right {
    flex: 1;
    padding: 80px 100px;
    display: flex;
    align-items: center;
}
.pain-right ul { list-style: none; width: 100%; }
.pain-right li { 
    font-size: 1.2rem; 
    margin-bottom: 25px; 
    position: relative; 
    padding-left: 30px; 
    font-weight: 500;
    line-height: 1.5;
}
.pain-right li:last-child { margin-bottom: 0; }
.pain-right li::before { 
    content: '・'; 
    position: absolute; 
    left: 0; 
    color: var(--accent);
    font-weight: 900;
}

.white-text-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.example-box {
    background: #fff;
    border-radius: 60px;
    padding: 50px 80px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin: 60px 0;
}
.example-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--primary);
}
.chat-bubble {
    width: 130px; 
    height: 130px;
    background: #fff;
    border: 3px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    line-height: 1.3;
}
.chat-bubble:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.bubble-row {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 40px 0;
}
.example-result { 
    font-size: 1.6rem; 
    font-weight: 900; 
    margin-top: 40px;
    line-height: 1.5;
}

.comparison-table-wrap {
    margin: 60px -20px 0; /* Bleed out on mobile */
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-table {
    width: 100%;
    min-width: 800px; /* Prevent squashing */
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}
.comparison-table th, .comparison-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}
.comparison-table th { 
    background: var(--primary); 
    color: #fff; 
    font-size: 1rem;
    font-weight: 700;
}
.comparison-table th:first-child, .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    background: #fdfdfd;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    min-width: 160px;
    font-weight: 900;
}
.comparison-table th:first-child {
    background: var(--primary);
    z-index: 6;
}
.highlight-row { background: #fffbe6; }
.highlight-row td:first-child { background: #fffbe6 !important; }
.vendor-name { font-weight: 900; }
.vendor-name.text-red { color: var(--accent-red); font-size: 1.1rem;}

.table-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.second-opinion { font-weight: 900; color: var(--accent-red); border: 2px solid var(--accent-red); padding: 5px 15px; border-radius: 4px;}

/* Company Section */
.company-section {
    padding: 100px 0;
    background: #fff;
}
.company-title { font-size: 2.2rem; text-align: center; margin-bottom: 60px; line-height: 1.4; font-weight: 900;}
.about-title { font-size: 1.8rem; border-left: 10px solid var(--accent); padding-left: 20px; margin-bottom: 40px; color: var(--primary); font-weight: 900;}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2x2 Layout for better balance */
    gap: 30px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}
.about-card {
    background: var(--bg-page);
    padding: 30px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--primary);
}
.about-card h4 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary);}
.partner-list { list-style: none; font-size: 0.9rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5px;}

.final-cta-box {
    display: flex;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
    overflow: hidden;
}
.company-logo-area {
    flex: 1;
    background: #f8f9fa;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-icon-large { font-size: 4rem; }
.company-name-large { font-size: 2rem; color: var(--primary); margin-bottom: 5px; font-weight: 900;}
.license { font-size: 0.9rem; color: var(--text-muted); font-weight: bold; margin-bottom: 5px;}
.address { font-size: 0.9rem; color: var(--text-muted); }

.contact-area {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tel-display { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; color: var(--text-main);}
.tel-icon { color: var(--accent-red); }

.cta-button-massive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--accent-red);
    color: #fff;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}
.cta-button-massive:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4); }
.cta-icon { font-size: 2.5rem; }
.cta-sub { display: block; font-size: 1rem; opacity: 0.9; }
.cta-main { font-size: 1.8rem; font-weight: 900; }

.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Footer & Decor */
.visual-break { width: 100%; height: 120px; overflow: hidden; line-height: 0; background: #fff;}
.footer {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .menu-toggle { display: flex; }
    .header { padding: 10px 20px; }
}

@media (max-width: 900px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.4rem; }
    
    .concept-block { flex-direction: column !important; }
    .concept-visual { 
        flex: none;
        height: 240px; 
        max-height: 240px;
        min-height: auto !important; /* Reset desktop min-height to remove black gaps */
        width: 100%;
    }
    .concept-text {
        flex: none;
        padding: 30px 25px;
    }
    .concept-visual img {
        transform: scale(1.15); /* Slightly more zoom on mobile to ensure coverage */
    }
    
    .pain-points-card { flex-direction: column; }
    .pain-left, .pain-right { padding: 30px; }
    
    .bubble-row { flex-wrap: wrap; gap: 10px; }
    .chat-bubble { width: 90px; height: 90px; font-size: 1rem; }
    
    .table-note { flex-direction: column; text-align: center; gap: 20px; }
    
    .final-cta-box { flex-direction: column; }
    .company-logo-area { flex-direction: column; text-align: center; padding: 30px;}
    .contact-area { padding: 30px; }
    .tel-display { font-size: 2rem; }
    .cta-button-massive { padding: 20px 40px; }
    .cta-main { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .anxiety-grid { flex-direction: column; }
    .pc-only { display: none; }
    
    .flow-step-item { gap: 15px; }
    .step-visual { width: 40px; }
    .step-circle { width: 40px; height: 40px; font-size: 1rem; border-width: 2px; }
    .step-content-box { padding: 25px; margin-bottom: 30px; }
    .step-title-bold { font-size: 1.3rem; }
    .step-desc { font-size: 0.95rem; }
    .path-grid { grid-template-columns: repeat(2, 1fr); }
    .pain-points-card { flex-direction: column; }
    .pain-left { flex: none; width: 100%; padding: 50px 30px; }
    .pain-right { padding: 40px 20px; }
    
    .hero { min-height: 500px; height: auto; padding: 150px 0 100px; }
    .hero-title { font-size: 2.5rem; }
    
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .massive-title { font-size: 1.8rem; }
    .tel-display { font-size: 1.5rem; }
    .cta-button-massive { width: 100%; border-radius: 12px; }
    .final-circle { padding: 20px; width: 100%; border-radius: 20px; }
}
