/* ========================================
   川西陸送株式会社 ウェブサイト
   メインスタイルシート v2.1
======================================== */

/* ========================================
   リセット & ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

:root {
    /* カラー */
    --primary-blue: #003D82;
    --primary-red: #E31C23;
    --dark-blue: #002654;
    --light-blue: #005BB5;
    --dark-red: #B71C1C;
    --light-red: #FF5252;
    
    /* グレースケール */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --dark-gray: #333333;
    --black: #000000;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    
    /* スペーシング */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* トランジション */
    --transition: all 0.3s ease;
    
    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: var(--font-main);
    color: var(--dark-gray);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

/* ========================================
   コンテナ & レイアウト
======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
}

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

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

.bg-accent {
    background: #f7f7f7;
    color: #333333;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.logo-mark {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.logo-company-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-gray);
    letter-spacing: 0.05em;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

/* ハンバーガーメニュー（PC・タブレットでは非表示） */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-gray);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ナビゲーションメニュー（PC・タブレットでは常に表示） */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    margin: 0;
}

.nav-list li {
    border-bottom: none;
}

.nav-list a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    padding-left: var(--spacing-sm);
}

/* ナビゲーション内のアクションボタン（PC・タブレットでは非表示） */
.nav-actions {
    display: none;
}

.btn-phone-nav,
.btn-recruit-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-phone-nav {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-phone-nav:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-recruit-nav {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-recruit-nav:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.btn-line-nav {
    background-color: #06C755;
}

.btn-line-nav:hover {
    background-color: #05B04B;
}

/* 旧ヘッダーアクション（非表示） */
.header-actions {
    display: none;
}

.btn-phone {
    display: none;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-phone:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-recruit {
    display: none;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    height: 56.25vw; /* 16:9のアスペクト比 */
    max-height: 650px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 1枚目: ズームアウト（大→小→大） */
.slide-1 {
    animation: zoom-out 20s ease-in-out infinite;
    filter: brightness(1.0);
}

/* 2枚目: ズームイン（小→大→小） */
.slide-2 {
    animation: zoom-in 20s ease-in-out infinite;
    filter: brightness(1.0);
}

/* 3枚目: ズームアウト（弱め）上が切れないように */
.slide-3 {
    animation: zoom-out-light 20s ease-in-out infinite;
}

.slide-3 .slide-image {
    background-position: center center; /* 中央配置 */
    background-size: cover; /* 画面いっぱいに表示 */
}

/* ズームアウト: 大きい状態から始まり、縮小して、また大きく戻る */
@keyframes zoom-out {
    0% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.15);
    }
}

/* ズームアウト（3枚目専用）: 1.15倍から始まり、1.0倍へズームアウト */
@keyframes zoom-out-light {
    0% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.15);
    }
}

/* ズームイン: 等倍から始まり、拡大して、また等倍に戻る */
@keyframes zoom-in {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.0);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 130, 0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 var(--spacing-md);
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    padding: 0 var(--spacing-sm);
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
    padding: 0 var(--spacing-sm);
}

/* PC・タブレットではスマホ専用改行を非表示 */
.br-sp {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    padding: 0 var(--spacing-md);
}

.btn-hero {
    min-width: 120px;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.8rem;
    justify-content: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.scroll-indicator {
    display: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.slideshow-controls {
    display: none;
}
    gap: var(--spacing-md);
    z-index: 3;
}

.prev-slide,
.next-slide {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.prev-slide:hover,
.next-slide:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slide-indicators {
    display: flex;
    gap: var(--spacing-xs);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   ボタンスタイル
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--light-gray);
}

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

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

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

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

.btn-line {
    background-color: #06C755;
    color: var(--white);
}

.btn-line:hover {
    background-color: #05B04B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-large,
.btn-primary-xl {
    background-color: var(--primary-red);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.btn-primary-large:hover,
.btn-primary-xl:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-phone-xl {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.btn-phone-xl:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-line-xl {
    background-color: #06C755;
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    white-space: nowrap;
}

.btn-line-xl:hover {
    background-color: #05B04B;
    color: var(--white);
}

.btn-line-header {
    background-color: #06C755;
    color: var(--white);
}

.btn-line-header:hover {
    background-color: #05B04B;
    color: var(--white);
}

.btn-outline-white-large {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

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

/* ========================================
   セクション共通スタイル
======================================== */
.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.section-description {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

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

/* ========================================
   社長メッセージセクション
======================================== */
.president-message {
    background-color: var(--white);
}

.message-text-only {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.message-text strong {
    color: var(--primary-red);
}

.message-body p {
    margin-bottom: var(--spacing-md);
    text-align: left;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* 代表メッセージ動画 */
.president-video {
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
}

.video-container-president {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-container-president video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-president {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--primary-blue);
}

.video-placeholder-president i {
    font-size: 4rem;
    opacity: 0.5;
}

.video-placeholder-president p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.video-placeholder-president .placeholder-note {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
}

/* ========================================
   企業理念カード
======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* ========================================
   CTAセクション
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: var(--spacing-xxl) 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.cta-main-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.highlight-text {
    color: var(--primary-red);
    font-weight: 900;
    font-size: 2.4rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.9;
    max-width: 800px;
}

.cta-description strong {
    font-weight: 700;
    color: var(--primary-blue);
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   アクセスセクション
======================================== */
.access-content {
    display: block;
    width: 100%;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    border-radius: 8px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    justify-content: flex-start;
    width: 100%;
}

.info-box {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    width: 100%;
}

.info-text-line {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 2;
    white-space: nowrap;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.info-text-line i {
    color: var(--primary-blue);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.info-text-line:not(:last-child) {
    margin-bottom: var(--spacing-xs);
}

.info-text-line a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1rem;
}

.info-text-line a:hover {
    color: var(--primary-blue);
}

.access-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    width: 100%;
    margin-top: var(--spacing-lg);
}

.btn-wide {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.05rem;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 30px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    opacity: 0.6;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.6;
}

.info-text a {
    color: var(--dark-gray);
    text-decoration: none;
}

.info-text a:hover {
    color: var(--primary-blue);
}

.info-value a {
    color: var(--dark-gray);
    font-weight: 700;
    text-decoration: none;
}

.info-value a:hover {
    color: var(--primary-blue);
}

.info-card a {
    color: var(--primary-blue);
    font-weight: 700;
}

.info-card a:hover {
    color: var(--primary-red);
}

.sub-text {
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   ページヒーロー
======================================== */
.page-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    margin-top: 90px;
    position: relative;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    justify-content: center;
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

/* ========================================
   会社案内ページ
======================================== */
.company-philosophy {
    text-align: center;
}

.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border-radius: 8px;
}

.philosophy-main {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.philosophy-description {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
}

.overview-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin: var(--spacing-xs) 0;
    line-height: 1.8;
}

.overview-text strong {
    font-weight: 700;
    font-size: 1.1rem;
}

.overview-table {
    max-width: 900px;
    margin: 0 auto;
}

.overview-table table {
    width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.overview-table th,
.overview-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

.overview-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    width: 30%;
}

.overview-table td {
    background-color: var(--white);
}

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

/* 保有車両 */
.fleet-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.fleet-image-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.fleet-main-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fleet-list {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.fleet-item {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin: var(--spacing-sm) 0;
    line-height: 1.9;
}

.fleet-total-count {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.fleet-stats {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.fleet-total {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.total-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.total-label {
    font-size: 1.5rem;
    font-weight: 700;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.fleet-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.fleet-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.fleet-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.fleet-count {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
}

.fleet-detail {
    font-size: 0.9rem;
    color: #666;
}

/* 事業部門 */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.department-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.department-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.department-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.8), rgba(227, 28, 35, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.department-content {
    padding: var(--spacing-lg);
}

.department-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.department-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1rem;
}

.department-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--dark-gray);
}

.feature-item i {
    color: var(--primary-red);
}

.department-contact {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray);
    font-size: 0.9rem;
}

.department-contact i {
    color: var(--primary-blue);
}

.contact-note {
    font-size: 0.85rem;
    color: #666;
}

/* 安全への取り組み */
.safety-section {
    background-color: var(--light-gray);
}

.safety-text-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: var(--spacing-xxl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.safety-subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.safety-period {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.safety-main-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background-color: rgba(0, 61, 130, 0.05);
    border-left: 4px solid var(--primary-blue);
    line-height: 1.8;
}

.safety-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.safety-text {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin: var(--spacing-xs) 0;
    line-height: 1.8;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.safety-goals,
.safety-equipment,
.safety-management,
.safety-results {
    margin-bottom: var(--spacing-xxl);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.goal-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.goal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.goal-card h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.goal-target {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.equipment-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.equipment-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.equipment-item p {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.management-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.management-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.management-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.management-item p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.result-item {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.result-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.result-number span {
    font-size: 2rem;
}

.result-check {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.result-item p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* ========================================
   採用情報ページ
======================================== */
/* 採用ページヒーロー動画セクション */
.recruit-hero-video {
    position: relative;
    width: 100%;
    margin-top: 70px;
    background-color: #000;
}

.video-container-hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
    overflow: hidden;
}

.hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.recruit-hero {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 アスペクト比 */
    margin-top: 70px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background-color: #000;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77vh; /* 16:9比率を維持 */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw; /* 16:9比率 */
    pointer-events: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--white);
}

.video-placeholder i {
    font-size: 5rem;
    opacity: 0.5;
}

.video-placeholder p {
    font-size: 1.2rem;
    opacity: 0.8;
    text-align: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 130, 0.4);
}

.recruit-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: var(--spacing-xl);
}

.recruit-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xxl);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.recruit-main-subtitle {
    font-size: 1.5rem;
    margin-bottom: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.recruit-hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    margin-top: auto;
}

.recruit-hero-buttons .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.95rem;
    min-width: 200px;
}

.recruit-message {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
}

.message-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
}

.message-main {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.message-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.scroll-down {
    margin-top: var(--spacing-xl);
}

/* 動画セクション */
.video-section {
    padding: var(--spacing-xxl) 0;
}

.main-video {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.video-placeholder-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray), var(--gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--dark-gray);
}

.video-placeholder-large i {
    font-size: 4rem;
    opacity: 0.3;
}

.video-placeholder-large p {
    font-size: 1.2rem;
    font-weight: 700;
}

.placeholder-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* インタビューセクション */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.interview-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.interview-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: var(--light-gray);
}

.video-placeholder-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray), var(--gray));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--dark-gray);
}

.video-placeholder-thumb i {
    font-size: 3rem;
    opacity: 0.3;
}

.video-placeholder-thumb p {
    font-weight: 700;
}

.video-placeholder-thumb span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.interview-info {
    padding: var(--spacing-lg);
}

.interview-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* 紹介制度 */
.referral-program {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.referral-header {
    margin-bottom: var(--spacing-lg);
}

.referral-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.referral-video-item {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder-referral {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--white);
}

.video-placeholder-referral i {
    font-size: 3rem;
    opacity: 0.7;
}

.video-placeholder-referral p {
    font-size: 1rem;
    opacity: 0.8;
}

.referral-video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.referral-content {
    text-align: center;
}

.referral-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.referral-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0;
}

.referral-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

/* 募集要項 */
.job-openings {
    padding: var(--spacing-xxl) 0;
}

.job-banner {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.job-icon {
    width: 100px;
    height: 100px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.job-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.job-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.job-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* 求める人物像 */
.candidates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.candidate-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.candidate-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.candidate-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.candidate-list {
    list-style: none;
}

.candidate-list li {
    display: flex;
    align-items: start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.candidate-list i {
    color: var(--primary-red);
    margin-top: 4px;
    flex-shrink: 0;
}

/* 福利厚生 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.benefit-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.salary-info {
    max-width: 800px;
    margin: 0 auto;
}

.salary-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    text-align: center;
}

.salary-box i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.salary-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.salary-box p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.salary-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* 社内文化 */
.culture-video {
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
}

.culture-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* エントリーCTA */
.entry-cta {
    padding: var(--spacing-xxl) 0;
    background: transparent;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: #333333;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.8;
    opacity: 0.9;
}

.entry-methods {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.entry-method {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: 8px;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.entry-method h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.phone-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
    margin: var(--spacing-md) 0;
}

.method-note,
.method-description {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.entry-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.entry-divider span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 20px;
    font-weight: 700;
}

/* LINE準備中 */
.line-coming-soon,
.line-section .line-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.coming-badge,
.line-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.line-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: #00B900;
}

.line-coming-soon h3,
.line-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.line-coming-soon p,
.line-box p {
    line-height: 1.8;
}

/* ========================================
   お問い合わせページ
======================================== */
.contact-intro {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-methods {
    padding: var(--spacing-xl) 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.method-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.method-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.method-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
}

.method-contact {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    display: block;
    margin-top: var(--spacing-sm);
}

.method-note {
    font-size: 0.9rem;
    color: #666;
}

/* フォーム */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.contact-form {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.required {
    color: var(--primary-red);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.radio-group {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.privacy-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: var(--spacing-xs);
    line-height: 1.7;
}

.form-submit {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ========================================
   Tally Form Embed
   ======================================== */
.form-container iframe {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 1200px;
    max-width: 100%;
}

/* ========================================
   Contact Methods Section
   ======================================== */
.contact-methods-section {
    background-color: var(--light-gray);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.contact-method-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.phone-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.email-icon {
    background: linear-gradient(135deg, var(--primary-red), #c71920);
}

.line-icon {
    background: linear-gradient(135deg, #06C755, #05B04B);
}

.method-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.method-description {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.method-info {
    background-color: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.phone-number-large {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
}

.email-address {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--spacing-xs);
    word-break: break-all;
}

.line-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #06C755;
    margin-bottom: var(--spacing-xs);
}

.business-hours,
.response-time {
    font-size: 0.85rem;
    color: #666;
}

.btn-line-large {
    background-color: #06C755;
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.btn-line-large:hover {
    background-color: #05B04B;
    color: var(--white);
}

.form-message {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    border: 2px solid #4CAF50;
}

.form-message.success i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: var(--spacing-md);
}

.form-message.error {
    border: 2px solid var(--primary-red);
}

.form-message.error i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.form-message h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* 会社情報 */
.company-info-section {
    padding: var(--spacing-xxl) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.info-item {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

.department-contact {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
}

.department-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.department-contact p {
    font-size: 1.1rem;
}

.department-contact a {
    font-weight: 900;
}

/* マップ */
.map-section .map-container {
    margin-bottom: var(--spacing-lg);
}

.map-section .map-container iframe {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.access-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.access-method {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.access-method h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.access-method i {
    color: var(--primary-red);
}

/* LINE準備中（お問い合わせページ） */
.line-section {
    padding: var(--spacing-xl) 0;
}

.line-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    color: var(--dark-gray);
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-company {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col a {
    color: var(--white);
}

.footer-col a:hover {
    color: var(--primary-red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    display: block;
    padding: var(--spacing-xs) 0;
}

.footer-btn {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition);
    color: var(--white);
}

.footer-btn:hover {
    background-color: var(--primary-red);
    color: var(--white) !important;
}

.footer-btn-line {
    background-color: rgba(6, 199, 85, 0.2);
    color: var(--white);
}

.footer-btn-line:hover {
    background-color: #06C755;
    color: var(--white) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ========================================
   トップに戻るボタン
======================================== */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-red);
    transform: translateY(-5px);
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .recruit-main-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .candidates-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .goals-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Methods - Tablet */
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .logo-mark {
        height: 50px;
    }
    
    .logo-company-name {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 320px;
        height: calc(100vh - 78px);
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: var(--spacing-xl) var(--spacing-lg);
        display: flex;
        flex-direction: column;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .nav-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-list a {
        font-size: 1.1rem;
        padding: var(--spacing-md) 0;
        border-bottom: none;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        padding-left: var(--spacing-sm);
    }
    
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .hero {
        height: 56.25vw; /* 16:9のアスペクト比 */
        max-height: 450px;
        min-height: 300px;
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.5;
        padding: 0 var(--spacing-xs);
    }
    
    .hero-subtitle {
        display: none;
    }
    
    /* スマホ専用改行を表示 */
    .br-sp {
        display: inline;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
        padding: 0 var(--spacing-md);
        width: 100%;
    }
    
    .btn-hero {
        width: auto;
        min-width: 120px;
        max-width: 280px;
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .recruit-main-title {
        font-size: 2.2rem;
    }
    
    .recruit-main-subtitle {
        font-size: 1.1rem;
    }
    
    .recruit-hero-buttons {
        flex-direction: row;
        gap: var(--spacing-xs);
    }
    
    /* 採用ページヒーロー動画セクション */
    .recruit-hero-video {
        width: 100%;
        margin-top: 70px;
        background-color: #000;
    }
    
    .video-container-hero {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 アスペクト比を維持 */
        overflow: hidden;
    }
    
    .hero-video-player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* 採用ページヒーローセクション */
    .recruit-hero {
        width: 100%;
        padding-top: 56.25%; /* 16:9 アスペクト比 */
        margin-top: 70px;
    }
    
    .recruit-hero-buttons .btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
        min-width: 150px;
    }
    
    .values-grid,
    .fleet-grid,
    .interview-grid,
    .candidates-grid,
    .benefits-grid,
    .methods-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* 保有車両のスマホ表示 */
    .fleet-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .fleet-list {
        text-align: center;
    }
    
    .referral-videos {
        grid-template-columns: 1fr;
    }
    
    /* スマホで動画を16:9の横長に */
    .referral-video-item {
        padding-bottom: 56.25%; /* 16:9 */
    }
    
    .video-placeholder-referral {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .video-placeholder-referral i {
        font-size: 2rem;
    }
    
    .video-placeholder-referral p {
        font-size: 0.85rem;
    }
    
    /* 代表メッセージ動画 スマホ */
    .president-video {
        margin-top: var(--spacing-md);
    }
    
    .video-container-president {
        border-radius: 8px;
    }
    
    .video-placeholder-president i {
        font-size: 3rem;
    }
    
    .video-placeholder-president p {
        font-size: 1.1rem;
    }
    
    .video-placeholder-president .placeholder-note {
        font-size: 0.8rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .access-buttons {
        flex-direction: column;
    }
    
    .btn-wide {
        width: 100%;
    }
    
    .cta-main-title {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.5;
    }
    
    /* こんな方を求めています のタイトル */
    .ideal-candidates .section-title {
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    /* 福利厚生・待遇 のタイトル */
    .benefits-section .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* ボタンのスマホ調整 */
    .btn {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .goals-grid,
    .management-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .job-banner {
        flex-direction: column;
        text-align: center;
    }
    
    /* ドライバー募集中! のスタイル */
    .job-banner h2 {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-sm);
    }
    
    .job-highlight {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .job-text p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .entry-methods {
        grid-template-columns: 1fr;
    }
    
    /* 福利厚生の文字サイズ調整 */
    .benefit-item h3 {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* まずはお気軽にご連絡ください! */
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.6;
        font-weight: 700;
    }
    
    /* LINEボタンのスマホ調整 */
    .btn-line-xl {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-md);
        width: 100%;
        max-width: 280px;
    }
    
    /* こんな方を求めています カードのタイトル */
    .candidate-title {
        font-size: 1.15rem;
        line-height: 1.5;
    }
    
    .candidate-list li {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* 理念カードのタイトル */
    .value-title {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    /* 大きな動画プレースホルダー（社内イベント動画など）*/
    .video-container {
        padding-bottom: 56.25%; /* 16:9 横長 */
        border-radius: 8px;
    }
    
    .culture-video {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .video-placeholder-large i {
        font-size: 2.5rem;
    }
    
    .video-placeholder-large p {
        font-size: 0.9rem;
    }
    
    .video-placeholder-large .placeholder-note {
        font-size: 0.8rem;
    }
    
    .culture-text {
        font-size: 0.95rem;
        padding: 0 var(--spacing-md);
    }
    
    /* メッセージセクションのテキスト調整 */
    .message-main {
        font-size: 1.05rem;
        line-height: 1.7;
        font-weight: 700;
    }
    
    .message-sub {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* 保有車両リスト */
    .fleet-item {
        font-size: 0.95rem;
        line-height: 1.8;
        margin: var(--spacing-xs) 0;
    }
    
    .fleet-total-count {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: var(--spacing-sm);
    }
    
    /* 事業部門 */
    .department-title {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .department-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* お問い合わせフォームの個人情報の取り扱い */
    .privacy-note {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .entry-divider {
        display: none;
    }
    
    /* Tally Form - Mobile */
    .form-container {
        padding: 0 var(--spacing-sm);
        text-align: center;
    }
    
    .form-container iframe {
        display: block;
        margin: 0 auto;
        min-height: 1300px;
    }
    
    /* Contact Methods - Mobile */
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .phone-number-large {
        font-size: 1.6rem;
    }
    
    .email-address {
        font-size: 1rem;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .method-title {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .access-info {
        grid-template-columns: 1fr;
    }
    
    .slideshow-controls {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .logo-mark {
        height: 55px;
    }
    
    .logo-company-name {
        font-size: 1.5rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 32px;
        --spacing-xxl: 48px;
    }
    
    .hero-title,
    .recruit-main-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-main-title {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.7rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .btn-primary-large,
    .btn-primary-xl,
    .btn-phone-xl {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .logo a {
        gap: var(--spacing-sm);
    }
    
    .logo-mark {
        height: 45px;
    }
    
    .logo-company-name {
        font-size: 1.2rem;
    }
}
