/* ============================================================
   山秀運送株式会社 コーポレートサイト
   共通スタイルシート
   ============================================================ */

/* --- リセット & 基本設定 --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1A3A5C;
  --navy-dark: #0f2340;
  --navy-light:#2a5080;
  --orange:    #E8620A;
  --orange-h:  #c5500a;
  --gray-bg:   #F5F7FA;
  --gray-line: #DDEEFF;
  --text:      #333333;
  --text-sub:  #666666;
  --white:     #FFFFFF;
  --font:      'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴ Pro', sans-serif;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- タイポグラフィ --- */
h1,h2,h3,h4 { line-height: 1.4; font-weight: 700; }

/* --- ユーティリティ --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--gray-bg); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }

/* セクションタイトル共通 */
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

/* ============================================================
   ヘッダー
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo a {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.logo-main { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.05em; }
.logo-sub  { font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.75; }

/* ロゴ画像 */
.header-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* オリジナルカラー表示・ロゴ周囲に白背景 */
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 12px;
  border-radius: 6px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
  /* オリジナルカラー表示・ロゴ周囲に白背景 */
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 12px;
  border-radius: 6px;
}
/* Gマーク（ヘッダー内） */
.gmark-img {
  width: 80px;
  height: auto;
  display: block;
}
/* フッター Gマーク */
.footer-gmark-img {
  height: 52px;
  width: auto;
  display: block;
  margin-top: 12px;
}

/* PC ナビ */
.pc-nav { display: none; }
@media(min-width:900px){
  .pc-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .pc-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .pc-nav a:hover { background: rgba(255,255,255,0.12); color: #fff; }
  .pc-nav .btn-recruit {
    background: var(--orange);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    margin-left: 8px;
    transition: background 0.2s;
  }
  .pc-nav .btn-recruit:hover { background: var(--orange-h); }
}

/* ハンバーガー */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media(min-width:900px){ .hamburger { display: none; } }

/* SP ドロワーメニュー */
#sp-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 0;
}
#sp-menu.open { display: block; }
#sp-menu a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
#sp-menu a:hover { background: rgba(255,255,255,0.06); }
#sp-menu .btn-recruit-sp {
  display: block;
  margin: 24px 32px 0;
  background: var(--orange);
  color: #fff !important;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
}

/* ============================================================
   フローティングCTA（採用）
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 990;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(232,98,10,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,98,10,0.5); }
.float-cta::before { content: '🚛'; font-size: 1.1rem; }

/* ============================================================
   ヒーロー（ファーストビュー）
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d2138 0%, #1A3A5C 50%, #1e4a70 100%);
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px);
}
.hero-accent {
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(232,98,10,0.4);
}
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================================
   強みセクション
   ============================================================ */
#strengths { background: var(--white); }
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media(min-width:600px){ .strengths-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px){ .strengths-grid { grid-template-columns: repeat(3, 1fr); } }

.strength-card {
  background: var(--white);
  border: 1px solid #e0eaf5;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
}
.strength-card:hover { box-shadow: 0 8px 28px rgba(26,58,92,0.12); transform: translateY(-3px); }
.strength-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.strength-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.strength-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* 5枚目のカード（中央揃え用） */
@media(min-width:900px){
  .strength-card:last-child:nth-child(5) {
    grid-column: 2;
  }
}

/* ============================================================
   事業案内セクション
   ============================================================ */
#services { background: var(--gray-bg); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media(min-width:640px){ .services-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:960px){ .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(26,58,92,0.12); transform: translateY(-3px); }
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ============================================================
   車両紹介セクション
   ============================================================ */
#vehicles { background: var(--navy); }
#vehicles .section-title { color: #fff; }
#vehicles .section-title::after { background: var(--orange); }
#vehicles .section-subtitle { color: rgba(255,255,255,0.65); }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media(min-width:640px){ .vehicles-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:900px){ .vehicles-grid { grid-template-columns: repeat(6, 1fr); } }

.vehicle-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  transition: background 0.2s;
}
.vehicle-card:hover { background: rgba(255,255,255,0.14); }
.vehicle-icon { font-size: 2rem; margin-bottom: 10px; }
.vehicle-name { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-weight: 700; line-height: 1.4; }
.vehicle-count { font-size: 1.1rem; color: var(--orange); font-weight: 900; margin-top: 6px; }

.vehicles-note {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 28px;
  line-height: 1.8;
}

/* ============================================================
   倉庫紹介セクション
   ============================================================ */
#warehouse { background: var(--white); }
.warehouse-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
.warehouse-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media(min-width:640px){ .warehouse-grid { grid-template-columns: repeat(3, 1fr); } }

.warehouse-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border-top: 4px solid var(--navy);
}
.warehouse-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.warehouse-card p { font-size: 0.82rem; color: var(--text-sub); line-height: 1.7; }

.warehouse-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.warehouse-badge {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
}
.warehouse-badge.orange { background: var(--orange); }

/* ============================================================
   Gマーク・安全セクション
   ============================================================ */
#safety-banner {
  background: var(--gray-bg);
  border-top: 4px solid var(--navy);
}
.safety-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 56px 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media(min-width:640px){
  .safety-inner { flex-direction: row; text-align: left; }
}
.gmark-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-text h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.safety-text p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.8; }
.safety-text a { color: var(--orange); font-weight: 700; text-decoration: underline; }

/* ============================================================
   採用バナーセクション
   ============================================================ */
#recruit-banner {
  background: linear-gradient(135deg, #1A3A5C 0%, #0d2138 100%);
  color: #fff;
  padding: 72px 20px;
  text-align: center;
}
.recruit-banner-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.recruit-banner-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.35;
}
.recruit-banner-title .accent { color: var(--orange); }
.recruit-banner-sub {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.9;
}
.recruit-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.recruit-highlight {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.recruit-highlight strong { display: block; color: var(--orange); font-size: 1rem; }

/* ============================================================
   お問い合わせセクション（ホーム用）
   ============================================================ */
#contact-home {
  background: var(--white);
  padding: 72px 20px;
  text-align: center;
}
.contact-lead {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
@media(min-width:640px){ .contact-cards { flex-direction: row; } }
.contact-card {
  flex: 1;
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.contact-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.contact-card .tel { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.contact-card .tel-sub { font-size: 0.75rem; color: var(--text-sub); margin-top: 4px; }
.btn-contact {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 12px;
  transition: background 0.2s;
}
.btn-contact:hover { background: var(--navy-light); }

/* ============================================================
   フッター
   ============================================================ */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media(min-width:640px){ .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand .logo-main { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.footer-brand p { font-size: 0.8rem; line-height: 1.8; }

.footer-nav h4 {
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a { font-size: 0.82rem; transition: color 0.2s; }
.footer-nav ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
}
@media(min-width:640px){
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   ページヘッダー（内部ページ共通）
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, #0d2138 0%, #1A3A5C 100%);
  color: #fff;
  padding: 100px 20px 48px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.page-header .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb a:hover { color: #fff; }

/* ============================================================
   採用ページ専用スタイル
   ============================================================ */
.recruit-lead-box {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 64px;
}
.recruit-lead-box h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.recruit-lead-box p { font-size: 0.95rem; line-height: 1.9; color: rgba(255,255,255,0.85); }
.recruit-lead-quote {
  border-left: 4px solid var(--orange);
  padding-left: 16px;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 16px;
}

/* 職種タブ */
.job-tabs {
  display: flex;
  gap: 0;
  border-bottom: 3px solid var(--navy);
  margin-bottom: 40px;
  overflow-x: auto;
}
.job-tab {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  background: #eee;
  color: var(--text-sub);
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.job-tab.active {
  background: var(--navy);
  color: #fff;
  border-bottom-color: var(--orange);
}
.job-content { display: none; }
.job-content.active { display: block; }

/* 給与ハイライト */
.salary-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5080 100%);
  color: #fff;
  border-radius: 12px;
  padding: 28px 28px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.salary-amount { font-size: 2rem; font-weight: 900; color: var(--orange); }
.salary-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* 条件テーブル */
.condition-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.condition-table th {
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  padding: 12px 16px;
  text-align: left;
  width: 140px;
  vertical-align: top;
}
.condition-table td {
  background: #fff;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-line);
  vertical-align: top;
  line-height: 1.8;
}
.condition-table tr:nth-child(even) td { background: var(--gray-bg); }

/* メリットカード */
.merits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media(min-width:600px){ .merits-grid { grid-template-columns: 1fr 1fr; } }

.merit-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 24px 20px;
  border-left: 4px solid var(--orange);
}
.merit-card h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.merit-card p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.8; }

/* 1日の流れ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-line);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-time { font-size: 0.82rem; font-weight: 700; color: var(--orange); margin-bottom: 4px; }
.timeline-item h4 { font-size: 0.95rem; color: var(--navy); }
.timeline-item p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-line);
  padding: 20px 0;
}
.faq-q {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-q::before { content: 'Q.'; color: var(--orange); flex-shrink: 0; }
.faq-a {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.8;
  padding-left: 24px;
  display: flex;
  gap: 10px;
}
.faq-a::before { content: 'A.'; color: var(--navy); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   倉庫・安全・会社案内ページ共通
   ============================================================ */
.info-block {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}
.info-block h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}
.info-block p { font-size: 0.9rem; line-height: 1.9; color: var(--text); margin-bottom: 12px; }
.info-block ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.info-block ul li::before {
  content: '▶';
  color: var(--orange);
  font-size: 0.65rem;
  position: absolute;
  left: 0;
  top: 9px;
}

/* 会社概要テーブル */
.company-table { width: 100%; border-collapse: collapse; }
.company-table th {
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  padding: 12px 16px;
  text-align: left;
  width: 160px;
  vertical-align: top;
}
.company-table td {
  font-size: 0.88rem;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-line);
  line-height: 1.8;
}
.company-table tr:nth-child(even) td { background: var(--gray-bg); }

/* お問い合わせフォーム */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label .required {
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ccd8e8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
}
.btn-submit:hover { background: var(--orange-h); }

/* ============================================================
   アニメーション
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   レスポンシブ微調整
   ============================================================ */
@media(max-width:599px){
  .section { padding: 52px 0; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ページトップへ */
#back-to-top {
  position: fixed;
  bottom: 76px; right: 20px;
  z-index: 989;
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#back-to-top.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   週間スケジュール カード
   ============================================================ */
.week-schedule-title {
  text-align: center;
  margin: 40px 0 20px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.week-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.day-card {
  background: #fff;
  border: 1px solid #d0dce8;
  border-radius: 10px;
  padding: 16px 14px 14px;
  box-shadow: 0 2px 6px rgba(26,58,92,0.07);
}
.day-card .day-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.dist-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.dist-badge.near  { background: #e0f5f0; color: #1a8a6a; }
.dist-badge.long  { background: #fde8e0; color: #c94a10; }
.dist-badge.mid   { background: #e4eeff; color: #2a58b0; }
.dist-badge.holiday { background: #f5eaff; color: #7040b0; }
.day-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.day-card ul li {
  font-size: 0.82rem;
  color: #444;
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.55;
}
.day-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.5rem;
  top: 6px;
}
.week-schedule-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: -24px;
  margin-bottom: 8px;
}
@media(max-width:599px) {
  .week-schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   写真配置スタイル
   ============================================================ */
.photo-section { margin: 32px 0 0; }

/* 1枚フル幅 */
.photo-full img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* 2枚グリッド */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.photo-grid-2 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* 3枚グリッド */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-grid-3 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* キャプション */
.photo-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-top: 8px;
}

/* セクション内横並び（テキスト＋写真） */
.section-with-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}
.section-with-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media(max-width: 767px) {
  .photo-grid-2, .photo-grid-3, .section-with-photo {
    grid-template-columns: 1fr;
  }
  .photo-full img { height: 220px; }
  .photo-grid-2 img { height: 180px; }
  .photo-grid-3 img { height: 160px; }
  .section-with-photo img { height: 200px; }
}
