@charset "UTF-8";
/* =====================================================
   デジレク製作所 サンプルサイト
   style.css

   デザイン：製造業・堅実×技術（参考：daifukuseishi.jp）
   - 白地に鋼青（#34739f）。淡い青磁（#a9cac2）と生成り（#f7f6f2）で和らげる
   - セクション見出しは「英字（Montserrat）＋和文」の二段。主役は和文
   - 角丸ほぼなし（2〜4px）。影は控えめ。罫線と面で堅実に組む
   - 写真は工場・加工・製品。技術が主役

   【目次】
   1. 変数（デザイントークン）
   2. リセット・ベース
   3. 共通パーツ（ボタン・見出し・セクション）
   4. ヘッダー
   5. ヒーロー
   6. ピックカード（事業の入口）
   7. 強み
   8. 設備抜粋・一覧
   9. 採用バンド
   10. お知らせ
   11. CTAバンド
   12. フッター
   13. 下層ページ共通
   14. 下層：各ページ固有
   15. フォーム
   16. レスポンシブ

   ※色・角丸・余白はすべて「1. 変数」で一元管理。
===================================================== */

/* -----------------------------------------------------
   1. 変数（デザイントークン）
----------------------------------------------------- */
:root {
  /* ブランド */
  --blue:       #34739f;   /* メイン：鋼青 */
  --blue-dark:  #28567a;
  --sage:       #a9cac2;   /* 淡い青磁：補助 */
  --sage-pale:  #ecf3f1;

  /* サーフェス */
  --bg:        #ffffff;
  --bg-warm:   #f7f6f2;    /* 生成り */
  --line:      #e5e5e5;

  /* テキスト */
  --text:           #333333;
  --text-strong:    #222222;
  --text-secondary: #777777;

  /* 角丸・影 */
  --r-sm: 2px;
  --r-md: 4px;
  --shadow-soft: 0 3px 12px rgba(40, 86, 122, 0.10);

  /* フォント */
  --font-en:   "Montserrat", sans-serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

  /* 余白 */
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-xxl: 64px;
  --sp-section: 90px;

  /* コンテンツ幅 */
  --w-content: 1140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul, ol {
  list-style: none;
}

strong {
  font-weight: 700;
  color: var(--text-strong);
}

/* -----------------------------------------------------
   3. 共通パーツ
----------------------------------------------------- */

/* --- セクション共通 --- */
.section {
  padding: var(--sp-section) 0;
}

.section--warm {
  background: var(--bg-warm);
}

.section--sage {
  background: var(--sage-pale);
}

.section__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し：英字（Montserrat）＋和文の二段。参考サイトの作法 */
.section__title {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section__title-en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.section__title-jp {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--text-strong);
}

/* 見出し下の短い飾り線 */
.section__title-jp::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin: 14px auto 0;
}

.section__sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin: -24px 0 var(--sp-xl);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  border-radius: var(--r-sm);
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn::after {
  content: "\2192"; /* → */
  font-family: var(--font-en);
}

.btn:hover {
  background: var(--sage-pale);
  transform: translateY(-1px);
}

/* プライマリ（鋼青塗り） */
.btn--solid {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(52, 115, 159, 0.3);
}

.btn--solid:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

/* テキストリンク（参考サイトの「more」流） */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 3px;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* -----------------------------------------------------
   4. ヘッダー
----------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 12px 24px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ロゴ：歯車マーク＋社名 */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo__name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-strong);
  line-height: 1.2;
}

.logo__sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

/* ヘッダー右側：電話＋見積もりCTA */
.header__contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__tel {
  text-align: center;
  line-height: 1.4;
}

.header__tel-number {
  display: block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-strong);
}

.header__tel-number::before {
  content: "\260E ";
  color: var(--blue);
  font-size: 16px;
}

.header__tel-hours {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

.header__cta {
  min-height: 46px;
  padding: 10px 22px;
  font-size: 14px;
}

/* グローバルナビ */
.gnav {
  border-top: 1px solid var(--line);
}

.gnav__list {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.gnav__list a {
  display: block;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.gnav__list a:hover {
  color: var(--blue);
  border-bottom-color: var(--sage);
}

.gnav__list a.is-current {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* スマホ用メニューボタン */
.header__menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: var(--blue);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.header__menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -----------------------------------------------------
   5. ヒーロー
----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  /* メイン写真：images/hero.jpg（横長 2400×1200px・加工現場の写真） */
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--blue-dark);
}

/* 文字可読性のための濃紺グラデーション */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(20, 40, 58, 0.72) 0%,
    rgba(20, 40, 58, 0.45) 50%,
    rgba(20, 40, 58, 0.1) 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 80px 24px;
}

.hero__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--sp-sm);
}

.hero__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero__sub {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--sp-xl);
  max-width: 520px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* 写真上のボタン */
.hero .btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.hero .btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero .btn--solid {
  background: #fff;
  border-color: #fff;
  color: var(--blue-dark);
  box-shadow: none;
}

.hero .btn--solid:hover {
  background: var(--sage-pale);
  color: var(--blue-dark);
}

/* -----------------------------------------------------
   6. ピックカード（事業の入口・参考サイトの4カード流）
----------------------------------------------------- */
.pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}

.pick-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--text-strong);
}

.pick-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  transition: transform 0.3s, opacity 0.3s;
}

.pick-card:hover img {
  transform: scale(1.05);
  opacity: 0.65;
}

.pick-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(20, 40, 58, 0) 0%, rgba(20, 40, 58, 0.85) 60%);
  color: #fff;
}

.pick-card__en {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}

.pick-card__jp {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pick-card__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

/* -----------------------------------------------------
   7. 強み
----------------------------------------------------- */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.strength-card {
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-soft);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
}

.strength-card__num {
  display: block;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 12px;
}

.strength-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.strength-card__text {
  font-size: 13.5px;
  text-align: left;
  color: var(--text);
}

/* -----------------------------------------------------
   8. 設備抜粋・一覧
----------------------------------------------------- */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}

.equip-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.equip-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--sage-pale);
}

.equip-grid figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text);
  padding: 10px 8px;
}

/* 設備一覧テーブル */
.equip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.equip-table th,
.equip-table td {
  border: 1px solid var(--line);
  padding: 12px 18px;
  text-align: left;
}

.equip-table thead th {
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.equip-table tbody th {
  background: var(--bg-warm);
  font-weight: 700;
  width: 28%;
}

.equip-table .num {
  text-align: center;
  width: 90px;
}

/* -----------------------------------------------------
   9. 採用バンド（全幅写真）
----------------------------------------------------- */
.recruit-band {
  position: relative;
  padding: 96px 24px;
  /* 採用写真：images/recruit.jpg（横長 2000×900px・働く人） */
  background-image: url("../images/recruit.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--blue-dark);
}

.recruit-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 58, 0.55);
}

.recruit-band__inner {
  position: relative;
  max-width: var(--w-content);
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.recruit-band__en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.recruit-band__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.recruit-band__text {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--sp-lg);
}

.recruit-band .btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.recruit-band .btn:hover {
  background: #fff;
  color: var(--blue-dark);
}

/* -----------------------------------------------------
   10. お知らせ
----------------------------------------------------- */
.news-list {
  background: #fff;
  border: 1px solid var(--line);
}

.news-list li + li {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 24px;
  transition: background 0.2s;
  color: var(--text);
}

.news-list a:hover {
  background: var(--sage-pale);
}

.news-list__date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
  width: 100px;
}

.news-list__cat {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  padding: 2px 14px;
  text-align: center;
}

.news-list__title {
  font-size: 14px;
}

/* -----------------------------------------------------
   11. CTAバンド
----------------------------------------------------- */
.cta-band {
  background: var(--blue);
  padding: 72px 24px;
  text-align: center;
}

.cta-band__inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-band__title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--sp-sm);
}

.cta-band__text {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--sp-lg);
}

.cta-band__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-band .btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.cta-band .btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-band .btn--solid {
  background: #fff;
  border-color: #fff;
  color: var(--blue-dark);
  box-shadow: none;
}

.cta-band .btn--solid:hover {
  background: var(--sage-pale);
  color: var(--blue-dark);
}

/* CTA内の電話ボックス */
.cta-band__tel {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 8px 28px;
  line-height: 1.5;
  text-align: center;
}

.cta-band__tel-number {
  display: block;
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-strong);
}

.cta-band__tel-number::before {
  content: "\260E ";
  color: var(--blue);
  font-size: 16px;
}

.cta-band__tel-hours {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

/* -----------------------------------------------------
   12. フッター
----------------------------------------------------- */
.footer {
  background: var(--text-strong);
  padding: var(--sp-xxl) 0 0;
}

.footer__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px var(--sp-xl);
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 10px;
}

.footer__address {
  font-size: 13px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.7);
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.footer__nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 24px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

/* -----------------------------------------------------
   13. 下層ページ共通
----------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 56px 0;
  text-align: center;
}

.page-header__en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.page-header__title {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

/* パンくず */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.breadcrumb ol {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li + li::before {
  content: "\203A";
  margin: 0 10px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.breadcrumb li {
  color: var(--text);
}

/* 下層用の中見出し */
.heading-2 {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-strong);
  border-left: 4px solid var(--blue);
  padding-left: 16px;
  margin-bottom: var(--sp-md);
}

/* -----------------------------------------------------
   14. 下層：各ページ固有
----------------------------------------------------- */

/* --- 技術・サービス詳細（写真＋本文の交互） --- */
.tech-detail {
  display: flex;
  gap: var(--sp-xl);
  align-items: center;
  padding: var(--sp-xl) 0;
}

.tech-detail + .tech-detail {
  border-top: 1px solid var(--line);
}

.tech-detail:nth-child(even) {
  flex-direction: row-reverse;
}

.tech-detail__photo {
  width: 42%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sage-pale);
}

.tech-detail__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.tech-detail__title {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-strong);
  margin-bottom: 12px;
}

.tech-detail__text {
  font-size: 14px;
  margin-bottom: 16px;
}

.check-list li {
  position: relative;
  font-size: 13.5px;
  padding-left: 24px;
  margin-bottom: 6px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 12px;
  height: 3px;
  background: var(--blue);
}

/* --- 受託の流れ --- */
.flow-list {
  counter-reset: flow;
}

.flow-item {
  position: relative;
  display: flex;
  gap: var(--sp-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: 36px;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--blue);
}

.flow-item__num {
  counter-increment: flow;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
}

.flow-item__num::before {
  content: counter(flow, decimal-leading-zero);
}

.flow-item__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.flow-item__text {
  font-size: 13.5px;
}

/* 案内ボックス */
.notice-box {
  background: var(--sage-pale);
  padding: 22px 26px;
  font-size: 13.5px;
}

.notice-box__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

/* --- 製品事例カード --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.product-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--sage-pale);
}

.product-card__body {
  padding: var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.product-card__text {
  font-size: 13px;
  color: var(--text);
  flex: 1;
}

.product-card__spec {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dotted var(--line);
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- 会社情報 --- */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.company-table th,
.company-table td {
  border: 1px solid var(--line);
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  background: var(--bg-warm);
  color: var(--text-strong);
  width: 25%;
  font-weight: 700;
}

/* 沿革 */
.history-list {
  border-left: 3px solid var(--sage);
  padding-left: 28px;
}

.history-list li {
  position: relative;
  padding-bottom: 22px;
  font-size: 14px;
}

.history-list li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 0.6em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
}

.history-list .year {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--blue);
  margin-right: 14px;
}

/* 代表挨拶 */
.greeting {
  display: flex;
  gap: var(--sp-xl);
  align-items: flex-start;
}

.greeting__media {
  width: 300px;
  flex-shrink: 0;
}

.greeting__photo {
  width: 100%;
  display: block;
  background: var(--sage-pale);
}

.greeting__name {
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
  color: var(--text-secondary);
}

.greeting__name strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-strong);
}

.greeting__text .lead {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.greeting__text p {
  font-size: 14.5px;
  margin-bottom: 14px;
}

/* 地図枠 */
.map-frame {
  margin-top: var(--sp-md);
  border: 1px solid var(--line);
  background: var(--bg-warm);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* --- 採用ページ --- */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid var(--line);
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
}

.recruit-table th {
  background: var(--sage-pale);
  color: var(--blue-dark);
  width: 25%;
  font-weight: 700;
}

/* -----------------------------------------------------
   15. フォーム
----------------------------------------------------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xxl);
}

.contact-method {
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-soft);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.contact-method__text {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 16px;
  flex: 1;
}

.contact-method__tel {
  font-family: var(--font-en);
  font-size: 23px;
  font-weight: 600;
  color: var(--text-strong);
}

.contact-method__tel::before {
  content: "\260E ";
  color: var(--blue);
  font-size: 17px;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 40px 44px;
}

.form-row {
  padding: 18px 0;
}

.form-row + .form-row {
  border-top: 1px solid var(--line);
}

.form-row__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.form-required,
.form-optional {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 10px;
}

.form-required {
  color: #fff;
  background: var(--blue);
}

.form-optional {
  color: var(--text-secondary);
  background: #f0f0f0;
}

.form-row__field input[type="text"],
.form-row__field input[type="email"],
.form-row__field input[type="tel"],
.form-row__field select,
.form-row__field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  padding: 12px 16px;
  min-height: 48px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-row__field input::placeholder,
.form-row__field textarea::placeholder {
  color: #b0b6bb;
}

.form-row__field input:focus,
.form-row__field select:focus,
.form-row__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(52, 115, 159, 0.15);
}

.form-row__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2334739f' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-row__field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row__note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-checks label {
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.form-checks label:hover {
  border-color: var(--blue);
}

.form-checks label:has(input:checked) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 700;
}

.form-checks input[type="checkbox"] {
  accent-color: #fff;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.form-agree {
  text-align: center;
  font-size: 13px;
  margin: 28px 0 20px;
}

.form-agree a {
  text-decoration: underline;
}

.form-agree input[type="checkbox"] {
  accent-color: var(--blue);
  margin-right: 8px;
}

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

.form-submit .btn {
  min-width: 320px;
  font-size: 16px;
}

/* -----------------------------------------------------
   16. レスポンシブ
----------------------------------------------------- */

/* === ナビ折りたたみ（〜1024px） === */
@media (max-width: 1024px) {
  .header__contact {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .gnav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    z-index: 99;
    border-top: 2px solid var(--blue);
    overflow-y: auto;
  }

  .gnav.is-open {
    display: block;
  }

  .gnav__list {
    flex-direction: column;
    padding: 8px 24px 24px;
  }

  .gnav__list a {
    padding: 16px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }

  /* グリッド調整 */
  .pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }

  .equip-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 36px;
  }
}

/* === スマホ（〜768px） === */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .header__inner {
    padding: 10px 16px;
  }

  .logo__name {
    font-size: 18px;
  }

  /* --- ヒーロー --- */
  .hero {
    min-height: 500px;
  }

  .hero__inner {
    padding: 56px 20px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  /* --- セクション --- */
  .section {
    padding: 56px 0;
  }

  .section__inner {
    padding: 0 20px;
  }

  .section__title-jp {
    font-size: 23px;
  }

  .pick-grid {
    grid-template-columns: 1fr;
  }

  .pick-card img {
    aspect-ratio: 16 / 9;
  }

  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /* 設備一覧テーブルは枠内で横スクロール */
  .equip-table-wrap {
    overflow-x: auto;
  }

  .equip-table {
    min-width: 560px;
  }

  .recruit-band {
    padding: 64px 20px;
  }

  .recruit-band__title {
    font-size: 23px;
  }

  /* --- 下層 --- */
  .page-header {
    padding: 40px 0;
  }

  .page-header__title {
    font-size: 23px;
  }

  .tech-detail,
  .tech-detail:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
  }

  .tech-detail__photo {
    width: 100%;
  }

  .flow-item {
    flex-direction: column;
    gap: 10px;
  }

  .greeting {
    flex-direction: column;
    align-items: center;
  }

  .greeting__media {
    width: 100%;
    max-width: 280px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px 32px;
  }

  .news-list a {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 14px 18px;
  }

  .news-list__title {
    width: 100%;
  }

  .form-submit .btn {
    min-width: 0;
    width: 100%;
  }

  .cta-band {
    padding: 56px 20px;
  }

  .cta-band__title {
    font-size: 21px;
  }

  .cta-band__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }
}
