/* ============================================================
   style.css — メインスタイルシート
   カラーは config.php の colors[] で変更可能（CSS変数経由）
   ============================================================ */

/* --- リセット & ベース --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem 2rem;
}

/* ロゴ */
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 1rem; color: var(--dark); letter-spacing: .04em; }
.logo-text small   { font-size: .6rem; color: var(--muted); font-weight: 400; }
.logo--white .logo-text strong { color: #fff; }
.logo--white .logo-text small  { color: rgba(255,255,255,.6); }

/* PC ナビ */
.pc-nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }

.nav-link {
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; color: var(--dark); padding: .4rem .6rem;
  border-radius: 4px; transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--primary); transition: left .2s, right .2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { left: .4rem; right: .4rem; }

.nav-contact-btn {
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; background: var(--primary); color: #fff;
  padding: .5rem 1.2rem; border-radius: 4px; margin-left: .4rem;
  transition: background .2s, transform .15s;
}
.nav-contact-btn:hover { background: var(--primary-dk); transform: translateY(-1px); }

/* ハンバーガー */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: .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); }

/* SP ドロワー */
.sp-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border);
  background: #fff;
}
.sp-nav.open { display: flex; }
.sp-nav-link {
  padding: 1rem 2rem; font-weight: 700; font-size: .95rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.sp-nav-link:hover { background: var(--bg-light); color: var(--primary); }

/* ============================================================
   ヒーローセクション
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, #0d1f4e 100%);
  position: relative; overflow: hidden; padding-top: 70px;
}

/* グリッド装飾 */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,86,232,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,232,.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* グロー */
.hero::after {
  content: ''; position: absolute;
  top: 10%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,86,232,.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-content { color: #fff; }

.hero-eyebrow {
  font-family: 'Barlow', sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; color: var(--accent); text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  line-height: 1.3; margin-bottom: 1.5rem; color: #fff;
}
.hero-title em { color: var(--accent); font-style: normal; }

.hero-desc { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; line-height: 1.8; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 4px; font-weight: 700;
  font-size: .9rem; transition: .2s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 20px rgba(26,86,232,.4);
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,86,232,.5); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

/* ヒーロービジュアル */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  width: 100%; border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-img-wrap img { width: 100%; }

/* ★ ヒーロー画像プレースホルダー（実画像に差し替えてください）*/
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2a5e 0%, #0d1f4e 100%);
  border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4); font-size: .85rem; text-align: center;
}
.hero-img-placeholder svg { width: 64px; height: 64px; opacity: .3; }

/* ============================================================
   統計カウンター
   ============================================================ */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Barlow', sans-serif; font-size: 2.4rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .3rem; }

/* ============================================================
   セクション共通
   ============================================================ */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-light); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-head { margin-bottom: 3rem; }
.section-label {
  font-family: 'Barlow', sans-serif; font-size: 1.8rem; font-weight: 900;
  letter-spacing: .05em; color: var(--dark);
}
.section-label-ja {
  font-size: .75rem; font-weight: 500; color: var(--primary);
  margin-left: .8rem; vertical-align: middle;
  background: rgba(26,86,232,.08); padding: .2rem .6rem; border-radius: 2px;
}
.section-desc { margin-top: .5rem; font-size: .9rem; color: var(--muted); }

/* ============================================================
   SERVICE カード
   ============================================================ */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px; background: rgba(26,86,232,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--primary); }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p  { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.link-arrow {
  font-size: .8rem; color: var(--primary); font-weight: 700;
  display: inline-flex; align-items: center; gap: .3rem;
}
.link-arrow::after { content: '→'; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   FEATURE
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: 2rem; }

.feature-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  min-height: 180px;
}
.feature-item:nth-child(even) .feature-text { order: 2; }
.feature-item:nth-child(even) .feature-img  { order: 1; }

.feature-text {
  padding: 2.5rem 3rem;
  background: var(--dark); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-num {
  font-family: 'Barlow', sans-serif; font-size: 3rem; font-weight: 900;
  color: var(--primary); line-height: 1; margin-bottom: .5rem; opacity: .8;
}
.feature-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .6rem; }
.feature-text p  { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.8; }

.feature-img {
  background: linear-gradient(135deg, #1a2a5e, #0d3080);
  min-height: 200px; display: flex; align-items: center; justify-content: center;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
/* ★ 画像プレースホルダー */
.feature-img-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .8rem; gap: .5rem;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.product-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.12); transform: translateY(-4px); }

.product-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--dark2), #1a2a5e);
  position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .8rem; gap: .5rem;
}
.product-badge {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 3px;
}

.product-body { padding: 1.5rem; background: #fff; }
.product-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.product-body p  { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

/* ============================================================
   WORKS
   ============================================================ */
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.work-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.work-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.12); transform: translateY(-3px); }
.work-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2a5e, #0d3080);
}
.work-img img { width: 100%; height: 100%; object-fit: cover; }
.work-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .75rem;
}
.work-body { padding: 1rem; background: #fff; }
.work-tag {
  display: inline-block; background: rgba(26,86,232,.1); color: var(--primary);
  font-size: .68rem; font-weight: 700; padding: .15rem .5rem;
  border-radius: 3px; margin-bottom: .5rem;
}
.work-body h3 { font-size: .88rem; font-weight: 700; margin-bottom: .3rem; }
.work-body p  { font-size: .78rem; color: var(--muted); line-height: 1.6; }

.section-more {
  text-align: right; margin-top: 1.5rem;
  font-size: .85rem; font-weight: 700; color: var(--primary);
}
.section-more a { display: inline-flex; align-items: center; gap: .3rem; }
.section-more a:hover { text-decoration: underline; }

/* ============================================================
   FLOW
   ============================================================ */
.flow-list {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; position: relative;
}
.flow-list::before {
  content: ''; position: absolute;
  top: 36px; left: calc(100%/12); right: calc(100%/12);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.flow-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }

.flow-num {
  font-family: 'Barlow', sans-serif; font-size: .7rem; font-weight: 900;
  color: var(--primary); margin-bottom: .3rem;
}
.flow-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem; position: relative; z-index: 1;
}
.flow-icon svg { width: 24px; height: 24px; color: var(--primary); }
.flow-label { font-size: .82rem; font-weight: 700; color: var(--dark); }

/* ============================================================
   NEWS
   ============================================================ */
.news-list { display: flex; flex-direction: column; gap: 0; }

.news-item {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-date { font-family: 'Barlow', sans-serif; font-size: .85rem; color: var(--muted); white-space: nowrap; }
.news-cat {
  font-size: .68rem; font-weight: 700; color: #fff;
  padding: .2rem .6rem; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}
.news-title {
  font-size: .9rem; font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color .15s;
}
.news-item:hover .news-title { color: var(--primary); }

/* ============================================================
   リクルートバナー
   ============================================================ */
.recruit-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #0d2060 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.recruit-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,86,232,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,232,.1) 1px, transparent 1px);
  background-size: 50px 50px;
}
.recruit-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem;
  position: relative; z-index: 1; color: #fff;
}
.recruit-inner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.3; }
.recruit-inner p  { margin-top: .8rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.recruit-visual {
  border-radius: 10px; overflow: hidden;
  background: rgba(255,255,255,.05); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2); font-size: .8rem;
}

/* ============================================================
   CONTACT フォーム
   ============================================================ */
.contact-section { padding: 6rem 0; }
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.contact-info h2 { font-size: 1.6rem; font-weight: 900; font-family: 'Barlow', sans-serif; margin-bottom: .5rem; }
.contact-info .sub { font-size: .75rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-info p    { font-size: .88rem; color: var(--muted); line-height: 1.8; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label { font-size: .82rem; font-weight: 700; display: block; margin-bottom: .4rem; }
.required {
  font-size: .68rem; background: var(--primary); color: #fff;
  padding: .1rem .4rem; border-radius: 2px; margin-left: .4rem; vertical-align: middle;
}

input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: .9rem; font-family: 'Noto Sans JP', sans-serif;
  background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,232,.1);
}

textarea { min-height: 140px; resize: vertical; }

.form-submit { text-align: right; }
.btn-submit {
  background: var(--primary); color: #fff;
  padding: .9rem 3rem; border-radius: 4px;
  font-weight: 700; font-size: .95rem; cursor: pointer; border: none;
  transition: .2s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-submit:hover { background: var(--primary-dk); transform: translateY(-2px); }

.alert-success {
  background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46;
  padding: 1rem 1.2rem; border-radius: 6px; font-size: .9rem; margin-bottom: 1.5rem;
}
.alert-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 1rem 1.2rem; border-radius: 6px; font-size: .9rem; margin-bottom: 1.5rem;
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem; }

.footer-top {
  display: grid; grid-template-columns: 1fr auto; gap: 4rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}

.footer-address { font-size: .82rem; margin-top: 1.2rem; line-height: 1.8; }

.footer-sns { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-sns a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-sns a:hover { background: var(--primary); }
.footer-sns svg { width: 16px; height: 16px; }

.footer-nav {
  display: flex; flex-direction: column; gap: .4rem; align-items: flex-end;
}
.footer-nav a {
  font-size: .82rem; font-family: 'Barlow', sans-serif; font-weight: 700;
  letter-spacing: .08em; transition: color .15s;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center;
  font-size: .75rem;
}
.footer-bottom a:hover { color: #fff; }
.copy { margin-left: auto; color: rgba(255,255,255,.4); }

/* ============================================================
   ニュース詳細ページ
   ============================================================ */
.news-detail-wrap {
  max-width: 800px; margin: 0 auto; padding: 8rem 2rem 6rem;
}
.news-detail-head { margin-bottom: 2.5rem; }
.news-detail-head h1 { font-size: 1.8rem; font-weight: 700; margin-top: .8rem; line-height: 1.5; }
.news-detail-meta { display: flex; align-items: center; gap: .8rem; margin-top: .6rem; }
.news-detail-date { font-size: .82rem; color: var(--muted); }
.news-detail-body { font-size: .95rem; line-height: 1.9; }
.news-detail-body h2 { font-size: 1.2rem; margin: 2rem 0 .8rem; }
.news-detail-body p  { margin-bottom: 1rem; }
.back-link { margin-top: 3rem; display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--primary); }

/* ============================================================
   パンくず
   ============================================================ */
.breadcrumb {
  font-size: .78rem; color: var(--muted);
  display: flex; align-items: center; gap: .4rem;
  padding: 1rem 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span::before { content: '/'; margin-right: .4rem; }

/* ============================================================
   ページヒーロー（下層ページ用）
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 8rem 0 4rem; color: #fff; text-align: center;
}
.page-hero h1 { font-family: 'Barlow', sans-serif; font-size: 2.4rem; font-weight: 900; letter-spacing: .1em; }
.page-hero .sub { color: rgba(255,255,255,.6); font-size: .82rem; margin-top: .4rem; }

/* ============================================================
   アニメーション
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .6s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .1s; }
.fade-up:nth-child(3) { animation-delay: .2s; }
.fade-up:nth-child(4) { animation-delay: .3s; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid   { grid-template-columns: repeat(2, 1fr); }
  .flow-list    { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .flow-list::before { display: none; }
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .recruit-inner { grid-template-columns: 1fr; text-align: center; }
  .recruit-visual { display: none; }
}

@media (max-width: 768px) {
  .pc-nav   { display: none; }
  .hamburger { display: flex; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .works-grid   { grid-template-columns: 1fr 1fr; }
  .feature-item { grid-template-columns: 1fr; }
  .feature-item:nth-child(even) .feature-text { order: 1; }
  .feature-item:nth-child(even) .feature-img  { order: 2; }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav  { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .copy { margin-left: 0; }
  .hero-inner { padding: 3rem 1.5rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .works-grid  { grid-template-columns: 1fr; }
  .flow-list   { grid-template-columns: repeat(2, 1fr); }
  .hero-btns   { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
