/**
 * Elbe Auto Recruit - Main Stylesheet
 * ================================================
 *
 * Table of Contents:
 * 1. CSS Variables
 * 2. Reset & Base
 * 3. Typography
 * 4. Header
 * 5. Mobile Menu
 * 6. Hero Section
 * 7. Animations
 * 8. Utilities
 * 9. Responsive
 */

/* ================================================
   1. CSS Variables
   ================================================ */
:root {
    /* Colors */
    --color-primary: #0D3B6F;
    --color-primary-dark: #092a52;
    --color-primary-light: #1a5599;
    --color-secondary: #E8B341;
    --color-accent: #cf162d;
    --color-accent-light: #e8384f;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;

    /* Typography */
    --font-family-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Layout */
    --header-height: 80px;
    --header-height-sp: 60px;
    --container-max-width: 1200px;
    --container-padding: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;

    /* Z-index */
    --z-header: 1000;
    --z-mobile-menu: 999;
    --z-hero-content: 10;
    --z-hero-controls: 20;
}

/* ================================================
   2. Reset & Base
   ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* ================================================
   3. Typography
   ================================================ */
.text-en {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
}

/* ================================================
   3.5 Section Heading Component (No Animation - Always Visible)
   ================================================ */
.section-heading {
    position: relative;
    padding: 0 0 var(--spacing-3xl);
    overflow: visible;
    min-height: 100px;
}

/* Alignment Variants */
.section-heading--left {
    text-align: left;
}

.section-heading--center {
    text-align: center;
}

.section-heading--center .section-heading__main {
    justify-content: center;
}

.section-heading--right {
    text-align: right;
}

.section-heading--right .section-heading__main {
    justify-content: flex-end;
}

.section-heading--right .section-heading__bg {
    left: auto;
    right: -5%;
}

/* Size Variants */
.section-heading--large .section-heading__bg {
    font-size: clamp(80px, 15vw, 200px);
}

.section-heading--large .section-heading__title-text {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-heading--medium .section-heading__bg {
    font-size: clamp(60px, 12vw, 150px);
}

.section-heading--medium .section-heading__title-text {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.section-heading--small .section-heading__bg {
    font-size: clamp(50px, 10vw, 100px);
}

.section-heading--small .section-heading__title-text {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* Layer 1: Background English Text - ALWAYS VISIBLE */
.section-heading__bg {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(13, 59, 111, 0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

@media (max-width: 767px) {
    .section-heading__bg {
        left: -5%;
        font-size: clamp(50px, 20vw, 80px);
    }
}

/* Layer 3: Section Number - ALWAYS VISIBLE */
.section-heading__number {
    position: absolute;
    top: -5px;
    left: 0;
    z-index: 3;
}

.section-heading--center .section-heading__number {
    left: 50%;
    transform: translateX(-50%);
}

.section-heading--right .section-heading__number {
    left: auto;
    right: 0;
}

.section-heading__number-inner {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(13, 59, 111, 0.15);
}

@media (max-width: 767px) {
    .section-heading__number-inner {
        font-size: 2rem;
    }
}

/* Layer 2: Main Title Area - ALWAYS VISIBLE */
.section-heading__main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    padding-top: 25px;
}

@media (max-width: 767px) {
    .section-heading__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 20px;
    }

    .section-heading--center .section-heading__main {
        align-items: center;
    }
}

/* Line - ALWAYS VISIBLE */
.section-heading__line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        rgba(13, 59, 111, 0.3) 100%
    );
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .section-heading__line {
        order: -1;
        width: 30px;
    }
}

/* Title - ALWAYS VISIBLE */
.section-heading__title {
    margin: 0;
}

.section-heading__title-text {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    color: var(--color-primary);
}

/* English Label - ALWAYS VISIBLE */
.section-heading__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gray-400);
}

@media (max-width: 767px) {
    .section-heading__label {
        font-size: 0.625rem;
        letter-spacing: 0.15em;
    }
}

/* Dark Background Variant */
.section-heading--dark .section-heading__bg {
    color: rgba(255, 255, 255, 0.08);
}

.section-heading--dark .section-heading__number-inner {
    color: rgba(255, 255, 255, 0.2);
}

.section-heading--dark .section-heading__title-text {
    color: #ffffff;
}

.section-heading--dark .section-heading__label {
    color: rgba(255, 255, 255, 0.5);
}

.section-heading--dark .section-heading__line {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

/* ================================================
   4. Header - Glassomorphism Premium Design
   ================================================ */
.site-header {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    height: var(--header-height);
    z-index: var(--z-header);
    border-radius: 1rem;
    /* White Glassmorphism */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(13, 59, 111, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
    .site-header {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        border-radius: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .site-header {
        border-radius: 3rem;
    }
}

/* Scrolled state - more opaque white */
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 12px 40px rgba(13, 59, 111, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Dark text on white glass */
.site-header .logo-text,
.site-header .logo-sub {
    color: var(--color-primary);
}

.site-header.is-scrolled .logo-text,
.site-header.is-scrolled .logo-sub {
    color: var(--color-primary);
}

.site-header.is-scrolled .nav-link {
    color: var(--color-gray-600);
}

.site-header.is-scrolled .nav-link:hover .nav-link-en {
    color: var(--color-primary);
}

.site-header.is-scrolled .hamburger-line {
    background-color: var(--color-primary);
}

.site-header.is-scrolled .hamburger-label {
    color: var(--color-primary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.logo-sub {
    font-size: 0.5625rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-400);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Navigation - Precision Design */
.header-nav {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .header-nav {
        display: flex;
        align-items: center;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    border-radius: 2rem;
    color: var(--color-gray-600);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Pill hover background */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 59, 111, 0.06);
    border-radius: 2rem;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Hover state */
.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover .nav-link-en {
    color: var(--color-primary);
}

.nav-link:hover .nav-link-ja {
    opacity: 0.8;
}

/* Active state */
.nav-item.is-active .nav-link {
    color: var(--color-primary);
}

.nav-item.is-active .nav-link-en {
    color: var(--color-primary);
}

.nav-item.is-active .nav-link-ja {
    opacity: 0.8;
}

/* LED Indicator Dot - Red "light" above active item */
.nav-item::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-accent);
    box-shadow:
        0 0 4px var(--color-accent),
        0 0 8px var(--color-accent),
        0 0 12px rgba(207, 22, 45, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.is-active::before {
    opacity: 1;
}

/* English - Hero Typography */
.nav-link-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: inherit;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Japanese - Caption Typography */
.nav-link-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    margin-top: 4px;
    opacity: 0.5;
    color: var(--color-gray-600);
    transition: opacity 0.3s ease;
}

/* Active Track - Light Beam Effect (not painted) */
.nav-track {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    pointer-events: none;
    opacity: 0;
    transform: scaleX(0);
    transition:
        left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease;
}

.nav-track.is-visible {
    opacity: 1;
    transform: scaleX(1);
}

/* Track core - thin white line with red glow beneath */
.nav-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 20%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.8) 80%,
        transparent 100%
    );
}

/* Track glow - red light emission */
.nav-track::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--color-accent);
    filter: blur(6px);
    opacity: 0.7;
}

/* Entry Button - Ghost Button Design */
.header-entry {
    display: none;
}

@media (min-width: 1024px) {
    .header-entry {
        display: block;
        margin-left: 32px;
    }
}

.entry-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e8384f 100%);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(207, 22, 45, 0.25);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Button pseudo-elements cleared for solid style */
.entry-button::before,
.entry-button::after {
    display: none;
}

.entry-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(207, 22, 45, 0.35);
}


.entry-button-icon {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.entry-button:hover .entry-button-icon {
    transform: translateX(4px);
}

/* Large variant for mobile menu - keep ghost style */
.entry-button--large {
    padding: 16px 40px;
    font-size: 1rem;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hamburger - Glass button */
.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    gap: 4px;
    padding: 0;
    position: relative;
    z-index: 10;
    background: rgba(13, 59, 111, 0.06);
    border: 1px solid rgba(13, 59, 111, 0.1);
    border-radius: 0.75rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
}

.hamburger:hover,
.hamburger:active {
    background: rgba(13, 59, 111, 0.1);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform var(--transition-base), opacity var(--transition-base), background-color var(--transition-base);
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hamburger-label {
    display: none;
}

/* ================================================
   5. Mobile Menu
   ================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-primary);
    z-index: var(--z-mobile-menu);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: var(--spacing-2xl);
}

.mobile-nav {
    margin-bottom: var(--spacing-3xl);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    text-align: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    padding: var(--spacing-md);
    transition: opacity var(--transition-fast);
}

.mobile-nav-link:hover {
    opacity: 0.8;
}

.mobile-nav-en {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
}

.mobile-nav-ja {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    margin-top: var(--spacing-xs);
    opacity: 0.8;
}

.mobile-entry .entry-button {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.mobile-entry .entry-button:hover {
    background-color: var(--color-gray-100);
}

/* ================================================
   6. Hero Section (Single Image Layout)
   ================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: grid;
    grid-template-columns: 42% 58%;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55% 45%;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .hero {
        grid-template-rows: 50% 50%;
    }
}

/* Hero Visual (Image Area) */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    order: 2;
}

@media (max-width: 1023px) {
    .hero-visual {
        order: 1;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 12s ease-out;
}

/* Subtle zoom animation on load */
.hero-image.is-animated .hero-image-src {
    transform: scale(1.05);
}

/* Gradient overlay for depth (subtle, not covering image) */
.hero-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
}

/* Hero Content (Text Area) - "Precision in Motion" Design */
.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    order: 1;
    overflow: hidden;
    /* Layer 1: Deep atmospheric gradient - creates fundamental depth */
    background:
        /* Focal glow - draws eye to content area */
        radial-gradient(
            ellipse 80% 60% at 50% 55%,
            rgba(20, 70, 130, 0.4) 0%,
            transparent 70%
        ),
        /* Vertical depth gradient - darker at edges */
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.2) 100%
        ),
        /* Base gradient - navy to deeper navy */
        linear-gradient(
            135deg,
            #0a3260 0%,
            var(--color-primary) 40%,
            #082a52 100%
        );
    background-color: var(--color-primary);
}

@media (max-width: 1023px) {
    .hero-content {
        order: 2;
        padding: var(--spacing-2xl);
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: var(--spacing-xl);
    }
}

/* Layer 2-3: Light trails - BMW headlights cutting through night */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Light trail 1 - Primary beam, bright */
        linear-gradient(
            -35deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 60%,
            transparent 100%
        ),
        /* Light trail 2 - Secondary beam, subtle */
        linear-gradient(
            -35deg,
            transparent 0%,
            transparent 65%,
            rgba(255, 255, 255, 0.02) 70%,
            rgba(255, 255, 255, 0.04) 75%,
            rgba(255, 255, 255, 0.02) 80%,
            transparent 85%,
            transparent 100%
        ),
        /* Light trail 3 - Tertiary, very subtle */
        linear-gradient(
            -35deg,
            transparent 0%,
            transparent 20%,
            rgba(255, 255, 255, 0.015) 25%,
            rgba(255, 255, 255, 0.025) 28%,
            rgba(255, 255, 255, 0.015) 31%,
            transparent 36%,
            transparent 100%
        ),
        /* Precision grid - engineering DNA */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 59px,
            rgba(255, 255, 255, 0.015) 59px,
            rgba(255, 255, 255, 0.015) 60px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 59px,
            rgba(255, 255, 255, 0.015) 59px,
            rgba(255, 255, 255, 0.015) 60px
        );
    pointer-events: none;
    z-index: 1;
}

/* Layer 4: Film grain texture - premium tactile quality */
.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    /* SVG noise pattern - ultra-lightweight film grain */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 150px 150px;
    mix-blend-mode: overlay;
}

/* M-Red Accent Line - Brand signature element */
.hero-accent-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-accent) 30%,
        var(--color-accent) 100%
    );
    transform: rotate(-35deg);
    transform-origin: right bottom;
    z-index: 3;
    opacity: 0;
    animation: hero-accent-reveal 1.2s ease-out 1.5s forwards;
}

.hero-accent-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
}

@keyframes hero-accent-reveal {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 200px;
    }
}

@media (max-width: 1023px) {
    .hero-accent-line {
        width: 150px;
        bottom: auto;
        top: 0;
        right: 0;
        transform: rotate(-35deg);
        transform-origin: right top;
    }

    @keyframes hero-accent-reveal {
        0% {
            opacity: 0;
            width: 0;
        }
        100% {
            opacity: 1;
            width: 150px;
        }
    }
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--color-white);
    max-width: 480px;
}

@media (max-width: 1023px) {
    .hero-content-inner {
        text-align: center;
        max-width: 600px;
    }
}

/* Sub Copy */
.hero-subcopy {
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
}

.hero-subcopy.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-subcopy-text {
    display: inline-block;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Main Copy */
.hero-maincopy {
    margin-bottom: var(--spacing-2xl);
    opacity: 0;
    transform: translateY(20px);
}

.hero-maincopy.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.hero-maincopy-line {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-black);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.hero-maincopy-line:first-child {
    margin-bottom: 0.1em;
}

/* Hero CTA Button */
.hero-cta {
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 16px 36px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    border-radius: 2px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(13, 59, 111, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta-button svg {
    transition: transform var(--transition-base);
}

.hero-cta-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1023px) {
    .hero-cta-button {
        padding: 14px 32px;
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: var(--z-hero-content);
    opacity: 0;
}

@media (max-width: 1023px) {
    .hero-scroll {
        display: none;
    }
}

.hero-scroll.is-animated {
    opacity: 1;
    transition: opacity 0.8s ease;
}

.hero-scroll-text {
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ================================================
   7. Animations
   ================================================ */
[data-animation] {
    opacity: 0;
}

[data-animation="fade"] {
    opacity: 0;
}

[data-animation="fade"].is-animated {
    opacity: 1;
    transition: opacity 0.8s ease;
}

[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-animation="fade-up"].is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation="zoom-in"] {
    opacity: 1; /* Image should be visible */
}

[data-animation="zoom-in"] .hero-image-src {
    transform: scale(1);
}

[data-animation="zoom-in"].is-animated .hero-image-src {
    transform: scale(1.05);
}

/* ================================================
   8. Philosophy Section (Rich Design)
   ================================================ */
.philosophy {
    position: relative;
    padding: 180px 0 220px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f8f9fb 50%,
        rgba(13, 59, 111, 0.03) 100%
    );
    overflow: hidden;
}

@media (max-width: 1023px) {
    .philosophy {
        padding: 120px 0 180px;
    }
}

@media (max-width: 767px) {
    .philosophy {
        padding: 100px 0 140px;
    }
}

/* Background Layer */
.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Grid Texture */
.philosophy-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(13, 59, 111, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 59, 111, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.7;
}

/* Large Watermark Typography */
.philosophy-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(13, 59, 111, 0.06);
    white-space: nowrap;
    user-select: none;
    will-change: transform;
}

@media (max-width: 767px) {
    .philosophy-watermark {
        font-size: 80px;
        -webkit-text-stroke: 1px rgba(13, 59, 111, 0.04);
    }
}

/* Geometric Lines */
.philosophy-geo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.philosophy-geo-line {
    position: absolute;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(13, 59, 111, 0.08) 50%,
        transparent 100%
    );
    will-change: transform;
}

.philosophy-geo-line--1 {
    top: 15%;
    left: -10%;
    width: 50%;
    height: 1px;
    transform: rotate(-15deg);
}

.philosophy-geo-line--2 {
    bottom: 25%;
    right: -5%;
    width: 40%;
    height: 1px;
    transform: rotate(25deg);
}

.philosophy-geo-line--3 {
    top: 40%;
    right: 10%;
    width: 1px;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(13, 59, 111, 0.1) 50%,
        transparent 100%
    );
}

/* Main Container - Asymmetric Grid */
.philosophy-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    align-items: center;
}

@media (max-width: 1200px) {
    .philosophy-container {
        grid-template-columns: 1fr 360px;
        gap: 60px;
    }
}

@media (max-width: 1023px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 700px;
    }
}

/* Content Column */
.philosophy-content {
    position: relative;
    z-index: 2;
}

/* Section Heading Integration */
.philosophy-heading {
    padding-bottom: var(--spacing-xl);
}

.philosophy-heading .section-heading__bg {
    display: none; /* Already has philosophy-watermark */
}

.philosophy-heading .section-heading__number {
    top: -20px;
    left: -10px;
}

@media (max-width: 767px) {
    .philosophy-heading .section-heading__number {
        left: 0;
    }
}

/* Catchcopy - Magazine Style with Weight Variation */
.philosophy-catchcopy {
    margin-bottom: var(--spacing-2xl);
    line-height: 1.3;
}

.philosophy-catchcopy-line {
    display: inline;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    color: var(--color-primary);
}

.philosophy-catchcopy-line--light {
    font-weight: 300;
    color: var(--color-gray-600);
}

.philosophy-catchcopy-line--bold {
    font-weight: 900;
    color: var(--color-primary);
}

@media (max-width: 767px) {
    .philosophy-catchcopy-line {
        display: block;
        font-size: clamp(1.5rem, 8vw, 2.25rem);
        text-align: center;
    }

    .philosophy-catchcopy-line--light {
        margin-bottom: 4px;
    }
}

/* Lead Text */
.philosophy-lead {
    margin-bottom: var(--spacing-2xl);
    padding-left: 56px;
    border-left: 2px solid rgba(13, 59, 111, 0.15);
}

.philosophy-lead-text {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: var(--font-weight-medium);
    line-height: 2.4;
    color: var(--color-gray-700);
    letter-spacing: 0.04em;
}

@media (max-width: 767px) {
    .philosophy-lead {
        padding-left: 20px;
        text-align: left;
    }

    .philosophy-lead-text {
        font-size: 0.9375rem;
        line-height: 2.2;
    }
}

/* Body Text */
.philosophy-body {
    margin-bottom: var(--spacing-2xl);
    padding-left: 56px;
}

.philosophy-body p {
    font-size: 0.9375rem;
    line-height: 2.4;
    color: var(--color-gray-600);
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-lg);
}

.philosophy-body p:last-child {
    margin-bottom: 0;
}

.philosophy-body-emphasis {
    position: relative;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary) !important;
    padding: var(--spacing-lg) var(--spacing-xl);
    margin-top: var(--spacing-xl);
    background: linear-gradient(
        135deg,
        rgba(13, 59, 111, 0.04) 0%,
        rgba(13, 59, 111, 0.02) 100%
    );
    border-radius: 4px;
}

@media (max-width: 767px) {
    .philosophy-body {
        padding-left: 0;
        text-align: center;
    }

    .philosophy-body p {
        font-size: 0.875rem;
        line-height: 2.2;
        text-align: left;
    }

    .philosophy-body-emphasis {
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* Signature */
.philosophy-signature {
    padding-left: 56px;
}

.philosophy-signature-text {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.2em;
    color: var(--color-gray-500);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-gray-200);
}

@media (max-width: 767px) {
    .philosophy-signature {
        padding-left: 0;
        text-align: center;
    }
}

/* Visual Column */
.philosophy-visual {
    position: relative;
    height: 600px;
}

@media (max-width: 1023px) {
    .philosophy-visual {
        height: 500px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .philosophy-visual {
        height: 400px;
        max-width: 320px;
    }
}

/* Image Container - organic clip-path shape */
.philosophy-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    clip-path: polygon(4% 0%, 100% 3%, 97% 95%, 0% 100%, 2% 8%);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.05);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.philosophy-visual:hover .philosophy-image img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.03);
}

/* Decorative Frame */
.philosophy-image-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid rgba(13, 59, 111, 0.2);
    pointer-events: none;
}

@media (max-width: 767px) {
    .philosophy-image-frame {
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
    }
}

/* Accent Quote */
.philosophy-accent {
    position: absolute;
    bottom: 40px;
    right: -60px;
    z-index: 3;
    will-change: transform;
}

.philosophy-accent-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    line-height: 2;
    color: var(--color-primary);
    text-align: right;
    text-shadow:
        2px 2px 0 #fff,
        -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff;
}

@media (max-width: 1023px) {
    .philosophy-accent {
        right: -40px;
        bottom: 30px;
    }
}

@media (max-width: 767px) {
    .philosophy-accent {
        right: -20px;
        bottom: 20px;
    }

    .philosophy-accent-text {
        font-size: 0.625rem;
    }
}

/* Section Transition - Overlapping Typography */
.philosophy-transition {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.philosophy-transition-text {
    display: inline-block;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(13, 59, 111, 0.12);
    will-change: transform;
}

@media (max-width: 767px) {
    .philosophy-transition {
        bottom: -20px;
    }

    .philosophy-transition-text {
        font-size: 50px;
        -webkit-text-stroke: 1px rgba(13, 59, 111, 0.08);
    }
}

/* SP Hide Helper */
.sp-hide {
    display: inline;
}

@media (max-width: 767px) {
    .sp-hide {
        display: none;
    }
}

/* ================================================
   8.5. Data Section - Infographic
   ================================================ */
.data-section {
    position: relative;
    background-color: #f5f6f8;
    padding: 120px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .data-section {
        padding: 80px 0;
    }
}

/* Background Pattern - Mechanical Grid */
.data-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.data-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(13, 59, 111, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 59, 111, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.data-bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(13, 59, 111, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 10px 10px;
}

/* Container */
.data-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Heading */
.data-heading {
    margin-bottom: 60px;
}

.data-heading .section-heading__bg {
    color: transparent;
    -webkit-text-stroke: 1px rgba(13, 59, 111, 0.06);
}

/* Stats Grid */
.data-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hero Row - 2 Large Cards */
.data-stats-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 767px) {
    .data-stats-hero {
        grid-template-columns: 1fr;
    }
}

/* Secondary Row - 3 Cards */
.data-stats-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1023px) {
    .data-stats-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    .data-stats-secondary .data-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .data-stats-secondary {
        grid-template-columns: 1fr;
    }
    .data-stats-secondary .data-card:last-child {
        grid-column: span 1;
    }
}

/* Data Card Base */
.data-card {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow:
        0 4px 6px rgba(13, 59, 111, 0.04),
        0 10px 40px rgba(13, 59, 111, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.data-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 12px rgba(13, 59, 111, 0.06),
        0 20px 60px rgba(13, 59, 111, 0.12);
}

/* Large Card */
.data-card--large {
    padding: 48px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

@media (max-width: 767px) {
    .data-card--large {
        padding: 32px 24px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

/* Medium Card */
.data-card--medium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
}

@media (max-width: 767px) {
    .data-card--medium {
        align-items: center;
        text-align: center;
    }
}

/* Accent Card (M-Red highlight) */
.data-card--accent {
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(207, 22, 45, 0.02) 100%);
    border: 1px solid rgba(207, 22, 45, 0.1);
}

.data-card--accent .data-card-number {
    color: var(--color-accent);
}

.data-card--accent .data-card-icon i {
    color: var(--color-accent);
}

/* Card Icon */
.data-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(13, 59, 111, 0.05);
    flex-shrink: 0;
}

.data-card-icon i {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    stroke-width: 1.5;
}

.data-card--large .data-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.data-card--large .data-card-icon i {
    width: 40px;
    height: 40px;
}

@media (max-width: 767px) {
    .data-card--large .data-card-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }
    .data-card--large .data-card-icon i {
        width: 32px;
        height: 32px;
    }
}

/* Card Content */
.data-card-content {
    flex: 1;
}

/* Card Label */
.data-card-label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.data-card--large .data-card-label {
    font-size: 1rem;
    margin-bottom: 12px;
}

/* Card Value */
.data-card-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

@media (max-width: 767px) {
    .data-card-value {
        justify-content: center;
    }
}

/* Card Number - Big Impact Typography */
.data-card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.data-card--medium .data-card-number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

/* Card Unit */
.data-card-unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.data-card-unit small {
    font-size: 0.75em;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light);
}

.data-card--medium .data-card-unit {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* Card Note */
.data-card-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

/* Ratio Value Layout */
.data-card-value--ratio {
    flex-direction: column;
    gap: 8px;
}

.data-card-ratio {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.data-card-ratio-male .data-card-number {
    color: var(--color-primary);
}

.data-card-ratio-female .data-card-number {
    color: var(--color-accent);
}

.data-card-ratio-divider {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-light);
}

/* Gender Bar Visual */
.data-card-bar {
    display: flex;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: #e8eaed;
    margin-top: 16px;
}

.data-card-bar-male {
    height: 100%;
    width: var(--ratio);
    background: var(--color-primary);
    transition: width 1.5s ease-out;
}

.data-card-bar-female {
    height: 100%;
    width: var(--ratio);
    background: var(--color-accent);
    transition: width 1.5s ease-out 0.2s;
}

/* Visual Elements */
.data-card-visual {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .data-card-visual {
        display: none;
    }
}

/* Ring Progress */
.data-card-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    color: var(--color-accent);
}

.data-card-ring-progress {
    stroke: currentColor;
    transition: stroke-dashoffset 2s ease-out;
}

/* Clock Visual */
.data-card-clock {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(13, 59, 111, 0.1);
    border-radius: 50%;
    position: relative;
}

.data-card-clock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.data-card-clock-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 35%;
    background: var(--color-primary);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(60deg);
    border-radius: 1px;
}

/* Tagline */
.data-tagline {
    text-align: center;
    margin-top: 48px;
}

.data-tagline-text {
    display: inline-block;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    letter-spacing: 0.1em;
    padding: 16px 32px;
    border: 1px solid rgba(13, 59, 111, 0.15);
    border-radius: 100px;
    background: var(--color-white);
}

/* Count-up Animation State */
.data-card-number {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.data-card.is-animated .data-card-number {
    opacity: 1;
    transform: translateY(0);
}

/* Bar Animation State */
.data-card-bar-male,
.data-card-bar-female {
    width: 0;
}

.data-card.is-animated .data-card-bar-male {
    width: var(--ratio);
}

.data-card.is-animated .data-card-bar-female {
    width: var(--ratio);
}

/* ================================================
   9. People Section
   ================================================ */
.people {
    position: relative;
    background-color: var(--color-white);
    overflow: hidden;
}

.people-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 120px var(--container-padding);
}

@media (max-width: 767px) {
    .people-inner {
        padding: 80px var(--container-padding);
    }
}

/* Section Label (Reusable) */
.section-label {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label-en {
    display: block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.section-label-ja {
    display: block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    color: var(--color-gray-600);
}

/* People Header */
.people-header {
    position: relative;
    margin-bottom: var(--spacing-3xl);
}

.people-header .section-heading {
    padding-bottom: var(--spacing-2xl);
}

/* Section People Title - High Specificity Override with Animation */
#section-people-title {
    position: relative;
    z-index: 1;
    min-height: 100px;
}

/* Initial state: visible but ready for animation */
#section-people-title .section-heading__bg {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

#section-people-title .section-heading__number {
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

#section-people-title .section-heading__main {
    z-index: 2;
    position: relative;
}

#section-people-title .section-heading__title-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

#section-people-title .section-heading__label {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

#section-people-title .section-heading__line {
    width: 0;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

/* Animated state */
#section-people-title.is-animated .section-heading__bg {
    opacity: 1;
}

#section-people-title.is-animated .section-heading__number {
    opacity: 1;
    transform: translateY(0);
}

#section-people-title.is-animated .section-heading__title-text {
    opacity: 1;
    transform: translateY(0);
}

#section-people-title.is-animated .section-heading__label {
    opacity: 1;
    transform: translateX(0);
}

#section-people-title.is-animated .section-heading__line {
    width: 50px;
}

/* Fallback: Force visibility after 2s if JS fails */
@keyframes people-heading-reveal {
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes people-line-reveal {
    to {
        width: 50px;
    }
}

#section-people-title:not(.is-animated) .section-heading__bg,
#section-people-title:not(.is-animated) .section-heading__number,
#section-people-title:not(.is-animated) .section-heading__title-text,
#section-people-title:not(.is-animated) .section-heading__label {
    animation: people-heading-reveal 0.6s ease 2s forwards;
}

#section-people-title:not(.is-animated) .section-heading__line {
    animation: people-line-reveal 0.6s ease 2s forwards;
}

.people-lead {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    line-height: 2;
    color: var(--color-gray-700);
    letter-spacing: 0.03em;
    max-width: 600px;
}

@media (max-width: 767px) {
    .people-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* People Cards Grid */
.people-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

@media (max-width: 1023px) {
    .people-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 567px) {
    .people-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* People Card */
.people-card {
    position: relative;
}

.people-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Image */
.people-card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: var(--spacing-lg);
}

.people-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.people-card-link:hover .people-card-image img {
    transform: scale(1.08);
}

/* Job Tag */
.people-card-tag {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: 6px 12px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

/* Hover Overlay */
.people-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 59, 111, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 4px;
}

.people-card-link:hover .people-card-overlay {
    opacity: 1;
}

.people-card-more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    padding: 12px 24px;
    border: 1px solid var(--color-white);
    border-radius: 2px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.people-card-link:hover .people-card-more {
    transform: translateY(0);
    opacity: 1;
}

.people-card-more svg {
    transition: transform 0.3s ease;
}

.people-card-link:hover .people-card-more svg {
    transform: translateX(3px);
}

/* Card Content */
.people-card-content {
    padding: 0 var(--spacing-sm);
}

/* Quote */
.people-card-quote {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.8;
    color: var(--color-gray-800);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
}

.quote-mark {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

/* Info */
.people-card-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.people-card-job {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.people-card-name {
    font-weight: var(--font-weight-medium);
}

.people-card-year {
    opacity: 0.8;
}

.people-card-info span:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: var(--color-gray-400);
    margin-left: var(--spacing-sm);
    vertical-align: middle;
}

/* View All Button */
.people-action {
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 16px 40px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline svg {
    transition: transform var(--transition-base);
}

.btn-outline:hover svg {
    transform: translateX(5px);
}

/* Photo Gallery - Rich Tile Layout (No Hover Effects) */
.people-gallery {
    background-color: var(--color-gray-100);
    padding: 100px var(--container-padding);
}

@media (max-width: 767px) {
    .people-gallery {
        padding: 60px var(--container-padding);
    }
}

.people-gallery-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Heading Integration */
.gallery-heading {
    padding-bottom: var(--spacing-2xl);
}

.gallery-heading .section-heading__bg {
    font-size: clamp(60px, 12vw, 140px);
    opacity: 0.5;
}

.gallery-heading .section-heading__main {
    gap: 16px;
}

.gallery-heading .section-heading__title-text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

@media (max-width: 767px) {
    .gallery-heading .section-heading__bg {
        font-size: 50px;
    }
}

/* Gallery Grid - 9 Images, 3 Rows */
.people-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 8px;
}

@media (max-width: 1023px) {
    .people-gallery-grid {
        grid-template-rows: repeat(3, 140px);
        gap: 6px;
    }
}

@media (max-width: 767px) {
    .people-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 120px);
        gap: 4px;
    }
}

/* Gallery Item - NO hover effects for premium静謐 feel */
.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* NO transition, NO hover effects - static elegance */
}

/* Large Items - Span 2 rows */
.gallery-item--large {
    grid-column: span 4;
    grid-row: span 2;
}

/* Medium Items - Single row, wider */
.gallery-item--medium {
    grid-column: span 4;
    grid-row: span 1;
}

/* Small Items - Single cell */
.gallery-item--small {
    grid-column: span 4;
    grid-row: span 1;
}

/* Desktop Grid Layout (12 columns, 3 rows) */
@media (min-width: 768px) {
    /* Row 1: Large (4col x 2row) + Small (4col) + Small (4col) */
    .gallery-item--large:first-child {
        grid-column: 1 / 5;
        grid-row: 1 / 3;
    }

    .gallery-item--small:nth-child(2) {
        grid-column: 5 / 9;
        grid-row: 1 / 2;
    }

    .gallery-item--small:nth-child(3) {
        grid-column: 9 / 13;
        grid-row: 1 / 2;
    }

    /* Row 2: (part of large) + 3 medium */
    .gallery-item--medium:nth-child(4) {
        grid-column: 5 / 9;
        grid-row: 2 / 3;
    }

    .gallery-item--medium:nth-child(5) {
        grid-column: 9 / 13;
        grid-row: 2 / 3;
    }

    .gallery-item--medium:nth-child(6) {
        grid-column: 1 / 5;
        grid-row: 3 / 4;
    }

    /* Row 3: Small + Small + Large */
    .gallery-item--small:nth-child(7) {
        grid-column: 5 / 7;
        grid-row: 3 / 4;
    }

    .gallery-item--small:nth-child(8) {
        grid-column: 7 / 9;
        grid-row: 3 / 4;
    }

    .gallery-item--large:nth-child(9) {
        grid-column: 9 / 13;
        grid-row: 3 / 4;
    }
}

/* Mobile Grid Layout (2 columns) */
@media (max-width: 767px) {
    .gallery-item--large,
    .gallery-item--medium,
    .gallery-item--small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item--large:first-child {
        grid-column: span 2;
    }

    .gallery-item--large:nth-child(9) {
        grid-column: span 2;
    }
}

/* ================================================
   10. Utilities
   ================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================
   9. Responsive
   ================================================ */

/* Tablet */
@media (max-width: 1023px) {
    :root {
        --header-height: 70px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --header-height: 60px;
        --container-padding: 16px;
    }

    .hero-scroll {
        bottom: 30px;
    }

    .hero-scroll-line {
        height: 40px;
    }
}

/* ================================================
   11. Work & Career Section (Rich Redesign)
   ================================================ */

/* ----- Section Container ----- */
.wc {
    position: relative;
}

/* ----- Section Title Component (Unified Heading) ----- */
/* ALWAYS VISIBLE - No animation dependencies */
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl) 0;
    padding-left: 28px;
    min-height: 80px;
    overflow: visible;
}

@media (max-width: 767px) {
    .section-title {
        padding-left: 20px;
    }
}

/* Background English Text (Watermark) - ALWAYS VISIBLE */
.section-title-en {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(13, 59, 111, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

@media (max-width: 767px) {
    .section-title-en {
        font-size: clamp(36px, 14vw, 60px);
        -webkit-text-stroke: 1px rgba(13, 59, 111, 0.06);
    }
}

/* Main Japanese Title - ALWAYS VISIBLE */
.section-title-ja {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    font-weight: var(--font-weight-black);
    letter-spacing: 0.08em;
    color: var(--color-primary);
    z-index: 1;
}

/* M-Red Accent Line - ALWAYS VISIBLE */
.section-title-ja::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 3px;
    background-color: var(--color-accent);
}

@media (max-width: 767px) {
    .section-title-ja::before {
        left: -16px;
        width: 10px;
        height: 2px;
    }
}

/* === Light variant (for dark backgrounds) === */
.section-title--light .section-title-en {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.section-title--light .section-title-ja {
    color: var(--color-white);
}

.section-title--light .section-title-ja::before {
    background-color: var(--color-accent);
}

/* === Center aligned variant === */
.section-title--center {
    justify-content: center;
    text-align: center;
    padding-left: 0;
    padding-bottom: calc(var(--spacing-xl) + 20px);
}

.section-title--center .section-title-en {
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-title--center .section-title-ja::before {
    display: none;
}

.section-title--center .section-title-ja::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
}

/* ----- Shared Section Label (Legacy - kept for compatibility) ----- */
.wc-section-label {
    display: block;
    margin-bottom: var(--spacing-lg);
}

.wc-section-label__en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.wc-section-label__ja {
    display: block;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
}

.wc-section-label--light .wc-section-label__en {
    color: var(--color-white);
}

.wc-section-label--light .wc-section-label__ja {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== BLOCK 1: Hero Section ===== */
.wc-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 767px) {
    .wc-hero {
        height: 60vh;
        min-height: 400px;
    }
}

.wc-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.wc-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.wc-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 59, 111, 0.85) 0%,
        rgba(13, 59, 111, 0.7) 50%,
        rgba(9, 42, 82, 0.8) 100%
    );
    z-index: 1;
}

.wc-hero__shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--color-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 2;
}

@media (max-width: 767px) {
    .wc-hero__shape {
        height: 60px;
    }
}

.wc-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .wc-hero__content {
        padding-bottom: 40px;
    }
}

.wc-hero__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: 24px;
}

/* Accent line before label */
.wc-hero__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: var(--color-accent);
}

.wc-hero__title {
    margin-bottom: var(--spacing-xl);
}

.wc-hero__title-line {
    display: block;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.4;
    color: var(--color-white);
}

.wc-hero__title-line--bold {
    font-weight: 900;
}

.wc-hero__lead {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: var(--font-weight-medium);
    line-height: 2;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.wc-hero__number {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .wc-hero__number {
        right: 5%;
        font-size: 140px;
    }
}

@media (max-width: 767px) {
    .wc-hero__number {
        display: none;
    }
}

/* ===== BLOCK 2: Job Types Feature Cards ===== */
.wc-jobs {
    position: relative;
    padding: 100px 0 120px;
    background-color: var(--color-white);
}

@media (max-width: 767px) {
    .wc-jobs {
        padding: 60px 0 80px;
    }
}

.wc-jobs__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.wc-jobs__header {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .wc-jobs__header {
        margin-bottom: 50px;
    }
}

.wc-jobs__header .section-title {
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.wc-jobs__intro {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 2;
    color: var(--color-gray-700);
    letter-spacing: 0.03em;
}

.wc-jobs__grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

@media (max-width: 767px) {
    .wc-jobs__grid {
        gap: 50px;
    }
}

/* Job Feature Card */
.wc-job-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1023px) {
    .wc-job-feature {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .wc-job-feature {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.wc-job-feature--right .wc-job-feature__visual {
    order: 2;
}

.wc-job-feature--right .wc-job-feature__content {
    order: 1;
}

@media (max-width: 767px) {
    .wc-job-feature--right .wc-job-feature__visual,
    .wc-job-feature--right .wc-job-feature__content {
        order: unset;
    }
}

.wc-job-feature__visual {
    position: relative;
}

.wc-job-feature__image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.wc-job-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.wc-job-feature:hover .wc-job-feature__image img {
    transform: scale(1.05);
}

.wc-job-feature__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.wc-job-feature__content {
    padding: var(--spacing-xl) 0;
}

@media (max-width: 767px) {
    .wc-job-feature__content {
        padding: 0;
    }
}

.wc-job-feature__number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(13, 59, 111, 0.1);
    margin-bottom: var(--spacing-md);
    transition: color var(--transition-base);
}

/* Accent color on hover for job numbers */
.wc-job-feature:hover .wc-job-feature__number {
    color: rgba(207, 22, 45, 0.15);
}

.wc-job-feature__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-black);
    letter-spacing: 0.04em;
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-lg);
}

.wc-job-feature__desc {
    font-size: 0.9375rem;
    line-height: 2.2;
    color: var(--color-gray-600);
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-xl);
}

.wc-job-feature__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1em;
    color: var(--color-primary);
    padding: 12px 0;
    border-bottom: 2px solid var(--color-primary);
    transition: all var(--transition-base);
}

.wc-job-feature__link:hover {
    gap: var(--spacing-md);
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.wc-job-feature__link svg {
    transition: transform var(--transition-base);
}

.wc-job-feature__link:hover svg {
    transform: translateX(4px);
}

/* ===== BLOCK 3: Career Path ===== */
.wc-career {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .wc-career {
        padding: 80px 0;
    }
}

.wc-career__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.wc-career__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.wc-career__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 59, 111, 0.92) 0%,
        rgba(9, 42, 82, 0.95) 100%
    );
    z-index: 1;
}

.wc-career__inner {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    z-index: 2;
}

.wc-career__header {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .wc-career__header {
        margin-bottom: 50px;
    }
}

.wc-career__header .section-title {
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.wc-career__lead {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.wc-career__lead span {
    font-weight: var(--font-weight-black);
    color: var(--color-white);
}

/* Timeline */
.wc-career__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
}

/* Horizontal connector line */
.wc-career__timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
}

@media (max-width: 1023px) {
    .wc-career__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    .wc-career__timeline::before {
        display: none;
    }
}

@media (max-width: 567px) {
    .wc-career__timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

.wc-career__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.wc-career__step-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
}

.wc-career__step:hover .wc-career__step-marker {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: scale(1.1);
}

@media (max-width: 567px) {
    .wc-career__step-marker {
        width: 60px;
        height: 60px;
    }
}

.wc-career__step-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.wc-career__step:hover .wc-career__step-year {
    color: var(--color-primary);
}

.wc-career__step-content {
    padding: 0 var(--spacing-sm);
}

.wc-career__step-period {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-base);
}

/* Accent on last step (Leader) */
.wc-career__step:last-child .wc-career__step-period {
    color: var(--color-accent-light);
}

.wc-career__step-title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.04em;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.wc-career__step-desc {
    font-size: 0.8125rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== BLOCK 4: Benefits ===== */
.wc-benefits {
    position: relative;
    padding: 140px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

@media (max-width: 767px) {
    .wc-benefits {
        padding: 80px 0;
    }
}

.wc-benefits__shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(13, 59, 111, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.wc-benefits__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.wc-benefits__grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1200px) {
    .wc-benefits__grid {
        grid-template-columns: 360px 1fr;
        gap: 60px;
    }
}

@media (max-width: 1023px) {
    .wc-benefits__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Photo Column */
.wc-benefits__visual {
    position: relative;
}

@media (max-width: 1023px) {
    .wc-benefits__visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

.wc-benefits__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.wc-benefits__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-benefits__accent {
    position: absolute;
    bottom: 40px;
    right: -40px;
    z-index: 2;
}

@media (max-width: 767px) {
    .wc-benefits__accent {
        right: -20px;
        bottom: 20px;
    }
}

.wc-benefits__accent-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    line-height: 2;
    text-align: right;
    color: var(--color-accent);
    text-shadow:
        2px 2px 0 #f8fafc,
        -2px -2px 0 #f8fafc,
        2px -2px 0 #f8fafc,
        -2px 2px 0 #f8fafc;
}

/* Content Column */
.wc-benefits__content {
    padding-top: var(--spacing-xl);
}

@media (max-width: 1023px) {
    .wc-benefits__content {
        padding-top: 0;
    }
}

.wc-benefits__header {
    margin-bottom: var(--spacing-3xl);
}

.wc-benefits__header .section-title {
    margin-bottom: var(--spacing-lg);
}

.wc-benefits__lead {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.wc-benefits__lead span {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

/* Benefits Groups */
.wc-benefits__group {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--color-gray-200);
}

.wc-benefits__group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wc-benefits__group-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.04em;
    color: var(--color-gray-900);
    margin-bottom: var(--spacing-lg);
}

.wc-benefits__group-title svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    stroke-width: 2;
}

.wc-benefits__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.wc-benefits__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-gray-700);
}

.wc-benefits__list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ===== BLOCK 5: Culture Collage ===== */
.wc-culture {
    padding: 100px 0 120px;
    background-color: var(--color-primary);
}

@media (max-width: 767px) {
    .wc-culture {
        padding: 60px 0 80px;
    }
}

.wc-culture__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.wc-culture__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.wc-culture__header .section-title {
    justify-content: center;
}

/* Photo Grid — 12 photos, uniform rectangle */
.wc-culture__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
}

@media (max-width: 1023px) {
    .wc-culture__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }
}

@media (max-width: 567px) {
    .wc-culture__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
        gap: var(--spacing-sm);
    }
}

.wc-culture__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.wc-culture__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wc-culture__item:hover img {
    transform: scale(1.08);
}

.wc-culture__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 100%
    );
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.wc-culture__item:hover .wc-culture__caption {
    transform: translateY(0);
}

/* Stats */
.wc-culture__stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .wc-culture__stats {
        gap: var(--spacing-xl);
    }
}

.wc-culture__stat {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    min-width: 160px;
}

@media (max-width: 767px) {
    .wc-culture__stat {
        padding: var(--spacing-lg);
        min-width: 100px;
        flex: 1;
    }
}

.wc-culture__stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--color-white);
}

.wc-culture__stat-unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-left: 2px;
}

/* Accent color for 100% stat (育休復職率) */
.wc-culture__stat:nth-child(2) .wc-culture__stat-number,
.wc-culture__stat:nth-child(2) .wc-culture__stat-unit {
    color: var(--color-accent);
}

.wc-culture__stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: var(--spacing-sm);
}

/* ================================================
   12. CTA Section - Emotional Climax
   ================================================ */
.cta-section {
    position: relative;
    padding: 160px 0 140px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 100px 0 80px;
        min-height: auto;
    }
}

/* Background Image */
.cta-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%);
}

/* Red Gradient Overlay - M-Red as Hero */
.cta-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(207, 22, 45, 0.92) 0%,
        rgba(180, 15, 35, 0.88) 30%,
        rgba(140, 10, 25, 0.9) 60%,
        rgba(13, 59, 111, 0.95) 100%
    );
    z-index: 1;
}

/* Animated Speed Lines */
.cta-section__lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.cta-section__line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: speedLine 4s ease-in-out infinite;
}

.cta-section__line--1 {
    top: 15%;
    left: -100%;
    width: 60%;
    animation-delay: 0s;
}

.cta-section__line--2 {
    top: 35%;
    left: -100%;
    width: 80%;
    animation-delay: 0.8s;
}

.cta-section__line--3 {
    top: 55%;
    left: -100%;
    width: 50%;
    animation-delay: 1.6s;
}

.cta-section__line--4 {
    top: 75%;
    left: -100%;
    width: 70%;
    animation-delay: 2.4s;
}

.cta-section__line--5 {
    top: 90%;
    left: -100%;
    width: 40%;
    animation-delay: 3.2s;
}

@keyframes speedLine {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 100%));
        opacity: 0;
    }
}

/* Content Container */
.cta-section__inner {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
    z-index: 10;
}

/* Decorative Number */
.cta-section__number {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(100px, 18vw, 200px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@media (max-width: 767px) {
    .cta-section__number {
        top: -40px;
        font-size: 80px;
    }
}

/* Section Label */
.cta-section__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding: 0 20px;
}

.cta-section__label::before,
.cta-section__label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.cta-section__label::before {
    left: -40px;
}

.cta-section__label::after {
    right: -40px;
}

@media (max-width: 567px) {
    .cta-section__label::before,
    .cta-section__label::after {
        display: none;
    }
}

/* Main Title */
.cta-section__title {
    margin-bottom: var(--spacing-xl);
}

.cta-section__title-line {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section__title-line--emphasis {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-white);
    margin-top: var(--spacing-sm);
}

/* Sub Message */
.cta-section__message {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--spacing-3xl);
}

/* CTA Buttons Container */
.cta-section__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

/* Primary CTA Button */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    min-width: 280px;
    padding: 24px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-decoration: none;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 567px) {
    .cta-button {
        min-width: 240px;
        padding: 20px 36px;
        font-size: 1rem;
    }
}

.cta-button--primary {
    background: var(--color-white);
    color: var(--color-accent);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4);
}

.cta-button--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.3);
}

/* Button Background Glow */
.cta-button__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(207, 22, 45, 0.1) 0%,
        transparent 50%,
        rgba(207, 22, 45, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover .cta-button__bg {
    opacity: 1;
}

/* Button Text */
.cta-button__text {
    position: relative;
    z-index: 2;
}

/* Button Arrow */
.cta-button__arrow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button:hover .cta-button__arrow {
    opacity: 1;
    transform: translateX(0);
}

.cta-button__arrow svg {
    stroke: var(--color-accent);
}

/* Button Ripple Effect */
.cta-button__ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(207, 22, 45, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.cta-button__ripple.is-active {
    animation: rippleExpand 0.8s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Pulsing Glow Effect */
.cta-button--primary::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(
        45deg,
        var(--color-accent),
        rgba(255, 255, 255, 0.8),
        var(--color-accent)
    );
    border-radius: 64px;
    z-index: -1;
    opacity: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

.cta-button--primary:hover::before {
    opacity: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Microcopy */
.cta-section__microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
}

.cta-section__microcopy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.cta-section__microcopy-icon svg {
    stroke: currentColor;
}

/* Secondary Link */
.cta-section__secondary {
    margin-top: var(--spacing-lg);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.cta-link:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
    gap: var(--spacing-md);
}

.cta-link svg {
    transition: transform var(--transition-base);
}

.cta-link:hover svg {
    transform: translateX(4px);
}

/* Bottom Accent Line */
.cta-section__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--color-accent) 0%,
        var(--color-secondary) 50%,
        var(--color-primary) 100%
    );
    z-index: 10;
}

/* SP Only Helper */
.sp-only {
    display: none;
}

@media (max-width: 567px) {
    .sp-only {
        display: inline;
    }
}

/* ================================================
   Footer - BMW Cockpit Inspired (Jet Black)
   ================================================ */
.site-footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

/* Top Separator - M-Red Accent Line */
.footer-separator {
    position: relative;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
}

.footer-separator__line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(207, 22, 45, 0.4);
}

/* Footer Inner Container */
.footer-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 80px var(--container-padding) 40px;
}

@media (max-width: 767px) {
    .footer-inner {
        padding: 60px var(--container-padding) 30px;
    }
}

/* Footer Main - 3 Column Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1023px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Footer Brand/Logo */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .footer-logo {
        justify-content: center;
    }
}

.footer-logo__img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo__text-wrap {
    display: flex;
    flex-direction: column;
}

.footer-logo__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.footer-logo__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
}

.footer-brand__tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    gap: 60px;
    justify-content: center;
}

@media (max-width: 767px) {
    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }
}

.footer-nav__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav__list li a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}

.footer-nav__list li a:hover {
    color: var(--color-white);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 1023px) {
    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .footer-contact {
        grid-column: span 1;
    }
}

.footer-contact__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-contact__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact__company {
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact__address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-contact__tel a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-contact__tel a:hover {
    color: var(--color-white);
}

.footer-contact__branch {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 8px;
}

.footer-contact__dept {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin: 4px 0 0;
}

.footer-contact__email a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact__email a:hover {
    color: var(--color-white);
}

.footer-contact__hours {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* M-Red Accent Line in Bottom */
.footer-bottom__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

@media (max-width: 767px) {
    .footer-bottom__accent {
        left: 50%;
        transform: translateX(-50%);
    }
}

.footer-copyright {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.footer-bmw {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========================================================================
   Data Section - Precision Dashboard
   ======================================================================== */

.dashboard {
    position: relative;
    padding: 120px 0 140px;
    background: var(--color-primary);
    overflow: hidden;
}

@media (max-width: 767px) {
    .dashboard {
        padding: 80px 0 100px;
    }
}

/* Dashboard Section - White Heading */
.dashboard .section-heading__bg {
    color: rgba(255, 255, 255, 0.06);
}

.dashboard .section-heading__number-inner {
    color: var(--color-white);
}

.dashboard .section-heading__title-text {
    color: var(--color-white);
}

.dashboard .section-heading__label {
    color: rgba(255, 255, 255, 0.7);
}

.dashboard .section-heading__line {
    background: var(--color-white);
}

/* Blueprint Background */
.dashboard__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dashboard__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.dashboard__blueprint {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.015) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(207,22,45,0.02) 0%, transparent 50%);
}

/* Container */
.dashboard__container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 1;
}

@media (max-width: 767px) {
    .dashboard__container {
        padding: 0 20px;
    }
}

/* Layout Grid */
.dashboard__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

@media (max-width: 767px) {
    .dashboard__layout {
        gap: 20px;
        margin-top: 40px;
    }
}

/* Rows */
.dashboard__row {
    display: grid;
    gap: 24px;
}

@media (max-width: 767px) {
    .dashboard__row {
        gap: 20px;
    }
}

.dashboard__row--donut {
    grid-template-columns: 1fr;
}

.dashboard__row--numbers,
.dashboard__row--gauges {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .dashboard__row--numbers,
    .dashboard__row--gauges {
        grid-template-columns: 1fr;
    }
}

/* Card Base */
.dashboard__card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dashboard__card.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.dashboard__card-inner {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 767px) {
    .dashboard__card-inner {
        padding: 30px 20px;
    }
}

/* Blueprint texture on cards */
.dashboard__card-texture {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 19px,
            rgba(255,255,255,0.015) 19px,
            rgba(255,255,255,0.015) 20px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 19px,
            rgba(255,255,255,0.015) 19px,
            rgba(255,255,255,0.015) 20px
        );
    pointer-events: none;
}

/* Card Typography */
.dashboard__card-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.dashboard__card-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

.dashboard__card-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
}

/* ========== Donut Chart ========== */
.donut {
    position: relative;
    width: 200px;
    height: 200px;
}

@media (max-width: 480px) {
    .donut {
        width: 160px;
        height: 160px;
    }
}

.donut__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut__segment {
    transition: stroke-dasharray 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.donut__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.donut__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
}

.donut__total {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.donut__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    /* Metallic hairline texture */
    background: linear-gradient(
        135deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.8) 50%,
        rgba(255,255,255,1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 480px) {
    .donut__number {
        font-size: 2rem;
    }
}

.donut__unit {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Donut Legend */
.donut__legend {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

@media (max-width: 480px) {
    .donut__legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

.donut__legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donut__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.donut__legend-dot--male {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.donut__legend-dot--female {
    background: #cf162d;
    box-shadow: 0 0 8px rgba(207, 22, 45, 0.5);
}

.donut__legend-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.donut__legend-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.donut__legend-num {
    font-weight: 700;
}

.donut__legend-count {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

/* ========== Big Number ========== */
.bignumber {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.bignumber__icon {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .bignumber__icon {
        width: 60px;
        height: 60px;
    }
}

.bignumber__icon svg {
    width: 100%;
    height: 100%;
}

.bignumber__value {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bignumber__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    /* Metallic hairline texture effect */
    background: linear-gradient(
        180deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.85) 30%,
        rgba(255,255,255,0.95) 50%,
        rgba(255,255,255,0.8) 70%,
        rgba(255,255,255,1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
    .bignumber__num {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .bignumber__num {
        font-size: 3rem;
    }
}

.bignumber__unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
    .bignumber__unit {
        font-size: 1.25rem;
    }
}

/* ========== Circular Gauge ========== */
.circgauge {
    position: relative;
    width: 160px;
    height: 160px;
}

@media (max-width: 480px) {
    .circgauge {
        width: 140px;
        height: 140px;
    }
}

.circgauge__svg {
    width: 100%;
    height: 100%;
}

.circgauge__scale {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    fill: rgba(255, 255, 255, 0.4);
    text-anchor: middle;
}

.circgauge__arc-progress {
    transition: stroke-dasharray 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.circgauge__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.circgauge__value {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.circgauge__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

@media (max-width: 480px) {
    .circgauge__num {
        font-size: 1.75rem;
    }
}

.circgauge__unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.circgauge__sublabel {
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* Low indicator badge */
.circgauge__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(207, 22, 45, 0.2);
    border: 1px solid rgba(207, 22, 45, 0.4);
    border-radius: 20px;
}

.circgauge__badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #cf162d;
    letter-spacing: 0.15em;
}

/* Marker pulse animation */
.circgauge__marker {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ========== Arch Gauge (Half-circle) ========== */
.archgauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 220px;
}

.archgauge__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.archgauge__sublabel {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.archgauge__svg {
    width: 100%;
    height: auto;
    margin-top: 8px;
}

.archgauge__ticks line {
    stroke: rgba(255, 255, 255, 0.2);
}

.archgauge__scale {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    fill: rgba(255, 255, 255, 0.4);
    text-anchor: middle;
}

.archgauge__arc-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 12;
    stroke-linecap: round;
}

.archgauge__arc-danger {
    fill: none;
    stroke: rgba(207, 22, 45, 0.25);
    stroke-width: 12;
    stroke-linecap: round;
}

.archgauge__arc-progress {
    fill: none;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dasharray 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.archgauge__arc-progress--accent {
    stroke: #cf162d;
}

.archgauge__marker {
    fill: #cf162d;
    filter: drop-shadow(0 0 6px rgba(207, 22, 45, 0.6));
    animation: markerPulse 2s ease-in-out infinite;
}

.archgauge__value-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.archgauge__prefix {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.archgauge__value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.archgauge__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.85) 50%,
        rgba(255,255,255,1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 480px) {
    .archgauge__num {
        font-size: 2rem;
    }
}

.archgauge__num--accent {
    background: linear-gradient(
        180deg,
        #ff3c50 0%,
        #cf162d 50%,
        #ff3c50 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.archgauge__unit {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Archgauge Badge */
.archgauge__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: rgba(207, 22, 45, 0.15);
    border: 1px solid rgba(207, 22, 45, 0.3);
    border-radius: 20px;
    margin-top: 8px;
}

.archgauge__badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    color: #cf162d;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Dashboard Tagline */
.dashboard__tagline {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 767px) {
    .dashboard__tagline {
        margin-top: 40px;
    }
}

.dashboard__tagline-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
}

@media (max-width: 767px) {
    .dashboard__tagline-text {
        font-size: 1rem;
    }
}

/* Animation Delays */
.dashboard__card:nth-child(1) { transition-delay: 0s; }
.dashboard__row--numbers .dashboard__card:nth-child(1) { transition-delay: 0.15s; }
.dashboard__row--numbers .dashboard__card:nth-child(2) { transition-delay: 0.25s; }
.dashboard__row--gauges .dashboard__card:nth-child(1) { transition-delay: 0.35s; }
.dashboard__row--gauges .dashboard__card:nth-child(2) { transition-delay: 0.45s; }

/* ========================================================================
   About Page - 会社概要 (Scoped under .page-about)
   ======================================================================== */

/* ==================== ABOUT HERO ==================== */
.page-about .about-hero,
.page-people .about-hero,
.page-career .about-hero,
.page-entry .about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    overflow: hidden;
    padding: 140px 40px 100px;
}

@media (max-width: 767px) {
    .page-about .about-hero,
    .page-people .about-hero,
    .page-career .about-hero,
    .page-entry .about-hero {
        min-height: 60vh;
        padding: 120px 20px 80px;
    }
}

.page-about .about-hero__bg,
.page-people .about-hero__bg,
.page-career .about-hero__bg,
.page-entry .about-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-about .about-hero__bg-text,
.page-people .about-hero__bg-text,
.page-career .about-hero__bg-text,
.page-entry .about-hero__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(120px, 22vw, 320px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
}

.page-about .about-hero__grid,
.page-people .about-hero__grid,
.page-career .about-hero__grid,
.page-entry .about-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-about .about-hero__content,
.page-people .about-hero__content,
.page-career .about-hero__content,
.page-entry .about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-about .about-hero__titles,
.page-people .about-hero__titles,
.page-career .about-hero__titles,
.page-entry .about-hero__titles {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-about .about-hero__titles.is-animated,
.page-people .about-hero__titles.is-animated,
.page-career .about-hero__titles.is-animated,
.page-entry .about-hero__titles.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.page-about .about-hero__label,
.page-people .about-hero__label,
.page-career .about-hero__label,
.page-entry .about-hero__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.page-about .about-hero__title,
.page-people .about-hero__title,
.page-career .about-hero__title,
.page-entry .about-hero__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.18em;
    margin: 0 0 16px;
}

.page-about .about-hero__subtitle,
.page-people .about-hero__subtitle,
.page-career .about-hero__subtitle,
.page-entry .about-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin: 0;
}

/* Scroll Indicator */
.page-about .about-hero__scroll,
.page-people .about-hero__scroll,
.page-career .about-hero__scroll,
.page-entry .about-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.8s ease 0.8s;
}

.page-about .about-hero__scroll.is-animated,
.page-people .about-hero__scroll.is-animated,
.page-career .about-hero__scroll.is-animated,
.page-entry .about-hero__scroll.is-animated {
    opacity: 1;
}

.page-about .about-hero__scroll-text,
.page-people .about-hero__scroll-text,
.page-career .about-hero__scroll-text,
.page-entry .about-hero__scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
}

.page-about .about-hero__scroll-line,
.page-people .about-hero__scroll-line,
.page-career .about-hero__scroll-line,
.page-entry .about-hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ==================== MESSAGE - 代表挨拶 ==================== */
.page-about .about-message {
    background: var(--color-white);
    padding: 120px 0;
    position: relative;
}

@media (max-width: 767px) {
    .page-about .about-message {
        padding: 80px 0;
    }
}

.page-about .about-message__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-about .about-message__container {
        padding: 0 20px;
    }
}

.page-about .about-message__header {
    margin-bottom: 60px;
}

.page-about .about-message__body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .page-about .about-message__body {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .page-about .about-message__body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Photo Area - Asymmetric Layout */
.page-about .about-message__visual {
    position: relative;
}

@media (max-width: 900px) {
    .page-about .about-message__visual {
        max-width: 320px;
        margin: 0 auto;
    }
}

.page-about .about-message__photo-wrapper {
    position: relative;
}

.page-about .about-message__photo {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
}

.page-about .about-message__photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.page-about .about-message__photo:hover img {
    filter: grayscale(0%);
}

.page-about .about-message__photo-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    z-index: 1;
    opacity: 0.3;
}

.page-about .about-message__name-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
}

.page-about .about-message__position {
    font-size: 0.8125rem;
    color: rgba(13, 59, 111, 0.6);
    letter-spacing: 0.1em;
}

.page-about .about-message__name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.18em;
}

/* Text Area */
.page-about .about-message__text {
    position: relative;
    padding-top: 20px;
}

.page-about .about-message__quote-mark {
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10rem;
    font-weight: 700;
    color: rgba(13, 59, 111, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 900px) {
    .page-about .about-message__quote-mark {
        font-size: 6rem;
        top: -10px;
        left: -10px;
    }
}

.page-about .about-message__catchphrase {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    line-height: 1.7;
    margin: 0 0 40px;
    position: relative;
}

.page-about .about-message__content {
    position: relative;
}

.page-about .about-message__content p {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 2.2;
    margin: 0 0 1.5em;
    letter-spacing: 0.02em;
}

.page-about .about-message__content p:last-child {
    margin-bottom: 0;
}

/* Signature */
.page-about .about-message__signature {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.page-about .about-message__signature-line {
    position: relative;
    width: 200px;
}

.page-about .about-message__signature-svg {
    width: 100%;
    height: 50px;
    color: var(--color-primary);
    opacity: 0.7;
}

.page-about .about-message__signature-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 2s ease;
}

.page-about .about-message__signature.is-animated .about-message__signature-path {
    stroke-dashoffset: 0;
}

.page-about .about-message__signature-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease 1.5s;
}

.page-about .about-message__signature.is-animated .about-message__signature-underline {
    transform: scaleX(1);
}

.page-about .about-message__signature-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.25em;
}

/* ==================== PHILOSOPHY - 企業理念 ==================== */
.page-about .about-philosophy {
    background: var(--color-primary);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-about .about-philosophy {
        padding: 80px 0 100px;
    }
}

.page-about .about-philosophy__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-about .about-philosophy__watermark {
    position: absolute;
    bottom: -5%;
    right: -5%;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(100px, 20vw, 300px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.015);
    letter-spacing: 0.05em;
    transform: rotate(-10deg);
}

.page-about .about-philosophy__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .page-about .about-philosophy__container {
        padding: 0 20px;
    }
}

.page-about .about-philosophy__header {
    margin-bottom: 50px;
}

/* Philosophy Section - White Heading */
.page-about .about-philosophy .section-heading__bg {
    color: rgba(255, 255, 255, 0.06);
}

.page-about .about-philosophy .section-heading__number-inner {
    color: var(--color-white);
}

.page-about .about-philosophy .section-heading__title-text {
    color: var(--color-white);
}

.page-about .about-philosophy .section-heading__label {
    color: rgba(255, 255, 255, 0.7);
}

.page-about .about-philosophy .section-heading__line {
    background: var(--color-white);
}

.page-about .about-philosophy__mission {
    text-align: center;
    margin-bottom: 70px;
}

.page-about .about-philosophy__mission-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.18em;
    line-height: 1.7;
    margin: 0;
}

/* Philosophy Steps */
.page-about .about-philosophy__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.page-about .about-philosophy__step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 50px 0;
    position: relative;
    overflow: visible;
}

@media (min-width: 768px) {
    .page-about .about-philosophy__step {
        min-height: 200px;
    }
}

@media (max-width: 600px) {
    .page-about .about-philosophy__step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 30px 0;
    }
}

/* Philosophy Step Photos - Blob clip-path shapes */
.page-about .about-philosophy__step-visual {
    position: absolute;
    z-index: 1;
    overflow: hidden;
}

.page-about .about-philosophy__step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.9);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.page-about .about-philosophy__step:hover .about-philosophy__step-visual img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

/* Blob shape 1 - organic right */
.page-about .about-philosophy__step-visual--blob1 {
    width: 220px;
    height: 160px;
    right: -40px;
    top: 10px;
    clip-path: polygon(8% 0%, 100% 4%, 95% 88%, 3% 100%, 0% 15%);
    opacity: 0.85;
}

/* Blob shape 2 - organic left */
.page-about .about-philosophy__step-visual--blob2 {
    width: 200px;
    height: 150px;
    right: 40px;
    top: 20px;
    clip-path: polygon(5% 8%, 92% 0%, 100% 85%, 10% 95%, 0% 20%);
    opacity: 0.85;
}

/* Blob shape 3 - organic right */
.page-about .about-philosophy__step-visual--blob3 {
    width: 240px;
    height: 170px;
    right: -20px;
    top: 5px;
    clip-path: polygon(3% 5%, 97% 0%, 100% 92%, 8% 100%, 0% 10%);
    opacity: 0.85;
}

@media (max-width: 767px) {
    .page-about .about-philosophy__step-visual {
        position: relative;
        right: auto;
        top: auto;
        width: 100% !important;
        height: 140px !important;
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }
}

.page-about .about-philosophy__step-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.page-about .about-philosophy__step-number span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.page-about .about-philosophy__step-content {
    position: relative;
}

.page-about .about-philosophy__step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.14em;
    margin: 0 0 16px;
}

.page-about .about-philosophy__step-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    margin: 0;
}

.page-about .about-philosophy__step-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), rgba(255,255,255,0.1) 30%, transparent);
}

/* ==================== PHOTO BREAK - 横幅いっぱいの歪な形 ==================== */
.about-photo-break {
    position: relative;
    width: 100%;
    z-index: 2;
    /* 隣接セクションに重ねて隙間を消す */
    margin-top: -50px;
    margin-bottom: -50px;
}

.about-photo-break__img-wrap {
    width: 100%;
    overflow: hidden;
}

.about-photo-break__img-wrap--skew {
    clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
}

.about-photo-break__img-wrap--wave {
    clip-path: polygon(0 10%, 25% 3%, 75% 4%, 100% 0%, 100% 90%, 75% 97%, 25% 96%, 0% 100%);
}

.about-photo-break__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.6s ease;
}

.about-photo-break:hover .about-photo-break__img-wrap img {
    filter: grayscale(0%);
}

@media (max-width: 767px) {
    .about-photo-break {
        margin-top: -30px;
        margin-bottom: -30px;
    }
    .about-photo-break__img-wrap img {
        height: 260px;
    }
    .about-photo-break__img-wrap--skew {
        clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
    }
    .about-photo-break__img-wrap--wave {
        clip-path: polygon(0 6%, 25% 2%, 75% 3%, 100% 0%, 100% 94%, 75% 98%, 25% 97%, 0% 100%);
    }
}

/* ==================== COMPANY PROFILE - 会社情報 ==================== */
.page-about .about-profile {
    background: var(--color-white);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-about .about-profile {
        padding: 80px 0;
    }
}

.page-about .about-profile__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-about .about-profile__container {
        padding: 0 20px;
    }
}

.page-about .about-profile__header {
    margin-bottom: 50px;
}

/* Spec Sheet Style Table */
.page-about .about-profile__table-wrapper {
    position: relative;
    background: rgba(13, 59, 111, 0.02);
    border-radius: 8px;
    padding: 40px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-about .about-profile__table-wrapper {
        padding: 24px 20px;
    }
}

.page-about .about-profile__table-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
}

/* 2-Column Grid Layout */
.page-about .about-profile__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.page-about .about-profile__item {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(13, 59, 111, 0.08);
    transition: background-color 0.3s ease;
}

.page-about .about-profile__item:hover {
    background: rgba(13, 59, 111, 0.03);
}

.page-about .about-profile__item:nth-child(odd):not(.about-profile__item--wide) {
    border-right: 1px solid rgba(13, 59, 111, 0.08);
}

.page-about .about-profile__item--wide {
    grid-column: 1 / -1;
}

.page-about .about-profile__item-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.page-about .about-profile__indicator {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.page-about .about-profile__item-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-primary);
    line-height: 1.7;
}

/* Keep legacy .about-profile__value for reused child classes */
.page-about .about-profile__value {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-primary);
    line-height: 1.7;
}

.page-about .about-profile__value-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(13, 59, 111, 0.5);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.page-about .about-profile__note {
    font-size: 0.8125rem;
    color: rgba(13, 59, 111, 0.5);
    margin-left: 8px;
}

.page-about .about-profile__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about .about-profile__list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--color-primary);
    line-height: 1.6;
}

.page-about .about-profile__list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}

.page-about .about-profile__list--inline li {
    margin-bottom: 4px;
}

.page-about .about-profile__list li:last-child {
    margin-bottom: 0;
}

.page-about .about-profile__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: rgba(13, 59, 111, 0.3);
    border-radius: 50%;
}

/* 古物営業法に基づく表示 */
.page-about .about-profile__legal {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(13, 59, 111, 0.1);
}

.page-about .about-profile__legal-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    opacity: 0.7;
}

.page-about .about-profile__legal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-about .about-profile__legal-list div {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.page-about .about-profile__legal-list dt {
    flex-shrink: 0;
    width: 160px;
    color: rgba(13, 59, 111, 0.6);
    font-weight: 500;
}

.page-about .about-profile__legal-list dd {
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .page-about .about-profile__legal-list div {
        flex-direction: column;
        gap: 2px;
    }
    .page-about .about-profile__legal-list dt {
        width: auto;
    }
}

.page-about .about-profile__tel {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about .about-profile__tel:hover {
    color: var(--color-accent);
}

.page-about .about-profile__tel-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--color-accent);
    flex-shrink: 0;
}

.page-about .about-profile__tel {
    display: inline-flex;
    align-items: center;
}

/* Address with postal code */
.page-about .about-profile__value--address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-about .about-profile__postal {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* Mono-style values (FAX, etc.) */
.page-about .about-profile__value--mono {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* BMW Spec Sheet Style - Hours Display */
.page-about .about-profile__hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-about .about-profile__hours-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-about .about-profile__hours-type {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(13, 59, 111, 0.06);
    padding: 2px 10px;
    border-radius: 2px;
    min-width: 100px;
    text-align: center;
}

.page-about .about-profile__hours-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

/* M-Red Accent Indicator for Key Items */
.page-about .about-profile__indicator--accent {
    background: var(--color-accent);
}

@media (max-width: 767px) {
    .page-about .about-profile__grid {
        grid-template-columns: 1fr;
    }

    .page-about .about-profile__item:nth-child(odd):not(.about-profile__item--wide) {
        border-right: none;
    }

    .page-about .about-profile__list--inline {
        flex-direction: column;
        gap: 0;
    }
}

/* ==================== HISTORY - 沿革 ==================== */
.page-about .about-history {
    background: linear-gradient(180deg, #f8f9fa 0%, var(--color-white) 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-about .about-history {
        padding: 80px 0 100px;
    }
}

.page-about .about-history__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-about .about-history__watermark {
    position: absolute;
    top: 10%;
    left: -5%;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 800;
    color: rgba(13, 59, 111, 0.02);
    letter-spacing: 0.05em;
}

.page-about .about-history__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .page-about .about-history__container {
        padding: 0 20px;
    }
}

.page-about .about-history__header {
    margin-bottom: 60px;
}

/* Timeline */
.page-about .about-history__timeline {
    position: relative;
    padding-left: 170px;
}

@media (max-width: 767px) {
    .page-about .about-history__timeline {
        padding-left: 120px;
    }
}

@media (max-width: 480px) {
    .page-about .about-history__timeline {
        padding-left: 100px;
    }
}

.page-about .about-history__line {
    position: absolute;
    left: 125px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(13,59,111,0.1) 0%, rgba(207,22,45,0.3) 90%, var(--color-accent) 100%);
}

@media (max-width: 767px) {
    .page-about .about-history__line {
        left: 85px;
    }
}

@media (max-width: 480px) {
    .page-about .about-history__line {
        left: 70px;
    }
}

.page-about .about-history__item {
    position: relative;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

/* Marker */
.page-about .about-history__marker {
    position: absolute;
    left: -52px;
    top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .page-about .about-history__marker {
        left: -42px;
    }
}

@media (max-width: 480px) {
    .page-about .about-history__marker {
        left: -36px;
    }
}

/* Hide pulse animation to avoid overlap with text */
.page-about .about-history__marker-pulse {
    display: none;
}

.page-about .about-history__marker-dot {
    width: 12px;
    height: 12px;
    background: var(--color-white);
    border: 3px solid rgba(13, 59, 111, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.page-about .about-history__item:hover .about-history__marker-dot {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(207, 22, 45, 0.1);
}

/* Current marker */
.page-about .about-history__marker--current {
    position: relative;
}

.page-about .about-history__marker-dot--current {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.page-about .about-history__marker-pulse {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    animation: historyPulse 2s ease-in-out infinite;
}

@keyframes historyPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

/* Year */
.page-about .about-history__year {
    position: absolute;
    left: -170px;
    top: 24px;
    width: 110px;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .page-about .about-history__year {
        left: -120px;
        width: 70px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .page-about .about-history__year {
        left: -100px;
        width: 60px;
        font-size: 0.75rem;
    }
}

/* Content */
.page-about .about-history__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-about .about-history__month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.page-about .about-history__event {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 0.02em;
}

.page-about .about-history__detail {
    font-size: 0.875rem;
    color: rgba(13, 59, 111, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Future */
.page-about .about-history__future {
    text-align: center;
    margin-top: 60px;
}

.page-about .about-history__future-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(13, 59, 111, 0.4);
    letter-spacing: 0.25em;
    margin: 0;
}

/* ==================== ACCESS - アクセス ==================== */
.page-about .about-access {
    background: var(--color-white);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-about .about-access {
        padding: 80px 0;
    }
}

.page-about .about-access__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-about .about-access__container {
        padding: 0 20px;
    }
}

.page-about .about-access__header {
    margin-bottom: 50px;
}

/* Shop Card - Photo Top, Info+Map Bottom */
.page-about .about-access__shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    background: var(--color-primary);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.page-about .about-access__shop:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .page-about .about-access__shop {
        grid-template-columns: 1fr;
    }
}

/* Shop Photo - Full Width Top */
.page-about .about-access__shop-photo {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.page-about .about-access__shop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.page-about .about-access__shop:hover .about-access__shop-photo img {
    transform: scale(1.03);
}

@media (max-width: 767px) {
    .page-about .about-access__shop-photo {
        height: 200px;
    }
}

/* Shop Info */
.page-about .about-access__shop-info {
    padding: 32px;
}

@media (max-width: 767px) {
    .page-about .about-access__shop-info {
        padding: 28px 24px;
    }
}

/* Shop Map */
.page-about .about-access__shop-map {
    position: relative;
    min-height: 300px;
}

.page-about .about-access__shop-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) sepia(30%) hue-rotate(180deg) saturate(80%) contrast(1.1) brightness(0.85);
    transition: filter 0.5s ease;
}

.page-about .about-access__shop-map:hover iframe {
    filter: grayscale(60%) sepia(20%) hue-rotate(180deg) saturate(90%) contrast(1.05) brightness(0.95);
}

@media (max-width: 767px) {
    .page-about .about-access__shop-map {
        min-height: 220px;
    }
}

.page-about .about-access__shop-feature {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-about .about-access__shop-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about .about-access__shop-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.page-about .about-access__shop-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.14em;
}

.page-about .about-access__address {
    font-style: normal;
    margin-bottom: 24px;
}

.page-about .about-access__address p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.page-about .about-access__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about .about-access__tel,
.page-about .about-access__hours,
.page-about .about-access__holiday {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-about .about-access__tel-label,
.page-about .about-access__hours-label,
.page-about .about-access__holiday-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    min-width: 60px;
}

.page-about .about-access__tel a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.page-about .about-access__tel a:hover {
    color: var(--color-accent);
}


/* Enhanced hours display */
.page-about .about-access__hours {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.page-about .about-access__hours-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-about .about-access__hours-detail p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
}

.page-about .about-access__hours-type {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 8px;
}

.page-about .about-access__transport {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.page-about .about-access__transport p {
    margin: 0 0 8px;
}

.page-about .about-access__transport strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.page-about .about-access__transport-icon {
    display: inline-block;
    vertical-align: -0.15em;
    width: 18px;
    height: 18px;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Map */
.page-about .about-access__map-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .page-about .about-access__map-wrapper {
        min-height: 350px;
    }
}

.page-about .about-access__map {
    position: absolute;
    inset: 0;
}

.page-about .about-access__map iframe {
    width: 100%;
    height: 100%;
    /* Navy/Monochrome filter - BMW-inspired dark elegance */
    filter: grayscale(100%) sepia(30%) hue-rotate(180deg) saturate(80%) contrast(1.1) brightness(0.85);
    transition: filter 0.5s ease;
}

.page-about .about-access__map-wrapper:hover iframe {
    filter: grayscale(60%) sepia(20%) hue-rotate(180deg) saturate(90%) contrast(1.05) brightness(0.95);
}

.page-about .about-access__map-overlay {
    position: absolute;
    inset: 0;
    /* Navy gradient overlay for brand consistency */
    background: linear-gradient(135deg, rgba(13, 59, 111, 0.2) 0%, rgba(13, 59, 111, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

/* SP Only */
.page-about .sp-only {
    display: none;
}

@media (max-width: 767px) {
    .page-about .sp-only {
        display: inline;
    }
}

/* Animation Base */
.page-about [data-animation] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-about [data-animation="fade"] {
    transform: translateY(0);
}

.page-about [data-animation].is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MOBILE UX OPTIMIZATION - スマートフォン最適化
   親指での操作性を最大化し、採用成功率を向上
   ============================================================ */

/* ===========================================
   1. CTA BUTTON - 親指リーチ最適化
   =========================================== */

/* モバイル: CTAボタンを大きく、タップしやすく */
@media (max-width: 767px) {
    .cta-button {
        min-width: 100%;
        max-width: 320px;
        padding: 22px 40px;
        font-size: 1.125rem;
        /* Apple推奨: 最小タップターゲット 44px */
        min-height: 56px;
        /* 角丸を少し抑えてモダンに */
        border-radius: 12px;
    }

    .cta-button--primary {
        /* タップ時のフィードバック強化 */
        box-shadow:
            0 6px 24px rgba(207, 22, 45, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    .cta-button--primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 12px rgba(207, 22, 45, 0.4);
    }

    /* ボタン内のアロー常時表示（モバイルではホバーがないため） */
    .cta-button__arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* CTAセクション全体の余白調整 */
    .cta-section__inner {
        padding: 0 20px;
    }

    .cta-section__title-line {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        letter-spacing: 0.08em;
    }

    .cta-section__message {
        font-size: 0.9rem;
        line-height: 1.9;
        padding: 0 10px;
    }

    .cta-section__buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-section__microcopy {
        font-size: 0.8125rem;
        margin-top: 16px;
    }

    /* セカンダリリンクのタップエリア拡大 */
    .cta-link {
        padding: 16px 24px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }
}

/* 超小型スマホ対応 (iPhone SE等) */
@media (max-width: 374px) {
    .cta-button {
        padding: 18px 28px;
        font-size: 1rem;
        min-height: 52px;
    }

    .cta-section__title-line {
        font-size: 1.125rem;
    }
}

/* ===========================================
   2. HERO TYPOGRAPHY - レスポンシブ最適化
   =========================================== */

@media (max-width: 767px) {
    /* メインコピー: vw単位で画面幅に追従 */
    .hero-maincopy-line {
        font-size: clamp(1.25rem, 5.5vw, 2rem);
        letter-spacing: 0.03em;
        line-height: 1.6;
    }

    /* サブコピー */
    .hero-subcopy-text {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
        letter-spacing: 0.15em;
    }

    /* ヒーローCTAボタン */
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 0.8125rem;
        min-height: 52px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ヒーローコンテンツの余白 */
    .hero-content-inner {
        padding: 0 24px;
    }

    /* アクセントライン調整 */
    .hero-accent-line {
        width: 50px;
    }

    .hero-accent-line::before {
        width: 35px;
    }
}

/* タブレット縦向き */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero-maincopy-line {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
    }
}

/* ===========================================
   3. HAMBURGER MENU - タップしやすい間隔
   =========================================== */

@media (max-width: 1024px) {
    /* ハンバーガーボタン自体のタップエリア拡大 */
    .hamburger {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }

    /* メニュー展開時のナビゲーション */
    .global-nav {
        padding-top: 100px;
    }

    /* ナビゲーションリンク: 44px以上の高さを確保 */
    .nav-item {
        margin-bottom: 8px;
    }

    .nav-link {
        padding: 16px 24px;
        min-height: 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* タップ範囲を視覚的に明示 */
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .nav-link:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* 英語ラベル */
    .nav-link-en {
        font-size: 1rem;
        letter-spacing: 0.12em;
        margin-bottom: 4px;
    }

    /* 日本語補助テキスト */
    .nav-link-ja {
        font-size: 0.75rem;
        opacity: 0.7;
        letter-spacing: 0.05em;
    }

    /* メニュー内CTA */
    .nav-cta {
        margin-top: 32px;
        padding: 0 24px;
    }

    .nav-cta-button {
        width: 100%;
        padding: 18px 32px;
        min-height: 56px;
        font-size: 0.9375rem;
        justify-content: center;
        border-radius: 8px;
    }
}

/* ===========================================
   4. SECTION HEADINGS - モバイル調整
   =========================================== */

@media (max-width: 767px) {
    .section-heading__bg {
        font-size: clamp(48px, 18vw, 100px);
    }

    .section-heading__title-text {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-heading__label {
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
    }

    .section-heading__number-inner {
        font-size: 0.625rem;
    }
}

/* ===========================================
   5. CARDS & DASHBOARD - モバイル最適化
   =========================================== */

@media (max-width: 767px) {
    /* ダッシュボードカードの余白 */
    .dashboard__card {
        padding: 24px 20px;
    }

    .dashboard__card-title {
        font-size: 0.6875rem;
    }

    /* 数値表示 */
    .dashboard__number-value {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .dashboard__number-unit {
        font-size: 1rem;
    }
}

/* ===========================================
   6. FOOTER - モバイルタップ最適化
   =========================================== */

@media (max-width: 767px) {
    .footer-nav__list li a {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-contact__tel a {
        padding: 8px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ===========================================
   7. TOUCH FEEDBACK - タッチフィードバック
   =========================================== */

@media (hover: none) and (pointer: coarse) {
    /* タッチデバイスでのボタンフィードバック */
    .cta-button:active,
    .hero-cta-button:active,
    .nav-cta-button:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    /* ホバーエフェクトを無効化（タッチデバイス） */
    .cta-button:hover,
    .hero-cta-button:hover {
        transform: none;
    }

    /* 代わりにアクティブステートを強化 */
    .cta-button--primary:active {
        background: #f5f5f5;
    }
}

/* ===========================================
   8. SAFE AREA - ノッチ対応 (iPhone X以降)
   =========================================== */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .site-footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }

    .cta-section {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    /* 固定ヘッダーのノッチ対応 */
    .site-header {
        padding-top: env(safe-area-inset-top);
    }
}

/* ===========================================
   9. SCROLL PERFORMANCE - スクロール最適化
   =========================================== */

@media (max-width: 767px) {
    /* スムーズスクロール */
    html {
        scroll-behavior: smooth;
    }

    /* GPU アクセラレーション */
    .hero-image,
    .cta-section__bg,
    .dashboard__card {
        will-change: transform;
        transform: translateZ(0);
    }

    /* オーバースクロール防止 */
    body {
        overscroll-behavior-y: contain;
    }
}

/* ============================================================
   PEOPLE PAGE - 人を知る
   コンセプト: Professional Pride - 静謐から情熱へ
   ============================================================ */

/* ===========================================
   PEOPLE HERO
   =========================================== */

.page-people .people-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-people .people-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
}

.page-people .people-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(207, 22, 45, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

.page-people .people-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.page-people .people-hero__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
}

.page-people .people-hero__title {
    margin-bottom: 32px;
}

.page-people .people-hero__title-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-people .people-hero__title-ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
}

.page-people .people-hero__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    letter-spacing: 0.05em;
}

/* Hero Scroll Indicator */
.page-people .people-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.page-people .people-hero__scroll[data-animation].is-animated {
    opacity: 1;
}

.page-people .people-hero__scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
}

.page-people .people-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

/* ===========================================
   PEOPLE FILTER
   =========================================== */

.page-people .people-filter {
    background: var(--color-white);
    padding: 40px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid rgba(13, 59, 111, 0.08);
}

@media (max-width: 767px) {
    .page-people .people-filter {
        top: 70px;
        padding: 24px 0;
    }
}

.page-people .people-filter__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-people .people-filter__container {
        padding: 0 16px;
    }
}

.page-people .people-filter__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-people .people-filter__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(13, 59, 111, 0.15);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-people .people-filter__btn:hover {
    border-color: var(--color-primary);
    background: rgba(13, 59, 111, 0.03);
}

.page-people .people-filter__btn.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.page-people .people-filter__btn-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.page-people .people-filter__btn.is-active .people-filter__btn-en {
    color: var(--color-white);
}

.page-people .people-filter__btn-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.page-people .people-filter__btn.is-active .people-filter__btn-ja {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 567px) {
    .page-people .people-filter__btn {
        padding: 10px 16px;
        flex: 1;
        min-width: calc(50% - 6px);
    }
}

/* ===========================================
   PEOPLE GRID
   =========================================== */

.page-people .people-grid {
    background: #f8f9fa;
    padding: 80px 0 120px;
}

@media (max-width: 767px) {
    .page-people .people-grid {
        padding: 60px 0 80px;
    }
}

.page-people .people-grid__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-people .people-grid__container {
        padding: 0 20px;
    }
}

.page-people .people-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1023px) {
    .page-people .people-grid__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 567px) {
    .page-people .people-grid__list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===========================================
   PEOPLE CARD - 静と動の演出
   =========================================== */

.page-people .people-card {
    opacity: 0;
    transform: translateY(30px);
}

.page-people .people-card.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Filter animation */
.page-people .people-card.is-hidden {
    display: none;
}

.page-people .people-card.is-filtering {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-people .people-card__link {
    display: block;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-people .people-card__link:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(13, 59, 111, 0.15);
}

/* Card Image */
.page-people .people-card__image-wrapper {
    position: relative;
    overflow: hidden;
}

.page-people .people-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.page-people .people-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* モノクロフィルター - 静の状態 */
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.page-people .people-card__link:hover .people-card__image img {
    /* カラーへ変化 - 動の状態 */
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

/* M-Red Accent Line */
.page-people .people-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-people .people-card__link:hover .people-card__accent {
    width: 100%;
}

/* Card Content */
.page-people .people-card__content {
    padding: 28px 24px 24px;
}

.page-people .people-card__category {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    padding: 4px 10px;
    background: rgba(207, 22, 45, 0.08);
    border-radius: 2px;
    margin-bottom: 16px;
}

.page-people .people-card__name {
    margin-bottom: 16px;
}

.page-people .people-card__name-ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.page-people .people-card__name-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
}

.page-people .people-card__catchcopy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    min-height: 54px;
}

.page-people .people-card__meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(13, 59, 111, 0.08);
    margin-bottom: 16px;
}

.page-people .people-card__years,
.page-people .people-card__position {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
}

.page-people .people-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.page-people .people-card__link:hover .people-card__more {
    opacity: 1;
    transform: translateX(0);
}

.page-people .people-card__more svg {
    transition: transform 0.3s ease;
}

.page-people .people-card__link:hover .people-card__more svg {
    transform: translateX(4px);
}

/* ===========================================
   PEOPLE JOIN MESSAGE
   =========================================== */

.page-people .people-join {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark, #091e3a) 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Diagonal accent stripe */
.page-people .people-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(207, 22, 45, 0.04) 80px,
        rgba(207, 22, 45, 0.04) 82px
    );
    pointer-events: none;
}

/* Soft glow accent */
.page-people .people-join::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(207, 22, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-people .people-join__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.page-people .people-join__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   PEOPLE PAGE - SP Only
   =========================================== */

.page-people .sp-only {
    display: none;
}

@media (max-width: 767px) {
    .page-people .sp-only {
        display: inline;
    }
}

/* ===========================================
   PEOPLE PAGE - Animations
   =========================================== */

.page-people [data-animation] {
    opacity: 0;
    transform: translateY(30px);
}

.page-people [data-animation="fade"] {
    transform: translateY(0);
}

.page-people [data-animation].is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Mobile Card Touch Optimization */
@media (max-width: 767px) {
    .page-people .people-card__link {
        /* タッチデバイスでは常にカラー表示 */
    }

    .page-people .people-card__image img {
        filter: grayscale(30%) contrast(1.05);
    }

    .page-people .people-card__more {
        opacity: 1;
        transform: translateX(0);
    }

    .page-people .people-card__accent {
        width: 60px;
    }
}


/* ===========================================
   PEOPLE LEAD
   =========================================== */

.page-people .people-lead {
    background: var(--color-white);
    padding: 100px 0 80px;
    text-align: center;
}

@media (max-width: 767px) {
    .page-people .people-lead {
        padding: 60px 0 40px;
    }
}

.page-people .people-lead__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-people .people-lead__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--color-gray-700);
    line-height: 2.2;
    letter-spacing: 0.06em;
}

.page-people .pc-only {
    display: inline;
}

@media (max-width: 767px) {
    .page-people .pc-only {
        display: none;
    }
}

/* ===========================================
   PEOPLE INTERVIEWS
   =========================================== */

.page-people .people-interviews {
    position: relative;
    background: var(--color-gray-100);
    padding: 120px 0;
    overflow: hidden;
}

/* Background Decorations */
.page-people .people-interviews__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-people .people-interviews__watermark {
    position: absolute;
    top: 80px;
    right: -40px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 900;
    color: rgba(13, 59, 111, 0.018);
    letter-spacing: 0.05em;
    white-space: nowrap;
    user-select: none;
    transform: rotate(-90deg);
    transform-origin: right top;
}

.page-people .people-interviews__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(13, 59, 111, 0.025) 1px, transparent 0);
    background-size: 40px 40px;
}

@media (max-width: 767px) {
    .page-people .people-interviews {
        padding: 80px 0;
    }
}

.page-people .people-interviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-people .people-interviews__container {
        padding: 0 20px;
    }
}

.page-people .people-interviews__header {
    margin-bottom: 60px;
}

/* Interview Article */
.page-people .people-interview {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
}

.page-people .people-interview.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-people .people-interview:last-child {
    margin-bottom: 0;
}

.page-people .people-interview--reverse {
    grid-template-columns: 1fr 380px;
}

.page-people .people-interview--reverse .people-interview__visual {
    order: 2;
}

.page-people .people-interview--reverse .people-interview__body {
    order: 1;
}

@media (max-width: 1023px) {
    .page-people .people-interview,
    .page-people .people-interview--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-people .people-interview--reverse .people-interview__visual {
        order: 0;
    }

    .page-people .people-interview--reverse .people-interview__body {
        order: 0;
    }
}

/* Visual */
.page-people .people-interview__visual {
    position: relative;
}

.page-people .people-interview__photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
}

/* Interview Number Overlay */
.page-people .people-interview__number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(80px, 10vw, 120px);
    font-weight: 900;
    color: rgba(13, 59, 111, 0.04);
    line-height: 1;
    z-index: 0;
    user-select: none;
}

.page-people .people-interview--reverse .people-interview__number {
    right: auto;
    left: -10px;
}

.page-people .people-interview__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.08);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-people .people-interview:hover .people-interview__photo img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

/* Photo Frame - geometric accent */
.page-people .people-interview__photo-frame {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(207, 22, 45, 0.15);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.5s ease;
}

.page-people .people-interview:hover .people-interview__photo-frame {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border-color: rgba(207, 22, 45, 0.3);
}

.page-people .people-interview--reverse .people-interview__photo-frame {
    left: -8px;
    right: 16px;
}

.page-people .people-interview--reverse:hover .people-interview__photo-frame {
    left: -12px;
    right: 12px;
}

.page-people .people-interview__photo-accent {
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.page-people .people-interview:hover .people-interview__photo-accent {
    width: 100px;
}

.page-people .people-interview__badge {
    position: absolute;
    top: 24px;
    left: -16px;
    background: var(--color-primary);
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 2;
    box-shadow: 4px 4px 20px rgba(13, 59, 111, 0.25);
    transition: transform 0.3s ease;
}

.page-people .people-interview:hover .people-interview__badge {
    transform: translateX(-4px);
}

.page-people .people-interview__badge-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.15em;
}

.page-people .people-interview__badge-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* Interview Body */
.page-people .people-interview__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.page-people .people-interview__category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    padding: 4px 12px;
    background: rgba(207, 22, 45, 0.08);
    border-radius: 2px;
}

.page-people .people-interview__years {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.page-people .people-interview__name {
    margin-bottom: 8px;
}

.page-people .people-interview__name-ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.page-people .people-interview__name-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray-500);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.page-people .people-interview__position {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 24px;
}

.page-people .people-interview__quote {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.9;
    letter-spacing: 0.05em;
    padding: 28px 28px 28px 32px;
    border-left: 3px solid var(--color-accent);
    margin: 0 0 28px;
    background: linear-gradient(135deg, rgba(207, 22, 45, 0.03) 0%, rgba(13, 59, 111, 0.02) 100%);
    border-radius: 0 8px 8px 0;
}

.page-people .people-interview__quote::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 12px;
    font-family: 'Montserrat', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(207, 22, 45, 0.12);
    line-height: 1;
}

.page-people .people-interview__text {
    margin-bottom: 32px;
}

.page-people .people-interview__text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-gray-700);
    line-height: 2;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.page-people .people-interview__text p:last-child {
    margin-bottom: 0;
}

/* Career Path */
.page-people .people-interview__career {
    background: var(--color-white);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--color-gray-200);
}

.page-people .people-interview__career-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.page-people .people-interview__career-path {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-people .people-interview__career-step {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray-600);
    padding: 6px 14px;
    background: var(--color-gray-100);
    border-radius: 20px;
    white-space: nowrap;
}

.page-people .people-interview__career-step.is-current {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

.page-people .people-interview__career-step.is-future {
    background: transparent;
    border: 1px dashed var(--color-gray-400);
    color: var(--color-gray-500);
}

.page-people .people-interview__career-arrow {
    width: 16px;
    height: 1px;
    background: var(--color-gray-400);
    position: relative;
    flex-shrink: 0;
}

.page-people .people-interview__career-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-gray-400);
    border-right: 1px solid var(--color-gray-400);
    transform: rotate(45deg);
}

@media (max-width: 567px) {
    .page-people .people-interview__career-path {
        gap: 6px;
    }

    .page-people .people-interview__career-arrow {
        width: 12px;
    }

    .page-people .people-interview__career-step {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }
}

/* ===========================================
   PEOPLE DAY - 1日の流れ
   =========================================== */

.page-people .people-day {
    background: var(--color-primary);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-people .people-day {
        padding: 80px 0;
    }
}

.page-people .people-day__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-people .people-day__container {
        padding: 0 20px;
    }
}

.page-people .people-day__header {
    margin-bottom: 48px;
}

/* Tabs */
.page-people .people-day__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.page-people .people-day__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.page-people .people-day__tab:first-child {
    border-radius: 4px 0 0 4px;
}

.page-people .people-day__tab:last-child {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.page-people .people-day__tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.page-people .people-day__tab.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.page-people .people-day__tab-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.page-people .people-day__tab.is-active .people-day__tab-en {
    color: var(--color-white);
}

.page-people .people-day__tab-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.page-people .people-day__tab.is-active .people-day__tab-ja {
    color: rgba(255, 255, 255, 0.7);
}

/* Timeline */
.page-people .people-day__timeline {
    position: relative;
    display: none;
}

.page-people .people-day__timeline.is-active {
    display: block;
}

.page-people .people-day__line {
    position: absolute;
    left: 68px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 567px) {
    .page-people .people-day__line {
        left: 50px;
    }
}

.page-people .people-day__item {
    display: grid;
    grid-template-columns: 60px 16px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 0;
    padding: 24px 0;
    opacity: 0;
    transform: translateY(20px);
}

.page-people .people-day__item.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 567px) {
    .page-people .people-day__item {
        grid-template-columns: 42px 16px 1fr;
        gap: 12px;
        padding: 20px 0;
    }
}

.page-people .people-day__time {
    text-align: right;
    padding-top: 2px;
}

.page-people .people-day__time-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

@media (max-width: 567px) {
    .page-people .people-day__time-text {
        font-size: 0.9375rem;
    }
}

.page-people .people-day__marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.page-people .people-day__marker span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    position: relative;
    z-index: 1;
}

.page-people .people-day__content {
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-people .people-day__item:last-child .people-day__content {
    border-bottom: none;
    padding-bottom: 0;
}

.page-people .people-day__event {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.page-people .people-day__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* ONE DAY section heading overrides for dark bg */
.page-people .people-day .section-heading__bg {
    color: rgba(255, 255, 255, 0.06);
}

.page-people .people-day .section-heading__number-inner {
    color: rgba(255, 255, 255, 0.2);
}

.page-people .people-day .section-heading__title-text {
    color: #ffffff;
}

.page-people .people-day .section-heading__label {
    color: rgba(255, 255, 255, 0.5);
}

.page-people .people-day .section-heading__line {
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}


/* ===========================================
   PEOPLE GROWTH - やりがいと成長
   =========================================== */

.page-people .people-growth {
    background: var(--color-white);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-people .people-growth {
        padding: 80px 0;
    }
}

.page-people .people-growth__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-people .people-growth__container {
        padding: 0 20px;
    }
}

.page-people .people-growth__header {
    margin-bottom: 56px;
}

/* List layout */
.page-people .people-growth__list {
    display: flex;
    flex-direction: column;
}

.page-people .people-growth__item {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-top: 1px solid var(--color-gray-200);
    opacity: 0;
    transform: translateY(20px);
}

.page-people .people-growth__item:last-child {
    border-bottom: 1px solid var(--color-gray-200);
}

.page-people .people-growth__item.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-people .people-growth__item-num {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    padding-top: 4px;
}

.page-people .people-growth__item-body {
    flex: 1;
}

.page-people .people-growth__item-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.page-people .people-growth__item-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 2;
    letter-spacing: 0.03em;
}

@media (max-width: 567px) {
    .page-people .people-growth__item {
        gap: 20px;
        padding: 28px 0;
    }

    .page-people .people-growth__item-title {
        font-size: 1rem;
    }
}

/* ===========================================
   PEOPLE GALLERY - 写真ギャラリー（フルワイド・スライド）
   =========================================== */

.page-people .people-gallery {
    background: var(--color-gray-100);
    padding: 120px 0 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-people .people-gallery {
        padding: 80px 0 0;
    }
}

.page-people .people-gallery__heading {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-people .people-gallery__heading {
        padding: 0 20px;
        margin-bottom: 32px;
    }
}

/* Marquee wrapper */
.page-people .people-gallery__marquee {
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
}

.page-people .people-gallery__marquee.is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (max-width: 767px) {
    .page-people .people-gallery__marquee {
        padding-bottom: 60px;
    }
}

/* Track - horizontal scroll */
.page-people .people-gallery__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: galleryScroll 40s linear infinite;
}

.page-people .people-gallery__track:hover {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Slide item */
.page-people .people-gallery__slide {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-people .people-gallery__slide {
        width: 300px;
        height: 200px;
    }
}

.page-people .people-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.page-people .people-gallery__slide:hover img {
    transform: scale(1.05);
}

/* Label */
.page-people .people-gallery__label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-white);
    background: rgba(13, 59, 111, 0.7);
    padding: 5px 12px;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-people .people-gallery__slide:hover .people-gallery__label {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   OUTLINE PAGE - Technical Specifications
   コンセプト: BMWテクニカルデータシート
   配色: Navy 70% / White 25% / M-Red 5%
   ============================================================ */

/* ---------- Variables ---------- */
.page-outline {
    --outline-navy: #0a1628;
    --outline-navy-light: #1a2d4a;
    --outline-navy-medium: #0f1d32;
    --outline-white: #ffffff;
    --outline-gray: #f5f7fa;
    --outline-text: #2d3748;
    --outline-text-light: #718096;
    --outline-accent: #E2001A;
}

/* ---------- Hero Section ---------- */
.page-outline .outline-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--outline-navy);
}

.page-outline .outline-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-outline .outline-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.page-outline .outline-hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(226,0,26,0.1) 0%, transparent 60%);
}

.page-outline .outline-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-outline .outline-hero__titles {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-outline .outline-hero__titles.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.page-outline .outline-hero__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--outline-accent);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(226,0,26,0.5);
}

.page-outline .outline-hero__title {
    margin-bottom: 24px;
}

.page-outline .outline-hero__title-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--outline-white);
    margin-bottom: 12px;
}

.page-outline .outline-hero__title-ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.7);
}

.page-outline .outline-hero__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 2;
    color: rgba(255,255,255,0.8);
}

/* Hero Scroll Indicator */
.page-outline .outline-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.page-outline .outline-hero__scroll.is-animated {
    opacity: 1;
}

.page-outline .outline-hero__scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
}

.page-outline .outline-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---------- Position Selector (Tabs) ---------- */
.page-outline .outline-selector {
    background: var(--outline-white);
    padding: 60px 20px;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.page-outline .outline-selector__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-outline .outline-selector__header {
    text-align: center;
    margin-bottom: 32px;
}

.page-outline .outline-selector__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--outline-accent);
    margin-bottom: 8px;
}

.page-outline .outline-selector__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--outline-navy);
    letter-spacing: 0.1em;
}

.page-outline .outline-selector__tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Tab Button */
.page-outline .outline-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--outline-gray);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.page-outline .outline-tab:hover {
    background: var(--outline-white);
    border-color: var(--outline-navy-light);
}

.page-outline .outline-tab.is-active {
    background: var(--outline-navy);
    border-color: var(--outline-navy);
}

.page-outline .outline-tab__icon {
    width: 24px;
    height: 24px;
    color: var(--outline-navy-light);
    transition: color 0.3s ease;
}

.page-outline .outline-tab.is-active .outline-tab__icon {
    color: var(--outline-white);
}

.page-outline .outline-tab__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.page-outline .outline-tab__en {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--outline-navy);
    transition: color 0.3s ease;
}

.page-outline .outline-tab.is-active .outline-tab__en {
    color: var(--outline-white);
}

.page-outline .outline-tab__ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--outline-text-light);
    transition: color 0.3s ease;
}

.page-outline .outline-tab.is-active .outline-tab__ja {
    color: rgba(255,255,255,0.7);
}

.page-outline .outline-tab__indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--outline-accent);
    transition: width 0.3s ease;
}

.page-outline .outline-tab.is-active .outline-tab__indicator {
    width: 60%;
}

/* ---------- Specifications Section ---------- */
.page-outline .outline-specs {
    background: var(--outline-gray);
    padding: 80px 20px;
}

.page-outline .outline-specs__container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Panel */
.page-outline .outline-panel {
    display: none;
    animation: panelFadeIn 0.5s ease;
}

.page-outline .outline-panel.is-active {
    display: block;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-outline .outline-panel__header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(10,22,40,0.1);
}

.page-outline .outline-panel__badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--outline-white);
    background: var(--outline-accent);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.page-outline .outline-panel__title {
    margin-bottom: 16px;
}

.page-outline .outline-panel__title-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--outline-navy);
    margin-bottom: 8px;
}

.page-outline .outline-panel__title-ja {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    color: var(--outline-text-light);
    letter-spacing: 0.15em;
}

.page-outline .outline-panel__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--outline-text);
}

/* Panel Grid */
.page-outline .outline-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ---------- Spec Card ---------- */
.page-outline .spec-card {
    background: var(--outline-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.page-outline .spec-card.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.page-outline .spec-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.page-outline .spec-card--full {
    grid-column: 1 / -1;
}

.page-outline .spec-card--highlight {
    position: relative;
}

.page-outline .spec-card--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--outline-accent);
}

.page-outline .spec-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--outline-navy);
}

.page-outline .spec-card__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--outline-accent);
    letter-spacing: 0.05em;
}

.page-outline .spec-card__title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.page-outline .spec-card__title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
}

.page-outline .spec-card__title-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--outline-white);
    letter-spacing: 0.05em;
}

.page-outline .spec-card__content {
    padding: 24px;
}

.page-outline .spec-card__note {
    margin-top: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    color: var(--outline-accent);
    font-weight: 500;
}

/* ---------- Spec List ---------- */
.page-outline .spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-outline .spec-list li {
    position: relative;
    padding: 10px 0 10px 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--outline-text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-outline .spec-list li:last-child {
    border-bottom: none;
}

.page-outline .spec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--outline-navy-light);
    border-radius: 50%;
}

.page-outline .spec-list--check li::before {
    background: var(--outline-navy-light);
}

.page-outline .spec-list__required::before {
    background: var(--outline-accent) !important;
}

.page-outline .spec-list--compact li {
    padding: 8px 0 8px 20px;
    font-size: 0.875rem;
}

/* ---------- Salary Display ---------- */
.page-outline .spec-salary {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--outline-gray);
}

.page-outline .spec-salary__label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--outline-text-light);
}

.page-outline .spec-salary__value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.page-outline .spec-salary__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--outline-accent);
    line-height: 1;
}

.page-outline .spec-salary__unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--outline-text);
}

.page-outline .spec-salary__separator {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--outline-text-light);
    margin: 0 4px;
}

.page-outline .spec-salary__note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    color: var(--outline-accent);
    font-weight: 500;
    margin-bottom: 16px;
}

/* ---------- Highlight Box ---------- */
.page-outline .spec-highlight-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px;
    background: var(--outline-gray);
    border-radius: 4px;
    margin-bottom: 20px;
}

.page-outline .spec-highlight-box__label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--outline-text-light);
}

.page-outline .spec-highlight-box__value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.page-outline .spec-highlight-box__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--outline-accent);
    line-height: 1;
}

.page-outline .spec-highlight-box__unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--outline-text);
}

/* ---------- Location Card ---------- */
.page-outline .spec-card__content--location {
    padding: 32px;
}

.page-outline .spec-location {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.page-outline .spec-location__info {
    flex: 1;
}

.page-outline .spec-location__name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--outline-navy);
    margin-bottom: 12px;
}

.page-outline .spec-location__address {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--outline-text);
    margin-bottom: 12px;
}

.page-outline .spec-location__access {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.8;
    color: var(--outline-text-light);
}

.page-outline .spec-location__map {
    flex-shrink: 0;
}

.page-outline .spec-location__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--outline-navy);
    background: var(--outline-gray);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-outline .spec-location__link:hover {
    background: var(--outline-navy);
    color: var(--outline-white);
}

/* ---------- Benefits Section ---------- */
.page-outline .outline-benefits {
    background: var(--outline-white);
    padding: 100px 20px;
}

.page-outline .outline-benefits__container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-outline .outline-benefits__header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-outline .outline-benefits__header.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.page-outline .outline-benefits__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--outline-accent);
    margin-bottom: 12px;
}

.page-outline .outline-benefits__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--outline-navy);
    letter-spacing: 0.1em;
}

.page-outline .outline-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Benefit Item */
.page-outline .benefit-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--outline-gray);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.page-outline .benefit-item.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.page-outline .benefit-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.page-outline .benefit-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--outline-white);
    border-radius: 50%;
    color: var(--outline-navy);
    transition: all 0.3s ease;
}

.page-outline .benefit-item:hover .benefit-item__icon {
    background: var(--outline-navy);
    color: var(--outline-white);
}

.page-outline .benefit-item__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--outline-navy);
    margin-bottom: 12px;
}

.page-outline .benefit-item__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--outline-text-light);
}

/* ---------- Apply CTA Section ---------- */
.page-outline .outline-apply {
    background: var(--outline-navy);
    padding: 80px 20px;
}

.page-outline .outline-apply__container {
    max-width: 800px;
    margin: 0 auto;
}

.page-outline .outline-apply__content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-outline .outline-apply__content.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.page-outline .outline-apply__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.8;
    color: var(--outline-white);
    letter-spacing: 0.1em;
}

/* ---------- Responsive - Tablet ---------- */
@media (max-width: 1023px) {
    .page-outline .outline-selector {
        position: relative;
        top: 0;
    }

    .page-outline .outline-panel__grid {
        grid-template-columns: 1fr;
    }

    .page-outline .outline-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-outline .spec-location {
        flex-direction: column;
        gap: 24px;
    }
}

/* ---------- Responsive - Mobile ---------- */
@media (max-width: 767px) {
    .page-outline .outline-hero {
        height: 60vh;
        min-height: 400px;
    }

    .page-outline .outline-selector {
        padding: 40px 16px;
    }

    .page-outline .outline-selector__tabs {
        flex-direction: column;
        gap: 12px;
    }

    .page-outline .outline-tab {
        width: 100%;
        min-width: auto;
        justify-content: flex-start;
    }

    .page-outline .outline-specs {
        padding: 60px 16px;
    }

    .page-outline .spec-card__header {
        padding: 16px 20px;
    }

    .page-outline .spec-card__content {
        padding: 20px;
    }

    .page-outline .spec-salary__number {
        font-size: 1.5rem;
    }

    .page-outline .spec-highlight-box__number {
        font-size: 2rem;
    }

    .page-outline .spec-card__content--location {
        padding: 20px;
    }

    .page-outline .outline-benefits {
        padding: 60px 16px;
    }

    .page-outline .outline-benefits__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-outline .benefit-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px;
    }

    .page-outline .benefit-item__icon {
        width: 48px;
        height: 48px;
        margin: 0;
        flex-shrink: 0;
    }

    .page-outline .benefit-item__icon svg {
        width: 24px;
        height: 24px;
    }

    .page-outline .outline-apply {
        padding: 60px 16px;
    }
}

/* PC Only */
.page-outline .pc-only {
    display: inline;
}

@media (max-width: 767px) {
    .page-outline .pc-only {
        display: none;
    }
}


/* ============================================================
   CAREER PAGE - 働き方・キャリア
   コンセプト: エディトリアル・テキストフォワード
   配色: Primary Navy 30% / Gray 30% / White 40%
   ============================================================ */

/* ===========================================
   CAREER - Animations & Utilities
   =========================================== */

.page-career [data-animation] {
    opacity: 0;
    transform: translateY(30px);
}

.page-career [data-animation="fade"] {
    transform: translateY(0);
}

.page-career [data-animation].is-animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.page-career .sp-only {
    display: none;
}

@media (max-width: 767px) {
    .page-career .sp-only {
        display: inline;
    }
}


/* ===========================================
   CAREER ROLES - 01 職種紹介
   =========================================== */

.page-career .career-roles {
    background: var(--color-gray-100);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-career .career-roles {
        padding: 80px 0;
    }
}

.page-career .career-roles__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-career .career-roles__container {
        padding: 0 20px;
    }
}

.page-career .career-roles__header {
    max-width: 680px;
    margin-bottom: 72px;
}

.page-career .career-roles__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 24px;
}

/* Rows: asymmetric grid */
.page-career .career-roles__row {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.page-career .career-roles__row:last-child {
    margin-bottom: 0;
}

.page-career .career-roles__row--first {
    grid-template-columns: repeat(3, 1fr);
}

.page-career .career-roles__row--second {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
    .page-career .career-roles__row--first {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .page-career .career-roles__row--first,
    .page-career .career-roles__row--second {
        grid-template-columns: 1fr;
    }
}

/* Item card */
.page-career .career-roles__item {
    padding: 36px 0 0;
    border-top: 3px solid var(--color-accent);
}

.page-career .career-roles__en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.page-career .career-roles__name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.page-career .career-roles__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

/* Meta (dl) */
.page-career .career-roles__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.page-career .career-roles__meta div {
    display: flex;
    gap: 4px;
    font-size: 0.8125rem;
}

.page-career .career-roles__meta dt {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: var(--color-gray-400, #9ca3af);
}

.page-career .career-roles__meta dt::after {
    content: '：';
}

.page-career .career-roles__meta dd {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: var(--color-primary);
}

/* Role photos */
.page-career .career-roles__photo {
    margin-bottom: 20px;
    overflow: hidden;
}

.page-career .career-roles__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}


/* ===========================================
   CAREER PATH - 02 キャリアステップ事例
   =========================================== */

.page-career .career-path {
    background: var(--color-primary);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-career .career-path {
        padding: 80px 0;
    }
}

.page-career .career-path__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-career .career-path__container {
        padding: 0 20px;
    }
}

.page-career .career-path__header {
    margin-bottom: 64px;
}

.page-career .career-path__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-top: 20px;
}

/* Section heading overrides for dark bg */
.page-career .career-path .section-heading__bg {
    color: rgba(255, 255, 255, 0.06);
}

.page-career .career-path .section-heading__number-inner {
    color: rgba(255, 255, 255, 0.2);
}

.page-career .career-path .section-heading__title-text {
    color: #ffffff;
}

.page-career .career-path .section-heading__label {
    color: rgba(255, 255, 255, 0.5);
}

.page-career .career-path .section-heading__line {
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

/* Profile block */
.page-career .career-path__profile {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
}

.page-career .career-path__profile:last-child {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .page-career .career-path__profile {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Profile side (photo + header) */
.page-career .career-path__profile-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-career .career-path__profile-photo {
    overflow: hidden;
    border-radius: 4px;
}

.page-career .career-path__profile-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) brightness(0.85);
}

@media (max-width: 767px) {
    .page-career .career-path__profile-photo img {
        aspect-ratio: 16 / 9;
    }
}

.page-career .career-path__profile-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-career .career-path__profile-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.page-career .career-path__profile-role {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.page-career .career-path__profile-prev {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

/* Steps */
.page-career .career-path__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.page-career .career-path__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
}

@media (max-width: 567px) {
    .page-career .career-path__step {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }
}

.page-career .career-path__step-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-accent);
    padding-top: 2px;
}

.page-career .career-path__step-content strong {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.page-career .career-path__step-content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}


/* ===========================================
   CAREER TRAINING - 03 研修制度・資格支援
   =========================================== */

.page-career .career-training {
    background: var(--color-white);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-career .career-training {
        padding: 80px 0;
    }
}

.page-career .career-training__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-career .career-training__container {
        padding: 0 20px;
    }
}

.page-career .career-training__header {
    margin-bottom: 48px;
}

/* Training photo — wider than text container for editorial feel */
.page-career .career-training__photo {
    margin-bottom: 56px;
    margin-left: -60px;
    margin-right: -60px;
    overflow: hidden;
}

.page-career .career-training__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

@media (max-width: 959px) {
    .page-career .career-training__photo {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (max-width: 767px) {
    .page-career .career-training__photo {
        margin-left: -16px;
        margin-right: -16px;
    }
}

.page-career .career-training__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 24px;
}

/* Training block */
.page-career .career-training__block {
    margin-bottom: 56px;
}

.page-career .career-training__block:last-child {
    margin-bottom: 0;
}

.page-career .career-training__block--indented {
    padding-left: 0;
}

.page-career .career-training__block-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
}

.page-career .career-training__block-intro {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Definition list */
.page-career .career-training__list-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.page-career .career-training__list-item:last-child {
    border-bottom: none;
}

.page-career .career-training__list-item dt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.page-career .career-training__list-item dd {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.8;
}


/* ===========================================
   CAREER BENEFITS - 04 福利厚生
   =========================================== */

.page-career .career-benefits {
    background: var(--color-gray-100);
}

.page-career .career-benefits__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 80vh;
}

@media (max-width: 1023px) {
    .page-career .career-benefits__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.page-career .career-benefits__photo {
    position: relative;
    overflow: hidden;
}

.page-career .career-benefits__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1023px) {
    .page-career .career-benefits__photo {
        height: 50vh;
    }
}

.page-career .career-benefits__content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .page-career .career-benefits__content {
        padding: 60px 20px;
    }
}

.page-career .career-benefits__groups {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-career .career-benefits__group-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-gray-300);
    display: inline-block;
}

.page-career .career-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-career .career-benefits__list li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.8;
    padding: 6px 0 6px 20px;
    position: relative;
}

.page-career .career-benefits__list li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--color-gray-300);
}


/* ===========================================
   CAREER WLB - 05 ワークライフバランス
   =========================================== */

.page-career .career-wlb {
    background: var(--color-primary);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-career .career-wlb {
        padding: 80px 0;
    }
}

.page-career .career-wlb__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-career .career-wlb__container {
        padding: 0 20px;
    }
}

/* Top area: 2-column (text + photo) */
.page-career .career-wlb__top {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .page-career .career-wlb__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.page-career .career-wlb__header {
    max-width: none;
}

.page-career .career-wlb__photo {
    overflow: hidden;
    border-radius: 4px;
}

.page-career .career-wlb__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

@media (max-width: 767px) {
    .page-career .career-wlb__photo img {
        aspect-ratio: 16 / 9;
    }
}

/* Section heading overrides for dark bg */
.page-career .career-wlb .section-heading__bg {
    color: rgba(255, 255, 255, 0.06);
}

.page-career .career-wlb .section-heading__number-inner {
    color: rgba(255, 255, 255, 0.2);
}

.page-career .career-wlb .section-heading__title-text {
    color: #ffffff;
}

.page-career .career-wlb .section-heading__label {
    color: rgba(255, 255, 255, 0.5);
}

.page-career .career-wlb .section-heading__line {
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.page-career .career-wlb__body p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 20px;
}

/* Data points */
.page-career .career-wlb__data {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 767px) {
    .page-career .career-wlb__data {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.page-career .career-wlb__datum {
    text-align: left;
    padding-top: 0;
}

.page-career .career-wlb__datum-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.page-career .career-wlb__datum-value small {
    font-size: 0.35em;
    font-weight: 400;
    color: var(--color-accent);
    margin-left: 4px;
}

.page-career .career-wlb__datum-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.page-career .career-wlb__datum-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
    display: block;
}


/* ===========================================
   CAREER JOIN MESSAGE (inherits people-join)
   =========================================== */

.page-career .people-join {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark, #091e3a) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.page-career .people-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(207, 22, 45, 0.04) 80px,
        rgba(207, 22, 45, 0.04) 82px
    );
    pointer-events: none;
}

.page-career .people-join::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(207, 22, 45, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-career .people-join__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.page-career .people-join__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}


/* ===========================================
   ============================================
   ENTRY PAGE - 募集要項・エントリー
   ============================================
   =========================================== */


/* ===========================================
   ENTRY POSITIONS - 01 募集職種一覧
   =========================================== */

.page-entry .entry-positions {
    background: var(--color-gray-100);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-entry .entry-positions {
        padding: 80px 0;
    }
}

.page-entry .entry-positions__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-entry .entry-positions__container {
        padding: 0 20px;
    }
}

.page-entry .entry-positions__header {
    margin-bottom: 56px;
}

.page-entry .entry-positions__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 24px;
}

/* Position cards */
.page-entry .entry-positions__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.page-entry .entry-positions__card {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
    padding: 36px 0;
    border-top: 1px solid var(--color-gray-200);
}

.page-entry .entry-positions__card:last-child {
    border-bottom: 1px solid var(--color-gray-200);
}

@media (max-width: 767px) {
    .page-entry .entry-positions__card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0;
    }
}

.page-entry .entry-positions__card-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.page-entry .entry-positions__card-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-entry .entry-positions__card-summary {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* Card meta (dl) */
.page-entry .entry-positions__card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-entry .entry-positions__card-meta div {
    display: flex;
    gap: 4px;
    font-size: 0.8125rem;
}

.page-entry .entry-positions__card-meta dt {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: var(--color-gray-400);
    min-width: 64px;
}

.page-entry .entry-positions__card-meta dt::after {
    content: '：';
}

.page-entry .entry-positions__card-meta dd {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: var(--color-primary);
}


/* ===========================================
   ENTRY REQUIREMENTS - 02 応募資格・歓迎スキル
   =========================================== */

.page-entry .entry-requirements {
    background: var(--color-white);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-entry .entry-requirements {
        padding: 80px 0;
    }
}

.page-entry .entry-requirements__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-entry .entry-requirements__container {
        padding: 0 20px;
    }
}

.page-entry .entry-requirements__header {
    margin-bottom: 56px;
}

/* Common requirements block */
.page-entry .entry-requirements__common {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--color-gray-200);
}

.page-entry .entry-requirements__col-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
}

.page-entry .entry-requirements__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-entry .entry-requirements__list li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.page-entry .entry-requirements__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 1px;
    background: var(--color-accent);
}

.page-entry .entry-requirements__note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-top: 20px;
}

/* By-role section title */
.page-entry .entry-requirements__section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 3px solid var(--color-accent);
}

/* Role grid */
.page-entry .entry-requirements__roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 64px;
}

@media (max-width: 767px) {
    .page-entry .entry-requirements__roles {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.page-entry .entry-requirements__role {
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-200);
}

.page-entry .entry-requirements__role-en {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.page-entry .entry-requirements__role-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.page-entry .entry-requirements__role .entry-requirements__list {
    gap: 10px;
}

.page-entry .entry-requirements__role .entry-requirements__list li {
    font-size: 0.8125rem;
}


/* ===========================================
   ENTRY PROCESS - 03 選考フロー
   =========================================== */

.page-entry .entry-process {
    background: var(--color-gray-100);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-entry .entry-process {
        padding: 80px 0;
    }
}

.page-entry .entry-process__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-entry .entry-process__container {
        padding: 0 20px;
    }
}

.page-entry .entry-process__header {
    margin-bottom: 56px;
}

/* Steps grid */
.page-entry .entry-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .page-entry .entry-process__steps {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.page-entry .entry-process__step {
    padding: 32px 24px;
    position: relative;
    border-left: 1px solid var(--color-gray-200);
}

.page-entry .entry-process__step:first-child {
    border-left: none;
}

@media (max-width: 767px) {
    .page-entry .entry-process__step {
        border-left: 3px solid var(--color-gray-200);
        border-top: none;
        padding: 24px 24px 24px 28px;
    }

    .page-entry .entry-process__step:first-child {
        border-left: 3px solid var(--color-gray-200);
    }
}

/* Arrow between steps (desktop only) */
.page-entry .entry-process__step::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 38px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
    transform: rotate(45deg);
    z-index: 1;
}

.page-entry .entry-process__step:last-child::after {
    display: none;
}

@media (max-width: 767px) {
    .page-entry .entry-process__step::after {
        display: none;
    }
}

.page-entry .entry-process__step-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.page-entry .entry-process__step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-entry .entry-process__step-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.page-entry .entry-process__note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray-600);
    line-height: 2;
    text-align: center;
}


/* ===========================================
   ENTRY FORM - 04 エントリーフォーム
   =========================================== */

.page-entry .entry-form {
    background: var(--color-primary);
    padding: 120px 0;
}

@media (max-width: 767px) {
    .page-entry .entry-form {
        padding: 80px 0;
    }
}

.page-entry .entry-form__container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .page-entry .entry-form__container {
        padding: 0 20px;
    }
}

.page-entry .entry-form__header {
    margin-bottom: 56px;
}

/* Section heading overrides for dark bg */
.page-entry .entry-form .section-heading__bg {
    color: rgba(255, 255, 255, 0.08);
}

.page-entry .entry-form .section-heading__number-inner {
    color: rgba(255, 255, 255, 0.15);
}

.page-entry .entry-form .section-heading__title-text {
    color: #ffffff;
}

.page-entry .entry-form .section-heading__label {
    color: var(--color-accent);
}

.page-entry .entry-form .section-heading__line {
    background: var(--color-accent);
}

.page-entry .entry-form__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-top: 24px;
}

/* Form fields */
.page-entry .entry-form__field {
    margin-bottom: 32px;
}

.page-entry .entry-form__label {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.page-entry .entry-form__required {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-left: 8px;
}

.page-entry .entry-form__optional {
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
}

.page-entry .entry-form__input,
.page-entry .entry-form__select,
.page-entry .entry-form__textarea {
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    border-radius: 0;
}

.page-entry .entry-form__input::placeholder,
.page-entry .entry-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.page-entry .entry-form__input:focus,
.page-entry .entry-form__select:focus,
.page-entry .entry-form__textarea:focus {
    border-bottom-color: var(--color-accent);
}

.page-entry .entry-form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.page-entry .entry-form__select option {
    color: var(--color-gray-800);
    background: var(--color-white);
}

.page-entry .entry-form__textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px;
    margin-top: 4px;
}

.page-entry .entry-form__textarea:focus {
    border-color: var(--color-accent);
}

/* Submit button */
.page-entry .entry-form__submit {
    margin-top: 48px;
    text-align: center;
}

.page-entry .entry-form__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    padding: 20px 48px;
    background: var(--color-white);
    color: var(--color-accent);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
}

.page-entry .entry-form__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.page-entry .entry-form__button-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.page-entry .entry-form__button:hover .entry-form__button-icon {
    transform: translateX(4px);
}

/* Phone note */
.page-entry .entry-form__tel-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 48px;
    line-height: 1.8;
}

.page-entry .entry-form__tel-note a {
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.page-entry .entry-form__tel-note a:hover {
    border-color: var(--color-white);
}

.page-entry .entry-form__tel-note small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 4px;
}

/* File attachment area */
.page-entry .entry-form__file-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin-bottom: 12px;
}

.page-entry .entry-form__file-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 36px 24px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.page-entry .entry-form__file-area:hover,
.page-entry .entry-form__file-area.is-dragover {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.03);
}

.page-entry .entry-form__file-input {
    display: none;
}

.page-entry .entry-form__file-icon {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.page-entry .entry-form__file-area:hover .entry-form__file-icon {
    color: var(--color-accent);
}

.page-entry .entry-form__file-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.page-entry .entry-form__file-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
}

/* File list */
.page-entry .entry-form__file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-entry .entry-form__file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.page-entry .entry-form__file-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 60px);
}

.page-entry .entry-form__file-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
    flex-shrink: 0;
}

.page-entry .entry-form__file-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 2px 6px;
    font-size: 0.75rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.page-entry .entry-form__file-remove:hover {
    color: var(--color-accent);
}

/* Disclaimer */
.page-entry .entry-form__disclaimer {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin-top: 40px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

