/* ==========================================
   マテリアルプラス TOPページ CSS
   テーマ: 大阪 ホームページ 相談
   デザイン: ティールグリーン・波形装飾・LP風
   ========================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    line-height: 1.9;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }

/* ---------- Colors ---------- */
:root {
    --teal: #00a5a5;
    --teal-dark: #008b8b;
    --teal-light: #e6f7f7;
    --teal-bg: #00a5a5;
    --yellow: #f5c842;
    --yellow-light: #fef9e7;
    --orange: #e67e22;
    --text: #333;
    --text-sub: #666;
    --text-light: #999;
    --white: #ffffff;
    --bg-gray: #f8fafa;
    --shadow: 0 4px 24px rgba(0, 165, 165, 0.08);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: var(--teal);
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 8px;
    letter-spacing: -0.02em;
}

.logo-icon span { color: var(--yellow); font-size: 0.9rem; }

.logo-icon--white {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.logo-main {
    font-weight: 700;
    font-size: 1rem;
    color: var(--teal-dark);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    background: var(--teal);
    padding: 9px 22px;
    border-radius: 50px;
    transition: all 0.3s;
}

.header-cta-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,165,165,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
    display: none;
    position: fixed;
    top: 68px; left: 0; width: 100%;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 24px 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.nav-mobile.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nav-mobile a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-sub);
    padding: 8px 16px;
}

.nav-cta {
    display: inline-block !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    background: var(--teal);
    padding: 10px 28px !important;
    border-radius: 50px;
    margin-top: 8px;
}

/* ---------- FV ---------- */
.fv {
    position: relative;
    padding-top: 68px;
    background: linear-gradient(135deg, var(--teal-light) 0%, #f0fafa 40%, var(--white) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.fv-deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.fv-deco-circle--1 {
    width: 400px; height: 400px;
    background: rgba(0, 165, 165, 0.07);
    top: -80px; right: -100px;
}

.fv-deco-circle--2 {
    width: 260px; height: 260px;
    background: rgba(0, 165, 165, 0.05);
    bottom: 40px; left: -80px;
}

.fv-deco-dot {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.2;
    z-index: 0;
}

.fv-deco-dot--1 { top: 25%; right: 15%; width: 16px; height: 16px; opacity: 0.15; }
.fv-deco-dot--2 { top: 60%; left: 8%; width: 10px; height: 10px; opacity: 0.2; }
.fv-deco-dot--3 { bottom: 20%; right: 30%; width: 8px; height: 8px; opacity: 0.25; }

.fv-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fv-h1 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--teal-dark);
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    line-height: 1.7;
}

.fv-main-copy {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.fv-copy-line {
    display: block;
}

.marker {
    background: linear-gradient(transparent 50%, rgba(245, 200, 66, 0.4) 50%);
    padding: 0 4px;
}

.fv-sub-copy {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 2;
    margin-bottom: 24px;
}

.fv-sub-copy strong {
    color: var(--teal-dark);
    font-weight: 700;
}

.fv-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.fv-badge {
    font-size: 0.78rem;
    color: var(--teal-dark);
    background: var(--white);
    border: 1px solid rgba(0,165,165,0.2);
    padding: 5px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fv-badge i { font-size: 0.72rem; color: var(--teal); }

.fv-image {
    position: relative;
}

.fv-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0,165,165,0.12);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    justify-content: center;
    font-family: inherit;
}

.btn-cta {
    color: var(--white);
    background: var(--teal);
    padding: 16px 36px;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 165, 165, 0.3);
    animation: pulse-teal 2.5s ease-in-out infinite;
}

.btn-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 165, 165, 0.4);
}

.btn-cta strong {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-cta--large {
    padding: 20px 48px;
    font-size: 1.05rem;
}

@keyframes pulse-teal {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 165, 165, 0.3); }
    50% { box-shadow: 0 4px 32px rgba(0, 165, 165, 0.5); }
}

/* ---------- Wave ---------- */
.wave {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.wave--fv {
    bottom: 0;
}

.wave--top {
    top: 0;
}

.wave--bottom {
    bottom: 0;
}

/* ---------- Section Common ---------- */
.section {
    position: relative;
    padding: 100px 0;
}

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 56px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.section-title--white {
    color: var(--white);
}

.text-teal {
    color: var(--teal);
}

/* ---------- About Banner ---------- */
.section-about-banner {
    padding: 0;
    background: var(--white);
}

.about-banner {
    max-width: 820px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 165, 165, 0.12);
    padding: 44px 48px;
    display: flex;
    align-items: center;
    gap: 36px;
    border: 2px solid rgba(0, 165, 165, 0.12);
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--yellow), var(--teal));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-banner-text {
    flex: 1;
}

.about-banner-heading {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.about-banner-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
}

.about-banner-dot {
    display: inline-block;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
}

.about-banner-list li strong {
    color: var(--teal-dark);
    font-weight: 800;
}

.about-banner-closing {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    padding-left: 22px;
    line-height: 1.7;
}

.about-banner-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-icon i {
    font-size: 2.4rem;
    color: var(--teal);
}

@media (max-width: 768px) {
    .about-banner {
        margin-top: -28px;
        padding: 32px 24px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-banner-heading {
        font-size: 1.2rem;
    }

    .about-banner-list li {
        font-size: 0.95rem;
        justify-content: center;
    }

    .about-banner-closing {
        padding-left: 0;
        text-align: center;
    }

    .about-banner-icon {
        width: 72px;
        height: 72px;
        order: -1;
    }

    .about-banner-icon i {
        font-size: 1.8rem;
    }
}

/* ---------- Intro ---------- */
.section-intro {
    padding: 56px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2;
    color: var(--text);
}

/* ---------- Worries ---------- */
.section-worries {
    background: var(--teal-bg);
    padding: 140px 0 160px;
}

.worries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}

.worry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 20px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(24px);
}

.worry-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.worry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* 5枚を3-2配置 */
.worry-card--4,
.worry-card--5 {
    grid-column: span 1;
}

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

.worry-card--1 { grid-column: 1 / 3; }
.worry-card--2 { grid-column: 3 / 5; }
.worry-card--3 { grid-column: 5 / 7; }
.worry-card--4 { grid-column: 1 / 4; }
.worry-card--5 { grid-column: 4 / 7; }

.worry-num {
    position: absolute;
    top: 8px; right: 14px;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--teal);
    opacity: 0.1;
    line-height: 1;
}

.worry-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worry-icon i {
    font-size: 1.4rem;
    color: var(--teal);
}

.worry-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
}

.worry-text strong {
    color: var(--teal-dark);
}

.worries-note {
    text-align: center;
    margin-top: 36px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
}

.worries-note i { margin-right: 6px; }

/* ---------- Stance ---------- */
.section-stance {
    background: var(--white);
    padding: 100px 0;
}

.stance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.stance-lead {
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 20px;
}

.stance-mid {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.stance-list { margin-bottom: 16px; }

.stance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    line-height: 2.2;
}

.stance-bullet {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.stance-list strong { color: var(--teal-dark); }

.stance-highlight {
    margin-top: 28px;
    padding: 24px;
    background: var(--yellow-light);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 2px solid var(--yellow);
}

.stance-highlight-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.stance-highlight p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

.stance-highlight strong {
    color: var(--orange);
    font-weight: 800;
    font-size: 1.1rem;
}

.stance-image {
    position: relative;
}

.stance-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 1;
}

.stance-image-deco {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px; height: 120px;
    background: var(--teal);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

/* ---------- Service (Merit blocks) ---------- */
.section-service {
    background: var(--teal-bg);
    padding: 140px 0 160px;
}

.merit-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.merit-block--right {
    direction: ltr;
}

.merit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.merit-num {
    position: absolute;
    top: -8px; right: 16px;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--teal);
    opacity: 0.06;
    line-height: 1;
}

.merit-label {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    margin-right: 8px;
    letter-spacing: 0.08em;
    vertical-align: middle;
}

.merit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.merit-desc {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 16px;
    line-height: 1.8;
}

.merit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 6px 0;
    color: var(--text);
}

.merit-list li i {
    color: var(--teal);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.merit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.merit-icon-wrap {
    width: 140px; height: 140px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.2);
}

.merit-icon-wrap i {
    font-size: 3.5rem;
    color: var(--white);
    opacity: 0.8;
}

.merit-icon-wrap--alt {
    background: rgba(245, 200, 66, 0.15);
    border-color: rgba(245, 200, 66, 0.3);
}

.merit-icon-wrap--alt i {
    color: var(--yellow);
}

.service-note {
    text-align: center;
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
}

.service-note i { margin-right: 6px; }

/* ---------- Promise / Difference ---------- */
.section-promise {
    background: var(--white);
    padding: 100px 0;
}

.compare-wrapper {
    max-width: 740px;
    margin: 0 auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.compare-table th,
.compare-table td {
    padding: 18px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.compare-th-label {
    background: var(--bg-gray);
    width: 100px;
}

.compare-th-other {
    background: var(--bg-gray);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.82rem !important;
}

.compare-th-us {
    background: var(--teal);
    color: var(--white);
    font-weight: 700;
    font-size: 0.82rem !important;
}

.compare-logo {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.compare-label {
    background: var(--bg-gray);
    font-weight: 600;
    font-size: 0.82rem !important;
    text-align: left !important;
    color: var(--text-sub);
}

.compare-other {
    color: var(--text-light);
}

.compare-us {
    background: var(--teal-light) !important;
    color: var(--teal-dark);
    font-weight: 600;
}

.compare-us i {
    color: var(--teal);
    margin-right: 4px;
}

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

/* ---------- Cases ---------- */
.section-cases {
    background: var(--teal-bg);
    padding: 140px 0 160px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(24px);
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.case-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.case-avatar {
    width: 48px; height: 48px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-avatar i { font-size: 1.2rem; color: var(--teal); }

.case-person h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.case-speech {
    background: var(--teal-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    position: relative;
    margin-bottom: 4px;
}

.case-speech p {
    font-size: 0.9rem;
    color: var(--teal-dark);
    font-weight: 500;
    line-height: 1.7;
}

.case-speech::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 28px;
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--teal-light);
}

.case-arrow {
    text-align: center;
    padding: 8px 0;
    color: var(--teal);
    font-size: 1.2rem;
    opacity: 0.4;
}

.case-result ul { display: flex; flex-direction: column; gap: 8px; }

.case-result li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.case-result li i {
    color: var(--teal);
    margin-top: 4px;
    flex-shrink: 0;
}

.case-result li strong { color: var(--teal-dark); }

/* ---------- Flow ---------- */
.section-flow {
    background: var(--white);
    padding: 100px 0;
}

.flow-timeline {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), rgba(0,165,165,0.15));
}

.flow-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.flow-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-item:last-child { margin-bottom: 0; }

.flow-num {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0,165,165,0.25);
    position: relative;
    z-index: 1;
}

.flow-content h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
    margin-bottom: 2px;
}

.flow-content p {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.7;
}

.flow-safety {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 14px 28px;
    background: var(--teal-light);
    border-radius: 50px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.flow-safety i { color: var(--teal); font-size: 1.1rem; }

.flow-safety p {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--teal-dark);
}

/* ---------- CTA ---------- */
.section-cta {
    background: linear-gradient(135deg, #f0fafa, var(--teal-light));
    padding: 80px 0;
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    box-shadow: 0 8px 48px rgba(0,165,165,0.1);
    border: 2px solid rgba(0,165,165,0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--yellow), var(--teal));
}

.cta-icon {
    width: 64px; height: 64px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.cta-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 2.2;
    margin-bottom: 32px;
}

.cta-text strong {
    color: var(--teal-dark);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 28px;
    text-align: center;
}

.footer-message {
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-company {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
}

/* ---------- Page Top ---------- */
.pagetop {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,165,165,0.3);
    z-index: 999;
}

.pagetop.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.pagetop:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.fv-text > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fv-h1 { animation-delay: 0.2s; }
.fv-main-copy { animation-delay: 0.4s; }
.fv-sub-copy { animation-delay: 0.6s; }
.fv-badges { animation-delay: 0.8s; }
.fv-text > .btn { animation-delay: 1.0s; }

.fv-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .header-cta-btn { display: none; }
    .hamburger { display: flex; }
    .nav-mobile { display: block; }
}

@media (max-width: 768px) {
    .sp-only { display: inline; }

    .section { padding: 80px 0; }
    .section-title { font-size: 1.4rem; margin-bottom: 40px; }

    /* FV */
    .fv { min-height: auto; }
    .fv-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 80px;
        gap: 32px;
    }
    .fv-main-copy { font-size: 1.7rem; }
    .fv-h1 { font-size: 0.85rem; }
    .fv-image { order: -1; max-width: 360px; margin: 0 auto; }
    .fv-deco-circle--1 { width: 200px; height: 200px; top: -40px; right: -60px; }
    .fv-deco-circle--2 { width: 140px; height: 140px; }

    /* Intro */
    .intro-text { font-size: 1.1rem; }

    /* Worries */
    .section-worries { padding: 120px 0 140px; }
    .worries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .worry-card--1,
    .worry-card--2,
    .worry-card--3,
    .worry-card--4,
    .worry-card--5 {
        grid-column: 1 / -1;
    }
    .worry-card { padding: 24px 20px 20px; }

    /* Stance */
    .stance-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .stance-image { order: -1; max-width: 400px; margin: 0 auto; }

    /* Service */
    .section-service { padding: 120px 0 140px; }
    .merit-block {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .merit-visual { order: -1; }
    .merit-icon-wrap { width: 100px; height: 100px; }
    .merit-icon-wrap i { font-size: 2.5rem; }

    /* Compare */
    .compare-table th,
    .compare-table td { padding: 14px 12px; font-size: 0.82rem; }

    /* Cases */
    .section-cases { padding: 120px 0 140px; }
    .cases-grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta-box { padding: 40px 24px; }
    .cta-heading { font-size: 1.4rem; }
    .btn-cta--large { padding: 16px 28px; font-size: 0.95rem; }

    /* Wave */
    .wave svg { height: 50px; }
}

@media (max-width: 480px) {
    .fv-main-copy { font-size: 1.4rem; }
    .fv-badges { flex-direction: column; }
    .btn-cta { padding: 14px 24px; font-size: 0.88rem; }
    .btn-cta--large { padding: 14px 24px; font-size: 0.88rem; }
    .compare-table th, .compare-table td { padding: 12px 8px; font-size: 0.76rem; }
    .intro-text { font-size: 1rem; }
}

/* ---------- Print ---------- */
@media print {
    .header, .pagetop, .hamburger, .wave { display: none !important; }
    .fv { padding-top: 0; min-height: auto; }
    .section { padding: 40px 0; break-inside: avoid; }
    .section-worries, .section-service, .section-cases { background: #f5f5f5 !important; }
    .section-title--white { color: #333 !important; }
}