:root {
    /* RS TAICHI Inspired - Monochrome base with red accent */
    --ink: #f5f4f1;
    --coal: #1a1d22;
    --slate: #2a2f36;
    --teal: #0f6a6a;
    --rust: #e07020;
    --rust-dark: #c05a10;
    --sand: #333842;
    --paper: #0e1014;
    --white: #1f2329;
    --text-dark: #f5f4f1;
    --text-muted: #a0a0a0;
    --text-light: #d0d0d0;
    --border-color: rgba(255,255,255,0.1);
    --accent: var(--rust);
    --taichi-yellow: #f2d400;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;

    /* Layout Constants - Sharper, more minimal */
    --radius-lg: 8px;
    --radius-md: 6px;
    --radius-sm: 4px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: var(--font-main);
    font-weight: 600;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.85;
    letter-spacing: 0.01em;
    font-size: 1rem;
}

/* Noise Overlay - disabled for clean professional look */
.noise-overlay {
    display: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    z-index: 1000;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(4px);
}

.floating-menu:hover {
    background: rgba(0,0,0,0.8);
}

.floating-menu-bar {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.2s ease;
}

.page-company .floating-menu-bar,
.page-member .floating-menu-bar,
.page-recruit .floating-menu-bar {
    background: #fff;
}

.floating-menu-panel {
    position: fixed;
    top: 70px;
    right: 18px;
    background: rgba(30, 34, 40, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px 20px;
    display: none;
    flex-direction: column;
    z-index: 999;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    min-width: 200px;
    max-height: 80vh;
    overflow-y: auto;
}

.floating-menu-panel.is-open {
    display: flex;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item-link {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-family: var(--font-display);
    border-bottom: 2px solid var(--rust);
    padding-bottom: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.menu-submenu {
    list-style: none;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-left: 4px;
}

.submenu-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
    padding: 2px 0;
}

.submenu-link:hover {
    color: var(--rust);
}

@media (max-width: 768px) {
    .floating-menu {
        top: 14px;
        right: 14px;
    }
    .floating-menu-panel {
        top: 64px;
        right: 14px;
        width: 280px;
    }
}

/* Hero Section - RS Taichi Inspired Full-Screen Style */
.hero-section {
    min-height: 100svh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--coal);
}

.hero-logo {
    position: absolute;
    top: 60%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 15;
    width: 480px;
    max-width: 55vw;
    padding: 8px 12px;
    background: rgba(120, 180, 210, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: hue-rotate(40deg) saturate(1.2) brightness(1.15);
}

@media (max-width: 768px) {
    .hero-logo {
        top: auto;
        bottom: 33%;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        max-width: 340px;
        text-align: center;
        padding: 6px 10px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('asset/hero/hero.png') center top / cover no-repeat;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none; /* Removed darkening overlay */
    z-index: 1;
}

.sub-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--white) 0%, var(--paper) 100%);
    position: relative;
    overflow: hidden;
}

.sub-hero-inner {
    max-width: 760px;
}

.sub-hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    margin-bottom: 16px;
}

.sub-hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.sub-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 1px solid var(--rust);
    color: var(--rust);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: background 0.3s, color 0.3s;
}

.ghost-button:hover {
    background: var(--rust);
    color: var(--ink);
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    padding: 140px 48px;
    margin: 0;
}

.hero-sub,
.cta-button {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    font-weight: 700;
    text-shadow: 0 4px 60px rgba(0,0,0,0.5);
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--white);
}

.highlight-text {
    color: var(--rust);
    background: transparent;
    padding: 0;
    transform: none;
    margin-top: 8px;
    border-bottom: 4px solid var(--rust);
    padding-bottom: 8px;
    font-size: 0.85em;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: var(--rust);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 24px rgba(210, 76, 31, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    z-index: 10;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(210, 76, 31, 0.5);
    background: var(--rust-dark);
}

/* Scroll Indicator - RS Taichi Style */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}


/* Section Common - RS TAICHI Inspired Clean Style */
section {
    padding: 120px 0;
}

.taichi-reveal {
    position: relative;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.taichi-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 3px;
    background: var(--taichi-yellow);
    opacity: 0;
    transform: translateX(-100%);
}

.taichi-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.taichi-reveal.is-revealed::before {
    animation: taichiSweep 0.9s ease forwards;
}

@keyframes taichiSweep {
    0% { transform: translateX(-100%); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateX(260%); opacity: 0; }
}

.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--rust);
    margin-right: 12px;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 2;
    font-weight: 400;
}

/* Mission Section */
.mission {
    background: var(--white);
    color: var(--ink);
    clip-path: none;
    margin: 0;
    z-index: 20;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.mission-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
    padding: 40px 48px;
    background: transparent;
    border-radius: var(--radius-lg);
    border: none;
}

.mission .hero-title {
    color: var(--ink);
    text-shadow: none;
}

.mission-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 2;
    font-weight: 400;
    color: var(--text-light);
}

/* Company Section */
.company {
    background: var(--paper);
}

.company-philosophy {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.company-slogan {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
    color: var(--ink);
}

.company-slogan-reading {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.company-philosophy-text {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
}

.company-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1px;
    margin-bottom: 60px;
    background: var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.company-info-card {
    background: var(--white);
    padding: 24px 20px;
    text-align: left;
}

.company-info-card h4 {
    font-size: 11px;
    color: var(--rust);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.company-info-card p {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.subsection-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.board-members-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.board-member-card {
    background: var(--white);
    padding: 24px 40px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.member-title {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.member-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.company-numbers {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.chart-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.chart-tab {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-tab:hover {
    border-color: var(--rust);
    color: var(--rust);
}

.chart-tab.active {
    background: var(--rust);
    color: var(--white);
    border-color: var(--rust);
}

.chart-container {
    max-width: 800px;
    margin: 0 auto;
    height: 360px;
}

/* Service Section */
.service {
    background: #f1f0ed;
}

.business-licenses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 60px;
}

.license-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: left;
    border-left: 3px solid var(--rust);
    transition: border-color 0.3s ease;
}

.license-item:hover {
    border-left-color: var(--accent);
}

.license-detail {
    display: block;
}

.license-body h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 600;
}

.license-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
}

.license-number {
    font-size: 13px;
    color: var(--rust) !important;
    font-weight: 600;
    -webkit-text-fill-color: var(--rust);
}

.stakeholders {
    margin: 60px 0;
    text-align: center;
    overflow: hidden;
}

.stakeholder-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

.stakeholder-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    max-width: 100%;
    overflow: hidden;
}

.stakeholder-item {
    background: rgba(255,255,255,0.98);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    transition: transform 0.3s ease;
}

.stakeholder-item:hover {
    transform: translateY(-2px);
}

.stakeholder-item img {
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
}

.other-services {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

/* Board Member Profile */
.member-profile {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.member-photo img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.member-position {
    display: inline-block;
    background: transparent;
    color: var(--rust);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--rust);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.member-name-ja {
    font-size: 30px;
    margin-bottom: 8px;
    color: var(--ink);
}

.member-name-en {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-bio p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
    font-weight: 500;
}

.member-bio {
    grid-column: 1 / -1;
    margin-top: 8px;
}

/* CEO Message */
.ceo-message {
    background: var(--paper);
    position: relative;
    padding: 100px 0;
}

.compliance-text p,
.message-text p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.interview-lead {
    font-size: 1.8rem !important;
    font-weight: 600;
    color: var(--rust) !important;
    text-align: center;
    margin-bottom: 50px !important;
    font-family: var(--font-display);
}

.message-signature {
    text-align: right;
    margin-top: 40px;
}

.signature-mark {
    width: 200px;
    aspect-ratio: 667 / 374;
    background: var(--rust);
    display: inline-block;
    -webkit-mask: url('asset/ceo-signature.png') right center / contain no-repeat;
    mask: url('asset/ceo-signature.png') right center / contain no-repeat;
}

/* Interview Banner */
.interview-banner {
    padding: 80px 0;
}

.banner-link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.banner-link:hover {
    transform: translateY(-4px);
    border-color: var(--rust);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    background: var(--coal);
    color: var(--white);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.banner-content h3 { font-size: 1.8rem; color: var(--white); }

/* Compliance */
.compliance { background: var(--white); }
.compliance-content {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}
.compliance-text h3 { color: var(--rust); margin-bottom: 20px; }
.compliance-text strong { color: var(--rust); }

/* Recruit Section */
.recruit { background: var(--white); overflow: hidden; }
.recruit .section-header {
    text-align: left;
    margin-bottom: 40px;
}
.recruit .section-subtitle {
    margin: 0;
}
.recruit-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0 auto 50px;
    max-width: 980px;
}
.recruit-banner {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 79 / 53;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
    max-width: 100%;
}
.recruit-banner:hover {
    border-color: var(--rust);
}
.muscle-banner {
    background: var(--white);
    padding: 0;
    display: block;
    position: relative;
}

.muscle-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.muscle-banner .banner-text {
    position: absolute;
    inset: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(11, 11, 14, 0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.muscle-banner h3,
.muscle-banner p,
.muscle-banner ul,
.muscle-banner li {
    display: inline;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.7);
    color: #101316;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.muscle-banner .banner-highlight { font-size: 20px; color: var(--rust); font-weight: 600; }
.muscle-banner ul { padding-left: 18px; margin-top: 12px; display: block; background: transparent; }
.muscle-banner li { display: list-item; background: rgba(255, 255, 255, 0.7); }
.muscle-banner .banner-note { font-size: 13px; color: var(--rust); margin-top: 12px; opacity: 0.8; display: block; }

.female-banner {
    background: var(--white);
    padding: 0;
    display: block;
    position: relative;
}

.female-banner .banner-text {
    position: absolute; inset: 0; padding: 28px;
    background: linear-gradient(to top, rgba(11, 11, 14, 0.95), transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
}

.female-banner .banner-text h3,
.female-banner .banner-text p {
    display: inline;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.7);
    color: #101316;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.female-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.female-banner .banner-highlight { color: var(--rust); font-weight: 600; }

/* Truck Banner & Ad Banner - same overlay style */
.truck-banner,
.ad-banner {
    position: relative;
}

.truck-banner > img,
.ad-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.truck-banner .banner-text,
.ad-banner .banner-text {
    position: absolute;
    inset: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(11, 11, 14, 0.95), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.truck-banner .banner-text h3,
.truck-banner .banner-text p,
.ad-banner .banner-text h3,
.ad-banner .banner-text p {
    color: var(--ink);
}
.ad-banner .banner-highlight {
    color: var(--rust);
    font-weight: 700;
    font-size: 1.2em;
}

.job-marquee {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 16px 0;
    margin-bottom: 60px;
}

.job-marquee-dual {
    border-radius: var(--radius-md);
    padding: 18px 0;
}

.job-marquee-row {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 24px;
}

.job-marquee-row + .job-marquee-row {
    margin-top: 10px;
}

.job-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--rust);
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding-left: 100%;
    animation: jobMarquee 32s linear infinite;
}

.job-marquee-track span {
    font-size: 0.85rem;
}

.marquee-sep {
    color: rgba(210, 76, 31, 0.3);
}

@keyframes jobMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.job-marquee-track.even {
    animation: jobMarquee 30s linear infinite;
}

/* Recruit Carousel */
.recruit-deck {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0 40px;
    margin: 30px 0 20px;
    scrollbar-width: none;
}
.recruit-deck.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}
.recruit-deck {
    cursor: grab;
}
.recruit-deck::-webkit-scrollbar { display: none; }

.recruit-card {
    flex: 0 0 340px;
    min-height: 420px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    scroll-snap-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.recruit-card:hover {
    transform: translateY(-4px);
    border-color: var(--rust);
}

.recruit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 600;
}

.recruit-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.recruit-details {
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.detail-label {
    color: var(--rust);
    font-weight: 500;
}

.detail-value {
    color: var(--ink);
    font-weight: 500;
}

.recruit-note {
    font-size: 13px;
    color: var(--rust);
    margin-bottom: 20px;
    opacity: 0.9;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: inherit;
}
.carousel-btn:hover {
    background: var(--rust);
    color: var(--ink);
    border-color: var(--rust);
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
    background: var(--rust);
    transform: scale(1.3);
}
.recruit-badge {
    background: transparent;
    color: var(--rust);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid var(--rust);
    text-transform: uppercase;
}
.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rust);
    color: var(--ink);
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(210, 76, 31, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
    margin-top: auto;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-decoration: none;
}

a.apply-button,
a.apply-button:visited {
    color: var(--ink);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(210, 76, 31, 0.3);
}

/* Footer */
.site-footer {
    background: var(--coal);
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}
.footer-eyes {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.big-eyes .eye {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
}
.big-eyes .pupil { display: none; }
.giant-button {
    display: inline-block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    background: var(--rust);
    border: none;
    border-radius: var(--radius-sm);
    padding: 20px 48px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--font-main);
    letter-spacing: 0.1em;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 4px 20px rgba(210, 76, 31, 0.3);
}
.giant-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(210, 76, 31, 0.4);
}
.giant-button a { color: inherit; text-decoration: none; }
.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 24px;
}

/* Interview Floating Banner */
.interview-floating-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.interview-banner-link {
    display: block;
    position: relative;
    width: min(320px, 78vw);
    transition: transform 0.3s ease;
    z-index: 1;
}

.interview-banner-link:hover {
    transform: translateY(-4px);
}

.interview-banner-image {
    width: 100%;
    height: auto;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border: 1px solid var(--border-color);
    border-top: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    display: block;
}

.interview-banner-link:hover .interview-banner-image {
    border-color: var(--rust);
}

.interview-content-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.interview-thumb {
    width: 96px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-sizing: border-box;
}

.interview-thumb.interview-thumb-wide {
    width: 180px;
    height: 72px;
    padding: 0;
}

.interview-marquee.interview-marquee-overlay {
    position: relative;
    height: 26px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    margin-bottom: 0;
    background: linear-gradient(90deg, rgba(11, 11, 14, 0.9), rgba(11, 11, 14, 0.6), rgba(11, 11, 14, 0.9));
    color: var(--rust);
    pointer-events: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border: 1px solid var(--border-color);
    border-bottom: 0;
}

.interview-thumb.interview-thumb-wide {
    position: relative;
}

.interview-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.floating-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--ink);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 3;
}


.interview-text-content {
    flex: 1;
    overflow: hidden;
}

.interview-marquee {
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--rust);
    margin-bottom: 4px;
}

.interview-marquee span {
    display: inline-block;
    animation: interviewMarquee 10s linear infinite;
}

@keyframes interviewMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.interview-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.interview-arrow-box {
    width: 32px;
    height: 32px;
    background: var(--slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.interview-banner-link:hover .interview-arrow-box {
    background: var(--rust);
    transform: rotate(45deg);
}

.interview-arrow {
    color: var(--white);
    font-size: 1rem;
}

.interview-banner-link:hover .interview-arrow {
    color: var(--ink);
}

/* Board Member Row (Member Page) */
.board-member-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* Responsive Logic */
@media (min-width: 768px) {
    .carousel-nav { display: none; }
    .recruit-deck {
        scrollbar-width: auto;
    }
    .recruit-deck::-webkit-scrollbar {
        display: block;
        height: 6px;
    }
    .recruit-deck::-webkit-scrollbar-thumb {
        background: rgba(210, 76, 31, 0.4);
        border-radius: 999px;
    }
    .recruit-deck::-webkit-scrollbar-track {
        background: var(--border-color);
    }
}

@media (max-width: 1024px) {
    .company-info-grid { grid-template-columns: 1fr; }
    .recruit-banners { grid-template-columns: 1fr; }
    .hero-container { padding: 120px 32px; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .company-info-grid, .business-licenses, .member-profile, .banner-link { grid-template-columns: 1fr; }
    .stakeholder-list { grid-template-columns: repeat(2, 1fr); }
    .chart-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .chart-tab { width: 100%; padding: 10px 16px; }
    .chart-container { height: 250px; }
    .recruit-card { flex: 0 0 280px; min-height: 380px; padding: 24px; }
    .nav-link { font-size: 0.8rem; letter-spacing: 0.08em; }
    .sub-hero { padding: 100px 0 60px; }
    .hero-container {
        min-height: 100svh;
        padding: 88px 24px 40px;
    }
    .hero-sub { font-size: 0.95rem; }
    .scroll-indicator { bottom: 24px; left: 24px; }
    .scroll-line { height: 40px; }
    .hero-sub-text {
        display: inline;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .cta-button { padding: 16px 32px; font-size: 0.9rem; }
    .job-marquee-track span { font-size: 0.8rem; }
    .board-member-row { grid-template-columns: 1fr; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: clamp(22px, 5vw, 32px); }
    .hero-section::before {
        background: #0e1014 url('asset/hero/hero-mobile.png') center / cover no-repeat;
    }
}

@media (orientation: portrait) {
    .hero-section {
        min-height: 100dvh;
    }
    .hero-container {
        min-height: 100dvh;
        padding: 0;
    }
    .hero-section::before {
        background: #0e1014 url('asset/hero/hero-mobile.png') top center / 100% auto no-repeat;
    }
}
.department-jobs {
    margin: 20px 0 40px;
}

.department-jobs .subsection-title {
    margin-bottom: 20px;
}
.recruit-contact {
    text-align: center;
    margin-top: 40px;
}

/* Highlight Subtitle */
.highlight-subtitle {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(224, 112, 32, 0.4);
}

/* About Job Section */
.about-job {
    background: var(--slate);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 48px;
}

.about-job-title {
    font-family: var(--font-main);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.about-job-content p {
    margin-bottom: 16px;
    line-height: 1.9;
}

/* Driver Earnings Section */
.driver-earnings {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    margin-bottom: 48px;
}

.earnings-title {
    font-family: var(--font-main);
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 24px;
}

.earnings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.earnings-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.earnings-notes {
    list-style: none;
    padding: 16px;
    background: var(--slate);
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.earnings-notes li {
    padding: 4px 0 4px 20px;
    position: relative;
}

.earnings-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.earnings-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.earnings-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .earnings-content {
        grid-template-columns: 1fr;
    }
    .about-job, .driver-earnings {
        padding: 24px;
    }
}

/* Recruit Banners - 4 items grid */
.recruit-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .recruit-banners {
        grid-template-columns: 1fr;
    }
}

/* Apply Buttons Group */
.apply-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.apply-buttons .apply-button {
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.apply-button-full {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: 16px;
}

/* Company Slogan Highlight */
.company-slogan-highlight {
    font-size: clamp(32px, 6vw, 56px);
    color: var(--accent);
    text-shadow: 0 0 30px rgba(224, 112, 32, 0.5);
    letter-spacing: 0.15em;
}

/* Member Name Former (旧姓) */
.member-name-former {
    font-size: 0.65em;
    font-weight: 400;
    color: var(--text-muted);
}

/* Message Highlight */
.message-highlight {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    padding: 20px 0;
}

/* Footer Secondary Button */
.giant-button-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.giant-button-secondary:hover {
    background: var(--accent);
    color: var(--ink);
}

.footer-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.footer-notice {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-family: 'Noto Sans JP', sans-serif;
}
