/* ===================================
   ジェイアール西日本マルニックス 採用サイト
   新卒採用ページスタイル
=================================== */

/* ===================================
   CSS Variables
=================================== */
:root {
    /* Primary — ベース #023e8a を軸に階調をそろえる */
    --color-primary: #023e8a;
    --color-primary-dark: #02275a;
    --color-primary-mid: #2878cc;
    --color-primary-light: #5099d8;
    
    /* Accent — ベースより明るいブルー／シアン（補助色） */
    --color-accent: #4db2e4;
    --color-accent-light: #80ccf2;
    
    /* ENTRY ボタン（濃いブルー） */
    --color-entry: #023e8a;
    --color-entry-hover: #2878cc;
    --color-entry-text: #ffffff;
    
    /* Sub Colors */
    --color-navy: #05087a;
    --color-teal: #3394c4;
    --color-gold: #b8e3f8;
    
    /* オーバーレイ・影（ベース色 RGB） */
    --color-primary-rgb: 2, 62, 138;
    --color-accent-rgb: 77, 178, 228;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e8e8e8;
    --color-gray-300: #d1d1d1;
    --color-gray-500: #888888;
    --color-gray-600: #666666;
    --color-gray-700: #4a4a4a;
    
    /* Typography */
    --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    --font-en: 'Outfit', sans-serif;
    --font-serif: 'Shippori Mincho', serif;
    /* ABOUT マーキー（イタリック・ディスプレイ） */
    --font-marquee: 'Cormorant Garamond', 'Times New Roman', Times, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* セクション縦余白（全画面でリズムを揃える） */
    --section-padding-y: clamp(2.75rem, 5vw + 1rem, 5.75rem);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: clamp(1.125rem, 4vw, 1.5rem);
    
    /* Header Height */
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    overflow-x: hidden;
}

body {
    font-family: var(--font-ja);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 100vw より狭いレイアウト幅（スクロールバー分）と 100vw の差で右に隙間が出るのを防ぐ */
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* 見出し（サイト共通・明朝） */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-feature-settings: "palt";
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

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

ul, ol {
    list-style: none;
}

/* ===================================
   Utility Classes
=================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* 下層ページのmain要素の最初の子要素にヘッダー分のマージンを追加 */
main > section:first-child,
main > nav:first-child {
    margin-top: var(--header-height) !important;
}

/* ===================================
   Header
=================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 clamp(0.75rem, 3vw, var(--space-xl));
    gap: var(--space-sm);
    min-width: 0;
}

.logo {
    min-width: 0;
    flex-shrink: 1;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.logo-text {
    font-family: var(--font-ja);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.logo-sub {
    font-family: var(--font-en);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.2em;
}

/* Global Navigation */
.global-nav {
    display: none;
}

@media screen and (min-width: 1024px) {
    .global-nav {
        display: block;
    }
    
    .nav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(0.75rem, 1.8vw, 1.75rem);
        position: relative;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-list a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: var(--space-xs) 0;
        position: relative;
    }
    
    /* メガメニューがある項目のリンクにホバー時もメニューを表示 */
    .nav-item.has-megamenu:hover > a::after {
        width: 100%;
    }
    
    .nav-list a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--color-accent);
        transition: var(--transition-base);
        transform: translateX(-50%);
    }
    
    .nav-list a:hover::after {
        width: 100%;
    }
    
    .nav-en {
        font-family: var(--font-en);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-primary);
        letter-spacing: 0.1em;
    }
    
    .nav-ja {
        font-size: 0.6875rem;
        color: var(--color-gray-600);
    }
    
    /* Megamenu */
    .megamenu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
        padding: var(--space-2xl) var(--space-2xl);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        pointer-events: none;
        box-shadow: 0 8px 32px rgba(var(--color-primary-rgb), 0.25);
    }
    
    /* メガメニューと親要素の間のブリッジ（透明な領域） */
    .megamenu::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
        background: transparent;
    }
    
    .nav-item.has-megamenu:hover .megamenu,
    .nav-item.has-megamenu .megamenu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .megamenu-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
        padding: var(--space-sm) 0;
        position: relative;
    }
    
    .megamenu-title {
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
        margin-bottom: var(--space-xs);
    }
    
    .megamenu-title-en {
        font-family: var(--font-en);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-white);
        letter-spacing: 0.1em;
        line-height: 1.2;
    }
    
    .megamenu-title-ja {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.4;
    }
    
    .megamenu-main {
        flex-shrink: 0;
        padding-right: var(--space-2xl);
        min-width: 180px;
    }
    
    .megamenu-main-link {
        display: block;
        font-family: var(--font-en);
        font-size: 0.75rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.1em;
        padding-bottom: var(--space-md);
        margin-bottom: var(--space-md);
        transition: var(--transition-base);
        line-height: 1.6;
    }
    
    .megamenu-main-link:hover {
        color: var(--color-white);
        opacity: 1;
    }
    
    .megamenu-columns {
        display: flex;
        gap: var(--space-2xl);
        flex: 1;
        align-items: flex-start;
        width: 100%;
    }
    
    .megamenu-column {
        flex: 1;
        min-width: 0;
    }
    
    .megamenu-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-md) var(--space-2xl);
        align-items: flex-start;
    }
    
    .megamenu-list li {
        list-style: none;
        flex: 0 0 auto;
    }
    
    .megamenu-list a {
        display: inline-block;
        padding: var(--space-sm) 0;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        transition: all var(--transition-base);
        text-align: left;
        position: relative;
        padding-left: calc(var(--space-md) + 6px);
        white-space: nowrap;
        line-height: 1.7;
    }
    
    .megamenu-list a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid rgba(255, 255, 255, 0.7);
        transition: all var(--transition-base);
    }
    
    .megamenu-list a::after {
        display: none;
    }
    
    .megamenu-list a:hover {
        color: var(--color-white);
    }
    
    .megamenu-list a:hover::before {
        border-left-color: var(--color-white);
        transform: translateY(-50%) translateX(2px);
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn-entry {
    display: none;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-entry);
    color: var(--color-entry-text);
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: var(--transition-base);
}

.btn-entry:hover {
    background-color: var(--color-entry-hover);
    color: var(--color-entry-text);
}

@media screen and (min-width: 768px) {
    .btn-entry {
        display: block;
    }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: var(--space-md);
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
}

.mobile-nav-list {
    margin-bottom: var(--space-xl);
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    width: 100%;
}

.mobile-nav-link .nav-en {
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.mobile-nav-link .nav-ja {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

.mobile-nav-item > a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
}

.mobile-nav-item > a .nav-en {
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.mobile-nav-item > a .nav-ja {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

.mobile-nav-toggle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.mobile-nav-item.active .mobile-nav-toggle {
    transform: rotate(45deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    padding-left: var(--space-md);
}

.mobile-nav-item.active .mobile-submenu {
    max-height: 1000px;
}

.mobile-submenu li {
    border-bottom: none;
    border-top: 1px solid var(--color-gray-100);
}

.mobile-submenu a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    padding-left: var(--space-md);
}

.btn-entry-mobile {
    display: block;
    width: 100%;
    padding: var(--space-md);
    background-color: var(--color-entry);
    color: var(--color-entry-text);
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition-base);
}

.btn-entry-mobile:hover {
    background-color: var(--color-entry-hover);
    color: var(--color-entry-text);
}

@media screen and (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

/* ===================================
   Hero Section
=================================== */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 560px;
    max-height: 800px;
    margin-top: 0 !important;
    background-color: var(--color-white);
    overflow: hidden;
}

/* 左の白場に添える垂直ブランドテキスト */
.hero-brand-vertical {
    position: absolute;
    left: 1.8%;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    z-index: 5;
    font-family: var(--font-en);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.55em;
    color: var(--color-primary);
    opacity: 0.35;
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-brand-vertical::after {
    content: '';
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%);
}

/* 背景画像エリア（左 7% は白場） */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 7%;
    z-index: 1;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg-slides {
    position: absolute;
    inset: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-bg-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.06);
    transition: transform 8s ease-out;
}

.hero-bg-slide.is-active img {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-slide,
    .hero-bg-slide img {
        transition: none;
    }
    .hero-bg-slide img {
        transform: none;
    }
}

/* 薄い青：全面のトーン調整 */
.hero-overlay-base {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        160deg,
        rgba(var(--color-primary-rgb), 0.4) 0%,
        rgba(var(--color-primary-rgb), 0.2) 55%,
        rgba(var(--color-primary-rgb), 0.07) 100%
    );
}

/* 濃い青：左上の斜め帯（白場直後から始まる） */
.hero-overlay-accent {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: rgba(1, 32, 82, 0.58);
    clip-path: polygon(7% 0, 38% 0, 12% 100%, 0 100%);
}

/* コンテンツ：左下に固定 */
.hero-content {
    position: absolute;
    bottom: clamp(2.5rem, 5vw, 4rem);
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-catch {
    color: var(--color-white);
}

/* ラベルバッジ */
.hero-catch-sub {
    display: inline-block;
    font-size: clamp(0.6875rem, 1.3vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: var(--space-md);
    padding: 0.45em 1.2em;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-dark);
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

/* メインキャッチ */
.hero-catch-main {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
}

.hero-catch-main span {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
    color: var(--color-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-catch-main span:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-catch-main span:nth-child(2) {
    animation-delay: 0.6s;
}

/* スクロールインジケーター：右下 */
.hero-scroll {
    position: absolute;
    bottom: clamp(2.5rem, 5vw, 4rem);
    right: 3%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll span {
    font-family: var(--font-en);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.75);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.85);
    animation: scrollLineMove 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes scrollLineMove {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(250%); }
}

@media screen and (max-width: 1024px) {
    .hero-brand-vertical {
        display: none;
    }
    .hero-bg {
        left: 0;
        clip-path: none;
    }
    .hero-overlay-accent {
        clip-path: polygon(0 0, 45% 0, 12% 100%, 0 100%);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 62vh;
        min-height: 380px;
    }
    .hero-catch-main {
        font-size: clamp(1.375rem, 7vw, 2.25rem);
    }
    .hero-scroll {
        display: none;
    }

    /* 1枚目（mv_slide1）：左端から約13%の位置を基準（他スライドは中央のまま） */
    .hero-bg-slides .hero-bg-slide:first-child img {
        object-position: 13% center;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 340px;
    }
    .hero-content {
        bottom: var(--space-xl);
    }
}


/* ===================================
   Page Hero Component (下層ページ共通)
   パターン①: 英語タイトル + 日本語タイトル
   パターン②: 英語タイトル + 日本語タイトル + リード文
=================================== */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}

.page-hero-bg img {
    position: absolute;
    left: 0;
    top: -8%;
    width: 100%;
    height: 116%;
    object-fit: cover;
    object-position: center center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(var(--color-primary-rgb), 0.85) 0%,
        rgba(var(--color-primary-rgb), 0.72) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--space-md);
}

/* 英語タグ（共通） */
.page-hero-tag {
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.4em;
    display: block;
    margin-bottom: 16px;
}

/* 日本語タイトル（共通） */
.page-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* セパレーター（パターン②用） */
.page-hero-separator {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 24px auto;
}

/* リード文（パターン②用） */
.page-hero-lead {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.9;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Page Hero - レスポンシブ */
@media screen and (max-width: 768px) {
    .page-hero {
        min-height: 320px;
    }
    
    .page-hero-content {
        padding: 0 var(--space-md);
    }
    
    .page-hero-tag {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
        margin-bottom: 12px;
    }
    
    .page-hero-title {
        font-size: 1.5rem;
    }
    
    .page-hero-separator {
        width: 50px;
        margin: 20px auto;
    }
    
    .page-hero-lead {
        font-size: 0.875rem;
        line-height: 1.8;
    }
}

@media screen and (max-width: 480px) {
    .page-hero {
        min-height: 280px;
    }
    
    .page-hero-content {
        padding: 0 var(--space-sm);
    }
    
    .page-hero-tag {
        font-size: 0.6875rem;
    }
    
    .page-hero-title {
        font-size: 1.25rem;
    }
}


/* ===================================
   About Section (Minimal Style based on reference)
=================================== */
.section-about {
    position: relative;
    background-color: var(--color-white);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(0.75rem, 2vw, 1.25rem);
    overflow: hidden;
}

/* 上部コンテンツ: 2カラム */
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

/* 左: キャッチコピーエリア */
.about-title-area {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.about-label {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.about-main-title {
    font-family: var(--font-serif); /* 明朝体 */
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.5;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
    .about-main-title {
        font-size: clamp(1.5rem, 4vw, 2.125rem);
    }
}

/* 右: 本文エリア（上下ライン） */
.about-text-area {
    position: relative;
    padding: 0;
}

.about-text-lines {
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.about-intro-text {
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 2.1;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-intro-text:last-child {
    margin-bottom: 0;
}

/* 下部: ブランド名 横スライドループ */
.about-marquee {
    width: 100%;
    margin: 0;
    padding: clamp(0.35rem, 1vw, 0.65rem) 0;
    overflow: hidden;
}

/* 全体を斜めに（スクロール移動は内側の track のみ） */
.about-marquee-lean {
    overflow: hidden;
    width: 100%;
    transform: skewX(-10deg);
    transform-origin: 50% 50%;
    padding-block: clamp(0.2rem, 0.6vw, 0.45rem);
}

.about-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.about-marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.about-marquee-text {
    font-family: var(--font-marquee);
    font-size: clamp(1.75rem, 6vw, 3.25rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #fff; /* 背景と同じ色 */
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.28);
    paint-order: stroke fill;
    white-space: nowrap;
    line-height: 1;
}

.about-marquee-sep {
    font-family: var(--font-marquee);
    font-size: clamp(1.75rem, 6vw, 3.25rem);
    font-style: italic;
    font-weight: 500;
    color: #fff; /* 背景と同じ色 */
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.22);
    paint-order: stroke fill;
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
    flex-shrink: 0;
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    .about-marquee-track {
        justify-content: center;
        width: 100%;
        will-change: auto;
    }

    .about-marquee-group:last-child {
        display: none;
    }

    .about-marquee-group:first-child .about-marquee-text:not(:first-of-type),
    .about-marquee-group:first-child .about-marquee-sep {
        display: none;
    }
}

/* レスポンシブ */
@media screen and (max-width: 992px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .section-about {
        padding-top: 4rem;
    }
    
    .about-top {
        margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
    }
    
    .about-text-lines {
        padding: 2rem 0;
    }
}

/* ===================================
   Section Common
=================================== */
.section {
    position: relative;
    padding: var(--section-padding-y) 0;
}

.section-header {
    margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    overflow-wrap: anywhere;
    word-break: normal;
}

.section-lead {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.95;
    color: var(--color-gray-700);
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
    word-break: normal;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: clamp(1.375rem, 3.5vw, 1.65rem);
    }
}

/* ===================================
   Work Section
=================================== */
.section-work {
    overflow-x: visible;
    padding: var(--section-padding-y) 0;
    background-color: var(--color-gray-50);
}

.section-work .section-lead {
    font-size: calc(clamp(0.9375rem, 2vw, 1.0625rem) - 1px);
}

/* 斜めカット画像＋メッセージ：画面幅より少し広くはみ出す */
.work-catch {
    position: relative;
    width: 104vw;
    max-width: none;
    margin-left: -2vw;
    margin-right: auto;
    /* 斜めは少し控えめにして横幅を広く見せる */
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    height: clamp(200px, 28vw, 360px);
    overflow: hidden;
    margin-bottom: 0;
}

/* 写真＋青グラデを同じ transform で動かすラッパー（パララックス用） */
.work-catch-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}

.work-catch-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.work-catch-bg img {
    width: 100%;
    height: 115%;
    min-height: 115%;
    object-fit: cover;
    object-position: center 30%;
    position: absolute;
    left: 0;
    top: -7.5%;
    transform: scale(1.06);
    display: block;
}

.work-catch-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        125deg,
        rgba(var(--color-primary-rgb), 0.75) 0%,
        rgba(var(--color-primary-rgb), 0.55) 45%,
        rgba(var(--color-accent-rgb), 0.38) 100%
    );
}

.work-catch-message {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--container-padding);
}

.work-catch-main {
    font-family: var(--font-serif);
    font-size: clamp(1.375rem, 3.2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.6em;
}

.work-catch-sub {
    font-size: clamp(1rem, 2.2vw, 1.375rem);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.work-body {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
    padding-right: 0; /* 右端まで画像を伸ばすため右paddingをゼロに */
}

/* 横並び: 左ブロック | 画像 */
.work-body-inner {
    display: flex;
    align-items: stretch;
    gap: var(--space-xl);
}

/* 左ブロック: 六角形（上）＋本文（下）の縦並び */
.work-body-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
}

/* 六角形：左ブロック内で中央揃え */
.work-body-keywords {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.work-body-text {
    margin: 0;
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 2.1;
    color: var(--color-gray-700);
    text-align: justify;
}

.work-hexagon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* テキストを3px上にずらす */
    padding-top: 0;
    padding-bottom: 6px;
    width: 110px;
    height: 110px;
    /* 六角形：clip-pathで作成 */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(
        160deg,
        var(--color-primary-dark) 0%,
        var(--color-primary) 60%,
        var(--color-teal) 100%
    );
    flex-shrink: 0;
}

.work-hexagon--accent {
    background: linear-gradient(
        160deg,
        var(--color-primary) 0%,
        var(--color-teal) 50%,
        var(--color-accent) 100%
    );
}

.work-hexagon__label {
    font-family: var(--font-en);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
}

.work-hexagon__word {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-white);
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .work-body {
        padding-top: var(--space-md);
    }

    .work-body-inner {
        flex-direction: column;
        gap: var(--space-lg);
    }

    /* section-lead の直下に見えるよう、画像を六角形＋本文より上に */
    .work-body-image {
        order: -1;
        flex: none;
        width: 100%;
        max-width: 100%;
        clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
        aspect-ratio: 16 / 9;
    }

    .work-body-left {
        order: 1;
    }

    .work-hexagon {
        width: 90px;
        height: 90px;
    }

    .work-hexagon__word {
        font-size: 0.9375rem;
    }
}


/* 画像：右側・右端まで */
.work-body-image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -8px 0 32px rgba(var(--color-primary-rgb), 0.12);
}

.work-body-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}


/* 主な業務 */
.work-types {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-2xl);
}

.work-types-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--color-primary);
}

.work-types-title .section-label {
    display: block;
    margin-bottom: 0;
}

.work-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
}

.work-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.work-type-card__media {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-gray-200);
    /* 斜めに切り取る: 下辺を左上がりに */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.work-type-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-type-card__name {
    margin-top: -10px; /* 画像の斜めカットに少し食い込ませる */
    font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
    font-weight: 800;
    line-height: 1.4;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1024px) {
    .work-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* work-catch は全幅なのでマージン不要 */
    .work-catch {
        clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
        height: clamp(180px, 36vw, 260px);
    }

    .work-body-text {
        text-align: left;
    }

    .work-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media screen and (max-width: 480px) {
    .work-catch {
        clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    }

    .work-catch-main {
        font-size: 1.25rem;
    }

    .work-catch-sub {
        font-size: 0.9375rem;
    }
}

/* ===================================
   Work Grid - Legacy（未使用）
=================================== */
/* グリッドレイアウト - 8アイテム */
/* 1: 一目でわかるマルニックス - 大きな正方形（左上） */
.work-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* 2: トラック輸送 */
.work-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* 3: 駅・駅ビル物流 - 縦長 */
.work-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

/* 4: 貨客混載 */
.work-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* 5: 手荷物サービス */
.work-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

/* 6: 物流センター管理 */
.work-item:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* 7: 廃棄物管理 */
.work-item:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

/* 8: 調達部門 */
.work-item:nth-child(8) {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

.work-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 12px;
    transition: var(--transition-base);
}

.work-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.work-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.work-item-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.work-item:hover .work-item-bg img {
    transform: scale(1.08);
}

.work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(var(--color-primary-rgb), 0.5) 0%,
        rgba(var(--color-primary-rgb), 0.3) 100%
    );
    transition: var(--transition-base);
}

.work-item:hover .work-item-overlay {
    background: linear-gradient(
        135deg,
        rgba(var(--color-primary-rgb), 0.6) 0%,
        rgba(var(--color-primary-rgb), 0.4) 100%
    );
}

.work-item-text {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    padding: var(--space-lg);
}

.work-item-title-ja {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 大きいセルのタイトル（一目でわかるマルニックス） */
.work-item:nth-child(1) .work-item-title-ja {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* 縦長セルのタイトル（駅・駅ビル物流） */
.work-item:nth-child(3) .work-item-title-ja {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.work-item-title-en {
    font-family: var(--font-en);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.work-item:nth-child(1) .work-item-title-en {
    font-size: 0.875rem;
}

.work-item:nth-child(3) .work-item-title-en {
    font-size: 0.75rem;
}

/* 縦長セルは下揃え */
.work-item:nth-child(3) {
    align-items: flex-end;
}

.work-item:nth-child(3) .work-item-text {
    padding-bottom: var(--space-xl);
}

/* Responsive Work Grid */
@media screen and (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 180px);
    }
    
    /* 一目でわかるマルニックス */
    .work-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    /* トラック輸送 */
    .work-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    /* 駅・駅ビル物流 - 縦長 */
    .work-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }
    
    /* 貨客混載 */
    .work-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    /* 手荷物サービス */
    .work-item:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    /* 物流センター管理 */
    .work-item:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
    
    /* 廃棄物管理 */
    .work-item:nth-child(7) {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }
    
    /* 調達部門 */
    .work-item:nth-child(8) {
        grid-column: 2 / 3;
        grid-row: 5 / 6;
    }
}

@media screen and (max-width: 640px) {
    .work-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .work-item:nth-child(1) {
        grid-column: 1 / 3;
        min-height: 200px;
    }
    
    .work-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 150px;
    }
    
    .work-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
        min-height: auto;
        align-items: flex-end;
    }
    
    .work-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 150px;
    }
    
    .work-item:nth-child(5),
    .work-item:nth-child(6),
    .work-item:nth-child(7),
    .work-item:nth-child(8) {
        grid-column: auto;
        grid-row: auto;
        min-height: 150px;
    }
}

/* ===================================
   Benefits Section
=================================== */
/* benefits/css/style.css のデザインに準拠 */
.section-benefits {
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-top: var(--space-lg);
}

.benefits-card {
    background: var(--color-white);
    padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 偶数カード：青グラデーション */
.benefits-card:nth-child(even) {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
}

.benefits-card__icon {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.benefits-card__icon img {
    width: 80%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.benefits-card__num {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary-mid);
    margin-bottom: 16px;
}

.benefits-card:nth-child(even) .benefits-card__num {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: clamp(0.875rem, 1.5vw, 1.125rem);
    overflow-wrap: anywhere;
    word-break: normal;
}

.benefits-card:nth-child(even) .benefits-card__title {
    color: var(--color-white);
}

.benefits-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.benefits-card__list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #334155;
}

.benefits-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 2px;
    background: var(--color-primary);
}

.benefits-card:nth-child(even) .benefits-card__list li {
    color: var(--color-white);
}

.benefits-card:nth-child(even) .benefits-card__list li::before {
    background: rgba(255, 255, 255, 0.7);
}

.benefits-card__desc {
    margin: clamp(1rem, 2vw, 1.25rem) 0 0;
    font-size: 0.875rem;
    line-height: 1.85;
    color: #64748b;
}

.benefits-card:nth-child(even) .benefits-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .benefits-card {
        padding: 32px 24px;
    }
}

/* ===================================
   Appeal Section (Split Style)
=================================== */
.section-appeal {
    background-color: var(--color-white);
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 1.875rem);
    margin-top: var(--space-lg);
}

.appeal-card {
    display: flex;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    overflow: hidden;
    height: 340px;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.appeal-card:hover {
    box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.15);
}

.appeal-card-content {
    flex: 1;
    padding: clamp(2.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.875rem);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1; /* 背面に移動 */
    background-color: var(--color-white);
}

.appeal-card-num {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    line-height: 1;
    z-index: 10; /* ナンバーは最前面 */
}

.appeal-card-title {
    font-size: clamp(1.2rem, 2.4vw, 1.3125rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.05em;
}

.appeal-card-text {
    font-size: 0.875rem;
    line-height: 1.9;
    color: var(--color-gray-700);
    margin: 0;
    text-align: justify;
    max-width: 85%; /* 画像の重なりを考慮して少し幅を抑える */
}

.appeal-card-image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    /* 斜めの切り欠き：前面に配置して左側を削る */
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -15%; /* コンテンツエリアに重ねる */
    z-index: 2; /* 前面に移動 */
}

.appeal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

/* .appeal-card:hover .appeal-card-image img {
    transform: scale(1.08);
} */

@media screen and (max-width: 1200px) {
    .appeal-card {
        height: auto;
        min-height: 340px;
    }
    .appeal-card-image {
        margin-left: -12%;
    }
}

@media screen and (max-width: 1024px) {
    .appeal-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .appeal-card {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }
    
    .appeal-card-image {
        flex: none;
        height: 240px;
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        margin-left: 0;
        margin-top: -40px;
    }
    
    .appeal-card-content {
        padding: clamp(2rem, 5vw, 2.75rem) var(--container-padding) clamp(1.5rem, 4vw, 2rem);
    }
}

/* ===================================
   Training Section (Re-designed)
=================================== */
.section-training {
    background-color: var(--color-white);
}

.training-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    margin-top: var(--space-2xl);
}

.training-flow-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* STEPラベルとライン */
.training-flow-head {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
}

.training-flow-step {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 12px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.training-flow-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(var(--color-primary-rgb), 0.25);
    position: relative;
}

.training-flow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.4);
    border-right: 1px solid rgba(var(--color-primary-rgb), 0.4);
    transform: translateY(-50%) rotate(45deg);
}

/* コンテンツエリア */
.training-flow-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
    padding-left: 4px;
}

/* 縦書きタイトル */
.training-flow-title {
    writing-mode: vertical-rl;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--color-primary-dark);
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    width: 60px;
}

.training-flow-title span {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5em;
    color: var(--color-primary);
    writing-mode: horizontal-tb;
    display: inline-block;
}

/* 画像枠 */
.training-flow-image {
    grid-column: 2;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--color-gray-100);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

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

/* 説明文 */
.training-flow-text {
    grid-column: 2;
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin: 0;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
    .training-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2rem, 3.5vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
    }
}

@media screen and (max-width: 768px) {
    .training-flow {
        grid-template-columns: 1fr;
        gap: clamp(1.75rem, 4vw, 2.25rem);
    }
    
    .training-flow-line {
        display: none;
    }
}

/* ===================================
   Culture Section
=================================== */
.section-culture {
    padding: 0;
    background-color: var(--color-white);
}

.culture-header {
    padding: var(--space-3xl) 0 var(--space-xl);
    background-color: var(--color-white);
}

.culture-header .section-label {
    display: block;
    margin-bottom: var(--space-sm);
}

.culture-header .section-title {
    margin-bottom: 0;
}

/* Culture List - フルワイドスタイル */
.culture-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.culture-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 350px;
    overflow: hidden;
    transition: var(--transition-base);
    width: 100%;
}

.culture-item:hover {
    z-index: 10;
}

.culture-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.culture-item-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.culture-item:hover .culture-item-bg img {
    transform: scale(1.05);
}

.culture-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(var(--color-primary-rgb), 0.85) 0%,
        rgba(var(--color-primary-rgb), 0.58) 40%,
        rgba(var(--color-accent-rgb), 0.28) 100%
    );
    transition: var(--transition-base);
}

.culture-item:hover .culture-item-overlay {
    background: linear-gradient(
        90deg,
        rgba(var(--color-primary-rgb), 0.9) 0%,
        rgba(var(--color-primary-rgb), 0.68) 40%,
        rgba(var(--color-accent-rgb), 0.36) 100%
    );
}

.culture-item-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    color: var(--color-white);
}

.culture-item-number {
    font-family: var(--font-en);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    opacity: 0.3;
    line-height: 1;
    min-width: 100px;
}

.culture-item-text {
    flex: 1;
}

.culture-item-title-ja {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.culture-item-title-en {
    font-family: var(--font-en);
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.culture-item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: var(--transition-base);
}

.culture-item:hover .culture-item-arrow {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary);
    transform: translateX(10px);
}

.culture-item-arrow svg {
    transition: var(--transition-base);
}

.culture-item:hover .culture-item-arrow svg {
    transform: translateX(3px);
}

/* Responsive Culture */
@media screen and (max-width: 768px) {
    .culture-item {
        height: 280px;
    }
    
    .culture-item-content {
        gap: var(--space-md);
    }
    
    .culture-item-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .culture-item-arrow {
        width: 48px;
        height: 48px;
    }
    
    .culture-item-arrow svg {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 480px) {
    .culture-item {
        height: 220px;
    }
    
    .culture-item-number {
        display: none;
    }
    
    .culture-item-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   Interview Section
=================================== */
.section-interview {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-100) 100%);
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.interview-card {
    display: block;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.interview-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.interview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.interview-card:hover .interview-card-image img {
    transform: scale(1.05);
}

.interview-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--color-primary-rgb), 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.interview-card:hover .interview-card-overlay {
    background-color: rgba(var(--color-primary-rgb), 0.75);
}

/* 縦書きキャッチコピー（右側配置） */
.interview-card-band {
    position: absolute;
    right: 32px;
    top: 0;
    z-index: 2;
}

.band-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1.6;
    background-color: var(--color-primary);
    padding: 12px 6px;
}


.read-more {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-white);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.interview-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

.interview-card-body {
    padding: var(--space-lg);
}

.interview-card-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.interview-card-dept {
    font-size: 0.75rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.interview-card-year {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.interview-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.interview-card-name span {
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 0.25em;
}

.interview-card-quote {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* Responsive Interview Grid */
@media screen and (max-width: 1200px) {
    .interview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media screen and (max-width: 768px) {
    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .interview-card-body {
        padding: var(--space-md);
    }
    
    .interview-card-name {
        font-size: 1rem;
    }
    
    .interview-card-quote {
        font-size: 0.8125rem;
    }
    
    .interview-card-band {
        right: 24px;
        top: 0;
    }
    
    .band-text {
        font-size: 0.75rem;
        padding: 10px 5px;
    }
    
}

@media screen and (max-width: 480px) {
    .interview-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* Survey Banner */
.survey-banner {
    margin-top: 0;
    margin-bottom: var(--space-2xl);
}

.survey-banner-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%);
    border-radius: 16px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.survey-banner-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(var(--color-primary-rgb), 0.3);
}

.survey-banner-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.survey-banner-label {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
}

.survey-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.survey-banner-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.survey-banner-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.survey-banner-link:hover .survey-banner-arrow {
    transform: translateX(4px);
}

@media screen and (max-width: 768px) {
    .survey-banner-link {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-lg);
        text-align: center;
    }
    
    .survey-banner-content {
        align-items: center;
    }
    
    .survey-banner-title {
        font-size: 1.25rem;
    }
}

/* ===================================
   Information Section
=================================== */
.section-information {
    background-color: var(--color-gray-50);
}

/* Info Links */
.info-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 1.75rem);
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.info-links:has(> :only-child) {
    grid-template-columns: 1fr;
}

.info-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.info-link-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.info-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    background: linear-gradient(
        135deg,
        rgba(var(--color-accent-rgb), 0.12) 0%,
        rgba(var(--color-primary-rgb), 0.1) 100%
    );
    border-radius: 50%;
}

.info-link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-link-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.info-link-text {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.info-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: 50px;
    transition: var(--transition-base);
}

.info-link-card:hover .info-link-btn {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-primary-light) 100%);
}

@media screen and (max-width: 768px) {
    .info-links {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.faq-section-title-en {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.faq-section-title-ja {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-600);
}

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

/* ===================================
   Driver Voice Section
=================================== */
.section-driver-voice {
    background-color: var(--color-white);
}

.driver-voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-top: var(--space-lg);
}

.driver-voice-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 10px 40px rgba(2, 62, 138, 0.05);
    border: 1px solid var(--color-gray-100);
    position: relative;
}

/* .driver-voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(2, 62, 138, 0.08);
} */

.driver-voice-q {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px dashed var(--color-gray-200);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    min-width: 0;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
}

.driver-voice-q::before {
    content: 'Q.';
    font-family: var(--font-en);
    color: var(--color-accent);
    font-weight: 900;
    flex-shrink: 0;
}

.driver-voice-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.125rem);
    list-style: none;
    padding: 0;
    margin: 0;
}

.driver-voice-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.driver-voice-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.driver-voice-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-700);
    line-height: 1.4;
    flex: 1;
}

.driver-voice-card--tiles {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    min-width: 0;
}

.driver-voice-card--tiles .driver-voice-list--tiles {
    display: block;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    line-height: 2.4; /* タグの上下間隔 */
}

.driver-voice-card--tiles .driver-voice-item {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 8px 14px;
    margin: 4px 4px;
    border: none;
    box-shadow: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, background-color 0.2s ease;
}

.driver-voice-card--tiles .driver-voice-label {
    font-size: clamp(0.8125rem, 1.8vw, 1.0625rem);
    font-weight: 700;
    display: inline;
}

/* 画像に合わせたカラー構成（4段階） */
.driver-voice-card--tiles .driver-voice-item:nth-child(1),
.driver-voice-card--tiles .driver-voice-item:nth-child(2),
.driver-voice-card--tiles .driver-voice-item:nth-child(3) {
    background: #0073b1;
}
.driver-voice-card--tiles .driver-voice-item:nth-child(1) .driver-voice-label,
.driver-voice-card--tiles .driver-voice-item:nth-child(2) .driver-voice-label,
.driver-voice-card--tiles .driver-voice-item:nth-child(3) .driver-voice-label {
    color: #fff;
}

.driver-voice-card--tiles .driver-voice-item:nth-child(4),
.driver-voice-card--tiles .driver-voice-item:nth-child(5) {
    background: #0084c1;
}
.driver-voice-card--tiles .driver-voice-item:nth-child(4) .driver-voice-label,
.driver-voice-card--tiles .driver-voice-item:nth-child(5) .driver-voice-label {
    color: #fff;
}

.driver-voice-card--tiles .driver-voice-item:nth-child(6),
.driver-voice-card--tiles .driver-voice-item:nth-child(7) {
    background: #0096cc;
}
.driver-voice-card--tiles .driver-voice-item:nth-child(6) .driver-voice-label,
.driver-voice-card--tiles .driver-voice-item:nth-child(7) .driver-voice-label {
    color: #fff;
}

.driver-voice-card--tiles .driver-voice-item:nth-child(n+8) {
    background: #e6f4fa;
}
.driver-voice-card--tiles .driver-voice-item:nth-child(n+8) .driver-voice-label {
    color: #0073b1;
}

.driver-voice-card--tiles .driver-voice-item:nth-child(n) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.driver-voice-card--tiles .driver-voice-bar-wrap {
    display: none;
}

.driver-voice-card--tiles.is-visible .driver-voice-item {
    opacity: 1;
    transform: none;
}

.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(1) { transition-delay: 0.05s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(2) { transition-delay: 0.1s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(3) { transition-delay: 0.15s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(4) { transition-delay: 0.2s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(5) { transition-delay: 0.25s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(6) { transition-delay: 0.3s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(7) { transition-delay: 0.35s; }
.driver-voice-card--tiles.is-visible .driver-voice-item:nth-child(n+8) { transition-delay: 0.4s; }

/* 吹き出し形式（職場の雰囲気） */
.driver-voice-card--bubbles {
    background: var(--color-white);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 20px;
    min-width: 0;
}

.driver-voice-card--bubbles .driver-voice-card-header {
    text-align: left;
    margin-bottom: var(--space-xl);
    position: relative;
}

.driver-voice-card--bubbles .driver-voice-card-header::before {
    content: none;
}

/* 他のVOICEカード（なぜマルニックスに？など）と同じ見出し */
.driver-voice-card--bubbles .driver-voice-q {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px dashed var(--color-gray-200);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}

.driver-voice-card--bubbles .driver-voice-q::after {
    content: none;
}

.driver-voice-card--bubbles .driver-voice-q::before {
    content: 'Q.';
    font-family: var(--font-en);
    color: var(--color-accent);
    font-weight: 900;
}

.driver-voice-card--bubbles .driver-voice-sub {
    display: none;
}

.driver-voice-bubbles {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 2.6;
    font-size: 0; /* inline-block 間の空白を詰める */
}

.driver-voice-bubble {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    max-width: min(100%, 280px);
    margin: 8px 6px;
    font-size: 1rem; /* 子のフォントサイズを復元 */
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.driver-voice-bubble--left {
    text-align: left;
}

.driver-voice-bubble--right {
    text-align: right;
}

.driver-voice-bubble-text {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    font-size: clamp(0.9375rem, 2vw, 1.05rem);
    font-weight: 500;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: left;
    background: #d9eef8;
    color: var(--color-primary-dark);
}

/* 吹き出しのしっぽ（左） */
.driver-voice-bubble--left::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -8px;
    width: 20px;
    height: 20px;
    background: #d9eef8;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

/* 吹き出しのしっぽ（右） */
.driver-voice-bubble--right::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #d9eef8;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: -1;
}

.driver-voice-card--bubbles.is-visible .driver-voice-bubble {
    opacity: 1;
    transform: none;
}

.driver-voice-card--bubbles.is-visible .driver-voice-bubble:nth-child(1) { transition-delay: 0.06s; }
.driver-voice-card--bubbles.is-visible .driver-voice-bubble:nth-child(2) { transition-delay: 0.12s; }
.driver-voice-card--bubbles.is-visible .driver-voice-bubble:nth-child(3) { transition-delay: 0.18s; }
.driver-voice-card--bubbles.is-visible .driver-voice-bubble:nth-child(4) { transition-delay: 0.24s; }
.driver-voice-card--bubbles.is-visible .driver-voice-bubble:nth-child(5) { transition-delay: 0.3s; }
.driver-voice-card--bubbles.is-visible .driver-voice-bubble:nth-child(n+6) { transition-delay: 0.36s; }

@media screen and (max-width: 768px) {
    .driver-voice-bubbles {
        line-height: 2.2;
    }

    .driver-voice-bubble {
        display: inline-block;
        max-width: calc(100% - 16px);
        width: calc(100% - 16px);
        margin: 8px;
    }

    .driver-voice-bubble--left,
    .driver-voice-bubble--right {
        text-align: center;
    }
}

.driver-voice-card--no-count .driver-voice-count {
    display: none;
}

.driver-voice-count {
    font-family: var(--font-en);
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--color-primary);
    white-space: nowrap;
    background: rgba(var(--color-primary-rgb), 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.driver-voice-bar-wrap {
    width: 100%;
    height: 12px;
    background: var(--color-gray-100);
    overflow: hidden;
}

.driver-voice-bar {
    height: 100%;
    width: 0;
    max-width: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    transition: width 2.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.driver-voice-card.driver-voice-bars-active .driver-voice-bar {
    width: var(--bar-w, 0%);
}

.driver-voice-item:nth-child(1) .driver-voice-bar {
    transition-delay: 0s;
}

.driver-voice-item:nth-child(2) .driver-voice-bar {
    transition-delay: 0.12s;
}

.driver-voice-item:nth-child(3) .driver-voice-bar {
    transition-delay: 0.24s;
}

.driver-voice-item:nth-child(4) .driver-voice-bar {
    transition-delay: 0.36s;
}

.driver-voice-item:nth-child(5) .driver-voice-bar {
    transition-delay: 0.48s;
}

.driver-voice-item:nth-child(6) .driver-voice-bar {
    transition-delay: 0.6s;
}

.driver-voice-item:nth-child(7) .driver-voice-bar {
    transition-delay: 0.72s;
}

@media (prefers-reduced-motion: reduce) {
    .driver-voice-bar {
        width: var(--bar-w, 0%);
        transition: none;
    }

    .driver-voice-item:nth-child(n) .driver-voice-bar {
        transition-delay: 0s;
    }

    .driver-voice-card--tiles .driver-voice-item,
    .driver-voice-card--bubbles .driver-voice-bubble {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* カードごとに色を分けず、すべて同じサイトブルーのグラデに統一 */
.driver-voice-bar--top,
.driver-voice-bar--sub,
.driver-voice-bar--accent {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* タブレット縦・狭い画面ではカードを1列（やりがい＋雰囲気の横並びを解消） */
@media screen and (max-width: 960px) {
    .driver-voice-grid {
        grid-template-columns: 1fr;
        max-width: min(700px, 100%);
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .driver-voice-card {
        padding: 1.5rem;
    }

    .driver-voice-card--tiles .driver-voice-item {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .driver-voice-card--tiles .driver-voice-label {
        font-size: 1rem;
    }

    .driver-voice-card--tiles .driver-voice-item:nth-child(1) .driver-voice-label {
        font-size: 1.125rem;
    }
}

/* ===================================
   FAQ Section
=================================== */
.section-faq {
    background-color: var(--color-gray-50);
}

/* FAQ */
.faq-list {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

/* 回答のAバッジ */
.faq-a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 50%;
}

.faq-answer {
    display: none;
    padding: var(--space-sm) var(--space-lg) var(--space-lg);
}

.faq-answer.active {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    animation: fadeIn 0.3s ease;
}

.faq-answer-text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--color-gray-700);
}

/* +/- アイコン */
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--color-primary);
    transition: var(--transition-base);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background-color: var(--color-gray-50);
}

.faq-q {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 50%;
}

.faq-question-text {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-black);
    font-feature-settings: "palt";
    overflow-wrap: anywhere;
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--color-primary);
    transition: var(--transition-base);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    display: none;
    padding: var(--space-sm) var(--space-lg) var(--space-lg);
    padding-left: calc(var(--space-lg) + 32px + var(--space-md));
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    display: flex;
    gap: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.faq-a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-en);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-bottom: 8px;
}

/* ===================================
   Buttons
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
}

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

.btn-primary:hover {
    background-color: var(--color-accent-light);
    transform: translateX(5px);
}

.btn-outline {
    color: var(--color-primary);
    background-color: transparent;
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.btn-outline.disabled {
    color: var(--color-gray-500);
    border-color: var(--color-gray-300);
    cursor: not-allowed;
}

.btn-outline.disabled:hover {
    color: var(--color-gray-500);
    background-color: transparent;
}

/* ===================================
   CTA Section
=================================== */
.section-cta {
    position: relative;
    padding: var(--space-4xl) 0;
    text-align: center;
    color: var(--color-white);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg img.cta-bg-pc {
    display: block;
}

.cta-bg img.cta-bg-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .cta-bg img.cta-bg-pc {
        display: none !important;
    }
    
    .cta-bg img.cta-bg-sp {
        display: block !important;
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--color-accent-rgb), 0.85) 0%,
        rgba(var(--color-primary-rgb), 0.9) 50%,
        rgba(var(--color-primary-rgb), 0.95) 100%
    );
}

.section-cta .container {
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.cta-title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background-color: var(--color-white);
    border-radius: 50px;
    transition: var(--transition-base);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Footer
=================================== */
.site-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ロゴ左・ナビ右の横並び */
.footer-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: var(--space-md);
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.footer-logo-img {
    width: 44px;
    height: auto;
    flex-shrink: 0;
}

.footer-logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-text {
    font-family: var(--font-ja);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    white-space: nowrap;
}

.footer-logo-sub {
    font-family: var(--font-en);
    font-size: 0.5625rem;
    color: var(--color-accent);
    letter-spacing: 0.18em;
}

/* ページ内ナビ（セパレーター区切りの横並びリスト） */
.footer-nav--page-only {
    flex: 1 1 0;
    min-width: 0;
}

.footer-nav--page-only .footer-nav-section ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav--page-only .footer-nav-section ul li {
    display: flex;
    align-items: center;
}

/* アイテム間の区切り線 */
.footer-nav--page-only .footer-nav-section ul li + li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0.75em;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.footer-nav--page-only .footer-nav-section a {
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.footer-nav--page-only .footer-nav-section a:hover {
    color: var(--color-white);
}

.footer-external {
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-external-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-external-list li {
    display: flex;
    align-items: center;
}

.footer-external-list li + li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0.75em;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.footer-external-list a {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.footer-external-list a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-family: var(--font-en);
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-text-wrap {
        align-items: center;
    }

    .footer-nav--page-only .footer-nav-section ul {
        justify-content: center;
    }

    .footer-nav--page-only .footer-nav-section a {
        white-space: normal;
        text-align: center;
        line-height: 1.45;
    }
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.work-card.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.work-card.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }

.culture-card.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.culture-card.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.culture-card.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }

.interview-card.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.interview-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.interview-card.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.interview-card.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.interview-card.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.interview-card.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

.faq-item.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.faq-item.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.faq-item.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.faq-item.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.faq-item.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.faq-item.animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }

.driver-voice-grid > .driver-voice-card.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.driver-voice-grid > .driver-voice-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.driver-voice-grid > .driver-voice-card.animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.driver-voice-grid > .driver-voice-card.animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .driver-voice-grid > .driver-voice-card.animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===================================
   Responsive
=================================== */
@media screen and (max-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    .section-work {
        padding: var(--space-2xl) 0;
    }
    
    .culture-header {
        padding: var(--space-xl) 0 var(--space-md);
    }
    
    .about-content-wrapper {
        padding: var(--space-lg) 0 var(--space-xl);
    }
    
    .requirements-table th,
    .requirements-table td {
        display: block;
        width: 100%;
    }
    
    .requirements-table th {
        border-bottom: none;
        padding-bottom: var(--space-xs);
    }
    
    .requirements-table td {
        padding-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-md);
    }
    
    .header-inner {
        padding: 0 var(--space-md);
    }

    .logo-text {
        font-size: 0.6875rem;
    }

    .logo-sub {
        font-size: 0.5625rem;
        letter-spacing: 0.14em;
    }

    .logo-img {
        height: 30px;
    }
    
    .hero-content {
        padding: var(--space-md);
        padding-top: calc(var(--header-height) + var(--space-md));
    }
    
    .info-tab-buttons {
        flex-direction: column;
    }
    
    .info-tab-btn {
        max-width: 100%;
    }
}

/* ===================================
   SP固定エントリーボタン
   =================================== */
.fixed-entry-btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .fixed-entry-btn {
        display: block;
        position: fixed;
        bottom: env(safe-area-inset-bottom, 0px);
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: min(320px, 100%);
        padding: 0 var(--container-padding);
        box-sizing: border-box;
        z-index: 999;
    }
    
    .fixed-entry-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-xs);
        width: 100%;
        min-height: 48px;
        padding: var(--space-sm) var(--space-md);
        background: var(--color-entry);
        color: var(--color-entry-text);
        font-family: var(--font-en);
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        border-radius: 0;
        text-decoration: none;
        transition: var(--transition-base);
    }
    
    .fixed-entry-btn a:hover {
        background: var(--color-entry-hover);
        color: var(--color-entry-text);
    }
    
    .fixed-entry-btn svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }
    
    /* フッターと重ならないように最下部にpadding追加（ノッチ端末の safe-area 込み） */
    .site-footer {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }
    
    /* FAQ - QとAの左位置を揃える */
    .faq-answer {
        padding-left: var(--space-lg);
    }

    .faq-question {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
    }

    .faq-question-text {
        font-size: 0.875rem;
    }
}
