/* ============================================================
   倉庫見学ツアー LP — style.css
   ============================================================ */

/* ============ CSS変数 ============ */
:root {
  --bg: #f0fcfb;
  --mint: #cff4ef;
  --blue: #0071d3;
  --blue-dark: #005bb5;
  --ink: #0d1f2d;
  --muted: #5a7080;
  --card: #ffffff;
  --border: #b8e8e3;
  --font: 'Noto Sans JP', sans-serif;
}

/* ============ リセット・基本 ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(207, 244, 239, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo-upload-label {
  cursor: pointer;
  display: flex;
  align-items: center;
}

#logoImg {
  height: 36px;
  display: none;
  object-fit: contain;
}

#logoPlaceholder {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed var(--border);
  padding: 6px 14px;
  border-radius: 3px;
  font-family: var(--font);
}

header nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  margin-left: 28px;
  transition: color 0.2s;
  font-family: var(--font);
}

header nav a:hover { color: var(--blue); }

.cta-small {
  margin-left: 20px;
  padding: 9px 22px;
  background: var(--blue);
  color: #fff !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-small:hover { background: var(--blue-dark) !important; }

/* ============ FV ============ */
#fv {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
}

.fv-left {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--mint);
}

.fv-left .fv-eyebrow { justify-content: center; }
.fv-left .fv-subtitle { margin-left: auto; margin-right: auto; }
.fv-left .fv-meta { justify-content: center; }
.fv-left .fv-subtitle-main {
  border-left: none;
  border-bottom: 2px solid var(--blue);
  padding-left: 0;
  padding-bottom: 10px;
  display: inline-block;
}

.fv-eyebrow {
  font-size: 17px;        /* 11px → 15px */
  letter-spacing: 0.1em;  /* 詰めてサービス名を読みやすく */
  color: var(--blue);
  text-transform: none;   /* uppercase をやめて日本語を自然に */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;       /* 500 → 700 で太く目立たせる */
}

.fv-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.fv-title {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.fv-title span { color: var(--blue); }

.fv-subtitle-main {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 20px;
  line-height: 1.5;
  border-left: 3px solid var(--blue);
  padding-left: 14px;
}

.fv-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 40px;
}

.fv-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.fv-meta-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
  font-weight: 400;
}

.fv-meta-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}

.cta-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.cta-primary .arrow { font-size: 16px; transition: transform 0.2s; }
.cta-primary:hover .arrow { transform: translateX(4px); }

/* FV 右側 */
.fv-right {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}

.fv-right-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.fv-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-bottom-row { position: relative; }

.fv-img-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fv-top-row .fv-img-block:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.fv-img-overlay {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 400;
  z-index: 2;
}

.fv-img-upload-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
  pointer-events: block;
}

.fv-img-block:hover .fv-img-upload-hint { opacity: 1; }

.warehouse-icon { font-size: 48px; opacity: 0.12; }

.fv-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 84px;
  height: 84px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.fv-badge span { font-size: 9px; font-weight: 400; color: var(--muted); }

/* ============ セクション共通 ============ */
.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 48px;
  color: var(--ink);
}

/* ============ 開催日程 ============ */
#dates {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.date-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.date-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 113, 211, 0.12);
}

.date-card.featured { background: var(--blue); border-color: var(--blue); }

.next-label {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.date-tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 400;
}

.date-card.featured .date-tag { color: rgba(255, 255, 255, 0.65); }

.date-number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.date-card.featured .date-number { color: #fff; }

.date-dow {
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
}

.date-card.featured .date-dow { color: rgba(255, 255, 255, 0.7); }

.date-time {
  font-size: 13px;
  color: var(--ink);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.date-card.featured .date-time { color: rgba(255, 255, 255, 0.9); }

.date-spots {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  color: var(--blue);
  font-weight: 600;
  background: var(--mint);
  padding: 3px 10px;
  border-radius: 20px;
}

.date-card.featured .date-spots {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============ CTA ============ */
.cta-section {
  padding: 72px 60px;
  background: var(--blue);
}

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

.cta-block-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.5;
}

.cta-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: #fff;
  color: var(--blue);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.15s;
}

.cta-large:hover { opacity: 0.9; transform: translateY(-1px); }

/* ============ ツアー概要 ============ */
#purpose {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.purpose-text {
  font-size: 15px;
  font-weight: 300;
  color: #3a5060;
  line-height: 2;
  margin-bottom: 20px;
}

.purpose-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.purpose-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  transition: box-shadow 0.2s;
}

.purpose-stat:hover { box-shadow: 0 4px 20px rgba(0, 113, 211, 0.1); }

.purpose-stat-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}

.purpose-stat-icon { font-size: 26px; display: block; }

.purpose-stat-upload-hint {
  position: absolute;
  inset: 0;
  background: rgba(207, 244, 239, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 8px;
}

.purpose-stat:hover .purpose-stat-upload-hint { opacity: 1; }

.stat-label { font-size: 12px; color: var(--muted); line-height: 1.5; font-weight: 400; }
.stat-number { font-size: 28px; font-weight: 700; color: var(--blue); line-height: 1; }

/* ============ ギャラリー ============ */
#gallery {
  padding: 80px 0;
  overflow: hidden;
  background: var(--mint);
}

.gallery-header { padding: 0 60px; margin-bottom: 32px; }

.gallery-track-wrapper {
  overflow-x: auto;
  cursor: grab;
  padding: 0 60px;
  -webkit-overflow-scrolling: touch;
}

.gallery-track-wrapper::-webkit-scrollbar { height: 3px; }
.gallery-track-wrapper::-webkit-scrollbar-track { background: var(--border); }
.gallery-track-wrapper::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.gallery-track-wrapper:active { cursor: grabbing; }

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-bottom: 16px;
}

.gallery-item {
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  background: rgba(0, 113, 211, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.gallery-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
  font-weight: 500;
  background: rgba(207, 244, 239, 0.9);
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

.gallery-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.gallery-item:hover .gallery-icon-wrap { opacity: 0.8; }
.gallery-icon { font-size: 36px; display: block; }
.gallery-upload-hint { font-size: 10px; letter-spacing: 0.1em; font-weight: 500; }

.scroll-hint {
  padding: 0 60px 16px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroll-hint::after { content: '→'; font-size: 13px; color: var(--blue); }

/* ============ 集合場所・アクセス ============ */
#location {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.location-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
}

.location-map {
  background: var(--blue-dark);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 360px;
}

.loc-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.loc-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.loc-icon {
  width: 38px;
  height: 38px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}

.loc-value { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.5; }
.loc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 300; line-height: 1.6; }
.loc-station-block { margin-bottom: 10px; }
.loc-station-block:last-child { margin-bottom: 0; }

/* ============ こんな方にオススメ ============ */
#targets {
  padding: 100px 60px;
  background: var(--ink);
}

.targets-inner { max-width: 1200px; margin: 0 auto; }

.targets-section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.targets-section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--mint);
  border-radius: 1px;
}

.targets-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.target-card {
  background: rgba(207, 244, 239, 0.05);
  border: 1px solid rgba(207, 244, 239, 0.12);
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color 0.3s, background 0.3s;
}

.target-card:hover {
  border-color: var(--mint);
  background: rgba(207, 244, 239, 0.08);
}

.target-num { font-size: 20px; font-weight: 700; color: var(--mint); letter-spacing: 0.1em; margin-bottom: 16px; opacity: 0.7; }
.target-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 12px; line-height: 1.5; }
.target-desc { font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, 0.55); line-height: 1.85; }

/* ============ 当日ご覧いただく内容 ============ */
#tour-content {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.content-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.content-item:hover { box-shadow: 0 4px 20px rgba(0, 113, 211, 0.1); }

.content-photo {
  width: 100%;
  height: 160px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.content-photo:hover { background: #b8e8e3; }

.content-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.content-photo:hover .content-photo-inner { opacity: 0.9; }
.content-photo-icon { font-size: 28px; }
.content-photo-hint { font-size: 10px; letter-spacing: 0.1em; font-weight: 500; }
.content-body { padding: 24px 24px 28px; display: flex; gap: 16px; }
.content-num { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; flex-shrink: 0; padding-top: 2px; opacity: 0.6; }
.content-text h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); line-height: 1.4; }
.content-text p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.75; }

/* ============ 参加特典 ============ */
#benefits {
  padding: 80px 60px;
  background: var(--mint);
}

.benefits-inner { max-width: 1200px; margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: box-shadow 0.2s;
}

.benefit-card:hover { box-shadow: 0 4px 20px rgba(0, 113, 211, 0.1); }

.benefit-icon-wrap {
  width: 88px;
  height: 88px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}

.benefit-icon-wrap:hover { border-color: var(--blue); }

.benefit-icon-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 50%;
}

.benefit-icon-upload-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 113, 211, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 50%;
}

.benefit-icon-wrap:hover .benefit-icon-upload-hint { opacity: 1; }
.benefit-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.benefit-desc { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.75; }

/* ============ よくある質問 ============ */
#faq {
  padding: 100px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.faq-icon { font-size: 22px; color: var(--blue); flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ============ 運営会社 ============ */
#company {
  padding: 80px 60px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.company-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.company-logo-block {
  background: #ffffff;
  padding: 40px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  margin-top: 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s;
}

.company-logo-block span { color: var(--mint); }

.company-logo-upload-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 113, 211, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 8px;
}

.company-logo-block:hover .company-logo-upload-hint { opacity: 1; }

.company-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.company-table tr { border-bottom: 1px solid var(--border); }

.company-table th {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 14px 0;
  text-align: left;
  width: 130px;
  font-weight: 500;
  vertical-align: top;
}

.company-table td { font-size: 14px; color: var(--ink); padding: 14px 0; font-weight: 300; line-height: 1.7; }

/* ============ フッター ============ */
footer {
  background: var(--ink);
  padding: 36px 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.footer-logo span { color: var(--mint); }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font);
  font-weight: 300;
}

.footer-links a:hover { color: var(--mint); }
.footer-copy { font-size: 11px; color: rgba(255, 255, 255, 0.3); width: 100%; text-align: right; }

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

/* ============ レスポンシブ ============ */
@media (max-width: 900px) {
  #fv { grid-template-columns: 1fr; }
  .fv-right { min-height: 260px; }
  .fv-left { padding: 48px 24px; }
  header { padding: 12px 20px; }
  header nav { display: none; }
  #dates, #purpose, #location, #tour-content, #benefits, #faq, #company, #targets { padding: 60px 24px; }
  .dates-grid { grid-template-columns: 1fr; }
  #purpose { grid-template-columns: 1fr; gap: 40px; }
  .purpose-right { grid-template-columns: 1fr 1fr; }
  .targets-grid { grid-template-columns: 1fr; }
  .content-list { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .company-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-header, .scroll-hint { padding-left: 24px; padding-right: 24px; }
  .gallery-track-wrapper { padding: 0 24px; }
  .cta-section { padding: 60px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
