/* ─── connect.css: TOP PAGE (connect.html) 専用スタイル ─────────────────────
   共通スタイル (:root, sidebar, hamburger, footer, ai-chat 等) は
   common.css に移管済み。connect.html では common.css を先に読み込む。
   ────────────────────────────────────────────────────────────────────────── */

/* ─── HERO ─── */
#hero {
  min-height: 100vh; padding: 0 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; right: -10%; top: 40%; transform: translateY(-50%);
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; letter-spacing: .55em; color: var(--orange);
  text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--orange); }
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px,7.5vw,100px); font-weight: 700;
  line-height: 1.0; letter-spacing: -.04em; margin-bottom: 32px;
}
.hero-h1 .l1 { display: block; color: var(--text); }
.hero-h1 .l2 { display: block; color: var(--orange); }
.hero-h1 .l3 {
  display: block; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.2);
}
.hero-sub { font-size: 17px; color: var(--muted2); line-height: 2; max-width: 480px; margin-bottom: 48px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }
.btn-p {
  padding: 14px 32px; border-radius: 7px;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 15px; text-decoration: none;
  letter-spacing: .05em; transition: all .22s;
  border: 1px solid var(--blue);
}
.btn-p:hover { background: var(--blue2); transform: translateY(-2px); }
.btn-s {
  padding: 14px 32px; border-radius: 7px;
  background: rgba(255,255,255,0.15); color: var(--text);
  font-weight: 600; font-size: 15px; text-decoration: none;
  letter-spacing: .05em; transition: all .22s;
  border: 1px solid rgba(0,87,255,0.35);
}
.btn-s:hover { border-color: rgba(0,87,255,.65); background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 48px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px; font-weight: 700; color: #fff; letter-spacing: -.02em;
}
.hs-num .u { font-size: 18px; color: var(--orange); }
.hs-lbl { font-size: 10px; color: var(--muted); letter-spacing: .1em; margin-top: 4px; }

/* ─── SCROLL INDICATOR ─── */
.scroll-ind {
  position: absolute; bottom: 36px; left: 80px;
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: 9px; letter-spacing: .4em;
  text-transform: uppercase; font-family: 'Space Grotesk', sans-serif;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--orange);
  animation: scrollrun 2s ease-in-out infinite;
}
@keyframes scrollrun { 0%{left:-100%} 100%{left:100%} }

/* ─── HERO BG SPLIT ─── */
.hero-right-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  overflow: hidden; pointer-events: none;
}
.hero-right-panel img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; filter: saturate(0.5) brightness(0.6);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.8) 40%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.8) 40%, black 100%);
}
.hero-right-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
}

/* ─── SERVICE IMAGES ─── */
.svc-img-wrap {
  height: 200px; border-radius: 10px; overflow: hidden;
  margin-bottom: 20px; position: relative;
}
.svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: all .4s;
}
.svc-img-wrap--fit {
  height: auto;
}
.svc-img-wrap--fit img {
  height: auto; object-fit: contain; object-position: top center;
}
.svc-card:hover .svc-img-wrap--fit img {
  transform: none;
}
.svc-card:hover .svc-img-wrap img {
  filter: brightness(0.9) saturate(1); transform: scale(1.04);
}
.svc-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--bg2) 0%, transparent 100%);
}

/* ─── SERVICES ─── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 64px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.svc-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px; transition: all .3s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { border-color: rgba(0,87,255,.35); transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,.45); }
.svc-card:hover::after { opacity: 1; }
.svc-no {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .25em;
  color: var(--blue); margin-bottom: 20px;
}
.svc-name { font-size: 22px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.02em; }
.svc-desc { font-size: 15px; color: var(--muted2); line-height: 1.9; margin-bottom: 24px; }
.ph {
  border-radius: 10px; background: linear-gradient(135deg,#0c1a2e,#0e2242);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--muted);
  position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 18px,rgba(0,87,255,.025) 18px,rgba(0,87,255,.025) 19px);
}
.ph-icon { font-size: 28px; opacity: .35; margin-bottom: 8px; position: relative; }
.ph-txt { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; position: relative; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.tag {
  font-size: 11px; padding: 4px 10px; border-radius: 100px;
  background: rgba(0,87,255,.1); border: 1px solid rgba(0,87,255,.18);
  color: #60a5fa; letter-spacing: .04em;
}

/* ─── NUMBERS ─── */
#numbers { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.num-row { display: grid; grid-template-columns: repeat(4,1fr); }
.num-block { padding: 48px 32px; border-right: 1px solid var(--border); text-align: center; display: flex; align-items: center; justify-content: center; }
.num-block:last-child { border-right: none; }
.num-v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 54px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -.02em;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.num-v .u { font-size: 20px; color: var(--orange); font-family: 'Noto Sans JP', sans-serif; font-weight: 700; }

/* ─── VISION ─── */
#vision { background: var(--bg3); }
.vision-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; align-items: start; }
.vision-q {
  background: rgba(0,87,255,.06); border: 1px solid var(--border);
  border-radius: 20px; padding: 56px 48px; position: relative; overflow: hidden;
}
.vision-q::before {
  content: '"';
  font-family: 'JetBrains Mono', monospace; font-size: 280px; font-weight: 700;
  color: rgba(0,87,255,.04); position: absolute; top: -60px; left: 12px;
  line-height: 1; pointer-events: none;
}
.vision-q-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px,3.5vw,38px); font-weight: 700; letter-spacing: -.02em;
  line-height: 1.3; position: relative; z-index: 1;
}
.vision-q-text .em { color: var(--orange); }
.vision-q-sub { font-size: 14px; color: var(--muted2); line-height: 2; margin-top: 28px; position: relative; z-index: 1; }
.vision-items { display: flex; flex-direction: column; gap: 16px; }
.vision-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.vi-badge {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--orange); color: var(--bg);
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vi-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.vi-text { font-size: 15px; color: var(--muted2); line-height: 1.8; }

/* ─── CLIENTS ─── */
#clients { padding: 80px 0; overflow: hidden; }
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.marquee-row {
  width: 100%;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 64px;
  animation: mq 38s linear infinite;
  width: max-content;
}
.marquee.reverse {
  animation: mq-reverse 38s linear infinite;
}
@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes mq-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.mq-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ─── COMPANY SNAPSHOT ─── */
#company-snapshot { background: var(--bg2); }
.company-snapshot-card {
  margin-top: 40px;
  background: #d3dfeb;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
}
.company-snapshot-media {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
}
.company-snapshot-media img {
  width: 100%;
  height: auto;
  display: block;
}
.company-snapshot-body p {
  font-size: 17px;
  color: #2f3540;
  line-height: 1.75;
  margin-bottom: 24px;
}
.company-snapshot-body .btn-p {
  background: #2f2f2f;
  border-color: #2f2f2f;
}
.company-snapshot-body .btn-p:hover {
  background: #161616;
  border-color: #161616;
}

/* ─── LOCATIONS (Interactive List + Map) ─── */
.loc-container { display: flex; gap: 24px; margin-top: 48px; align-items: stretch; }
.loc-list { display: flex; flex-direction: column; gap: 12px; width: 38%; flex-shrink: 0; }
.loc-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px; transition: all .25s;
  cursor: pointer; position: relative; display: flex; flex-direction: column; justify-content: center;
}
.loc-card:hover { border-color: rgba(0,87,255,.45); background: rgba(0,87,255,.02); }
.loc-card.active {
  border-color: var(--blue); background: rgba(0,87,255,.08);
  box-shadow: 0 0 16px rgba(0,87,255,0.25);
}
.loc-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.loc-name { font-size: 15px; font-weight: 700; color: #fff; }
.loc-badge {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 700;
  color: var(--muted2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 8px; letter-spacing: 0.05em;
}
.loc-badge.hq {
  color: var(--orange); border-color: rgba(243,152,0,0.3); background: rgba(243,152,0,0.05);
}
.loc-addr { font-size: 11px; color: var(--muted2); line-height: 1.6; pointer-events: none; }

.loc-map-wrap { flex-grow: 1; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); min-height: 540px; position: relative; }
.loc-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(.92) hue-rotate(185deg) saturate(0.7); position: absolute; inset: 0; }

/* ─── PARTNER RECRUIT ─── */
.partner-card {
  background: linear-gradient(135deg, #1a0f00, #291800);
  border: 1px solid rgba(243,152,0,.25); border-radius: 20px;
  padding: 64px 56px; margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.partner-badge {
  display: inline-block; font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .3em;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(243,152,0,.2); color: var(--orange); margin-bottom: 20px;
}
.partner-title { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700; margin-bottom: 16px; letter-spacing: -.03em; }
.partner-desc { font-size: 16px; color: var(--muted2); line-height: 1.95; margin-bottom: 32px; }
.partner-conds { display: flex; flex-direction: column; gap: 10px; }
.partner-cond {
  display: flex; gap: 12px; align-items: center;
  background: rgba(243,152,0,.06); border: 1px solid rgba(243,152,0,.12);
  border-radius: 10px; padding: 12px 16px; font-size: 13px; color: var(--muted2);
}
.partner-cond strong { color: var(--orange); margin-right: 4px; }

/* ─── INSTAGRAM & NEWS ─── */
#sns { background: var(--bg2); }
.sns-news-container {
  display: flex; gap: 40px; margin-top: 48px; align-items: stretch;
}
.news-box {
  flex: 1.1; min-width: 0; background: rgba(13,26,46,0.5); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; display: flex; flex-direction: column;
}
.news-title {
  font-size: 18px; font-weight: 700; margin-bottom: 24px; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.news-title::before {
  content: ''; width: 4px; height: 18px; background: var(--orange); border-radius: 2px;
}
.news-list {
  display: flex; flex-direction: column; gap: 16px;
}
.news-item {
  display: flex; gap: 16px; border-bottom: 1px solid rgba(0,87,255,0.08); padding-bottom: 16px;
  align-items: flex-start; text-decoration: none; color: inherit; transition: opacity 0.2s;
}
.news-item:hover {
  opacity: 0.8;
}
.news-item:last-child {
  border-bottom: none; padding-bottom: 0;
}
.news-date {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--muted);
  font-weight: 600; white-space: nowrap; margin-top: 2px;
}
.news-badge {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
  white-space: nowrap; height: fit-content;
}
.news-badge.info {
  background: rgba(0,87,255,0.1); border: 1px solid rgba(0,87,255,0.2); color: #60a5fa;
}
.news-badge.recruit {
  background: rgba(243,152,0,0.1); border: 1px solid rgba(243,152,0,0.2); color: var(--orange);
}
.news-txt {
  font-size: 13px; color: var(--muted2); line-height: 1.5;
}

.ig-box {
  flex: 0.9; min-width: 0; display: flex; flex-direction: column; align-items: center;
}
.ig-wrap {
  width: 100%; display: flex; flex-direction: column; align-items: center;
}
.ig-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 100px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-weight: 700; font-size: 14px; text-decoration: none;
  letter-spacing: .04em; transition: opacity .2s; margin-bottom: 24px;
}
.ig-link:hover { opacity: .85; }
.ig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; width: 100%; }
.ig-ph {
  aspect-ratio: 1; border-radius: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); font-size: 11px; letter-spacing: .12em;
}
.ig-ph-icon { font-size: 24px; opacity: .3; margin-bottom: 8px; }
/* Behold.so ウィジェットコンテナ */
.ig-behold {
  width: 100%;
  --behold-grid-columns: 3;
  --behold-count: 6;
  --behold-gap: 12px;
  --behold-border-radius: 10px;
}
/* feed_id 未設定時のフォールバック */
.ig-fallback {
  width: 100%; padding: 40px 24px;
  background: rgba(13,26,46,0.5); border: 1px solid var(--border);
  border-radius: 12px; text-align: center;
}
.ig-fallback-text {
  font-size: 14px; color: var(--muted2); margin-bottom: 20px; line-height: 1.6;
}
.ig-fallback-btn {
  display: inline-block; padding: 10px 24px; border-radius: 100px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-weight: 700; font-size: 13px; text-decoration: none;
  transition: opacity .2s;
}
.ig-fallback-btn:hover { opacity: .85; }

/* ─── FAQ (AIO最適化) ─── */
#faq { background: var(--bg3); }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.faq-q {
  padding: 20px 24px; font-size: 17px; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: rgba(0,87,255,.06); }
.faq-q-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; color: var(--blue); transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1); font-size: 16px; color: var(--muted2); line-height: 1.9;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 500px; }

/* ─── CONTACT ─── */
#contact { background: var(--bg); text-align: center; }
#contact .title { max-width: 640px; margin: 0 auto 16px; }
.contact-sub { font-size: 15px; color: var(--muted); margin-bottom: 48px; }
.contact-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-divider { width: 100%; max-width: 600px; height: 1px; background: var(--border); margin: 56px auto; }
.contact-tel { font-family: 'JetBrains Mono', monospace; font-size: 48px; font-weight: 700; letter-spacing: -.02em; }
.contact-tel-lbl { font-size: 11px; color: var(--muted); letter-spacing: .2em; margin-top: 10px; }



/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  :root { --sw: 0px; }
  #sidebar { transform: translateX(-280px); width: 280px; }
  #sidebar.open { transform: translateX(0); }
  #hbg { display: flex; }
  #ov.active { display: block; }
  #main { margin-left: 0; }
  #network-canvas,
  #truck-canvas { left: 0; }
  .sec { padding: 80px 24px; }
  #hero { padding: 100px 24px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .num-row { grid-template-columns: 1fr 1fr; }
  .num-block:nth-child(2) { border-right: none; }
  .vision-layout { grid-template-columns: 1fr; gap: 28px; }
  .loc-container { flex-direction: column; gap: 16px; }
  .loc-list { width: 100%; }
  .loc-map-wrap { min-height: 360px; height: 360px; }
  .partner-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .sns-news-container { flex-direction: column; gap: 32px; }
  .ig-grid { grid-template-columns: repeat(2,1fr); }
  footer { padding: 60px 24px 40px; }
  .footer-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-right { align-items: center; text-align: center; }
  .footer-links { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 16px; }
  .footer-copy { margin-top: 16px; }
  #clients .lbl, #clients .title { padding: 0 24px; }
  .mq-item { font-size: 14px; }
  .marquee-wrap { gap: 10px; padding: 16px 0; }
  .marquee { gap: 40px; }
  .company-snapshot-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .company-snapshot-media {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .company-snapshot-body p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  #ai-chat { bottom: 16px; right: 16px; }
}

/* ─── タブレット縦 ─── */
@media (max-width: 768px) {
  #hero { padding: 96px 20px 56px; min-height: auto; }
  .hero-right-panel { width: 55%; opacity: .7; }
  .svc-grid { gap: 24px; margin-top: 48px; }
  .svc-card { padding: 32px; }
  .vision-q { padding: 40px 32px; }
  .partner-card { padding: 40px 32px; }
  .num-block { padding: 36px 24px; }
}

/* ─── スマートフォン ─── */
@media (max-width: 600px) {
  #hero { padding: 92px 18px 48px; }
  .hero-h1 { font-size: clamp(40px, 13vw, 56px); margin-bottom: 24px; }
  .hero-sub { font-size: 15px; line-height: 1.85; margin-bottom: 36px; }
  .hero-right-panel { display: none; }       /* 縦画面では背景画像を非表示 */
  .scroll-ind { display: none; }

  /* ボタンを縦積み・全幅でタップしやすく */
  .hero-btns { flex-direction: column; gap: 12px; width: 100%; }
  .hero-btns .btn-p, .hero-btns .btn-s { width: 100%; text-align: center; }
  .contact-btns { flex-direction: column; }
  .contact-btns .btn-p, .contact-btns .btn-s { width: 100%; text-align: center; }

  /* ヒーロー統計を2列に */
  .hero-stats { gap: 20px 32px; padding-top: 28px; }
  .hs-num { font-size: 32px; }

  /* 数値セクション: 1列縦積みに */
  .num-row { grid-template-columns: 1fr; }
  .num-block { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 20px; }
  .num-block:last-child { border-bottom: none; }
  .num-v { font-size: 44px; }

  /* カード類の余白圧縮 */
  .svc-card { padding: 28px 24px; }
  .svc-name { font-size: 20px; }
  .vision-q { padding: 32px 24px; }
  .vision-q-text { font-size: clamp(22px, 6vw, 28px); }
  .vision-item { padding: 20px 22px; }
  .partner-card { padding: 32px 24px; }
  .partner-title { font-size: 30px; }

  /* FAQ・連絡先 */
  .faq-q { padding: 18px 18px; font-size: 15px; }
  .faq-a { font-size: 15px; }
  .faq-item.open .faq-a { padding: 0 18px 18px; }
  .contact-tel { font-size: clamp(32px, 9vw, 40px); }

  /* Instagram グリッドは2列維持で余白縮小 */
  .ig-grid { gap: 10px; }
  .news-box { padding: 28px 22px; }
  .loc-map-wrap { min-height: 300px; height: 300px; }
}

/* ─── 小型スマートフォン ─── */
@media (max-width: 400px) {
  #hero { padding: 84px 14px 40px; }
  .hero-h1 { font-size: clamp(36px, 12vw, 46px); }
  .hero-stats { gap: 16px 24px; }
  .hs-num { font-size: 28px; }
  .num-v { font-size: 38px; }
  .svc-card { padding: 24px 18px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
