@charset "UTF-8";
/*
 * ======================================
 * 合同会社MHL サイト固有CSS（mhl- プレフィックス）
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .mhl-side / .mhl-navitem      - 左固定サイドバー型ヘッダー（250px・ロゴ／ナビ／TEL・CTA）
 * .mhl-topbar / .mhl-spnav      - SP用上部バー（60px）＋バー直下に開くナビパネル
 * .mhl-main                     - サイドバー分の左マージンを持つ本文ラッパー
 * .mhl-sec                      - フルブリード・左右40pxのセクション（余白バリエーション付き）
 * .mhl-cols                     - auto-fit グリッド（--min* / --gap* で最小幅と間隔を指定）
 * .mhl-sechead / .mhl-rule      - Alfa Slab One 英字見出し＋和文サブ／44×2pxゴールド罫
 * .mhl-eyebrow / .mhl-bar-ttl   - 英字ラベル（字間広め）／左ゴールド4pxバーの見出し
 * .mhl-hero                     - 下層ページヒーロー（page-hero--solid の左寄せ・巨大英字版）
 * .mhl-mv                       - TOPメインビュー（16:7・CMSスライダー差し替え前提）
 * .mhl-btn                      - フラット角丸ゼロのCTA（gold / navy / ghost-light / ghost-dark）
 * .mhl-news                     - TOPお知らせ（blog-list のフラット・ドット無し版）
 * .mhl-fcard / .mhl-tcard       - 番号付き特徴カード（outline）／上ゴールド罫の特徴カード
 * .mhl-svc                      - 事業案内バナーカード（ネイビー地・4:3写真＋英日ラベル）
 * .mhl-wcard / .mhl-chip        - 勤務形態カード（A/B/C）／枠線ラベル
 * .mhl-tag / .mhl-tile          - ダーク地の枠線タグ／hairline（gap:1px）タイル
 * .mhl-area                     - エリア色スウォッチ行／左色バーのエリアカード
 * .mhl-staff / .mhl-ph          - スタッフカード／画像プレースホルダ
 * .mhl-table                    - ネイビーth・横罫のみのテーブル（table-basic の上書き）
 * .mhl-flow                     - STEP横並びフロー（キャレット区切り）
 * .mhl-philo                    - グレースケール写真＋斜めグラデ暗幕の理念セクション
 * .mhl-form / .mhl-input        - お問い合わせフォーム（ラベル縦積み・角丸ゼロ）
 * .mhl-doc                      - 資料ダウンロード行（番号＋PDFバッジ）
 * .mhl-footer                   - ネイビー3カラムフッター（footer-body--dark の全幅版）
 * .mhl-wood                     - 木目テクスチャ＋ブラウン暗幕の背景
 * .mhl-mb-* / .mhl-mt-*         - 5px刻みに無い上下余白（6/12/14/18/22/24/26/34/36px 等）
 * .mhl-txt / .mhl-eyebrow 系     - 本文（14px/2.05）・注記（13px/1.95）・英字ラベルの字送り違い
 * .mhl-noticebox / .mhl-applybox - 木目地の注意書きボックス／ネイビーの応募CTAボックス
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * ・構造不足   : 左固定サイドバー（250px固定・下部にTEL/CTAを持つ縦積みナビ）は
 *                header-sidebar（幅20%・1100px切替・白地）では再現できず全面上書き。
 *                フラット・自動幅のCTA（btn は max-width:300px + width:100% + 枠2px 前提）。
 *                auto-fit グリッド（grid-N は固定列数のみ。デザインは minmax(auto-fit) 主体）。
 * ・値の粒度不足: 余白が 6/13/14/16/18/22/26/34/44/46/52/58/64px と 5px 刻みから外れる。
 *                フォントも 11/12.5/13.5/14.5/17/18px と fz-* の刻みに無い値が多い。
 * ・装飾パターン不足: hairline グリッド（gap:1px + outline で罫を共有するタイル）、
 *                グレースケール写真＋角度付きグラデーション暗幕。
 * ・状態不足   : ナビ現在地を「左3pxバー＋薄ゴールド地」で示すパターン（既存は下線のみ）。
 * ・指定方向不足: セクションを全幅のまま左右40pxで詰める（container 系は中央寄せ固定）。
 *
 */

/* ==========================================================================
   0. 全体（デザインの assets/site.css 相当）
   ========================================================================== */
a { color: #C08A3E; }
a:hover { color: #132A3B; opacity: 1; }

.mhl-main {
  margin-left: 250px;
  min-height: 100vh;
  /* セクションの地色（クリームから薄グレーへ） */
  background: #F5F5F5;
}

/* ==========================================================================
   1. ヘッダー：左固定サイドバー（PC） / 上部バー（SP）
   ========================================================================== */
.header-sidebar.mhl-side {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 100vh;
  overflow-y: auto;
  /* 木目テクスチャ＋うっすら黒レイヤー（ネイビー地から変更） */
  background-color: #241A12;
  background-image: linear-gradient(rgba(12, 10, 8, .55), rgba(12, 10, 8, .55)), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28499/bg_wood.jpg);
  background-size: cover;
  background-position: 80% center;
  background-attachment: local;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: none;
  z-index: 50;
}

.mhl-side__head {
  background: #F4F1EC;
  padding: 22px 20px 26px;
  text-align: center;
}
.header-sidebar.mhl-side .mhl-side__logo {
  display: block;
  margin: 0 auto;
  max-width: 168px;
}
.header-sidebar.mhl-side .mhl-side__logo img {
  display: block;
  width: 100%;
  max-width: 168px;
  height: auto;
}
.mhl-side__names {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #000;
  letter-spacing: .04em;
}
/* 1行目の社名は名刺のロゴ体（SVG）に差し替え。同じ文字列をテキストで組んだときの幅に合わせて
   高さを決めている（SVG比率 416.29:75.34）。em指定にしてあるので font-size を変えても追従する */
.mhl-side__names-img { display: inline-block; width: auto; height: 1.155em; vertical-align: baseline; }

.header-sidebar.mhl-side .mhl-side__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 8px 0;
}
.mhl-side .mhl-navitem a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  border-left: 3px solid transparent;
  color: #F4F1EC;
  padding: 13px 20px;
  letter-spacing: .04em;
  font-weight: 400;
  transition: background .2s ease, border-color .2s ease;
}
.mhl-side .mhl-navitem a::after { display: none; }
.mhl-side .mhl-navitem a:hover { background: rgba(192, 138, 62, .1); opacity: 1; }
.mhl-side .mhl-navitem.is-current a {
  background: rgba(192, 138, 62, .16);
  border-left-color: #C08A3E;
  font-weight: 700;
}
.mhl-side .mhl-navitem__en {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  color: #C08A3E;
}
.mhl-side .mhl-navitem__ja {
  margin: 0;
  font-size: 13px;
  font-weight: inherit;
  line-height: normal;
  color: inherit;
}

.mhl-side__foot {
  margin-top: auto;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(244, 241, 236, .14);
}
.mhl-side__tel {
  color: #F4F1EC;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mhl-side__tel:hover { color: #C08A3E; opacity: 1; }
/* 木目地では #8A8F94 が沈むため、TEL・営業時間は白系にする */
.mhl-side__tel-label { font-size: 10px; letter-spacing: .14em; color: #F4F1EC; }
.mhl-side__tel-num {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .02em;
}
.mhl-side__tel-note { font-size: 11px; color: #F4F1EC; }
/* Instagram：テキストリンクだと埋もれるためインスタカラーのボタンにする */
.mhl-side__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 10px;
  border: 0;
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  transition: filter .2s ease;
}
.mhl-side__sns i { font-size: 18px; color: #fff; }
.mhl-side__sns:hover { filter: brightness(1.12); color: #fff; opacity: 1; }

/* -- SP：上部バー -- */
.mhl-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #132A3B;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 60;
}
.mhl-topbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
/* ネイビーバー上なので白地は敷かず、ロゴを白抜きにする */
.mhl-topbar__logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-toggle.mhl-toggle {
  display: none;
  position: static;
  width: auto;
  height: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  backdrop-filter: none;
  border: 1px solid rgba(244, 241, 236, .4);
  border-radius: 0;
  padding: 11px 12px;
}
.nav-toggle.mhl-toggle .nav-toggle__line {
  position: static;
  display: block;
  width: 20px;
  height: 1.5px;
  background: #F4F1EC;
  transform: none;
}
.nav-toggle.mhl-toggle.is-active .nav-toggle__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.mhl-toggle.is-active .nav-toggle__line:nth-child(2) { opacity: 0; }
.nav-toggle.mhl-toggle.is-active .nav-toggle__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -- SP：ナビパネル（上部バーの直下から下端まで） -- */
.sp-nav.mhl-spnav {
  top: 60px;
  /* サイドバーと同じ木目＋うっすら黒レイヤー */
  background-color: #241A12;
  background-image: linear-gradient(rgba(12, 10, 8, .55), rgba(12, 10, 8, .55)), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28499/bg_wood.jpg);
  background-size: cover;
  background-position: center;
  justify-content: flex-start;
  align-items: stretch;
  padding: 8px 0 24px;
  z-index: 55;
}
.sp-nav.mhl-spnav .mhl-spnav__list { max-width: none; width: 100%; text-align: left; }
.sp-nav.mhl-spnav .mhl-spnav__item { border: 0; }
.sp-nav.mhl-spnav .mhl-spnav__item:first-child { border-top: 0; }
.sp-nav.mhl-spnav .mhl-spnav__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  border-left: 3px solid transparent;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
}
.sp-nav.mhl-spnav .mhl-spnav__link::after { display: none; }
.sp-nav.mhl-spnav .mhl-spnav__link.is-current {
  background: rgba(192, 138, 62, .16);
  border-left-color: #C08A3E;
  font-weight: 700;
}
.sp-nav.mhl-spnav .mhl-spnav__en {
  font-family: "Alfa Slab One", serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  color: #C08A3E;
  opacity: 1;
  margin: 0;
  padding: 0;
}
.mhl-spnav__ja { font-size: 13px; }
.sp-nav.mhl-spnav .mhl-spnav__bottom {
  max-width: none;
  width: 100%;
  text-align: left;
  margin-top: 18px;
  padding: 18px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(244, 241, 236, .14);
}

/* ==========================================================================
   2. セクションの器
   ========================================================================== */
/* 左右ガターと内容の最大幅。1か所で全ページのセクション幅を調整できる。
   広い画面では --mhl-max で内容幅を止めて中央寄せ（背景は全幅のまま） */
:root {
  --mhl-gutter: 108px;
  --mhl-max: 1120px;
  --mhl-pad-x: max(var(--mhl-gutter), (100% - var(--mhl-max)) / 2);
}

.mhl-sec { padding: 72px var(--mhl-pad-x); }
.mhl-sec--lg { padding: 88px var(--mhl-pad-x); }
.mhl-sec--60 { padding: 80px var(--mhl-pad-x); }
.mhl-sec--58 { padding: 78px var(--mhl-pad-x); }
.mhl-sec--48 { padding: 66px var(--mhl-pad-x); }
.mhl-sec--44 { padding: 62px var(--mhl-pad-x); }
.mhl-sec--topics { padding: 44px var(--mhl-pad-x); }
.mhl-sec--flat { padding: 0; }
.mhl-sec--pt0 { padding-top: 0; }
.mhl-sec--hero { padding: 72px var(--mhl-pad-x) 64px; }

/* お問い合わせ：フォーム側の幅を広めに取る */
.mhl-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* アンカーリンクの着地位置（SPは固定トップバー60px分を確保） */
.mhl-sec[id] { scroll-margin-top: 16px; }

.mhl-bg-navy { background: #132A3B; }
.mhl-bg-white { background: #fff; }
.mhl-bg-cream { background: #F5F5F5; }
.mhl-border-b { border-bottom: 1px solid rgba(19, 42, 59, .1); }
.mhl-border-t { border-top: 1px solid rgba(19, 42, 59, .1); }
.mhl-border-b--soft { border-bottom: 1px solid rgba(19, 42, 59, .12); }

.mhl-wood {
  background-color: #6B4A2F;
  background-image: linear-gradient(rgba(52, 33, 19, .78), rgba(52, 33, 19, .78)), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28499/bg_wood.jpg);
  background-size: cover;
  background-position: center;
}
.mhl-wood--soft {
  background-image: linear-gradient(rgba(52, 33, 19, .72), rgba(52, 33, 19, .72)), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28499/bg_wood.jpg);
}

/* auto-fit グリッド（最小幅・間隔をmodifierで指定） */
.mhl-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--mhl-min, 280px), 1fr));
  gap: var(--mhl-gap, 20px);
  align-items: center;
}
/* 等高が前提のグリッド（gap:1pxの罫線共有タイル、カード類）は伸縮を維持 */
.mhl-cols--gap1,
.mhl-cols--stretch { align-items: stretch; }
.mhl-cols--min120 { --mhl-min: 120px; }
.mhl-cols--min150 { --mhl-min: 150px; }
.mhl-cols--min170 { --mhl-min: 170px; }
.mhl-cols--min190 { --mhl-min: 190px; }
.mhl-cols--min230 { --mhl-min: 230px; }
.mhl-cols--min240 { --mhl-min: 240px; }
.mhl-cols--min260 { --mhl-min: 260px; }
.mhl-cols--min300 { --mhl-min: 300px; }
.mhl-cols--min320 { --mhl-min: 320px; }
.mhl-cols--gap1 { --mhl-gap: 1px; }
.mhl-cols--gap10 { --mhl-gap: 10px; }
.mhl-cols--gap14 { --mhl-gap: 14px; }
.mhl-cols--gap16 { --mhl-gap: 16px; }
.mhl-cols--gap18 { --mhl-gap: 18px; }
.mhl-cols--gap22 { --mhl-gap: 22px; }
.mhl-cols--gap24 { --mhl-gap: 24px; }
.mhl-cols--gap26 { --mhl-gap: 26px; }
.mhl-cols--gap32 { --mhl-gap: 32px; }
.mhl-cols--gap34 { --mhl-gap: 34px; }
.mhl-cols--gap36 { --mhl-gap: 36px; }
.mhl-cols--gap40 { --mhl-gap: 40px; }
.mhl-cols--gap0 { --mhl-gap: 0; }
.mhl-cols--center { align-items: center; }
.mhl-cols--start { align-items: start; }
.mhl-cols--span2 { grid-column: span 2; }

/* ==========================================================================
   3. 見出し・テキスト
   ========================================================================== */
.mhl-eyebrow {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .3em;
  color: #C08A3E;
}
.mhl-eyebrow--sm { font-size: 11px; letter-spacing: .24em; }
.mhl-eyebrow--wide { font-size: 11px; letter-spacing: .28em; }
.mhl-eyebrow--tight { font-size: 11px; letter-spacing: .2em; }
.mhl-eyebrow--light { color: #E4B96F; }

.mhl-sechead {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: .01em;
  color: #132A3B;
}
.mhl-sechead--sm { font-size: clamp(22px, 2.4vw, 30px); }
.mhl-sechead__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #6B4A2F;
}

.mhl-rule { width: 44px; height: 2px; background: #C08A3E; margin: 14px 0 34px; }
.mhl-rule--mb12 { margin-bottom: 12px; }
.mhl-rule--mb24 { margin-bottom: 24px; }
.mhl-rule--mb26 { margin-bottom: 26px; }
.mhl-rule--mb30 { margin-bottom: 30px; }

.mhl-bar-ttl {
  margin: 0;
  font-size: 25px;
  line-height: normal;
  border-left: 4px solid #C08A3E;
  padding-left: 14px;
}
.mhl-bar-ttl--lh15 { line-height: 1.5; }

/* 事業内容の見出し（番号＋英字＋和文） */
.mhl-svcttl { display: flex; align-items: center; gap: 18px; margin: 0 0 24px; }
.mhl-svcttl__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #132A3B;
  color: #C08A3E;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .02em;
}
.mhl-svcttl__en {
  margin: 0 0 6px;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .22em;
  color: #C08A3E;
}
.mhl-svcttl__ja { margin: 0; font-size: 25px; line-height: 1.4; }
/* 和文タイトルの後ろにラベルを並べる */
.mhl-svcttl__row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px; }
/* 濃色地（ネイビー・木目）用 */
.mhl-svcttl--white .mhl-svcttl__num { background: #C08A3E; color: #132A3B; }
.mhl-svcttl--white .mhl-svcttl__en { color: #E4B96F; }
.mhl-svcttl--white .mhl-svcttl__ja { color: #F4F1EC; }
.mhl-bar-ttl--lg { font-size: 30px; }
.mhl-bar-ttl--sm { font-size: 17px; border-left: 0; padding-left: 0; }
.mhl-bar-ttl--white { color: #F4F1EC; }
/* 左のゴールドバーを外す（サイズはそのまま） */
.mhl-bar-ttl--nobar { border-left: 0; padding-left: 0; }

.mhl-h3 { margin: 0 0 14px; font-size: 16px; line-height: normal; }
/* 金の小四角マーカー付き小見出し */
.mhl-h3--mark { display: flex; align-items: center; gap: 10px; }
.mhl-h3--mark::before { content: ""; flex: 0 0 auto; width: 9px; height: 9px; background: #C08A3E; }

.mhl-txt { margin: 0 0 14px; font-size: 14px; line-height: 2.05; color: #3c4b58; }
.mhl-txt:last-child { margin-bottom: 0; }
.mhl-txt--sm { font-size: 13px; line-height: 1.95; color: #4b5b68; }
.mhl-txt--note { font-size: 13px; line-height: 1.95; color: #6B4A2F; }
.mhl-txt--note-flat { font-size: 13px; line-height: normal; color: #6B4A2F; }
.mhl-txt--note-sm { font-size: 12.5px; line-height: 1.95; color: #6B4A2F; }
.mhl-txt--lg { font-size: 14.5px; line-height: 2.05; color: #4b5b68; }
.mhl-txt--lh2 { line-height: 2; }
.mhl-txt--access { font-size: 13.5px; line-height: 2; }
.mhl-txt--light { color: rgba(244, 241, 236, .85); }
.mhl-txt--light-82 { color: rgba(244, 241, 236, .82); line-height: 1.95; }
.mhl-txt--light-2 { color: rgba(244, 241, 236, .8); font-size: 14px; line-height: 2; }
.mhl-txt--light-3 { color: rgba(244, 241, 236, .7); font-size: 13px; line-height: 1.95; }
.mhl-txt--center { text-align: center; }
.mhl-txt--w520 { max-width: 520px; }
.mhl-txt--w620 { max-width: 620px; }
.mhl-txt--w660 { max-width: 660px; }
.mhl-txt--w760 { max-width: 760px; }
.mhl-em { color: #C08A3E; }
/* 見出し内の数値強調 */
.mhl-bignum { font-size: 1.4em; letter-spacing: .02em; color: #E4B96F; white-space: nowrap; }
.mhl-sign { margin: 20px 0 0; font-size: 13px; color: #6B4A2F; line-height: 1.9; }
.mhl-sign__name { font-size: 17px; font-weight: 700; color: #132A3B; }
/* 署名は名刺のロゴ体（SVG）に差し替え（SVG比率 495.27:109.28）。高さは指定値の20px */
.mhl-sign__name img { display: inline-block; width: auto; height: 20px; vertical-align: -0.1em; }
.mhl-label { margin: 0 0 10px; font-size: 13px; font-weight: 700; letter-spacing: .06em; color: #6B4A2F; }

/* ==========================================================================
   4. ボタン
   ========================================================================== */
.mhl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 15px 26px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  cursor: pointer;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mhl-btn--gold { background: #C08A3E; color: #132A3B; }
.mhl-btn--gold:hover { background: #F4F1EC; color: #132A3B; opacity: 1; }
.mhl-btn--gold-white { background: #C08A3E; color: #fff; padding: 13px 22px; font-size: 13.5px; letter-spacing: normal; }
.mhl-btn--gold-white:hover { background: #A9762F; color: #fff; opacity: 1; }
.mhl-btn--navy { background: #132A3B; color: #F4F1EC; }
.mhl-btn--navy:hover { background: #C08A3E; color: #132A3B; opacity: 1; }
.mhl-btn--ghost-light { background: none; border: 1px solid rgba(244, 241, 236, .55); color: #F4F1EC; }
.mhl-btn--ghost-light:hover { background: #F4F1EC; color: #132A3B; opacity: 1; }
.mhl-btn--ghost-light-2 { border-color: rgba(244, 241, 236, .6); }
.mhl-btn--md13 { padding: 14px 26px; font-size: 13px; }
.mhl-btn--ls { letter-spacing: .04em; }   /* MV・サイドバーCTAのみ字間あり */
.mhl-btn--ghost-dark { background: none; border: 1px solid #132A3B; color: #132A3B; padding: 13px 24px; font-size: 13px; }
.mhl-btn--ghost-dark:hover { background: #132A3B; color: #F4F1EC; opacity: 1; }
/* 明るい地の上で gold ボタンと高さを揃える枠線ボタン */
.mhl-btn--outline { background: none; border: 1px solid #132A3B; color: #132A3B; padding: 14px 25px; }
.mhl-btn--outline:hover { background: #132A3B; color: #F4F1EC; opacity: 1; }
.mhl-btn--lg { padding: 16px 26px; }
.mhl-btn--xl { padding: 15px 28px; }
.mhl-btn--sm { padding: 13px 22px; font-size: 13px; }
.mhl-btn--xs { padding: 13px 10px; font-size: 13px; letter-spacing: .04em; }
.mhl-btn--block { width: 100%; }
.mhl-btn--start { align-self: flex-start; }
.mhl-btn--submit { padding: 16px; font-size: 15px; letter-spacing: .06em; }
.mhl-btn--apply { padding: 15px 22px; width: 100%; }
.mhl-btn--cta { padding: 14px 22px; }
.mhl-btn--sns { gap: 9px; }

/* ==========================================================================
   5. メインビュー（TOP）
   ========================================================================== */
.mhl-mv { position: relative; }
/* CMSスライダーは管理画面で設定した高さ（--swiper-wrapper-height）を自身で持つため、
   枠側でアスペクト比・高さを固定しない（固定すると設定した高さがクリップされる）。
   min-height はCMS未読込時のフォールバック。 */
.mhl-mv__stage {
  position: relative;
  min-height: 300px;
  background: #22384A;
  border-bottom: 1px solid rgba(192, 138, 62, .4);
}
.mhl-mv__body { padding: 34px var(--mhl-pad-x) 44px; }
.mhl-mv__ttl {
  margin: 10px 0 0;
  color: #F4F1EC;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .02em;
}
.mhl-mv__lead {
  margin: 16px 0 22px;
  color: rgba(244, 241, 236, .82);
  font-size: 15px;
  line-height: 1.9;
  max-width: 640px;
}
.mhl-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.mhl-btns--gap10 { gap: 10px; }
.mhl-btns--center { justify-content: center; }

/* ==========================================================================
   6. 下層ページヒーロー
   ========================================================================== */
.page-hero--solid.mhl-hero {
  background: #132A3B;
  text-align: left;
  padding: 56px var(--mhl-pad-x) 50px;
}
.mhl-hero .page-hero__en {
  display: block;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: .01em;
  color: #F4F1EC;
}
.mhl-hero .page-hero__ja {
  display: block;
  margin: 14px 0 0;
  color: #C08A3E;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.6;
}
/* 下層ページのリード（ヒーローはタイトルのみとし、リードはセクションで見せる） */
.mhl-lead {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #3c4b58;
  max-width: 760px;
}
/* 1セクション内に見出しブロックを複数置く場合、続くブロックを罫線で区切る */
.mhl-block + .mhl-block {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid rgba(19, 42, 59, .12);
}
.mhl-wood .mhl-block + .mhl-block,
.mhl-bg-navy .mhl-block + .mhl-block { border-top-color: rgba(244, 241, 236, .2); }

/* ページ冒頭のリード＋CTAを中央に寄せる導入ブロック */
.mhl-intro { max-width: 940px; margin-inline: auto; text-align: center; }
.mhl-lead--center { max-width: none; }
/* キャッチコピー */
.mhl-catch {
  margin: 0;
  font-size: clamp(19px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #132A3B;
}

/* ==========================================================================
   7. お知らせ（TOP）
   ========================================================================== */
.mhl-news-ttl {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  letter-spacing: .1em;
  color: #132A3B;
}
.mhl-news-sub { margin: 6px 0 0; font-size: 13px; font-weight: 700; color: #6B4A2F; letter-spacing: .1em; }

.blog-list.mhl-news { display: flex; flex-direction: column; border: 0; }
.mhl-news .blog-list__item {
  display: flex;
  gap: 18px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(19, 42, 59, .1);
  align-items: baseline;
  flex-wrap: wrap;
}
.mhl-news .blog-list__date {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .08em;
  color: #8A8F94;
}
.mhl-news .blog-list__title { flex: 0 1 auto; font-size: 14px; font-weight: 400; line-height: normal; color: #132A3B; }

/* ==========================================================================
   8. カード類
   ========================================================================== */
/* 番号付き特徴カード（TOP） */
.mhl-fcard {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 30px;
  background: #fff;
  outline: 1px solid rgba(19, 42, 59, .14);
}
.mhl-fcard__num {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: #C08A3E;
}
.mhl-fcard__ttl { margin: 10px 0; font-size: 17px; line-height: 1.6; }
.mhl-fcard__txt { margin: 0; font-size: 13px; line-height: 1.95; color: #4b5b68; }
.mhl-fcard--cta.mhl-wood {
  justify-content: flex-end;
  outline: 0;
  background-color: #6B4A2F;
  background-image: linear-gradient(rgba(52, 33, 19, .72), rgba(52, 33, 19, .72)), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28499/bg_wood.jpg);
  background-size: cover;
  background-position: center;
}
.mhl-fcard--cta .mhl-fcard__txt { margin: 0 0 16px; color: rgba(244, 241, 236, .9); font-size: 14px; line-height: 1.95; }

/* 上ゴールド罫の特徴カード（ABOUT） */
.mhl-tcard { background: #fff; padding: 24px; border-top: 2px solid #C08A3E; }
.mhl-tcard__ttl { margin: 0 0 8px; font-size: 15px; line-height: normal; display: flex; gap: 8px; }
.mhl-tcard__check { flex: 0 0 auto; color: #C08A3E; font-size: 14px; line-height: 1.5; }
.mhl-tcard__txt { margin: 0; font-size: 13px; line-height: 1.95; color: #4b5b68; }

/* 事業案内バナーカード（TOP） */
.mhl-svc { display: block; background: #132A3B; text-align: left; }
.mhl-svc:hover { opacity: 1; }
.mhl-svc__img { aspect-ratio: 4/3; background: #22384A; overflow: hidden; }
.mhl-svc__img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mhl-svc:hover .mhl-svc__img img { transform: scale(1.05); }
.mhl-svc__body { padding: 18px 20px 22px; }
.mhl-svc__en {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;
  color: #C08A3E;
}
.mhl-svc__ja { margin: 8px 0 0; color: #F4F1EC; font-size: 15px; font-weight: 700; }

/* 勤務形態カード（RECRUIT） */
.mhl-wcard {
  background: #fff;
  outline: 1px solid rgba(19, 42, 59, .16);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mhl-wcard__head { display: flex; align-items: center; gap: 12px; }
.mhl-wcard__mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #C08A3E;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.mhl-wcard__ttl { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.5; }
.mhl-wcard__txt { margin: 0; font-size: 12.5px; line-height: 1.9; color: #4b5b68; }

/* タグ・チップ・タイル */
.mhl-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mhl-tag { border: 1px solid rgba(244, 241, 236, .5); color: #F4F1EC; font-size: 12px; padding: 6px 12px; }
.mhl-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.mhl-chips--center { justify-content: center; }
.mhl-chip {
  display: inline-flex;
  align-items: center;
  color: #132A3B;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
}
/* 和文の小ラベル（金地・白文字）。見出しの上に置く肩書き用 */
.mhl-taglabel {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  background: #C08A3E;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
}
/* 見出しと同じ行に並べる場合 */
.mhl-taglabel--inline { margin: 0; }

/* 定義カード（後見の種類・区分） */
.mhl-defcard { background: #F4F1EC; padding: 22px 24px; }
.mhl-defcard__ttl {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: normal;
}
.mhl-defcard__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #132A3B;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.mhl-defcard__txt { margin: 0; font-size: 13px; line-height: 1.95; color: #4b5b68; }

/* アイコン付きタイル */
.mhl-icontile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  outline: 1px solid rgba(19, 42, 59, .16);
}
.mhl-icontile__icon { flex: 0 0 auto; color: #C08A3E; font-size: 20px; line-height: 1; }
.mhl-icontile__txt { margin: 0; font-size: 14px; font-weight: 700; line-height: normal; }

.mhl-chip__check { color: #C08A3E; font-size: 12px; margin-right: 8px; }
.mhl-tile { background: #fff; padding: 14px 16px; font-size: 13px; outline: 1px solid rgba(19, 42, 59, .14); }
.mhl-tile--lg { padding: 16px 18px; font-size: 13.5px; }
.mhl-tile--center { text-align: center; }
/* チェック付きタイル（本部支援など） */
.mhl-tile--check { display: flex; align-items: center; gap: 10px; padding: 14px 18px; }
.mhl-tile--check i { flex: 0 0 auto; color: #C08A3E; font-size: 12px; }
.mhl-tile--bold { background: transparent; border: 1px solid rgba(19, 42, 59, .16); outline: 0; padding: 20px; font-size: 14px; font-weight: 700; }

/* スタッフカード（ABOUT） */
.mhl-staff { background: #F4F1EC; padding: 16px; text-align: center; }
.mhl-staff__img { aspect-ratio: 1; background: #fff; overflow: hidden; margin-bottom: 12px; }
.mhl-staff__img img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* 顔に寄った素材は cover だと下（あご・襟・肩）が枠外に切れてしまうため、全体を収める contain にする。
   これで他の写真と顔の大きさも揃う。素材の背景が白なので、左右に空く余白は
   枠の白地（.mhl-staff__img の background）と繋がって見える */
.mhl-staff__img--contain img { object-fit: contain; }
.mhl-staff__name { margin: 0; font-size: 14px; font-weight: 700; }
.mhl-staff__role { margin: 4px 0 0; font-size: 11px; color: #6B4A2F; }

/* 画像プレースホルダ・画像枠 */
.mhl-ph {
  background: #DCD7CE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8F94;
  font-size: 12px;
  text-align: center;
  padding: 14px;
}
.mhl-ph--sm { font-size: 11px; }
.mhl-figure { background: #DCD7CE; overflow: hidden; }
.mhl-figure--navy { background: #22384A; }
/* 隣のカラムの高さいっぱいまで伸びる写真。
   img を絶対配置にして画像の実寸が行の高さを押し広げないようにする */
.mhl-figure--fill { position: relative; height: 100%; min-height: 260px; }
.mhl-figure--fill img { position: absolute; inset: 0; }
.mhl-figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mhl-aspect-3-4 { aspect-ratio: 3/4; }
.mhl-aspect-4-3 { aspect-ratio: 4/3; }
.mhl-aspect-16-10 { aspect-ratio: 16/10; }

/* 採用バンド（TOP） */
.mhl-recruit-fig { min-height: 320px; background: #5B3F28; overflow: hidden; }
.mhl-recruit-fig img { display: block; width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.mhl-recruit-body { padding: 46px 40px; }

/* ==========================================================================
   9. エリア
   ========================================================================== */
.mhl-area-grid {
  display: grid;
  /* イラストを大きめに取り、右列は市町村名まで載せて高さ・情報量を釣り合わせる */
  grid-template-columns: minmax(280px, 330px) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
  margin-top: 26px;
}
.mhl-area-grid--start { align-items: center; gap: 50px; margin-top: 0; }
.mhl-area-grid--msg { grid-template-columns: minmax(180px, 260px) minmax(280px, 1fr); }
.mhl-area-grid--wide { grid-template-columns: minmax(200px, 320px) minmax(280px, 1fr); }
.mhl-area-map { padding: 8px 10px; }
.mhl-area-map img { display: block; width: 100%; height: auto; }
.mhl-area-list { display: flex; flex-direction: column; width: 100%; border-top: 1px solid rgba(19, 42, 59, .14); }
.mhl-area-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(19, 42, 59, .14);
}
.mhl-area-row__swatch { width: 14px; height: 14px; flex: none; align-self: center; }
.mhl-area-row__name { font-size: 15px; font-weight: 700; }
.mhl-area-row__towns {
  flex: 1 1 260px;
  font-size: 13px;
  line-height: 1.8;
  color: #4b5b68;
}
.mhl-sw-north { background: #91AE7E; }
.mhl-sw-central { background: #55AEB2; }
.mhl-sw-south { background: #FF9623; }

/* エリア一覧の下に置く「利用者様向け 実施地域」 */
.mhl-jissi { margin-top: 26px; background: #fff; padding: 22px 24px; }
.mhl-area-card { background: #fff; padding: 24px; border-left: 4px solid #C08A3E; }
.mhl-area-card--north { border-left-color: #91AE7E; }
.mhl-area-card--central { border-left-color: #55AEB2; }
.mhl-area-card--south { border-left-color: #FF9623; }
.mhl-area-card__ttl { margin: 0 0 8px; font-size: 17px; line-height: normal; }
.mhl-area-card__txt { margin: 0; font-size: 14px; line-height: 1.95; color: #3c4b58; }
.mhl-area-fig { aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; padding: 20px; }
.mhl-area-fig img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* ==========================================================================
   10. テーブル
   ========================================================================== */
.table-basic.mhl-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.mhl-table tr { border-top: 1px solid rgba(19, 42, 59, .16); }
.mhl-table tr:last-child { border-bottom: 1px solid rgba(19, 42, 59, .16); }
.table-basic.mhl-table th {
  text-align: left;
  padding: 15px 16px;
  width: 210px;
  background: #132A3B;
  color: #F4F1EC;
  font-weight: 700;
  vertical-align: top;
  border: 0;
}
.table-basic.mhl-table td {
  padding: 15px 16px;
  line-height: 1.9;
  color: #3c4b58;
  border: 0;
}
.table-basic.mhl-table--w200 th { width: 200px; }
.table-basic.mhl-table--w200 td { line-height: 1.95; }
.table-basic.mhl-table--light th { width: 180px; padding: 14px 16px; background: #F4F1EC; color: #132A3B; }
.table-basic.mhl-table--light td { padding: 14px 16px; line-height: 1.95; }

/* ==========================================================================
   11. ご利用の流れ（SERVICE）
   ========================================================================== */
/* 事業内容リード：左＝本文＋流れ＋注記／右＝写真 */
.mhl-svc-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: 32px;
  align-items: stretch;
}

.mhl-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 8px; }
.mhl-flow__item {
  flex: 1 1 150px;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, .15);
}
.mhl-flow__step {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .06em;
  color: #C08A3E;
}
.mhl-flow__ttl { margin: 10px 0 0; font-size: 14px; font-weight: 700; }
.mhl-flow__arrow { display: flex; align-items: center; color: #C08A3E; font-size: 13px; }

/* ==========================================================================
   12. 理念セクション（ABOUT）
   ========================================================================== */
.mhl-philo {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 64px var(--mhl-pad-x);
  overflow: hidden;
  background: #132A3B;
}
.mhl-philo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: grayscale(1) contrast(1.05) brightness(.8);
}
.mhl-philo__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .58) 46%, rgba(0, 0, 0, .2) 100%);
}
.mhl-philo__body { position: relative; max-width: 620px; }
.mhl-philo__ttl { margin: 0 0 20px; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.55; color: #F4F1EC; }
.mhl-philo__txt { margin: 0 0 16px; font-size: 14.5px; line-height: 2.1; color: rgba(244, 241, 236, .9); }
.mhl-philo__txt:last-child { margin-bottom: 0; }

/* 見出し（ダーク地の大見出し） */
.mhl-dark-ttl { margin: 0 0 12px; color: #F4F1EC; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.5; }
.mhl-dark-ttl--sm { font-size: clamp(22px, 2.4vw, 30px); }

/* ==========================================================================
   13. フォーム（CONTACT）
   ========================================================================== */
.mhl-form { display: flex; flex-direction: column; gap: 18px; }
.mhl-form__label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 700; }
.mhl-form__req { font-weight: 400; font-size: 11px; color: #C08A3E; }
.form-input.mhl-input,
.mhl-input {
  border: 1px solid #8A8F94;
  background: #fff;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 400;
  width: 100%;
  border-radius: 0;
}
.mhl-input:focus { border-color: #C08A3E; outline: 0; }
textarea.mhl-input { resize: vertical; }
.mhl-form__note { margin: 0; font-size: 11.5px; line-height: 1.9; color: #8A8F94; }

.mhl-tel-big {
  display: block;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: #132A3B;
  letter-spacing: .02em;
}
.mhl-tel-big--lg { font-size: clamp(30px, 3.6vw, 35px); }
.mhl-tel-big:hover { color: #C08A3E; opacity: 1; }

.mhl-stack { display: flex; flex-direction: column; gap: 34px; }
.mhl-stack--sm { gap: 24px; }
.mhl-stack--xs { gap: 16px; }
.mhl-stack--10 { gap: 10px; }
.mhl-stack--start { align-items: flex-start; }

/* 資料ダウンロード */
.mhl-doc {
  outline: 1px solid rgba(19, 42, 59, .14);
  background: #F4F1EC;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #132A3B;
  font-size: 13.5px;
}
.mhl-doc:hover { background: #fff; color: #132A3B; opacity: 1; }
.mhl-doc__num { font-family: "Alfa Slab One", serif; font-weight: 400; font-size: 13px; line-height: 1; color: #C08A3E; }
.mhl-doc__ext { margin-left: auto; font-size: 10px; color: #8A8F94; }

.mhl-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #132A3B;
  color: #132A3B;
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 700;
}
.mhl-link-btn:hover { background: #132A3B; color: #F4F1EC; opacity: 1; }
.mhl-link-btn--muted { border-color: #8A8F94; color: #8A8F94; }
.mhl-link-btn--muted:hover { background: #8A8F94; color: #fff; }
.mhl-link-btn--light { border-color: rgba(244, 241, 236, .55); color: #F4F1EC; }
.mhl-link-btn--light:hover { background: #F4F1EC; color: #132A3B; }

/* 地図 */
.embed.mhl-map { width: 100%; min-height: 280px; background: #DCD7CE; border: 1px solid rgba(19, 42, 59, .15); border-radius: 0; }
.embed.mhl-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.embed.mhl-map--sm { min-height: 260px; }
.mhl-maplink { margin: 10px 0 0; font-size: 12.5px; }
.mhl-maplink a { display: inline-flex; align-items: center; gap: 6px; color: #6B4A2F; }
.mhl-maplink a:hover { color: #C08A3E; opacity: 1; }
.embed.mhl-map--sm iframe { min-height: 260px; }

/* 注意書きボックス（SERVICE：木目地） */
.mhl-noticebox { padding: 28px 30px; }
.mhl-noticebox__ttl { margin: 0 0 10px; color: #F4F1EC; font-size: 17px; line-height: normal; }

/* 応募CTAボックス（RECRUIT） */
.mhl-applybox { background: #132A3B; padding: 34px 32px; }
/* 左＝説明文／右＝ボタン。ボタン側の幅を絞る */
.mhl-applybox__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: 28px;
  align-items: center;
}
.mhl-applybox__ttl { margin: 0 0 8px; color: #F4F1EC; font-size: 18px; line-height: normal; }
.mhl-applybox__txt { margin: 0; color: rgba(244, 241, 236, .8); font-size: 13px; line-height: 1.95; }
.mhl-ctabox { background: #132A3B; padding: 32px; }
.mhl-ctabox__txt { margin: 0; color: #F4F1EC; font-size: 15px; line-height: 1.95; }

/* ==========================================================================
   14. フッター
   ========================================================================== */
.footer-body.mhl-footer {
  margin-left: 250px;   /* サイドバー分（本文と同じ基準線に揃える） */
  background: #132A3B;
  padding: 52px var(--mhl-gutter) 30px;
  border-top: 4px solid #C08A3E;
}
.mhl-footer .mhl-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
  max-width: none;
  margin: 0;
  padding: 0;
}
.mhl-footer .mhl-footer__logo { margin: 0; display: inline-flex; }
.mhl-footer .mhl-footer__logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.mhl-footer .mhl-footer__info {
  margin: 16px 0 0;
  color: rgba(244, 241, 236, .78);
  font-size: 12.5px;
  line-height: 2;
}
.mhl-footer__head {
  margin: 0 0 14px;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .24em;
  color: #C08A3E;
}
.mhl-footer__list { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.mhl-footer__list--doc { gap: 9px; }
.mhl-footer__link { color: rgba(244, 241, 236, .85); font-size: 13px; }
.mhl-footer__list--doc .mhl-footer__link { font-size: 12.5px; }
.mhl-footer__link:hover { color: #C08A3E; opacity: 1; }
.mhl-footer__sns { display: flex; align-items: center; gap: 8px; color: #C08A3E; font-size: 12.5px; margin-top: 6px; }
.mhl-footer__sns i { font-size: 16px; }
.mhl-footer__map { margin-top: 34px; min-height: 220px; background: #DCD7CE; border-radius: 0; }
.mhl-footer__map iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }
.mhl-footer__copy {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 241, 236, .14);
  color: rgba(244, 241, 236, .5);
  font-size: 11px;
  line-height: normal;
  letter-spacing: .06em;
  text-align: center;
}

/* ページトップ */
.page-top.mhl-ptop .page-top__link { border-radius: 0; background: #132A3B; color: #F4F1EC; }
.page-top.mhl-ptop .page-top__link:hover { background: #C08A3E; color: #132A3B; opacity: 1; }

/* ==========================================================================
   15. 余白の微調整ユーティリティ（5px刻みに無い値。共通utilityと同じく最後に読み込む）
   ========================================================================== */
/* コンポーネント側（.mhl-xxx .yyy = 詳細度0,2,0）を確実に上書きするため
   クラスを2回重ねて詳細度を上げている（共通CSSのutility最終読み込みと同じ意図） */
.mhl-mb-0.mhl-mb-0 { margin-bottom: 0; }
.mhl-mb-6.mhl-mb-6 { margin-bottom: 6px; }
.mhl-mb-8.mhl-mb-8 { margin-bottom: 8px; }
.mhl-mb-10.mhl-mb-10 { margin-bottom: 10px; }
.mhl-mb-12.mhl-mb-12 { margin-bottom: 12px; }
.mhl-mb-14.mhl-mb-14 { margin-bottom: 14px; }
.mhl-mb-16.mhl-mb-16 { margin-bottom: 16px; }
.mhl-mb-18.mhl-mb-18 { margin-bottom: 18px; }
.mhl-mb-20.mhl-mb-20 { margin-bottom: 20px; }
.mhl-mb-22.mhl-mb-22 { margin-bottom: 22px; }
.mhl-mb-24.mhl-mb-24 { margin-bottom: 24px; }
.mhl-mb-26.mhl-mb-26 { margin-bottom: 26px; }
.mhl-mb-28.mhl-mb-28 { margin-bottom: 28px; }
.mhl-mb-34.mhl-mb-34 { margin-bottom: 34px; }
.mhl-mb-36.mhl-mb-36 { margin-bottom: 36px; }
.mhl-mt-10.mhl-mt-10 { margin-top: 10px; }
.mhl-mt-12.mhl-mt-12 { margin-top: 12px; }
.mhl-mt-14.mhl-mt-14 { margin-top: 14px; }
.mhl-mt-20.mhl-mt-20 { margin-top: 20px; }
.mhl-mt-26.mhl-mt-26 { margin-top: 26px; }
.mhl-mt-30.mhl-mt-30 { margin-top: 30px; }
.mhl-mt-36.mhl-mt-36 { margin-top: 36px; }
.mhl-gap-18.mhl-gap-18 { gap: 18px; }
.mhl-gap-16.mhl-gap-16 { gap: 16px; }
.mhl-gap-14.mhl-gap-14 { gap: 14px; }
.mhl-gap-10.mhl-gap-10 { gap: 10px; }

/* ==========================================================================
   16. レスポンシブ
   ========================================================================== */
/* 画面幅に応じたガター（セクションの左右余白） */
@media (max-width: 1279px) {
  :root { --mhl-gutter: 68px; }
}

/* サイドバー250pxが残る 900〜1100px では本文幅が足りず、
   マップ＋リストの2カラムが収まらないため1カラムにする */
@media (max-width: 1100px) {
  .mhl-area-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 20px; }
  .mhl-area-map img,
  .mhl-area-fig img { max-width: 420px; margin: 0 auto; }
  .mhl-area-fig { aspect-ratio: auto; padding: 0; }
  .mhl-svc-lead { grid-template-columns: 1fr; gap: 26px; }
  .mhl-figure--fill { height: auto; min-height: 0; aspect-ratio: 16/10; }
  .mhl-applybox__grid { grid-template-columns: 1fr; gap: 22px; }
  .mhl-contact-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 899px) {
  :root { --mhl-gutter: 20px; }

  .header-sidebar.mhl-side { display: none; }
  .mhl-topbar { display: flex; }
  .nav-toggle.mhl-toggle { display: flex; }
  .mhl-main { margin-left: 0; padding-top: 60px; }
  .mhl-sec[id] { scroll-margin-top: 70px; }

  .footer-body.mhl-footer { margin-left: 0; }
  /* SPはロゴ・住所を全幅、SITE MAP と DOCUMENTS を2カラムに並べる */
  .mhl-footer .mhl-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .mhl-footer .mhl-footer__col:first-child { grid-column: 1 / -1; }
  .mhl-cols--span2 { grid-column: auto; }
  .mhl-svc-lead { grid-template-columns: 1fr; gap: 26px; }
  .mhl-applybox__grid { grid-template-columns: 1fr; gap: 22px; }
  .mhl-figure--fill { height: auto; min-height: 0; aspect-ratio: 4/3; }
  .mhl-applybox { padding: 28px 22px; }
  /* SPの特徴カードは番号と見出しを横並びにして余白を詰める */
  .mhl-fcard:not(.mhl-fcard--cta) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    row-gap: 10px;
    min-height: 0;
    padding: 22px 20px 24px;
  }
  .mhl-fcard:not(.mhl-fcard--cta) .mhl-fcard__num { grid-area: 1 / 1; font-size: 26px; }
  .mhl-fcard:not(.mhl-fcard--cta) .mhl-fcard__ttl { grid-area: 1 / 2; margin: 0; }
  .mhl-fcard:not(.mhl-fcard--cta) .mhl-fcard__txt { grid-area: 2 / 1 / 3 / -1; }
  /* CTAカードは内容量に合わせた高さにする */
  .mhl-fcard--cta.mhl-wood {
    min-height: 0;
    justify-content: flex-start;
    padding: 22px 20px 24px;
  }
  .mhl-recruit-body { padding: 36px 20px; }
  /* デザイン原本は min-height:300px × aspect 16/7 で横スクロールが出るため、
     SPではアスペクト比だけで高さを決める */
  .mhl-mv__stage { min-height: 200px; }
  /* SPのメインビュー高さ。CMS側の style（85vh）より後に読まれるため、
     セレクタを1段深くして優先度を上げている */
  .mhl-mv__stage #main_slider.slider_wrapper { --swiper-wrapper-height: 40vh; }
  .mhl-area-grid { grid-template-columns: 1fr; gap: 30px; }
  .mhl-area-map { padding: 0 0 6px; }
  .mhl-area-map img { max-width: 340px; margin: 0 auto; width: 60%; }
  /* SPの見出しサイズ */
  .mhl-bar-ttl,
  .mhl-bar-ttl--lg { font-size: 18px; }
  .mhl-svcttl__ja { font-size: 18px; }
  .mhl-h3 { font-size: 15px; }
  .mhl-ctabox__txt { font-size: 14px; }
  .mhl-svcttl__num { width: 44px; height: 44px; font-size: 18px; }
  /* SPの中央揃えテキストは行末を揃えて文節で折る */
  .mhl-txt--center {
    text-align: center;
    text-wrap: balance;
    word-break: auto-phrase;
  }
  /* 代表挨拶の写真はSPで少し小さく */
  .mhl-area-grid--msg > .mhl-ph,
  .mhl-area-grid--msg > .mhl-figure { width: 80%; margin-inline: auto; }
  .mhl-area-fig { aspect-ratio: auto; padding: 0; }
  .mhl-area-fig img { max-width: 340px; margin: 0 auto; width: 60%; }
}

@media (max-width: 639px) {
  .mhl-sec,
  .mhl-sec--lg,
  .mhl-sec--60,
  .mhl-sec--58,
  .mhl-sec--48,
  .mhl-sec--44 { padding-top: 52px; padding-bottom: 52px; }
  .mhl-philo { min-height: 420px; padding-top: 56px; padding-bottom: 56px; }
  .mhl-flow__arrow { transform: rotate(90deg); justify-content: center; width: 100%; }
  .mhl-flow__item { flex: 1 1 100%; }
  .table-basic.mhl-table th,
  .table-basic.mhl-table td { display: block; width: 100%; }
  .table-basic.mhl-table--light th,
  .table-basic.mhl-table--light td { display: block; width: 100%; }
}
