/* =========================================================
   目次
   01. Reset                : ブラウザ差異の初期化
   02. Base                 : 全体共通設定・変数
   03. Header               : ヘッダー全体・ハンバーガーメニュー
   04. Hero                 : TOPメインビジュアル動画
   05. Catch Copy           : キャッチコピーと導線
   06. Common Titles        : セクション共通見出し
   07. Works                : 作業紹介カード
   08. Company              : 会社概要
   09. Recruit Banner       : 採用情報バナー
   10. Footer               : フッター
   11. About Page           : 会社紹介ページ
   12. Flow Page            : 作業の流れページ
   13. Recruit Page         : 採用ページ
   14. Contact Page         : お問い合わせ・アクセスページ
   15. Community            : 地域連携の取組み
   16. Scroll Fade          : スクロール表示アニメーション
   17. Responsive 1100px    : タブレット・小さめノートPC
   18. Responsive 838px     : タブレット縦〜スマホ横
   19. Responsive 460px     : 小型スマホ
========================================================= */
/* =========================================================
   01. Reset
   目的：ブラウザごとの差を減らし、基本表示を揃える
========================================================= */
/* 全要素共通
   目的：余白の初期値をなくし、box-sizing を統一する */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 画像・動画共通
   目的：インライン要素の余白を防ぎ、横幅いっぱいに表示する */
img, video {
  display: block;
  width: 100%;
  height: auto;
}
/* リンク共通
   目的：基本色を親要素に合わせ、下線を一旦外す */
a {
  color: inherit;
  text-decoration: none;
}
/* リスト共通
   目的：デフォルトの黒丸や番号を消す */
ul, ol {
  list-style: none;
}
/* =========================================================
   02. Base
   目的：全体共通の色・余白・文字組みを定義する
========================================================= */
/* CSS変数
   目的：色・背景・余白を一元管理する */ :root {
  --text-color: #4a4a4a;
  --sub-text-color: #666666;
  --muted-text-color: #7a7a7a;
  --line-color: #e5e5e5;
  --soft-bg: #f5f5f5;
  --header-bg: rgba(226, 234, 236, 0.84);
  --container-padding: 56px;
}
/* html
   目的：rem の基準サイズを定義する */
html {
  font-size: 16px;
}
/* body
   目的：全体のフォント・文字色・行間を設定する */
body {
  font-family: "Noto Serif JP", serif;
  color: var(--text-color);
  background: #ffffff;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
/* セクション共通
   目的：各セクションを横幅いっぱいで扱う */
.section {
  width: 100%;
}
/* セクション内側共通
   目的：左右余白を持つ標準コンテンツ幅をつくる */
.section-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
/* 狭いコンテンツ用
   目的：キャッチコピーなどの最大幅を抑える */
.section-inner--narrow {
  margin: 0 auto;
}
/* =========================================================
   03. Header
   目的：ロゴとメニューを横並びで見やすく表示し、
         TOPでは固定、下層では追従表示にする
========================================================= */
#header {
  position: relative;
  z-index: 1000;
  width: 100%;
}
body.page-top #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
body:not(.page-top) #header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header {
  position: relative;
  z-index: 100;
  width: 100%;
}
.page-top .header {
  background: transparent;
}
body:not(.page-top) .header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-inner {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 50px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.page-top.is-at-top .header-inner {
  background: rgba(226, 234, 236, 0.50);
  box-shadow: none;
}
.page-top:not(.is-at-top) .header-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
body:not(.page-top) .header-inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.header-logo img {
  width: auto;
  height: 62px;
}
.header-nav {
  margin-left: auto;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 52px;
}
.header-nav__list a {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #222222;
  padding: 6px 0;
  transition: opacity 0.25s ease;
}
.header-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #666666;
  transition: width 0.25s ease;
}
.header-nav__list a:hover {
  opacity: 0.72;
}
.header-nav__list a:hover::after {
  width: 100%;
}
.header-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
.header-toggle__line {
  position: absolute;
  left: 12px;
  width: 28px;
  height: 2px;
  background: #222222;
  transition:
    transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.header-toggle__line:nth-child(1) {
  top: 17px;
}
.header-toggle__line:nth-child(2) {
  top: 25px;
}
.header-toggle__line:nth-child(3) {
  top: 33px;
}
body.menu-open .header-toggle__line:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}
body.menu-open .header-toggle__line:nth-child(2) {
  opacity: 0;
}
body.menu-open .header-toggle__line:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}
/* =========================================================
   04. Hero
   目的：TOPの動画を画面いっぱいに表示する
========================================================= */
/* Hero全体
   目的：動画表示領域の高さを確保する */
.hero--top {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  height: auto;
  overflow: hidden;
}
/* Heroメディア枠
   目的：動画を全面配置するための基準にする */
.hero-media {
  position: absolute;
  inset: 0;
}
/* Hero動画
   目的：動画をトリミングしながら全体表示する */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* =========================================================
   05. Catch Copy
   目的：キャッチコピー・説明文・会社概要リンクを強調する
========================================================= */
/* キャッチセクション
   目的：Heroとの間隔と下方向の余白を整える */
.section--catch {
  padding-top: 40px;
  padding-bottom: 110px;
  text-align: center;
}
/* メインコピー
   目的：最も目立つ主文を大きく表示する */
.catch-main {
  font-size: 2.5rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: #555555;
}
/* 補足文
   目的：説明文を十分読めるサイズで表示する */
.catch-sub {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--sub-text-color);
  margin-bottom: 34px;
}
/* 会社概要リンク行
   目的：リンクを右寄せで自然に見せる */
.catch-link {
  text-align: right;
  max-width: 920px;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--sub-text-color);
}
/* 会社概要リンク本体
   目的：ホバー用の下線領域を持たせる */
.catch-link a {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
/* 会社概要リンクホバー
   目的：ホバー時にやや淡くし下線を出す */
.catch-link a:hover {
  opacity: 0.7;
  border-color: var(--sub-text-color);
}
/* =========================================================
   06. Common Titles
   目的：各セクション見出しのサイズ感を揃える
========================================================= */
/* 英文見出し
   目的：作業紹介などの英字タイトルを中央で強調する */
.section-title-en {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #707070;
  margin-bottom: 56px;
}
/* 和文見出し
   目的：会社概要などの和文タイトルを大きく見せる */
.section-title-ja {
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #666666;
  margin-bottom: 34px;
}
/* =========================================================
   07. Works
   目的：作業紹介カードを、見出し・画像・説明文の順で
         視認性よく並べる
========================================================= */
/* 作業紹介セクション全体
   目的：上部との間隔を詰めつつ、下方向には余白を確保する */
.section--works {
  padding-top: 0;
  padding-bottom: 118px;
}
/* 3列グリッド
   目的：PCでは3列で整列し、カード間の余白を揃える */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}
/* 各カード本体
   目的：カード単位で内容をまとめ、はみ出しを隠す */
.work-card {
  background: #ffffff;
  overflow: hidden;
}
/* カード見出し
   目的：画像の上に置くタイトル帯を明確に見せる */
.work-card__title {
  background: #f2f2f2;
  color: #5b5b5b;
  font-size: 1.34rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  padding: 10px 14px;
  margin-bottom: 0;
}
/* 画像エリア
   目的：画像を一定比率で表示し、その中に説明文を重ねる基準にする */
.work-card__image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #dddddd;
}
/* 画像本体
   目的：画像を枠いっぱいにトリミング表示する */
.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 説明文
   目的：画像下部に白背景つきで重ね、文字の視認性を確保する */
.work-card__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 8px 10px;
  font-size: 1.30rem;
  color: #666666;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  height: 80px;
}
/* =========================================================
   08. Company
   目的：会社概要の情報と写真を2カラムで見せる
========================================================= */
/* 会社概要セクション
   目的：前後セクションとの余白を整える */
.section--company {
  padding-top: 26px;
  padding-bottom: 120px;
}
/* 会社概要2カラム
   目的：左に情報、右に画像を配置する */
.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}
/* 会社情報一覧
   目的：情報表全体の横幅を安定させる */
.company-info {
  width: 100%;
}
/* 会社情報1行
   目的：項目名と内容を2列で並べる */
.company-info__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 5px 0;
}
/* 会社情報項目名
   目的：左側ラベルを読みやすくする */
.company-info__row dt {
  font-size: 1.50rem;
  color: #666666;
}
/* 会社情報本文
   目的：右側の本文をやや大きめに表示する */
.company-info__row dd {
  font-size: 1.50rem;
  color: #555555;
  line-height: 1.95;
}
/* 会社画像枠
   目的：画像の比率を一定に保つ */
.company-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dddddd;
}
/* 会社画像
   目的：枠に合わせてトリミング表示する */
.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* =========================================================
   09. Recruit Banner
   目的：採用バナーを白ませて文字の視認性を高める
========================================================= */
/* 採用セクション
   目的：下方向の余白を確保する */
.section--recruit {
  padding-bottom: 96px;
}
/* 採用バナー本体
   目的：画像付きバナー全体の表示枠をつくる */
.recruit-banner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 4.1;
  overflow: hidden;
}
/* 採用バナー画像
   目的：画像を枠いっぱいに表示する */
.recruit-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 白ベール
   目的：背景を少し白ませて文字を見やすくする */
.recruit-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.40);
}
/* 文字配置エリア
   目的：中央に採用情報テキストを重ねる */
.recruit-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #2f2f2f;
}
/* 採用英字
   目的：メインタイトルを大きく表示する */
.recruit-banner__main {
  font-size: 3rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  font-weight: 500;
}
/* 採用和字
   目的：サブタイトルを読みやすく表示する */
.recruit-banner__sub {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  margin-top: 10px;
}
/* =========================================================
   10. Footer
   目的：会社情報とリンクを読みやすく整理する
========================================================= */
/* フッター全体
   目的：全幅で会社情報エリアをつくる */
.footer {
  width: 100%;
  background: #ffffff;
  color: #555555;
}
/* フッター内側
   目的：本文部分の余白を確保する */
.footer-inner {
  width: 100%;
  padding: 40px 100px 40px;
}
/* フッター上段
   目的：左に会社情報、右にリンクを配置する */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
/* フッター左側
   目的：会社情報の表示幅を安定させる */
.footer-left {
  width: 100%;
  max-width: 900px;
}
/* 外部リンク行
   目的：上段リンクを目立ちすぎず配置する */
.footer-link {
  margin-bottom: 22px;
  font-size: 1.50rem;
  letter-spacing: 0.08em;
  color: #666666;
}
/* 外部リンク本体
   目的：ホバー用の表示を安定させる */
.footer-link a {
  display: inline-block;
  transition: opacity 0.25s ease;
}
/* 外部リンクホバー
   目的：ホバー時に少し淡くする */
.footer-link a:hover {
  opacity: 0.7;
}
/* 会社名
   目的：社名を大きく表示する */
.footer-company__name {
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #555555;
  margin-bottom: 8px;
}
/* 住所・電話
   目的：会社情報本文を読みやすく表示する */
.footer-company__address, .footer-company__tel {
  font-size: 1.50rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #666666;
}
/* フッター右側
   目的：右寄せリンクの幅変形を防ぐ */
.footer-right {
  flex-shrink: 0;
}
/* プライバシーポリシー行
   目的：右側リンク文字を整える */
.footer-right p {
  font-size: 1.30rem;
  letter-spacing: 0.08em;
  color: #666666;
}
/* プライバシーポリシーリンク
   目的：ホバー時の挙動を安定させる */
.footer-right a {
  display: inline-block;
  transition: opacity 0.25s ease;
}
/* プライバシーポリシーホバー
   目的：ホバー時に少し淡くする */
.footer-right a:hover {
  opacity: 0.7;
}
/* コピーライト帯
   目的：最下部に薄グレー帯を敷く */
.footer-bottom {
  width: 100%;
  background: #d9d9d9;
  text-align: center;
  padding: 20px;
}
/* コピーライト文字
   目的：最下部の著作権表記を読みやすくする */
.footer-bottom p {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #666666;
}
/* =========================================================
   13. About Page
   目的：TOPページの外郭を踏襲しながら、会社紹介ページを構築する
========================================================= */
/* About Hero セクション
   目的：ページ冒頭に大きなイメージを配置する */
.about-hero {
  padding-bottom: 110px;
}
/* About Hero ビジュアル枠
   目的：画像とメッセージを重ねる基準にする */
.about-hero__visual {
  position: relative;
  overflow: hidden;
}
/* About Hero 画像
   目的：横長ビジュアルとして美しく見せる */
.about-hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
/* About Hero メッセージ枠
   目的：左側に半透明の白背景でコピーを重ねる */
.about-hero__message {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 46%;
  padding: 56px 40px;
  background: rgba(255, 255, 255, 0.62);
}
/* About Hero メッセージ文
   目的：冒頭コピーを大きく印象的に見せる */
.about-hero__message p {
  font-size: 2.5rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #444444;
}
/* About Intro セクション
   目的：集合写真と紹介文を並べて見せる */
.about-intro {
  padding-top: 10px;
  padding-bottom: 110px;
  padding-left: 100px;
  padding-right: 100px;
}
/* About Intro レイアウト
   目的：左に写真、右に文章の2カラムにする */
.about-intro__layout {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
/* About Intro 写真枠
   目的：角丸で集合写真を表示する */
.about-intro__photo {
  overflow: hidden;
  border-radius: 18px;
}
/* About Intro 写真
   目的：写真を自然な比率で表示する */
.about-intro__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* About Intro 文章エリア
   目的：本文全体の行間と色を整える */
.about-intro__text {
  color: #666666;
}
/* About Intro 各段落
   目的：段落ごとの余白を揃える */
.about-intro__text p {
  font-size: 1.45rem;
  line-height: 2.05;
  margin-bottom: 24px;
}
/* About Intro リード文
   目的：冒頭説明を少し強めに見せる */
.about-intro__lead {
  color: #626262;
}
/* About Intro 署名
   目的：代表名を本文末に整えて配置する */
.about-intro__sign {
  margin-top: 18px;
  margin-bottom: 0;
}
/* About Summary セクション
   目的：募集・業務情報を罫線付き一覧で見せる */
.about-summary {
  padding-top: 0;
  padding-bottom: 90px;
  padding-left: 100px;
  padding-right: 100px;
}
/* About Summary 一覧
   目的：上下の罫線付きブロックにする */
.about-summary__list {
  border-top: 1px solid #cfcfcf;
}
/* About Summary 1行
   目的：項目名と内容を横並びにする */
.about-summary__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 22px 18px;
  border-bottom: 1px solid #cfcfcf;
}
/* About Summary 項目名
   目的：左列のラベルを見やすくする */
.about-summary__row dt {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #666666;
}
/* About Summary 内容
   目的：右列の本文を読みやすく表示する */
.about-summary__row dd {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #666666;
}
/* About Events セクション
   目的：社内行事一覧と写真を並べて見せる */
.about-events {
  padding-top: 0;
  padding-bottom: 120px;
  padding-left: 100px;
  padding-right: 100px;
}
/* About Events レイアウト
   目的：左見出し・中央リスト・右写真の3カラムにする */
.about-events__layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 450px;
  gap: 36px;
  align-items: start;
}
/* About Events 見出し
   目的：左側に固定見出しを配置する */
.about-events__heading p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #666666;
}
/* About Events リスト
   目的：行事一覧を読みやすく並べる */
.about-events__list ul {
  display: grid;
  gap: 20px;
}
/* About Events リスト項目
   目的：月と行事名を見やすく表示する */
.about-events__list li {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #666666;
}
/* About Events ギャラリー
   目的：写真を縦に並べる */
.about-events__gallery {
  display: grid;
  gap: 24px;
}
/* About Events 各写真
   目的：写真とキャプションをひとまとまりにする */
.about-events__figure {
  margin: 0;
}
/* About Events 写真
   目的：角丸の写真で見栄えを整える */
.about-events__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
/* About Events キャプション
   目的：写真下に小さめの説明を置く */
.about-events__figure figcaption {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  color: #777777;
}
/* =========================================================
   16. Flow Page
   目的：TOPページ・Aboutページと統一感のある作業の流れページを構築する
========================================================= */
/* Flow Hero セクション
   目的：ページ冒頭に大きなビジュアルを配置する */
.flow-hero {
  padding-bottom: 96px;
}
/* Flow Hero ビジュアル枠
   目的：画像とメッセージを重ねる基準にする */
.flow-hero__visual {
  position: relative;
  overflow: hidden;
}
/* Flow Hero 画像
   目的：横長のメインビジュアルとして表示する */
.flow-hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
/* Flow Hero メッセージ枠
   目的：左側に半透明背景でコピーを配置する */
.flow-hero__message {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 42%;
  padding: 52px 38px;
  background: rgba(255, 255, 255, 0.62);
}
/* Flow Hero メッセージ文
   目的：冒頭コピーを印象的に見せる */
.flow-hero__message p {
  font-size: 2.4rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #444444;
}
/* Flow Intro セクション
   目的：導入文を中央に読みやすく配置する */
.flow-intro {
  padding-top: 0;
  padding-bottom: 88px;
}
/* Flow Intro テキスト
   目的：導入文を整えて配置する */
.flow-intro__text {
  text-align: center;
}
/* Flow Intro 段落
   目的：本文を読みやすい大きさで表示する */
.flow-intro__text p {
  font-size: 1.35rem;
  line-height: 2.05;
  color: #666666;
  margin-bottom: 16px;
}
/* 最後の段落
   目的：余分な下余白をなくす */
.flow-intro__text p:last-child {
  margin-bottom: 0;
}
/* Flow Steps セクション
   目的：各工程を縦に見やすく並べる */
.flow-steps {
  padding-top: 0;
  padding-bottom: 110px;
  padding-right: 100px;
  padding-left: 100px;
}
/* 各工程ブロック
   目的：工程ごとに十分な余白を持たせる */
.flow-step {
  margin-bottom: 72px;
}
/* 最後の工程
   目的：不要な下余白をなくす */
.flow-step:last-child {
  margin-bottom: 0;
}
/* 工程見出し部分
   目的：番号とタイトルを横並びにする */
.flow-step__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}
/* 工程番号
   目的：各工程番号を目立たせる */
.flow-step__number {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #8a8a8a;
}
/* 工程タイトル
   目的：各工程名を大きく見せる */
.flow-step__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #555555;
}
/* 工程本文と画像のレイアウト
   目的：左に説明、右に2枚画像を配置する */
.flow-step__body {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(380px, 1.25fr);
  gap: 36px;
  align-items: start;
}
/* Grid内の内容がブラウザ拡大時に横方向へ押し出されるのを防ぐ */
.flow-step__text, .flow-step__images {
  min-width: 0;
}
/* 工程画像群
   目的：右側に画像を2枚並べる */
.flow-step__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
/* 工程画像枠
   目的：画像比率を安定させる */
.flow-step__image {
  overflow: hidden;
  border-radius: 16px;
}
/* 工程画像
   目的：画像を枠いっぱいに表示する */
.flow-step__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* Flow Note セクション
   目的：最後に補足メッセージを配置する */
.flow-note {
  padding-top: 0;
  padding-bottom: 120px;
}
/* Flow Note ボックス
   目的：メッセージを囲って強調する */
.flow-note__box {
  padding: 42px 36px;
  background: #f7f7f7;
}
/* Flow Note タイトル
   目的：補足見出しを目立たせる */
.flow-note__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 18px;
}
/* Flow Note 本文
   目的：補足文を読みやすく整える */
.flow-note__text {
  font-size: 1.2rem;
  line-height: 2;
  color: #666666;
}
/* =========================================================
   19. Recruit Page
   目的：TOP・About・Flowと統一感のある採用ページを構築する
========================================================= */
/* Recruit Hero セクション
   目的：採用ページ冒頭に大きなビジュアルを配置する */
.recruit-hero {
  padding-bottom: 88px;
}
/* Recruit Hero ビジュアル枠
   目的：画像とコピーを重ねる基準にする */
.recruit-hero__visual {
  position: relative;
  overflow: hidden;
}
/* Recruit Hero 画像
   目的：横長のメインビジュアルとして表示する */
.recruit-hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
/* Recruit Hero コピー枠
   目的：左側に半透明背景でメッセージを重ねる */
.recruit-hero__message {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 46%;
  padding: 48px 38px;
  background: rgba(255, 255, 255, 0.64);
}
/* Recruit Hero コピー文
   目的：採用メッセージを大きく印象的に見せる */
.recruit-hero__message p {
  font-size: 2.3rem;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #444444;
}
/* Recruit Intro セクション
   目的：導入文を中央に整えて配置する */
.recruit-intro {
  padding-top: 0;
  padding-bottom: 84px;
}
/* Recruit Intro 本文エリア
   目的：導入文を中央揃えで見せる */
.recruit-intro__text {
  text-align: center;
}
/* Recruit Intro 各段落
   目的：導入文を読みやすいサイズで表示する */
.recruit-intro__text p {
  font-size: 1.32rem;
  line-height: 2.05;
  color: #666666;
  margin-bottom: 14px;
}
/* Recruit Intro 最後の段落
   目的：最後だけ下余白をなくす */
.recruit-intro__text p:last-child {
  margin-bottom: 0;
}
/* Recruit Open セクション
   目的：募集中コンテンツ全体を管理する */
.recruit-open {
  padding-top: 0;
  padding-bottom: 120px;
  padding-left: 100px;
  padding-right: 100px;
}
/* Recruit Block 共通
   目的：各採用ブロックの間隔を揃える */
.recruit-block {
  margin-bottom: 96px;
}
/* Recruit Block 最後
   目的：最後の不要な余白をなくす */
.recruit-block:last-child {
  margin-bottom: 0;
}
/* 募集要項一覧
   目的：罫線付きの見やすい一覧にする */
.recruit-summary__list {
  border-top: 1px solid #cfcfcf;
}
/* 募集要項1行
   目的：項目名と内容を2列で揃える */
.recruit-summary__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 22px 18px;
  border-bottom: 1px solid #cfcfcf;
}
/* 募集要項 項目名
   目的：左列ラベルを読みやすくする */
.recruit-summary__row dt {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666666;
}
/* 募集要項 内容
   目的：右列本文を読みやすくする */
.recruit-summary__row dd {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666666;
}
/* 仕事内容レイアウト
   目的：左に説明文、右に写真を配置する */
.recruit-work__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: start;
}
/* 仕事内容本文
   目的：仕事内容説明を整える */
.recruit-work__text p {
  font-size: 1.30rem;
  line-height: 2;
  color: #666666;
  margin-bottom: 18px;
}
/* 仕事内容本文最後
   目的：最後だけ余白をなくす */
.recruit-work__text p:last-child {
  margin-bottom: 0;
}
/* 仕事内容ギャラリー
   目的：写真を縦に並べる */
.recruit-work__gallery {
  display: grid;
  gap: 20px;
}
/* 各仕事内容写真
   目的：写真ごとのまとまりを作る */
.recruit-work__figure {
  margin: 0;
}
/* 仕事内容写真
   目的：角丸で整えて表示する */
.recruit-work__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}
/* 求める人物像リスト
   目的：箇条書きを読みやすく整える */
.recruit-person__list {
  display: grid;
  gap: 14px;
}
/* 求める人物像 項目
   目的：各項目をボックス風に見せる */
.recruit-person__list li {
  font-size: 1.22rem;
  line-height: 1.9;
  color: #666666;
  padding: 18px 20px;
  background: #f7f7f7;
}
/* 応募方法本文
   目的：説明文を読みやすく配置する */
.recruit-entry__text {
  margin-bottom: 34px;
}
/* 応募方法本文 段落
   目的：各段落の行間と余白を整える */
.recruit-entry__text p {
  font-size: 1.22rem;
  line-height: 2;
  color: #666666;
  margin-bottom: 14px;
}
/* 応募方法本文 最後
   目的：不要な余白をなくす */
.recruit-entry__text p:last-child {
  margin-bottom: 0;
}
/* 応募情報一覧
   目的：応募関連情報を見やすく整理する */
.recruit-entry__info {
  border-top: 1px solid #cfcfcf;
}
/* 応募情報1行
   目的：項目名と内容を2列で整える */
.recruit-entry__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 20px 18px;
  border-bottom: 1px solid #cfcfcf;
}
/* 応募情報 項目名
   目的：左列のラベルを整える */
.recruit-entry__row dt {
  font-size: 1.18rem;
  line-height: 1.8;
  color: #666666;
}
/* 応募情報 内容
   目的：右列本文を整える */
.recruit-entry__row dd {
  font-size: 1.18rem;
  line-height: 1.8;
  color: #666666;
}
/* 募集停止セクション
   目的：非募集時のメッセージを中央に見せる */
.recruit-closed {
  padding-top: 0;
  padding-bottom: 120px;
}
/* 募集停止ボックス
   目的：メッセージをやわらかく囲む */
.recruit-closed__box {
  padding: 54px 36px;
  background: #f7f7f7;
  text-align: center;
}
/* 募集停止文
   目的：現在募集なしの文言を読みやすく見せる */
.recruit-closed__text {
  font-size: 1.28rem;
  line-height: 2;
  color: #666666;
}
/* =========================================================
   22. Contact Page
   目的：お問い合わせ・アクセスページを、画像なしで
         落ち着いた情報ページとして構成する
========================================================= */
/* Contact Title セクション
   目的：ページタイトルと導入文を整えて表示する */
.contact-page-title {
  padding-top: 72px;
  padding-bottom: 72px;
}
/* Contact Title 本文エリア
   目的：タイトル下の説明文を中央寄せで読みやすくする */
.contact-page-title__text {
  text-align: center;
}
/* Contact Title 段落
   目的：導入文を十分読める大きさで表示する */
.contact-page-title__text p {
  font-size: 1.32rem;
  line-height: 2;
  color: #666666;
  margin-bottom: 12px;
}
/* Contact Title 最後の段落
   目的：不要な下余白をなくす */
.contact-page-title__text p:last-child {
  margin-bottom: 0;
}
/* Contact Info セクション
   目的：問い合わせ先情報を一覧で見せる */
.contact-info {
  padding-top: 0;
  padding-bottom: 90px;
}
/* Contact Info 一覧
   目的：罫線付き一覧にする */
.contact-info__list {
  border-top: 1px solid #cfcfcf;
}
/* Contact Info 1行
   目的：項目名と内容を2列で揃える */
.contact-info__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 22px 18px;
  border-bottom: 1px solid #cfcfcf;
}
/* Contact Info 項目名
   目的：左列ラベルを見やすくする */
.contact-info__row dt {
  font-size: 1.26rem;
  line-height: 1.8;
  color: #666666;
}
/* Contact Info 内容
   目的：右列本文を読みやすくする */
.contact-info__row dd {
  font-size: 1.26rem;
  line-height: 1.8;
  color: #666666;
}
/* Contact Access セクション
   目的：アクセス案内を縦方向に自然に見せる */
.contact-access {
  padding-top: 0;
  padding-bottom: 120px;
}
/* Contact Access 全体
   目的：説明 → 所在地 → 地図 → リンクの順で縦に並べる */
.contact-access__content {
  width: 100%;
}
/* Contact Access 説明文
   目的：アクセス説明文を読みやすく整える */
.contact-access__text {
  margin-bottom: 28px;
}
.contact-access__text p {
  font-size: 1.22rem;
  line-height: 2;
  color: #666666;
  margin-bottom: 16px;
}
.contact-access__text p:last-child {
  margin-bottom: 0;
}
/* Contact Access 所在地ボックス
   目的：所在地情報を本文の流れの中で見せる */
.contact-access__box {
  padding: 28px 24px;
  background: #f7f7f7;
  margin-bottom: 28px;
}
/* Contact Access ボックス見出し
   目的：所在地タイトルを少し強調する */
.contact-access__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 14px;
}
/* Contact Access 住所
   目的：住所情報を読みやすく表示する */
.contact-access__address {
  font-size: 1.16rem;
  line-height: 1.95;
  color: #666666;
  margin-bottom: 16px;
}
/* Contact Access 注記
   目的：補足説明を少し小さめに見せる */
.contact-access__note {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #777777;
  margin-bottom: 0;
}
/* Contact Access 地図埋め込み枠
   目的：スクロールの流れでそのまま地図を表示する */
.contact-access__mapembed {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}
/* Contact Access 地図iframe
   目的：横幅いっぱいに表示する */
.contact-access__mapembed iframe {
  display: block;
  width: 100%;
}
/* Contact Access 地図リンク行
   目的：別タブリンクを自然に配置する */
.contact-access__maplink {
  margin: 0;
}
/* Contact Access 地図リンク
   目的：補助リンクとして見やすくする */
.contact-access__maplink a {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  border-bottom: 1px solid #999999;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
.contact-access__maplink a:hover {
  opacity: 0.7;
  border-color: #666666;
}
/* =========================================================
   09. Community
   目的：林業から広がる地域連携の取組みを紹介する
========================================================= */
/* 地域取組みセクション
   目的：会社概要と採用情報の間に余白を持って配置する */
.section--community {
  padding-top: 0;
  padding-bottom: 120px;
}
/* セクション見出し周辺
   目的：見出しと導入文を中央で整える */
.community-heading {
  margin-bottom: 48px;
  text-align: center;
}
/* 導入文
   目的：3つの取組みの共通説明を読みやすく見せる */
.community-heading__text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 1.28rem;
  line-height: 2;
  color: #666666;
}
/* 3カードの並び
   目的：PCでは3列で整然と見せる */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
  align-items: stretch;
}
/* 各カード
   目的：画像と本文をひとまとまりにし、高さを揃えやすくする */
.community-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #eeeeee;
}
/* カード画像枠
   目的：画像比率を揃えて見せる */
.community-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dddddd;
}
/* カード画像
   目的：画像を枠いっぱいに表示する */
.community-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* カード本文エリア
   目的：本文とリンクを縦方向に整列させる */
.community-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 24px;
}
/* カード見出し
   目的：各取組み名を明確に見せる */
.community-card__title {
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #555555;
  margin-bottom: 14px;
}
/* カード本文
   目的：説明文の量が違ってもリンク位置を揃えられるようにする */
.community-card__text {
  flex: 1;
  font-size: 1.25rem;
  line-height: 1.95;
  color: #666666;
}
/* カードリンク行
   目的：リンクをカード下端に揃える */
.community-card__link {
  margin-top: auto;
  padding-top: 18px;
}
/* カードリンク
   目的：外部リンクを上品に見せる */
.community-card__link a {
  display: inline-block;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #555555;
  border-bottom: 1px solid #999999;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
/* カードリンクホバー
   目的：ホバー時に少し淡くする */
.community-card__link a:hover {
  opacity: 0.7;
  border-color: #666666;
}
/* =========================================================
   Scroll Fade
   目的：fadeクラスを付けた要素をスクロールでふわっと表示する
========================================================= */
/* フェード待機状態
   目的：少し下からふわっと出る初期状態をつくる */
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--fade-delay, 0ms);
  will-change: opacity, transform;
}
/* フェード表示状態
   目的：通常位置・通常不透明度に戻す */
.fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 動きを減らしたい環境
   目的：OS設定に合わせてアニメーションを抑える */
@media (prefers-reduced-motion: reduce) {
  .fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================================================
   Responsive 1280px
   目的：ブラウザ拡大時を含む中間幅でヘッダーの詰まりを防ぐ
========================================================= */
@media (max-width: 1280px) and (min-width: 1101px) {
  .header-inner {
    padding-left: 28px;
    padding-right: 28px;
  }
  .header-logo img {
    height: 54px;
  }
  .header-nav__list {
    gap: 28px;
  }
  .header-nav__list a {
    font-size: 1.1rem;
  }
}
/* =========================================================
   Responsive 1100px
   目的：タブレット・小さめノートPC向けに全体を整える
========================================================= */
@media (max-width: 1100px) {
  .section-inner {
    padding: 0 56px;
  }
  .header-inner {
    min-height: 80px;
    padding: 12px 24px;
  }
  .header-logo img {
    height: 54px;
  }
  .header-nav__list {
    gap: 24px;
  }
  .header-nav__list a {
    font-size: 1rem;
  }
  .hero--top {
    height: 60vh;
    min-height: 480px;
  }
  .section--catch {
    padding-top: 56px;
    padding-bottom: 80px;
  }
  .catch-main {
    font-size: 1.8rem;
    white-space: normal;
  }
  .catch-sub, .catch-link {
    font-size: 1.12rem;
  }
  .section-title-en {
    font-size: 2.1rem;
    margin-bottom: 36px;
  }
  .section-title-ja {
    font-size: 2rem;
    margin-bottom: 28px;
  }
  .works-grid, .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .work-card__title, .community-card__title {
    font-size: 1.1rem;
  }
  .work-card__text, .community-card__text {
    font-size: 0.96rem;
    height: auto;
    min-height: 58px;
  }
  .company-layout, .recruit-work__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .company-info__row {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }
  .company-info__row dt, .company-info__row dd, .about-summary__row dt, .about-summary__row dd, .recruit-summary__row dt, .recruit-summary__row dd, .recruit-entry__row dt, .recruit-entry__row dd, .contact-info__row dt, .contact-info__row dd {
    font-size: 1.05rem;
  }
  .about-intro, .about-summary, .about-events, .flow-steps, .recruit-open {
    padding-left: 0;
    padding-right: 0;
  }
  .about-intro__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
  }
  .about-intro__text p, .flow-intro__text p, .recruit-intro__text p, .community-heading__text, .contact-page-title__text p, .contact-access__text p, .flow-step__text p, .recruit-work__text p, .recruit-entry__text p {
    font-size: 1.05rem;
  }
  .about-events__layout {
    grid-template-columns: 90px minmax(0, 1fr) 220px;
    gap: 24px;
  }
  .about-events__heading p, .about-events__list li {
    font-size: 1.08rem;
  }
  .flow-step__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .flow-step__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .recruit-hero__message, .about-hero__message, .flow-hero__message {
    width: 54%;
    padding: 34px 26px;
  }
  .recruit-hero__message p, .about-hero__message p, .flow-hero__message p {
    font-size: 1.9rem;
  }
  .contact-page-title {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .contact-access__text p {
    font-size: 1.02rem;
  }
  .contact-access__title {
    font-size: 1.18rem;
  }
  .contact-access__address {
    font-size: 1rem;
  }
  .contact-access__note {
    font-size: 0.9rem;
  }
  .footer-inner {
    padding: 36px 24px 28px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-company__name {
    font-size: 1.8rem;
  }
  .footer-link, .footer-company__address, .footer-company__tel, .footer-right p {
    font-size: 1rem;
  }
}
/* =========================================================
   Responsive 838px
   目的：タブレット縦〜スマホ横でハンバーガー化し、1列寄りに整える
========================================================= */
@media (max-width: 838px) {
  .section-inner {
    padding: 0 24px;
  }
  .header-inner {
    min-height: 76px;
    padding: 12px 18px;
  }
  .header-logo img {
    height: 46px;
  }
  .header-toggle {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    margin-left: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
  }
  body.menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.menu-open {
    overflow: hidden;
  }
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .header-nav__list a {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }
  .hero--top {
    height: 52vh;
    min-height: 360px;
  }
  .section--catch {
    padding-top: 36px;
    padding-bottom: 52px;
  }
  .catch-main {
    font-size: 1.35rem;
    line-height: 1.8;
  }
  .catch-sub {
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 18px;
  }
  .catch-link {
    text-align: center;
    font-size: 0.96rem;
  }
  .section-title-en {
    font-size: 1.55rem;
    margin-bottom: 28px;
  }
  .section-title-ja {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
  .works-grid, .community-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .work-card__title, .community-card__title {
    font-size: 1rem;
  }
  .work-card__text, .community-card__text {
    font-size: 0.88rem;
    line-height: 1.7;
    min-height: auto;
  }
  .section--works, .section--company, .section--community, .section--recruit, .about-summary, .about-events, .flow-steps, .flow-note, .recruit-open, .contact-info, .contact-access, .privacy-policy-page {
    padding-bottom: 64px;
  }
  .company-info__row, .about-summary__row, .recruit-summary__row, .recruit-entry__row, .contact-info__row {
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px 8px;
  }
  .company-info__row dt, .company-info__row dd, .about-summary__row dt, .about-summary__row dd, .recruit-summary__row dt, .recruit-summary__row dd, .recruit-entry__row dt, .recruit-entry__row dd, .contact-info__row dt, .contact-info__row dd {
    font-size: 0.92rem;
    line-height: 1.8;
  }
  .about-hero, .flow-hero, .recruit-hero {
    padding-bottom: 48px;
  }
  .about-hero__visual img, .flow-hero__visual img, .recruit-hero__visual img {
    aspect-ratio: 4 / 3.2;
  }
  .about-hero__message, .flow-hero__message, .recruit-hero__message {
    width: 72%;
    padding: 20px 16px;
  }
  .about-hero__message p, .flow-hero__message p, .recruit-hero__message p {
    font-size: 1.18rem;
    line-height: 1.8;
  }
  .about-intro {
    padding-top: 0;
    padding-bottom: 52px;
  }
  .about-intro__layout, .about-events__layout, .flow-step__body, .recruit-work__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-intro__photo {
    max-width: 260px;
  }
  .about-intro__text p, .flow-intro__text p, .flow-step__text p, .recruit-intro__text p, .recruit-work__text p, .recruit-entry__text p, .contact-page-title__text p, .contact-access__text p, .community-heading__text, .privacy-policy-block__text, .privacy-policy-block__list li {
    font-size: 0.94rem;
    line-height: 1.9;
  }
  .about-events__heading p {
    font-size: 1rem;
  }
  .about-events__list ul {
    gap: 12px;
  }
  .about-events__list li {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .flow-intro, .recruit-intro, .contact-page-title {
    padding-bottom: 48px;
  }
  .flow-step {
    margin-bottom: 44px;
  }
  .flow-step__head {
    gap: 12px;
    margin-bottom: 14px;
  }
  .flow-step__number {
    font-size: 0.92rem;
  }
  .flow-step__title {
    font-size: 1.28rem;
  }
  .contact-access__text {
    margin-bottom: 20px;
  }
  .contact-access__box {
    padding: 22px 18px;
    margin-bottom: 20px;
  }
  .contact-access__title {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }
  .contact-access__address {
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 12px;
  }
  .contact-access__note {
    font-size: 0.82rem;
    line-height: 1.8;
  }
  .contact-access__mapembed {
    border-radius: 10px;
    margin-bottom: 12px;
  }
  .contact-access__mapembed iframe {
    height: 280px;
  }
  .contact-access__maplink a {
    font-size: 0.9rem;
  }
  .privacy-policy-page-title {
    padding: 40px 0 32px;
  }
  .privacy-policy-page-title__text p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .privacy-policy-block {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
  .privacy-policy-block__title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .footer-inner {
    padding: 24px 16px 20px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-left {
    max-width: none;
  }
  .footer-link {
    margin-bottom: 12px;
    font-size: 0.88rem;
  }
  .footer-company__name {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .footer-company__address, .footer-company__tel, .footer-right p {
    font-size: 0.84rem;
    line-height: 1.75;
  }
}
/* =========================================================
   Responsive 460px
   目的：小型スマホで最終調整する
========================================================= */
@media (max-width: 460px) {
  .section-inner {
    padding: 0 16px;
  }
  .header-inner {
    min-height: 70px;
    padding: 10px 14px;
  }
  .header-logo img {
    height: 40px;
  }
  .header-toggle {
    width: 46px;
    height: 46px;
  }
  .header-toggle__line {
    left: 11px;
    width: 24px;
  }
  .header-nav {
    top: 70px;
    height: calc(100vh - 70px);
    padding: 20px 16px;
  }
  .header-nav__list a {
    font-size: 1.05rem;
  }
  .hero--top {
    height: 42vh;
    min-height: 260px;
  }
  .catch-main {
    font-size: 1.12rem;
  }
  .catch-sub, .catch-link, .community-heading__text, .contact-page-title__text p {
    font-size: 0.88rem;
  }
  .work-card__title, .community-card__title, .flow-step__title, .section-title-ja {
    font-size: 1rem;
  }
  .work-card__text, .community-card__text, .about-intro__text p, .flow-step__text p, .recruit-work__text p, .recruit-entry__text p, .contact-access__text p, .privacy-policy-block__text, .privacy-policy-block__list li {
    font-size: 0.86rem;
  }
  .company-info__row, .about-summary__row, .recruit-summary__row, .recruit-entry__row, .contact-info__row {
    grid-template-columns: 78px 1fr;
    gap: 10px;
    padding: 10px 6px;
  }
  .company-info__row dt, .company-info__row dd, .about-summary__row dt, .about-summary__row dd, .recruit-summary__row dt, .recruit-summary__row dd, .recruit-entry__row dt, .recruit-entry__row dd, .contact-info__row dt, .contact-info__row dd {
    font-size: 0.84rem;
  }
  .flow-step__images {
    grid-template-columns: 1fr;
  }
  .contact-access__mapembed iframe {
    height: 240px;
  }
  .privacy-policy-block {
    padding: 18px 14px;
  }
  .footer-company__name {
    font-size: 1.05rem;
  }
  .footer-company__address, .footer-company__tel, .footer-right p, .footer-link {
    font-size: 0.78rem;
  }
  .footer-bottom {
    padding: 10px 12px;
  }
  .footer-bottom p {
    font-size: 0.68rem;
  }
}