/* ==========================================================================
   Design Tokens & Base Styles - Yokohama Kotsu Recruit LP
   ========================================================================== */

/* Handwritten Font */
@font-face {
    font-family: 'AoharuMarker';
    src: url('../fonts/aoharu-marker-mini.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Variables)
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-primary: #046bd2;
    --color-primary-dark: #045cb4;
    --color-primary-light: #e8f2fc;

    --color-heading: #1e293b;
    --color-text: #334155;
    --color-text-light: #64748b;

    --color-bg-white: #ffffff;
    --color-bg-light: #f5f7fa;
    --color-bg-dark: #1e293b;

    --color-accent: #f59e0b;
    --color-accent-red: #e74c3c;

    --color-border: #e2e8f0;

    /* Typography (PC Base) - High Jump Rate Design */
    --fz-hero: 56px;
    --fz-section-heading: 40px;
    --fz-strength-number: 72px;
    --fz-strength-heading: 28px;
    --fz-number-emphasis: 60px;
    --fz-lead: 18px;
    --fz-body: 16px;
    --fz-small: 13px;
    --fz-cta: 20px;

    /* Line Heights */
    --lh-tight: 1.2;
    --lh-heading: 1.3;
    --lh-body: 2.0;

    /* Letter Spacing */
    --ls-base: 0.2px;
    --ls-heading: 0.02em;

    /* Spacing */
    --space-section-y: 100px;
    --container-max-width: 1100px;
    --container-px: 40px;
    --heading-mb: 48px;
    --paragraph-mb: 20px;
    --card-padding: 32px;

    /* Shadows & Radius */
    --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);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Z-Index Layers */
    --z-bg: 0;
    --z-pattern: 1;
    --z-shape: 2;
    --z-content: 10;
    --z-header: 100;
    --z-floating: 200;
    --z-modal: 1000;
}

/* Responsive Typography & Spacing (Mobile) < 545px */
@media (max-width: 544px) {
    :root {
        --fz-hero: 8.5vw;
        --fz-section-heading: 6.9vw;
        --fz-strength-number: 48px;
        --fz-strength-heading: 5.8vw;
        --fz-number-emphasis: 40px;
        --fz-lead: 4.2vw;
        --fz-body: 3.8vw;
        --fz-small: 12px;
        --fz-cta: 18px;

        --space-section-y: 60px;
        --container-px: 20px;
        --heading-mb: 32px;
        --card-padding: 20px;
    }
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg-white);
    line-height: var(--lh-body);
    letter-spacing: var(--ls-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* --------------------------------------------------------------------------
   3. Typography Utilities & Rules
   -------------------------------------------------------------------------- */

/* Headline Styles */
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    color: var(--color-heading);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-heading);
    font-weight: 900;
    /* Default to Black as per spec */

    /* Editorial rules: Prevent orphans/widows on headings */
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
    text-align: center;
}

/* Text Wrapping Control */
.br-sp {
    display: none;
}

.br-pc {
    display: inline;
}

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

    .br-pc {
        display: none;
    }
}

/* Font Weights */
.fw-regular {
    font-weight: 400;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

/* Emphasized Number (Scale up impact for pricing/stats) */
.number-emphasis {
    font-size: var(--fz-number-emphasis);
    font-weight: 700;
    color: var(--color-accent-red);
    line-height: var(--lh-tight);
}

/* Text Colors */
.text-primary {
    color: var(--color-primary);
}

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

.text-white {
    color: var(--color-bg-white);
}

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

/* --------------------------------------------------------------------------
   4. Layout & Grid System
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.section {
    padding-top: var(--space-section-y);
    padding-bottom: var(--space-section-y);
    position: relative;
    overflow: hidden;
    /* For background patterns */
}

/* Background Color Modifiers */
.bg-white {
    background-color: var(--color-bg-white);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-bg-white);
}

/* Grid Utilities (Desktop First, Mobile stacking) */
.grid {
    display: grid;
}

.gap-sm {
    gap: 16px;
}

.gap-md {
    gap: 24px;
}

.gap-lg {
    gap: 40px;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 921px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 544px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}


/* --------------------------------------------------------------------------
   5. Components
   -------------------------------------------------------------------------- */

/* Cards (Layer 4) */
.card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--card-padding);
    position: relative;
    z-index: var(--z-content);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* No left-border accents allowed as per absolute rules. 
   Use shadow, radius, or background diff instead */

/* Buttons (CTA) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: var(--fz-cta);
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    line-height: var(--lh-tight);
    text-align: center;
}

.btn-accent {
    background-color: var(--color-accent);
    color: #1e293b;
    /* Dark text for contrast on yellow/orange */
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #1e293b;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.badge-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

/* --------------------------------------------------------------------------
   6. Multi-Layer Background Decorators (Layer 2 & 3)
   -------------------------------------------------------------------------- */

/* Abstract base for pattern layers */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-pattern);
    pointer-events: none;
}

/* Pattern: Dots */
.pattern-dots {
    background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
}

/* Pattern: Grid Lines */
.pattern-grid {
    background-image: linear-gradient(var(--color-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-primary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.03;
}

/* Shape Decorator: Large Circle */
.shape-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.05;
    z-index: var(--z-shape);
    pointer-events: none;
}

.shape-circle.top-left {
    top: -100px;
    left: -100px;
}

.shape-circle.bottom-right {
    bottom: -100px;
    right: -100px;
}

/* --------------------------------------------------------------------------
   7. Specific Element Modifiers (Section Headings & Transitions)
   -------------------------------------------------------------------------- */

/* Heading Pattern A: Top and Bottom Line */
.heading-style-lines {
    display: inline-block;
    position: relative;
    font-size: var(--fz-section-heading);
    padding: 16px 0;
    margin-bottom: var(--heading-mb);
}

.heading-style-lines::before,
.heading-style-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.heading-style-lines::before {
    top: 0;
}

.heading-style-lines::after {
    bottom: 0;
}

/* Heading Pattern B: Background Box */
.heading-style-box {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 16px 48px;
    font-size: var(--fz-section-heading);
    margin-bottom: var(--heading-mb);
}

/* Section Dividers (SVG Waves) - Utility wrapper */
.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: var(--z-shape);
}

.section-divider.top {
    top: 0;
    transform: translateY(-99%);
}

.section-divider.bottom {
    bottom: 0;
    transform: translateY(99%) rotate(180deg);
}

/* Smooth Transition Copy Between Sections */
.transition-copy {
    display: block;
    text-align: center;
    font-size: var(--fz-body);
    color: var(--color-text-light);
    margin-top: 40px;
    margin-bottom: -20px;
    /* Pull up next section visually */
}

.transition-copy.primary-color {
    color: var(--color-primary);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   8. Hero Section (Premium Left-Aligned Design)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: max(100vh, 600px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* keep container centered */
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 120px;
    /* Room for bottom wave */
    overflow: hidden;
    color: var(--color-bg-white);
    /* text-align is moved to .hero-content for left-aligned */
}

/* Background Layers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-bg);
    background-color: var(--color-primary-dark);
}

.hero-bg__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 115%;
    /* 画像を意図的に15%幅広にして右へはみ出させる */
    height: 100%;
    background-size: cover;
    /* 画像の右端（顔側）を基準に固定し、リピートを防止 */
    background-position: right center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.06);
    }
}

.hero-bg__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* グラデーションの中心を上寄り（20% 35%）にし、横幅50%・縦幅55%の楕円に絞ることで、左下（手・ハンドル）に色がかからないようにする */
    background: radial-gradient(ellipse 50% 60% at 20% 35%, rgba(4, 50, 110, 0.85) 0%, rgba(4, 92, 180, 0.5) 60%, transparent 100%),
        linear-gradient(to bottom, transparent 80%, rgba(30, 41, 59, 0.4) 100%);
}

.hero-bg__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    /* 右側の顔や左下の手の周りにドットが被らないよう、文字周辺だけドットを残すマスク処理 */
    -webkit-mask-image: radial-gradient(ellipse 50% 60% at 20% 35%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 50% 60% at 20% 35%, black 40%, transparent 100%);
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: var(--z-content);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 文字要素全体を左寄せに */
    text-align: left;
    /* 文字要素全体を左寄せに */
    max-width: 1400px;
    /* 超大型モニタでも文字が限界まで左に来るように調整 */
    width: 100%;
    padding: 0 4vw;
    /* 画面端から安全な距離を保ちつつ、なるべく左へ */
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top Tag (Glassmorphism Pill) */
.hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 24px 6px 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-bg-white);
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-tag .badge {
    background: var(--color-accent-red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 16px;
    color: #fff;
}

/* Secondary Label */
.hero-label {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 0px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

/* Huge Number Impact */
.hero-number {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    /* 左寄せ */
}

.hero-number .num {
    font-size: 180px;
    /* Massive impact */
    font-weight: 900;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #FFD700 0%, #F59E0B 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    letter-spacing: -0.05em;
}

.hero-number .unit {
    font-size: 56px;
    font-weight: 900;
    margin-left: 8px;
    color: var(--color-accent);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-number .sub-unit {
    font-size: 32px;
    font-weight: 700;
    margin-left: 4px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Tagline */
.hero-tagline {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 56px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

/* CTA Area */
.hero-cta-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 左寄せ */
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #F59E0B 0%, #D97706 100%);
    color: #fff;
    padding: 24px 72px;
    border-radius: 100px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.hero-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(245, 158, 11, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero-btn .arrow {
    margin-left: 20px;
    font-size: 24px;
}

.hero-cta-sub {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-cta-sub::before,
.hero-cta-sub::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* Bottom Wave */
.hero-bottom-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: var(--z-shape);
    line-height: 0;
}

.hero-bottom-wave svg,
.hero-bottom-wave img {
    width: 100%;
    height: auto;
    min-height: 40px;
}

/* Mobile Adjustments */
@media (max-width: 544px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-bottom-wave img,
    .hero-bottom-wave svg {
        height: 30px;
        min-height: 0;
    }

    .hero-bg__image {
        /* スマホ向けに人物がよく見えるよう背景位置を調整 */
        background-position: 65% center;
    }

    .hero-bg__overlay {
        /* スマホ時は顔が縦半分に青くならないよう、自然な上下グラデーションに変更 */
        background: linear-gradient(to bottom, rgba(4, 50, 110, 0.75) 0%, rgba(4, 92, 180, 0.35) 45%, transparent 100%);
    }

    .hero-bg__pattern {
        /* モバイル時は縦割りのマスクを解除し、全体に薄くかける */
        -webkit-mask-image: none;
        mask-image: none;
        opacity: 0.3;
    }

    .hero-content {
        /* スマホ時はセンター寄せ */
        align-items: center;
        text-align: center;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 16px 6px 6px;
        margin-bottom: 24px;
    }

    .hero-tag .badge {
        padding: 4px 10px;
        font-size: 11px;
        margin-right: 8px;
    }

    .hero-label {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .hero-number {
        margin-bottom: 16px;
        justify-content: center;
        /* 数字もセンター寄せ */
    }

    .hero-number .num {
        font-size: 120px;
    }

    .hero-number .unit {
        font-size: 32px;
    }

    .hero-number .sub-unit {
        font-size: 22px;
    }

    .hero-tagline {
        /* 画面幅に合わせて自動縮小＆改行禁止で「社」の落ちを防止 */
        font-size: clamp(18px, 6vw, 24px);
        margin-bottom: 40px;
        white-space: nowrap;
    }

    .hero-cta-area {
        /* CTAエリアをセンター寄せ */
        align-items: center;
        width: 100%;
    }

    .hero-btn {
        font-size: 20px;
        padding: 20px 40px;
        width: 100%;
    }

    .hero-cta-sub {
        font-size: 13px;
        /* モバイル時はインラインで折り返さないようにする */
        white-space: nowrap;
        margin-top: 20px;
    }
}

/* --------------------------------------------------------------------------
   9. Reason Cards (3本柱)
   -------------------------------------------------------------------------- */
.reason-section {
    position: relative;
    background-color: #f8fafc;
    /* Very light gray to contrast with white cards */
    padding: 80px 0;
}

.reason-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin-bottom: 60px;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.reason-sub {
    font-size: 16px;
    color: #fff;
    background: var(--color-accent-red, #ff4b4b);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 16px;
}

.reason-hl-num {
    font-size: 80px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    color: transparent;
    background: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
    padding: 0 4px;
    display: inline-block;
    transform: translateY(8px);
}

.reason-hl-unit {
    font-size: 32px;
    font-weight: 800;
    color: #F59E0B;
}

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

.reason-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(4, 50, 110, 0.04);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffffff;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(4, 50, 110, 0.08);
}

.reason-num {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
    line-height: 1;
    display: inline-block;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.reason-card:nth-child(1) .reason-num {
    background-image: linear-gradient(135deg, #046bd2, #00d0a1);
}

.reason-card:nth-child(2) .reason-num {
    background-image: linear-gradient(135deg, #F59E0B, #FFD700);
}

.reason-card:nth-child(3) .reason-num {
    background-image: linear-gradient(135deg, #ff7373, #ff4b4b);
}

/* Inner Elements */
.reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.reason-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
    line-height: 1.5;
}

.reason-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 768px) {
    .reason-section {
        padding: 40px 0 20px;
    }

    .reason-grid {
        display: none;
    }

    .reason-section .section-title {
        font-size: 24px;
        margin-bottom: 0;
    }
}

/* --------------------------------------------------------------------------
   10. Strengths (5つの強み - パターンA: 共通の流れるレイアウト)
   -------------------------------------------------------------------------- */
.strength-flow {
    position: relative;
    background-color: #F8FAFC;
    padding: 160px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.strength-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(4, 107, 210, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(4, 107, 210, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
}

.strength-flow__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shapes/strength-flow-bg.svg');
    background-size: cover;
    background-position: center top;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.strength-flow__container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* 導入文 (The Structure of Success) */
.strength-lead-area {
    text-align: center;
    margin-bottom: 120px;
}

.strength-lead-en {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.strength-lead-ja {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-heading);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.strength-lead-line {
    width: 40px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* 強みブロック (Awwwards Style Layered) */
.strength-block {
    position: relative;
    margin-bottom: 180px;
    z-index: 2;
}

.strength-block:last-child {
    margin-bottom: 0;
}

/* L3: 背景の巨大ナンバリング装飾 */
.strength-bg-num {
    position: absolute;
    top: -60px;
    right: -20px;
    left: auto;
    font-size: 320px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 0.8;
    color: rgba(4, 107, 210, 0.06);
    z-index: -1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.strength-block.is-reversed .strength-bg-num {
    right: auto;
    left: -20px;
}

/* New Section Panels Layout for 02, 03, 04, 05 */
.section-strength-container .strength-bg-num {
    top: -20px;
    right: -40px;
    z-index: -1;
}

/* Even strength sections (like strength-3, strength-5 inside the layout that reverses them visually or logically) */
.section-strength:nth-of-type(even) .section-strength-container .strength-bg-num {
    right: auto;
    left: -40px;
}

/* グリッド構成: 非対称オーバーラップ */
.strength-content-grid {
    display: flex;
    align-items: center;
    position: relative;
}

.strength-block.is-reversed .strength-content-grid {
    flex-direction: row-reverse;
}

/* L4: 画像レイヤー */
.strength-image-wrapper {
    width: 65%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(4, 50, 110, 0.1);
    z-index: 1;
    transform: translateZ(0);
    /* Force Hardware Acceleration */
}

.strength-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    pointer-events: none;
}

.strength-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* L5: コンテンツレイヤー (Glassmorphism) */
.strength-block:hover .strength-image-wrapper img {
    transform: scale(1.03);
}

/* Play Button for Video Background */
.strength-video-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.strength-bg-video {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transform: scale(1.35);
    /* Crop black bars */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.strength-block:hover .strength-image-wrapper .strength-bg-video {
    transform: scale(1.39);
}

.video-banner-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(4, 107, 210, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-banner-label i {
    font-size: 16px;
}

.strength-video-link:hover .video-banner-label {
    transform: translateY(-4px);
    background: rgba(220, 38, 38, 0.95);
}

@media (max-width: 768px) {
    .video-banner-label {
        display: none;
    }
}

.play-button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.play-button-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    margin-left: 6px;
    /* center triangle visually */
}

.strength-video-link:hover .play-button-icon {
    /* Using bright red to mimic yt/accent color on hover */
    background: rgba(220, 38, 38, 0.85);
    transform: translate(-50%, -50%) scale(1.1);
}

/* L5: コンテンツレイヤー (Glassmorphism) */
.strength-text-box {
    width: 45%;
    margin-left: -10%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(4, 50, 110, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.strength-block.is-reversed .strength-text-box {
    margin-left: 0;
    margin-right: -10%;
}

.strength-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(4, 50, 110, 0.12);
}

/* バッジアクセント */
.strength-badge {
    margin-bottom: 24px;
}

.strength-badge span {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(4, 107, 210, 0.1);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 999px;
}

/* 見出し */
.strength-heading {
    font-size: 26px;
    font-weight: 900;
    color: var(--color-heading);
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* 本文 */
.strength-desc {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
}

/* 強み2: 特殊要素 (Stat Box) */
.strength-stat-box {
    margin-top: 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(4, 50, 110, 0.05);
    border: 1px solid rgba(4, 107, 210, 0.05);
}

.stat-highlight {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}

.stat-unit {
    font-size: 18px;
    font-weight: 700;
    margin-left: 4px;
}

.stat-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* 強み5: Quote Box */
.strength-quote-box {
    margin-top: 32px;
    position: relative;
    padding-left: 24px;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: 'Inter', serif;
    font-size: 80px;
    color: rgba(4, 107, 210, 0.1);
    line-height: 1;
    z-index: -1;
}

.quote-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.quote-author {
    font-size: 13px;
    color: var(--color-text-light);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {

    .strength-content-grid,
    .strength-block.is-reversed .strength-content-grid {
        flex-direction: column;
    }

    .strength-image-wrapper {
        width: 100%;
        margin-bottom: -40px;
        /* Overlap image with text box below */
    }

    .strength-text-box,
    .strength-block.is-reversed .strength-text-box {
        width: 90%;
        margin: 0 auto;
        padding: 40px 30px;
    }

    .strength-bg-num {
        font-size: 180px;
        top: -60px;
        right: 0;
        left: auto;
    }

    .strength-block.is-reversed .strength-bg-num {
        right: auto;
        left: -10px;
    }

    .section-strength-container .strength-bg-num {
        font-size: 160px;
        top: -30px;
        right: -10px;
    }

    .section-strength:nth-of-type(even) .section-strength-container .strength-bg-num {
        right: auto;
        left: -10px;
    }
}

@media (max-width: 768px) {
    .strength-flow {
        padding: 80px 0;
    }

    .strength-block {
        margin-bottom: 120px;
    }

    .strength-lead-ja {
        font-size: 22px;
    }

    .strength-heading {
        font-size: 20px;
    }

    .strength-text-box {
        width: 95%;
        padding: 30px 20px;
    }

    .strength-bg-num {
        font-size: 120px;
        top: -40px;
        right: 0;
    }

    .section-strength-container .strength-bg-num {
        font-size: 120px;
        top: -20px;
        right: -5px;
    }

    .section-strength:nth-of-type(even) .section-strength-container .strength-bg-num {
        right: auto;
        left: -5px;
    }
}

/* --------------------------------------------------------------------------
   Awwwards Premium Sections
   -------------------------------------------------------------------------- */
.awwwards-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* SECTION HEADER */
.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-sub-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-heading);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-lead {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 700;
    text-align: center;
}

.text-white {
    color: #ffffff !important;
}

/* 8. Manager System (Awwwards Premium Layout) */
.manager-premium {
    position: relative;
    background-color: #fafbfd;
    z-index: 1;
}

.manager-bg-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(4, 107, 210, 0.08) 3px, transparent 3px);
    background-size: 32px 32px;
    opacity: 1;
    z-index: -2;
}

/* 可愛いSVGラインアート用装飾コンテナ */
.manager-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.manager-decorations .decor-svg {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.6;
    transform-origin: center;
    animation: floatDecor 6s ease-in-out infinite alternate;
}

@keyframes floatDecor {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.decor-top-left {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decor-top-right {
    top: 15%;
    right: 5%;
    width: 100px !important;
    height: 100px !important;
    animation-delay: 1.5s;
}

.decor-bottom-left {
    bottom: 10%;
    left: 8%;
    width: 140px !important;
    height: 140px !important;
    animation-delay: 2.5s;
}

.decor-bottom-right {
    bottom: 15%;
    right: 6%;
    width: 90px !important;
    height: 90px !important;
    animation-delay: 0.5s;
}

@media (max-width: 992px) {
    .manager-decorations .decor-svg {
        opacity: 0.3;
    }
}

.manager-bg-circle {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 107, 210, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.manager-premium .section-title {
    position: relative;
    display: inline-block;
}

.line-decorated::before,
.line-decorated::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--color-heading);
    transform: translateY(-50%);
}

.line-decorated::before {
    left: -80px;
}

.line-decorated::after {
    right: -80px;
}

.manager-sub-copy {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 24px;
    letter-spacing: 0.05em;
}

.manager-split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.manager-image-col {
    width: 50%;
    position: relative;
}

.manager-text-col {
    width: 50%;
}

.manager-photo-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 40px 60px rgba(4, 50, 110, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.manager-photo-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 50px 70px rgba(4, 50, 110, 0.15);
}

.manager-photo-card img {
    border-radius: 12px;
    width: 100%;
    display: block;
}

.manager-desc {
    font-size: 16px;
    line-height: 2.0;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 28px 24px;
    border-radius: 16px;
}

.manager-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(4, 50, 110, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .manager-split-layout {
        flex-direction: column;
        gap: 60px;
    }

    .manager-image-col,
    .manager-text-col {
        width: 100%;
    }

    .manager-photo-card {
        transform: rotate(0deg);
    }

    .line-decorated::before {
        left: -40px;
        width: 30px;
    }

    .line-decorated::after {
        right: -40px;
        width: 30px;
    }
}

@media (max-width: 768px) {

    .line-decorated::before,
    .line-decorated::after {
        display: none;
    }

    .manager-sub-copy {
        font-size: 16px;
    }
}

/* CTA Premium */
.cta-premium {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #034f9a 100%);
    z-index: 1;
}

.cta-premium-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.cta-premium-container {
    position: relative;
    z-index: 2;
}

.cta-premium-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-premium-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 700;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--color-primary-dark);
    padding: 20px 48px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.btn-premium .arrow {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.btn-premium:hover .arrow {
    transform: translateX(4px);
}

/* 9. Salary Results (Premium Light Layout) */
.salary-results {
    background-color: #fafbfd;
    /* Very soft light grayish blue */
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    z-index: 1;
}

.salary-bg-fx {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.salary-bg-fx .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(4, 107, 210, 0.15);
    /* Soft primary */
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(245, 158, 11, 0.12);
    /* Soft accent */
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.salary-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(4, 107, 210, 0.05) 3px, transparent 3px);
    background-size: 32px 32px;
    opacity: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.text-accent {
    color: var(--color-accent) !important;
}

.salary-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 80px;
}

.salary-header-left {
    flex: 1;
}

.salary-lead-sub {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.8;
}

.salary-header-right {
    flex: 0 1 500px;
    /* More flexible */
}

.salary-note-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(4, 107, 210, 0.1);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.note-icon {
    font-size: 32px;
    line-height: 1;
}

.note-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.note-text-main {
    font-size: 20px;
    /* Slightly reduced to avoid overflow */
    font-weight: 800;
    color: var(--color-heading);
    margin: 0;
    line-height: 1.4;
}

.note-text-sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.note-text-sub strong {
    color: var(--color-accent);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.salary-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.1);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}

.salary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
}

.salary-cta-btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.salary-cta-btn:hover .arrow {
    transform: translateX(4px);
}

/* CARDS */
.salary-showcase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.premium-salary-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2px;
    /* inner border trick */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-salary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(4, 107, 210, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-salary-card.highlight {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(4, 107, 210, 0.15);
}

.premium-salary-card.highlight::before {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.premium-salary-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.premium-salary-card.highlight:hover {
    transform: translateY(-10px) scale(1.08);
    /* Higher jump rate */
}

.psc-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 22px;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-salary-card.highlight .psc-content {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.psc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.psc-title h4 {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-heading);
    margin: 0 0 4px 0;
}

.psc-title p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.psc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
}

.psc-icon svg {
    width: 24px;
    height: 24px;
}

.psc-icon-green {
    color: #10b981;
}

.psc-icon-orange {
    color: #f59e0b;
}

.psc-icon-purple {
    color: #8b5cf6;
}

.psc-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: 32px;
    flex: 1;
}

/* BIG JUMP RATE FOR PRICE */
.psc-price {
    font-size: 72px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: var(--color-primary-dark);
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(180deg, #334155 0%, #0f172a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-salary-card.highlight .psc-price {
    font-size: 88px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.psc-unit {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-light);
    margin-left: 8px;
}

.psc-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.psc-footer::before {
    content: '✨';
    margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .salary-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .salary-header-right {
        flex: 1;
        width: 100%;
    }

    .salary-showcase-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .premium-salary-card.highlight {
        transform: scale(1);
    }

    .premium-salary-card.highlight:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 544px) {
    .salary-note-box {
        padding: 24px 20px;
        gap: 12px;
    }

    .salary-note-box > div:first-child {
        gap: 8px !important;
    }

    .note-icon {
        font-size: 26px;
        flex-shrink: 0;
    }

    .note-text-main {
        font-size: 17px;
    }

    .note-text-sub {
        font-size: 14px;
    }

    .salary-cta-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        gap: 8px;
    }

    .salary-cta-btn .arrow {
        margin-left: auto;
        flex-shrink: 0;
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* 10. Safety Education */
.safety-premium {
    background-color: #ffffff;
    padding-bottom: 100px;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-image-stack {
    position: relative;
    padding-bottom: 140px;
    padding-right: 80px;
}

.safety-image-stack img {
    border-radius: 24px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.safety-image-stack .img-back {
    width: 80%;
    margin-left: 20%;
    position: relative;
    z-index: 1;
}

.safety-image-stack .img-front {
    width: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid #ffffff;
}

.safety-sub-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--color-heading);
}

.safety-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 32px;
}

.safety-family-img {
    margin-top: 32px;
}

.safety-family-img img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.safety-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.safety-point-card {
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.safety-point-card:hover {
    transform: translateY(-8px);
}

.safety-point-card .sp-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.safety-point-card .sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-point-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.5;
    margin: 0;
}

.safety-voices {
    margin-top: 80px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.safety-voice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.safety-voice-card {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.safety-voice-card .voice-icon {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-family: serif;
    font-weight: bold;
    line-height: 1;
}

.voice-quote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
    font-weight: 600;
}

.voice-author {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 700;
    text-align: right;
}

@media (max-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .safety-points-grid {
        grid-template-columns: 1fr;
    }

    .safety-voice-grid {
        grid-template-columns: 1fr;
    }

    .safety-voices {
        padding: 40px 20px;
    }
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.safety-list .list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
}

.safety-list span {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
}

/* 11. Daily Schedule Timeline */
.daily-schedule {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4f7fa 100%);
    position: relative;
    overflow: hidden;
}

.daily-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.daily-shape {
    position: absolute;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.daily-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.daily-shape.shape-2 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: -20px;
    animation-delay: 2s;
}

.daily-shape.shape-3 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    left: 8%;
    animation-delay: 4s;
    transform: rotate(15deg);
}

.daily-dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-primary-light) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.schedule-showcase {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.schedule-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.schedule-nav .nav-item {
    padding: 12px 32px;
    background: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.schedule-nav .nav-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.schedule-nav .nav-item.active {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff8f00 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 143, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.timeline-track {
    position: relative;
    padding-left: 120px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 139px;
    width: 4px;
    background: linear-gradient(to bottom, rgba(4, 107, 210, 0.0) 0%, rgba(4, 107, 210, 0.2) 10%, rgba(4, 107, 210, 0.2) 90%, rgba(4, 107, 210, 0.0) 100%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step .time {
    position: absolute;
    left: -130px;
    width: 110px;
    text-align: right;
    font-size: 28px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: var(--color-primary);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
    letter-spacing: -0.5px;
}

.timeline-step .dot {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 5px solid var(--color-primary);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(4, 107, 210, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-step:hover .dot {
    transform: translateY(-50%) scale(1.3);
    background: var(--color-accent);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 143, 0, 0.2), 0 6px 12px rgba(255, 143, 0, 0.3);
}

.timeline-step .step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    padding: 24px;
    gap: 24px;
    margin-left: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), inset 0 2px 0 rgba(255, 255, 255, 1);
    flex: 1;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.timeline-step .step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--color-primary);
    opacity: 0.8;
}

.timeline-step:nth-child(2n) .step-card::before {
    background: var(--color-accent);
}

.timeline-step:nth-child(3n) .step-card::before {
    background: #5fceb1;
}

.timeline-step:nth-child(4n) .step-card::before {
    background: #ff7373;
}

.timeline-step .step-card:hover {
    transform: translateX(12px) translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), inset 0 2px 0 rgba(255, 255, 255, 1);
}

.step-card img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-info h4 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--color-heading);
    line-height: var(--lh-tight);
}

.step-info p {
    font-size: 15px;
    color: var(--color-text);
    margin: 0;
    line-height: var(--lh-body);
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* 11.5 Debut Flow Carousel */
.debut-flow {
    background: linear-gradient(135deg, #f0f7ff 0%, #f9fafb 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.debut-flow__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.debut-flow__bg-grad {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(4, 107, 210, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
}

.debut-flow__bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(4, 107, 210, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Progress Bar */
.debut-flow__progress {
    max-width: 600px;
    margin: 0 auto 48px;
    position: relative;
}

.debut-flow__progress-bar {
    height: 4px;
    background: rgba(4, 107, 210, 0.12);
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
}

.debut-flow__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, #3b82f6 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.debut-flow__progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.debut-flow__progress-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid rgba(4, 107, 210, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.debut-flow__progress-dot:hover {
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.debut-flow__progress-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(4, 107, 210, 0.35);
}

.debut-flow__progress-dot.visited {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.debut-flow__progress-dot--goal.active {
    background: linear-gradient(135deg, #F59E0B, #f97316);
    border-color: #F59E0B;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.debut-flow__progress-dot--goal.visited {
    background: linear-gradient(135deg, #F59E0B, #f97316);
    border-color: #F59E0B;
}

.debut-flow__progress-num {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: rgba(4, 107, 210, 0.4);
    transition: color 0.3s ease;
}

.debut-flow__progress-dot.active .debut-flow__progress-num,
.debut-flow__progress-dot.visited .debut-flow__progress-num {
    color: #fff;
}

/* Carousel */
.debut-flow__carousel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

.debut-flow__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.debut-flow__slide {
    min-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

.debut-flow__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.4s ease;
}

.debut-flow__card:hover {
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.debut-flow__card--goal {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 20px 60px rgba(245, 158, 11, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.debut-flow__card-img {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.debut-flow__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.debut-flow__card:hover .debut-flow__card-img img {
    transform: scale(1.03);
}

.debut-flow__card--goal .debut-flow__card-img img {
    object-position: center top;
}

.debut-flow__card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: rgba(4, 107, 210, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(4, 107, 210, 0.3);
}

.debut-flow__card-badge--goal {
    background: linear-gradient(135deg, #F59E0B, #f97316);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    font-size: 15px;
    padding: 10px 24px;
}

.debut-flow__card-body {
    padding: 32px;
}

.debut-flow__card-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-heading);
    margin-bottom: 16px;
    line-height: 1.3;
}

.debut-flow__card--goal .debut-flow__card-title {
    background: linear-gradient(135deg, #F59E0B, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.debut-flow__card-desc {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 20px;
}

.debut-flow__card-desc strong {
    color: var(--color-heading);
}

.debut-flow__card-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(4, 107, 210, 0.06);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.debut-flow__card-point--goal {
    background: rgba(245, 158, 11, 0.08);
    color: #d97706;
}

/* Arrows */
.debut-flow__arrow {
    position: absolute;
    top: 180px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-heading);
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.debut-flow__arrow:hover:not(:disabled) {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(4, 107, 210, 0.3);
}

.debut-flow__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.debut-flow__arrow--prev {
    left: 16px;
}

.debut-flow__arrow--next {
    right: 16px;
}

/* Swipe hint */
.debut-flow__swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 13px;
    color: #94a3b8;
    animation: debutHintPulse 2s ease-in-out infinite;
}

@keyframes debutHintPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 920px) {
    .debut-flow__arrow--prev {
        left: 8px;
    }

    .debut-flow__arrow--next {
        right: 8px;
    }

    .debut-flow__arrow {
        width: 40px;
        height: 40px;
    }

    .debut-flow__carousel {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .debut-flow__card-img {
        height: 200px;
    }

    .debut-flow__card-body {
        padding: 24px 20px;
    }

    .debut-flow__card-title {
        font-size: 20px;
    }

    .debut-flow__card-desc {
        font-size: 14px;
        line-height: 1.9;
    }

    .debut-flow__progress {
        margin-bottom: 32px;
    }

    .debut-flow__progress-dot {
        width: 32px;
        height: 32px;
    }

    .debut-flow__progress-num {
        font-size: 12px;
    }

    .debut-flow__swipe-hint {
        display: flex;
    }

    .debut-flow__arrow {
        top: 100px;
        width: 36px;
        height: 36px;
    }

    .debut-flow__arrow--prev {
        left: 8px;
    }

    .debut-flow__arrow--next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .debut-flow__card-img {
        height: 180px;
    }

    .debut-flow__card-body {
        padding: 20px 16px;
    }
}

/* 12. Comparison Section (Soft Corporate) */
.comparison-soft {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7e6 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.comparison-soft::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 143, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.comparison-soft::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.comp-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 2;
}

.comp-modern-grid {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    background: #ffffff;
    border-radius: 24px;
    min-width: 800px;
    position: relative;
    z-index: 1;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.comp-highlight-col {
    grid-column: 2 / 3;
    grid-row: 1 / 7;
    background: #fffbef;
    border: 4px solid var(--color-accent);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(255, 143, 0, 0.15);
    position: absolute;
    top: -24px;
    bottom: -12px;
    left: -8px;
    right: -8px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.comp-highlight-col:hover {
    transform: translateY(-5px);
}

.recom-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 8px 16px rgba(255, 143, 0, 0.3);
    border: 4px solid #fff;
    letter-spacing: 0.05em;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recom-badge span {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1;
    margin-bottom: 2px;
}

.recom-badge strong {
    font-size: 16px;
    line-height: 1;
}

.comp-cell.row-label {
    grid-column: 1 / 2;
}

.comp-cell.highlight-cell,
.comp-cell.header.highlight-header {
    grid-column: 2 / 3;
    z-index: 11;
    position: relative;
}

.comp-cell.others-cell,
.comp-cell.header.others-header {
    grid-column: 3 / 4;
    z-index: 2;
}

.comp-cell {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    border-top: 1px dashed #e2e8f0;
    position: relative;
    z-index: 2;
}

.comp-cell.header {
    border-top: none;
    justify-content: center;
    padding: 30px 20px 20px;
}

.comp-cell.header:nth-child(2) {
    border-radius: 24px 0 0 0;
}

.comp-cell.header.highlight-header {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-heading);
}

.comp-cell.header.others-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-light);
    background-color: #f8fafc;
    border-radius: 0 24px 0 0;
}

.comp-cell.row-label {
    font-weight: 800;
    justify-content: center;
    font-size: 16px;
    color: var(--color-heading);
    text-align: center;
    background-color: #fafafa;
}

.comp-cell.highlight-cell,
.comp-cell.others-cell {
    gap: 16px;
}

.comp-cell.highlight-cell {
    border-top: 1px dashed rgba(255, 143, 0, 0.2);
}

.comp-cell.highlight-cell .text-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
}

.comp-cell.highlight-cell .text-content strong {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-heading);
    display: block;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #ff8f00 0%, #f59e0b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comp-cell.others-cell .text-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
    font-weight: 600;
}

.mk-maru {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.mk-maru circle {
    stroke: var(--color-accent);
}

.mk-sankaku,
.mk-batsu {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

@media (max-width: 900px) {
    .comparison-soft {
        padding: 60px 0;
    }

    .comparison-soft .section-header {
        margin-bottom: 40px;
    }

    .comparison-soft .section-title {
        font-size: 24px;
    }

    .comp-table-wrapper {
        margin: 0;
        padding: 0 16px 30px;
        border-radius: 0;
        overflow-x: visible;
    }

    .comp-modern-grid {
        grid-template-columns: 1fr 1fr;
        min-width: 0;
        border-radius: 16px;
    }

    /* ハイライト背景をモバイルで非表示 */
    .comp-highlight-col {
        display: none;
    }

    /* ヘッダー空セル非表示 */
    .comp-cell.header:nth-child(2) {
        display: none;
    }

    /* ヘッダー2列 */
    .comp-cell.header.highlight-header {
        grid-column: 1 / 2;
        font-size: 16px;
        padding: 20px 12px 14px;
        border-radius: 16px 0 0 0;
        background: #fffbef;
    }

    .comp-cell.header.others-header {
        grid-column: 2 / 3;
        font-size: 14px;
        padding: 20px 12px 14px;
        border-radius: 0 16px 0 0;
    }

    /* 行ラベルを全幅ヘッダーに */
    .comp-cell.row-label {
        grid-column: 1 / -1;
        padding: 12px 16px;
        font-size: 14px;
        background: #f0f4f8;
        justify-content: flex-start;
        border-top: 2px solid #e2e8f0;
    }

    /* 比較セル2列 */
    .comp-cell.highlight-cell {
        grid-column: 1 / 2;
        background: #fffbef;
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 12px;
        gap: 8px;
    }

    .comp-cell.others-cell {
        grid-column: 2 / 3;
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 12px;
        gap: 8px;
    }

    .comp-cell.highlight-cell .text-content,
    .comp-cell.others-cell .text-content {
        font-size: 13px;
    }

    .comp-cell.highlight-cell .text-content strong {
        font-size: 14px;
    }

    .mk-maru,
    .mk-sankaku,
    .mk-batsu {
        width: 28px;
        height: 28px;
    }

    .recom-badge {
        display: none;
    }
}

/* 13. Honest Section */
.honest-premium {
    background-color: #F8FAFC;
}

.honest-line {
    width: 60px;
    height: 4px;
    background: var(--color-heading);
    margin: 0 auto;
    border-radius: 2px;
}

.honest-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 80px auto 0;
}

.honest-card {
    padding: 60px 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.honest-card.card-dark {
    background: #1E293B;
    color: #ffffff;
}

.honest-card.card-light {
    background: #ffffff;
    color: var(--color-text);
}

.honest-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
}

.card-dark .honest-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.honest-icon-blue {
    background: rgba(4, 107, 210, 0.1);
    color: var(--color-primary);
}

.honest-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
}

.card-dark h3 {
    color: #ffffff;
}

.card-light h3 {
    color: var(--color-heading);
}

.honest-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Media Queries */
@media (max-width: 992px) {

    .safety-grid,
    .honest-split-grid {
        grid-template-columns: 1fr;
    }

    .schedule-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .schedule-nav .nav-item {
        padding: 10px 20px;
        font-size: 14px;
    }

    .timeline-track {
        padding-left: 50px;
    }

    .timeline-track::before {
        left: 20px;
    }

    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-step .time {
        position: relative;
        left: 0;
        text-align: left;
        margin-bottom: 8px;
        width: auto;
        padding-left: 0;
        font-size: 22px;
    }

    .timeline-step .dot {
        left: -40px;
        top: 4px;
        width: 16px;
        height: 16px;
        border-width: 4px;
    }

    .timeline-step .step-card {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        padding: 16px;
        gap: 16px;
    }

    .step-card img {
        width: 100%;
        height: 180px;
    }

    .step-info h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-info p {
        font-size: 14px;
    }

    .timeline-step .step-card:hover {
        transform: translateY(-4px);
    }

    .timeline-step:hover .dot {
        transform: translateY(-50%) scale(1.15);
    }

    .timeline-step .step-card::before {
        width: 4px;
    }

    .salary-cards {
        flex-direction: column;
    }
}

/* =========================================================================
   NEW SOFT CORPORATE THEME (Doda / Beauty Style)
   ========================================================================= */

/* The user wants a clean white layout over a soft illustration background */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f9fc;
    /* Fallback */
    /* Use the generated background globally for the main content area if desired, or per section */
}

.flow-bg-wrap {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

/* Background image overlay */
.flow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('../images/backgrounds/bg_dynamic_flow.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    /* Set to 1 because the SVG itself has carefully calibrated opacity and gradients */
}

.flow-bg.reverse {
    transform: scaleX(-1);
}

.section-strength-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card Styling */
.strength-card-panel {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 50, 100, 0.08);
    /* Clean modern shadow */
    overflow: hidden;
    margin-bottom: 0px;
    border: 1px solid #eef2f5;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 50, 100, 0.12);
}

.strength-card-panel.reversed {
    flex-direction: row-reverse;
}

.panel-image {
    width: 45%;
    position: relative;
    background: #f0f4f8;
}

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

.panel-image img.shifted-img {
    object-position: 20% center;
}

.panel-content {
    width: 55%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2 Column Grid for Strength Cards */
.strength-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.strength-card-panel.vertical-style {
    flex-direction: column;
    height: 100%;
    position: relative;
}

.strength-card-panel.vertical-style .panel-image,
.strength-card-panel.vertical-style .panel-content {
    width: 100%;
}

.strength-card-panel.vertical-style .panel-image {
    height: 250px;
}

.strength-card-panel.vertical-style .panel-content {
    padding: 35px 30px;
    justify-content: flex-start;
}

.strength-card-panel.vertical-style .panel-heading {
    font-size: 1.4rem;
}

.strength-card-panel.vertical-style .strength-bg-num.mini {
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 10rem;
    z-index: 0;
    line-height: 1;
}

.strength-card-panel.vertical-style .panel-image,
.strength-card-panel.vertical-style .panel-content {
    z-index: 1;
}

@media (max-width: 900px) {
    .strength-grid-2col {
        grid-template-columns: 1fr;
    }
}

.point-badge {
    display: inline-flex;
    align-items: center;
    background: #005dab;
    /* Primary Blue */
    color: #fff;
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 93, 171, 0.3);
}

.point-badge .en {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.panel-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
    line-height: 1.5;
    margin-bottom: 24px;
}

.panel-heading .smaller {
    font-size: 0.8em;
    display: inline-block;
    margin-top: 4px;
}

.panel-heading .highlight {
    color: #005dab;
    position: relative;
    display: inline-block;
}

.panel-heading .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 6px;
    background: rgba(0, 93, 171, 0.2);
    border-radius: 3px;
    z-index: -1;
}

.panel-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.box-desc {
    background: #f8fbff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 93, 171, 0.15);
}

/* Green Theme Modifiers for Strength Card */
.theme-green .point-badge {
    background: #16a34a;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}

.theme-green .panel-heading .highlight {
    color: #16a34a;
}

.theme-green .panel-heading .highlight::after {
    background: rgba(22, 163, 74, 0.2);
}

.theme-green .box-desc {
    background: #f0fdf4;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

/* 大型引用ブロック */
.driver-quote-large {
    position: relative;
    margin: 16px 0 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.driver-quote-large .quote-mark {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 5rem;
    color: #e04a44;
    font-family: serif;
    line-height: 1;
    opacity: 0.15;
}

.driver-quote-large .main-quote {
    font-family: 'AoharuMarker', cursive;
    font-size: 1.6rem;
    font-weight: normal;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.driver-quote-large .sub-quote {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* ボックス内の見出し */
.desc-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #005dab;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0, 93, 171, 0.2);
}

#strength-3 .panel-image {
    width: 55%;
}

#strength-3 .panel-content {
    width: 45%;
}

#strength-3 .panel-image img {
    object-position: 10% center;
    /* Show slightly more of left side by anchoring near the left edge */
}

.stat-highlight {
    background: #f4f9ff;
    border: none;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 93, 171, 0.06);
    display: flex;
    flex-direction: column;
}

.stat-highlight-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 93, 171, 0.1);
    flex-wrap: wrap;
    gap: 12px;
}

.stat-lead-box {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-lead-badge {
    background: #005dab;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.stat-lead {
    font-weight: 800;
    color: #222;
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0;
    word-break: keep-all;
    white-space: nowrap;
}

.stat-num-box {
    text-align: right;
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.stat-num {
    font-size: 4.8rem;
    font-weight: 900;
    /* もっと明るくリッチなゴールドオレンジ */
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #D84315 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FF8C00;
    line-height: 1;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    /* filter: drop-shadow removed — causes blur on background-clip:text */
}

.stat-num-box .stat-unit {
    font-size: 2.2rem;
    font-weight: 800;
    margin-left: 4px;
    -webkit-text-fill-color: initial;
    color: #D84315;
    /* Deeper orange for contrast */
    font-family: 'Montserrat', sans-serif;
}

.stat-num-box .stat-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin-left: 4px;
}

.stat-sub {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

/* 保障給テーブル */
.hosho-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e8f0;
}

.hosho-table th,
.hosho-table td {
    padding: 14px 10px;
    text-align: center;
    border-bottom: 1px solid #e1e8f0;
    border-right: 1px solid #e1e8f0;
    font-size: 0.95rem;
    white-space: nowrap;
}

.hosho-table th:last-child,
.hosho-table td:last-child {
    border-right: none;
}

.hosho-table thead th {
    background: #005dab;
    color: #fff;
    font-weight: 600;
    border-bottom: none;
}

.hosho-table tbody th {
    background: #f0f6fc;
    color: #333;
    font-weight: 700;
    text-align: left;
    padding-left: 16px;
}

.hosho-table tbody th span {
    font-size: 0.8rem;
    color: #666;
    margin-left: 4px;
}

.hosho-table tbody th .note {
    display: block;
    font-size: 0.75rem;
    color: #e04a44;
    margin-top: 4px;
    margin-left: 0;
}

.hosho-table tbody td {
    font-weight: 700;
    color: #222;
    background: #fff;
}

.hosho-table tbody td .small {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
}

.hosho-table tbody tr:last-child th,
.hosho-table tbody tr:last-child td {
    border-bottom: none;
}

/* 保障給テーブル モバイル調整 */
@media (max-width: 544px) {
    .hosho-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .hosho-table th,
    .hosho-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    .hosho-table tbody th {
        padding-left: 12px;
    }
    .hosho-table tbody th span {
        font-size: 0.75rem;
    }
}

/* Image overlay badge */
.overlay-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.floating-car {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    margin-bottom: -15px;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.badge-text {
    background: #e04a44;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(224, 74, 68, 0.4);
    z-index: 1;
}

/* Float Quote */
.float-quote {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid rgba(224, 74, 68, 0.2);
}

.float-quote p {
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    font-size: 1rem;
}

.float-quote span {
    font-size: 0.8rem;
    color: #666;
}

/* Triple Box */
.triple-box {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    background: #fff;
    border: 2px solid #005dab;
    border-radius: 12px;
    padding: 16px 24px;
    margin-top: 24px;
    color: #005dab;
    width: fit-content;
}

.triple-box span {
    font-weight: 700;
    margin-right: 12px;
}

.triple-box strong {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.triple-box small {
    font-weight: 700;
    margin-left: 8px;
}

/* Bridge Banner */
.bridge-banner {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff8c00 0%, #e65c00 100%);
    color: #fff;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.2);
}

.bridge-inner {
    max-width: 800px;
    margin: 0 auto;
}

.bridge-label {
    display: inline-block;
    background: #fff;
    color: #e65c00;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bridge-inner p {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Update section backgrounds to alternate */
.section-strength:nth-of-type(even) .point-badge {
    background: #e04a44;
    box-shadow: 0 4px 10px rgba(224, 74, 68, 0.3);
}

.section-strength:nth-of-type(even) .panel-heading .highlight {
    color: #e04a44;
}

.section-strength:nth-of-type(even) .panel-heading .highlight::after {
    background: rgba(224, 74, 68, 0.2);
}

.section-strength:nth-of-type(even) .box-desc {
    border-color: rgba(224, 74, 68, 0.2);
    background: #fff5f5;
}

.section-strength:nth-of-type(even) .desc-heading {
    color: #e04a44;
    border-bottom-color: rgba(224, 74, 68, 0.2);
}

/* Medium Responsive */
@media (max-width: 900px) {

    .strength-card-panel,
    .strength-card-panel.reversed {
        flex-direction: column;
    }

    .panel-image,
    .panel-content,
    #strength-3 .panel-image,
    #strength-3 .panel-content {
        width: 100%;
    }

    .panel-image img {
        height: 300px;
    }

    /* 保障給セクション: 男性のピースが見えるよう右寄せ */
    #strength-3 .panel-image img,
    #strength-3 .panel-image img.shifted-img {
        object-position: 44% center !important;
    }

    .panel-content {
        padding: 40px 20px;
    }

    .panel-heading {
        font-size: 1.5rem;
    }

    .float-quote {
        left: 20px;
        right: 20px;
        bottom: -20px;
    }

    .overlay-badge {
        right: 10px;
    }
}

/* ==========================================================================
   Office Map Premium
   ========================================================================== */
.office-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.office-premium-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.office-map-embed {
    width: 100%;
    padding-bottom: 70%;
    /* 4:3 Aspect Ratio */
    position: relative;
    background: #f0f0f0;
}

.office-map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.office-info {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
}

.office-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
    background: var(--color-primary-light);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.office-addr {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.office-meta {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--color-border);
    width: 100%;
}

@media (max-width: 992px) {
    .office-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .office-premium-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =========================================
   CTA Mid (with Character / Image on right)
   ========================================= */
.section-cta-mid {
    background: linear-gradient(135deg, #4a9ae8, #2d80d6);
    position: relative;
    overflow: hidden;
    color: #fff;
    margin: 80px 0;
}

.cta-banner-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.cta-banner-content {
    flex: 1;
    z-index: 2;
}

.cta-banner-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.cta-banner-sub {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--color-accent), #d97706);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border: 3px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    color: #fff;
}

.cta-banner-btn .arrow {
    margin-left: 12px;
    background: #fff;
    color: var(--color-accent);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cta-banner-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-banner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.cta-banner-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

.cta-banner-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.05;
    background-image: radial-gradient(#fff 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 16px;
        gap: 30px;
    }

    .cta-banner-title {
        font-size: 24px;
    }

    .cta-banner-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 18px;
    }

    .cta-banner-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .cta-banner-image img {
        transform: rotate(0);
        margin: 0 auto;
        display: block;
    }

    .cta-mid-decorations .decor-svg {
        transform: scale(0.6);
    }
}

/* CTA Mid Animations && Decorations */
.pulse-button {
    animation: pulse-glow 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(245, 158, 11, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.cta-mid-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-mid-decorations .decor-svg {
    position: absolute;
    width: 80px;
    height: 80px;
}

.cta-decor-1 {
    top: -20px;
    left: 10%;
    animation: floatUp 8s ease-in-out infinite alternate;
}

.cta-decor-2 {
    bottom: -30px;
    right: 35%;
    width: 120px;
    height: 120px;
    animation: floatDown 10s ease-in-out infinite alternate;
}

.cta-decor-3 {
    top: 20%;
    right: 5%;
    animation: floatRotate 12s linear infinite;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* ==========================================================================
   STAFF Section (Light & Fun)
   ========================================================================== */
.staff {
    background: linear-gradient(135deg, #fff5f5 0%, #fff9eb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Decorations (Fun Shapes) */
.staff-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.staff-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.staff-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: rgba(255, 182, 193, 0.4);
    /* Light Pink */
    animation: floatUp 10s ease-in-out infinite alternate;
}

.staff-shape.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    background: rgba(176, 224, 230, 0.4);
    /* Powder Blue */
    animation: floatDown 12s ease-in-out infinite alternate;
}

.staff-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 228, 181, 0.4);
    /* Moccasin */
    animation: floatAround 14s ease-in-out infinite alternate;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(30px);
    }
}

@keyframes floatAround {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-45%, -55%) scale(1.05);
    }
}

.staff-heading {
    text-align: center;
    margin-bottom: 60px;
    color: #334155;
    border: none;
}

.staff-title-en {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 0 #fff;
    display: inline-block;
    margin-bottom: 8px;
}

.staff-title-ja {
    font-size: 20px;
    font-weight: 700;
    color: #64748b;
    display: block;
}

.staff-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.staff-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 4px solid #fff;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    position: relative;
}

.staff-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.staff-card:nth-child(2):hover {
    transform: translateY(-15px) rotate(-2deg);
}

.staff-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 6px solid #fff;
    background-color: #f5f7fa;
    position: relative;
}

.staff-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-card:hover .staff-image-wrapper img {
    transform: scale(1.1);
}

.staff-role {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-accent-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    background: rgba(231, 76, 60, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
}

.staff-name {
    font-size: 22px;
    font-weight: 900;
    color: #1e293b;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .staff-row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .staff {
        padding: 60px 0;
    }

    .staff-title-en {
        font-size: 36px;
    }

    .staff-title-ja {
        font-size: 16px;
    }

    .staff-card {
        width: calc(50% - 10px);
        padding: 30px 15px;
    }

    .staff-image-wrapper {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 580px) {
    .staff-row {
        flex-direction: column;
        align-items: center;
    }

    .staff-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Shift Calendar Styles */
.shift-calendar-wrapper {
    margin-top: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.shift-calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    text-align: center;
}

.shift-calendar-table th,
.shift-calendar-table td {
    padding: 12px;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: bold;
}

.shift-calendar-table th {
    color: #fff;
}

.shift-calendar-table th.sun {
    background-color: #fca5a5;
}

.shift-calendar-table th.mon,
.shift-calendar-table th.tue,
.shift-calendar-table th.wed,
.shift-calendar-table th.thu,
.shift-calendar-table th.fri {
    background-color: #9ca3af;
}

.shift-calendar-table th.sat {
    background-color: #93c5fd;
}

.shift-calendar-table td {
    background-color: #f9fafb;
}

.shift-calendar-table td.off {
    color: #ef4444;
    /* red for 公休 */
    background-color: #fee2e2;
}

.shift-calendar-table td.work {
    color: #374151;
    /* dark gray for 出番 */
}

.shift-calendar-table td.rest {
    color: #d97706;
    /* orange for 明番 */
    background-color: #fef3c7;
}

.shift-calendar-table td.empty {
    background-color: #f3f4f6;
}

.shift-info-box {
    text-align: left;
}

.shift-info-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.shift-info-summary {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #cbd5e1;
}

.shift-info-notes {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
}

.shift-info-notes p {
    margin-bottom: 4px;
}

@media (max-width: 768px) {

    .shift-calendar-table th,
    .shift-calendar-table td {
        padding: 8px 4px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Welfare Section (Premium Light)
   ========================================================================== */
.welfare-premium {
    background-color: #fcfaf8;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.welfare-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decor-glow {
    position: absolute;
    opacity: 0.15;
    filter: blur(60px);
    border-radius: 50%;
}

.decor-glow.g-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: #fcd34d;
}

.decor-glow.g-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    background: #046bd2;
    opacity: 0.08;
}

.welfare-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
}

.welfare-header {
    position: relative;
    z-index: 10;
    margin-bottom: 70px;
    text-align: center;
}

.welfare-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #046bd2;
    border-radius: 999px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(4, 107, 210, 0.08);
    border: 1px solid rgba(4, 107, 210, 0.1);
    letter-spacing: 0.05em;
}

.welfare-title-premium {
    font-size: 40px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

.text-highlight-premium {
    position: relative;
    display: inline-block;
    color: #046bd2;
    background: linear-gradient(transparent 60%, #fcd34d 60%);
    padding: 0 4px;
}

.welfare-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.welfare-card-rich {
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.welfare-card-rich::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    pointer-events: none;
}

.welfare-card-rich:hover {
    transform: translateY(-8px);
}

.welfare-card-rich:hover::after {
    opacity: 1;
}

.welfare-img-wrap-rich {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.welfare-img-wrap-rich img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.welfare-card-rich:hover .welfare-img-wrap-rich img {
    transform: scale(1.08);
}

.welfare-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    z-index: 1;
    pointer-events: none;
}

.welfare-num-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    color: #1e293b;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}

.welfare-num-badge::before {
    content: 'NO.';
    font-size: 10px;
    font-weight: 800;
    margin-right: 2px;
    margin-top: 1px;
    color: #94a3b8;
}

.welfare-card-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.welfare-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
    position: relative;
}

.welfare-card-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: #fcd34d;
    margin: 14px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.welfare-card-rich:hover .welfare-card-title::after {
    width: 48px;
}

.welfare-card-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

@media (max-width: 900px) {
    .welfare-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .welfare-grid-premium {
        grid-template-columns: 1fr;
    }

    .welfare-title-premium {
        font-size: 32px;
    }

    .welfare-img-wrap-rich {
        height: 180px;
    }
}

/* === 12. グランドCTA (ご家族〜エントリー) === */
.grand-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: #fcfdfe;
}

.grand-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.grand-cta__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 208, 74, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(95, 206, 177, 0.08) 0%, transparent 40%);
}

.grand-cta__bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animated-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLines 10s linear infinite alternate;
}

@keyframes drawLines {
    to {
        stroke-dashoffset: 0;
    }
}

.grand-family-header,
.grand-entry-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    background: #fcfdfe;
}

.grand-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: bold;
}

.grand-title {
    font-size: 32px;
    line-height: 1.4;
    color: #333;
}

.text-highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    line-height: 1.5;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 208, 74, 0.4);
    z-index: -1;
}

.grand-family-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.grand-family-text {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.8;
}

.grand-family-illust {
    flex: 1;
    max-width: 400px;
}

.illust-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.illust-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.grand-separator {
    text-align: center;
    margin: 80px 0;
}

.grand-lead {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-top: 16px;
}

.grand-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

.grand-step-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    margin: 0 15px;
}

.grand-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-num-bubble {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    width: 50px;
    height: 50px;
    line-height: 42px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon-wrap {
    margin: 30px auto 20px;
    height: 100px;
}

.step-icon-wrap img {
    height: 100%;
    object-fit: contain;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-arrow-line {
    flex: 0.5;
    display: flex;
    align-items: center;
    height: 200px;
}

.step-arrow-line svg {
    width: 100%;
    height: 20px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.grand-booking-box {
    border-radius: 24px;
    padding: 80px 40px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.booking-decor {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 208, 74, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
}

.booking-decor.top-left {
    top: -50px;
    left: -50px;
}

.booking-decor.bottom-right {
    bottom: -50px;
    right: -50px;
    background: linear-gradient(135deg, transparent, rgba(95, 206, 177, 0.2));
}

.booking-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.booking-sub {
    color: #666;
    margin-bottom: 30px;
}

.entry-flow__booking-placeholder {
    padding: 12px;
    background-color: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
}

.methods-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 30px;
}

.methods-divider-line {
    height: 1px;
    background: #ddd;
    flex: 1;
    max-width: 100px;
}

.methods-divider-text {
    padding: 0 20px;
    color: #888;
    font-size: 14px;
}

.other-methods {
    display: flex;
    justify-content: center;
}

.pop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(255, 208, 74, 0.4);
}

.pop-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 208, 74, 0.6);
    color: #fff;
}

.phone-btn {
    background: #ff8f00;
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.4);
}

.phone-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.6);
}

.icon {
    margin-right: 8px;
    font-size: 20px;
}

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatBubble 12s infinite ease-in-out alternate;
}

.b1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.b2 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    animation-delay: 1s;
}

.b3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.b4 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 40%;
    animation-delay: 3s;
}

.b5 {
    width: 40px;
    height: 40px;
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.b6 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 5%;
    animation-delay: 2.5s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-40px) scale(1.05);
    }
}

@media (max-width: 768px) {
    .grand-family-content {
        flex-direction: column;
    }

    .grand-steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .grand-step-card {
        margin: 30px 0;
        width: 100%;
        max-width: 350px;
    }

    .step-arrow-line {
        transform: rotate(90deg);
        height: 40px;
        margin: 10px 0;
    }

    .grand-title {
        font-size: 6vw;
    }
}

/* ==========================================================================
   13-B. Honest Section (Soft & Rich Premium)
   ========================================================================== */
.honest-soft {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-color: #f8fafc;
    z-index: 1;
}

.honest-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.honest-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

/* Light blue for "ちょっと大変" feel but softer */
.honest-bg-shape.shape-left {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
    background-color: rgba(59, 130, 246, 0.15);
    /* Soft blue */
}

/* Warm orange for positive counter balance */
.honest-bg-shape.shape-right {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -200px;
    background-color: rgba(255, 143, 0, 0.12);
    /* Soft orange */
}

/* Subtle grid pattern to convey "seriousness/honesty" */
.honest-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
    opacity: 0.5;
}

.honest-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 40px;
}

.honest-card {
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Soft Light Blue Card (instead of dark navy) */
.honest-card.card-glass-blue {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.8) 100%);
    border-top: 4px solid #60a5fa;
}

/* Soft Light Orange Card */
.honest-card.card-glass-orange {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 237, 0.8) 100%);
    border-top: 4px solid #ff8f00;
}

.honest-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.honest-icon-svg {
    width: 32px;
    height: 32px;
}

.card-glass-blue .honest-icon-wrap {
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.card-glass-orange .honest-icon-wrap {
    border: 1px solid rgba(255, 143, 0, 0.2);
}

.honest-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.card-glass-blue .honest-card-title {
    color: #1e40af;
}

.card-glass-orange .honest-card-title {
    color: #b45309;
}

.honest-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.honest-card-text:last-child {
    margin-bottom: 0;
}

/* CTA Box */
.honest-cta-box {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.honest-cta-box .icon-quote {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 60px;
    color: #cbd5e1;
    font-family: serif;
    line-height: 1;
}

.honest-cta-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 900px) {
    .honest-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==============================================
   Recruitment Requirements (Premium List)
   ============================================== */
.recruit-req-premium {
    padding: var(--space-section-y) 0;
}

.req-premium-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 48px;
    background-color: var(--color-bg-white);
}

.req-premium-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.req-item {
    display: flex;
    flex-direction: row;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.req-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.req-item:first-child {
    padding-top: 0;
}

.req-item dt {
    width: 28%;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 18px;
    padding-right: 24px;
    flex-shrink: 0;
}

.req-item dd {
    width: 72%;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}

.req-sub-heading {
    display: inline-block;
    font-weight: 700;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 14px;
}

.req-inner-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.req-inner-list li {
    margin-bottom: 6px;
}

.req-price-main {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-accent-red);
    margin-bottom: 8px;
}

.req-salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.req-salary-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.req-salary-card h4 {
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--color-border);
}

.req-salary-card ul,
.req-salary-card p {
    font-size: 14px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.req-salary-card strong {
    font-size: 20px;
    color: var(--color-heading);
    display: block;
    margin-top: 4px;
}

.req-address-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.req-address-list li {
    margin-bottom: 8px;
}

.req-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.req-badges-list li {
    background: #eef2f6;
    color: var(--color-primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.req-text-points p {
    margin-bottom: 8px;
    font-size: 15px;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

.mb-2 {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .req-item {
        flex-direction: column;
    }

    .req-item dt {
        width: 100%;
        margin-bottom: 12px;
        padding-right: 0;
        border-bottom: 2px solid var(--color-primary-light);
        padding-bottom: 8px;
    }

    .req-item dd {
        width: 100%;
    }

    .req-premium-wrapper {
        padding: 24px;
    }

    .req-salary-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   説明会参加・応募 (Booking Pre-Info)
   ========================================================================== */
.booking-pre-info {
    text-align: center;
    margin-bottom: 16px;
    padding: 0 20px;
}

.booking-pre-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-dark, #045cb4);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.booking-pre-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-text);
    font-weight: 700;
}

.booking-phone-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.booking-phone-box {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
}

.phone-box-label {
    font-size: 20px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 8px;
    text-align: left;
    padding-left: 4px;
}

.phone-box-number {
    display: block;
    text-decoration: none;
    background-color: #60a5fa;
    color: white;
    font-size: 28px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.phone-box-number:hover {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.booking-phone-hours {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 40px;
}

.booking-line-box {
    margin-bottom: 20px;
}

.booking-line-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.booking-line-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.booking-line-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 544px) {
    .booking-pre-title {
        font-size: 20px;
    }

    .phone-box-number {
        font-size: 24px;
    }

    .booking-phone-hours {
        font-size: 16px;
    }

    .booking-line-title {
        font-size: 20px;
    }
}

/* ========================================
   Briefing Types (Online & Direct)
   ======================================== */
.briefing-types-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.briefing-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Prevent stretching and vertically center content */
}

.briefing-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.briefing-img-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.briefing-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Backgrounds */
.briefing-card.online-card {
    background: #ffffff;
}

.briefing-card.direct-card {
    background: #60a5fa;
}

.briefing-info.bg-white {
    background: transparent;
}

.briefing-info.bg-blue {
    background: transparent;
    color: #fff;
}

/* Titles */
.briefing-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.briefing-title .num {
    font-size: 36px;
}

.briefing-info.bg-blue .briefing-title,
.briefing-info.bg-blue .briefing-title .num {
    color: #ffffff !important;
}

.briefing-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--color-text);
}

.briefing-list {
    font-size: 16px;
    line-height: 1.8;
    list-style: none;
    padding: 0;
    margin: 0;
}

.briefing-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 12px;
}

.briefing-list .list-dot {
    position: absolute;
    left: 0;
    top: 0;
    color: #fcd34d;
}

/* Pen stamps */
.pen-stamp {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.pen-food {
    bottom: 20px;
    left: 20px;
    transform: rotate(-3deg);
}

.pen-partner {
    top: 20px;
    right: 20px;
    transform: rotate(2deg);
}

/* Action Boxes & Buttons */
.briefing-btn-wrap {
    margin-top: 20px;
}

.briefing-action-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.briefing-action-box .action-label {
    align-self: flex-start;
    background: #fff;
    color: #00d0a1;
    font-size: 14px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 4px;
}

.action-btns {
    display: flex;
    gap: 10px;
}

.action-btns .pop-btn {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
}

.pop-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pop-btn.blue-btn {
    background: #60a5fa;
    color: #fff;
}

.pop-btn.blue-btn:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(96, 165, 250, 0.3);
}

.pop-btn.cyan-btn {
    background: #a5f3fc;
    color: #0891b2;
}

.pop-btn.cyan-btn:hover {
    background: #67e8f9;
    transform: translateY(-2px);
}

.pop-btn.green-btn {
    background: #22c55e;
    color: #fff;
    line-height: 1.2;
}

.pop-btn.green-btn span {
    font-size: 14px;
}

.pop-btn.green-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .briefing-card,
    .briefing-card.direct-card {
        flex-direction: column !important;
    }

    .briefing-img-wrap {
        height: auto;
        flex-direction: column;
    }

    .briefing-action-box {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    .briefing-info {
        padding: 30px 20px;
    }

    .pen-stamp {
        font-size: 20px;
        padding: 8px 16px;
    }

    .action-btns {
        flex-direction: column;
    }
}

/* スマホ: 研修セクション引用の改行・フォント調整 */
@media (max-width: 544px) {
    .driver-quote-large .main-quote {
        font-size: 1.3rem;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    /* 研修セクション画像: 男性のピースが見えるよう少し右寄せ */
    #strength-2 .panel-image img {
        object-position: 62% center;
    }

    /* 独自制度ブリッジ: 2行に収める */
    .bridge-inner p {
        font-size: 1.15rem;
    }
}

/* --- 正直セクション見出し縮小 --- */
.honest-premium .section-title {
    font-size: 28px;
}

/* --- 動画セクション見出し: 1行に収める --- */
.movie-section .section-title {
    font-size: 28px;
}

/* --- スマホ: office-map〜movie間の余白詰め --- */
@media (max-width: 768px) {
    .office-map-premium.awwwards-section {
        padding-bottom: 40px;
    }
    .movie-section.awwwards-section {
        padding-top: 40px;
    }
}

/* =============================================
   Amelia予約フォーム 余白調整
   ============================================= */

/* フォーム外側コンテナの余白を詰める */
.entry-flow__booking-placeholder {
    padding: 0;
    border: none;
    background-color: transparent;
}

/* Ameliaフォーム本体の余白・高さ調整 */
.entry-flow__booking-placeholder #amelia-app-booking-new-1,
.entry-flow__booking-placeholder .amelia-app-booking-new {
    min-height: auto !important;
}

/* Ameliaメインコンテナ */
.entry-flow__booking-placeholder .am-fs-sb__main-container {
    min-height: auto !important;
}

/* サイドバーの下余白を削減 */
.entry-flow__booking-placeholder .am-fs-sb__sidebar {
    padding-bottom: 16px !important;
}

/* メインコンテンツエリアの余白削減 */
.entry-flow__booking-placeholder .am-fs-sb__main-content {
    padding: 24px 24px 16px !important;
    min-height: auto !important;
}

/* フォーム内の上下パディング削減 */
.entry-flow__booking-placeholder .am-fs-sb__main-inner {
    padding: 16px 0 !important;
    min-height: auto !important;
}

/* フッター（次へ進むボタン）の余白削減 */
.entry-flow__booking-placeholder .am-fs-sb__main-footer {
    padding: 12px 24px !important;
}

/* Amelia全体ラッパーの高さ制御 */
.entry-flow__booking-placeholder .amelia-step-booking-form,
.entry-flow__booking-placeholder .am-fs-sb {
    min-height: auto !important;
}

/* サービス選択エリアの余白詰め */
.entry-flow__booking-placeholder .am-fs-sb__content {
    padding: 16px 0 !important;
    min-height: auto !important;
}

/* ボーダー丸み調整 */
.entry-flow__booking-placeholder .am-fs-sb {
    border-radius: 16px !important;
    overflow: hidden;
}

/* Amelia親ボックスの下パディングも調整 */
.grand-booking-box .entry-flow__booking-placeholder {
    margin-top: 24px;
    margin-bottom: 0;
}