@charset "UTF-8";
/* ライトテーマに切替 */
/* 追加 */
/* _reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

/* =========================================
   base/_base.scss  —  全体の土台（置き換え）
   ========================================= */
/* ---- Document basics ---- */
html,
body {
  background: #ffffff;
  color: #222222;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid #ff6a1a;
  outline-offset: 2px;
  border-radius: 6px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---- Typography base ---- */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  line-height: 1.9;
  color: #444;
}

/* アクセシビリティ用の隠しテキスト */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* =========================================
   Headings（共通）
   ========================================= */
/* ページ主見出し（Hero等） */
.page-title {
  display: inline-block;
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-size: clamp(28px, 4.4vw, 40px);
  color: #111;
  position: relative;
  padding-bottom: 0.4rem;
  text-wrap: balance;
  /* 対応ブラウザで綺麗に改行 */
  /* ブランドライン（下） */
  /* 中央寄せしたい場合に付与（任意） */
}
.page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 400px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a1a 0%, rgb(255, 205.5502183406, 179) 70%, rgba(255, 106, 26, 0) 100%);
}
.page-title.is-center {
  display: block;
  text-align: center;
}
.page-title.is-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* セクション見出し（ページ内ブロックタイトル） */
.section-title {
  margin: clamp(18px, 3vw, 28px) 0 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  font-size: clamp(22px, 3.2vw, 28px);
  color: #111;
  position: relative;
  padding-left: 0;
  /* 細い下線で上品に */
}
.section-title::after {
  content: "";
  display: block;
  margin-top: 8px;
  bottom: -6px;
  position: absolute;
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff6a1a, rgba(255, 106, 26, 0.4));
}
.section-title.is-center {
  text-align: center;
}
.section-title.is-center::after {
  margin-inline: auto;
}

/* 見出し直下のリード */
.lead {
  color: #666;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
  margin: 6px 0 0;
}

/* =========================================
   Misc（汎用ユーティリティ：必要最小限）
   ========================================= */
.hr-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 0;
  margin: 24px 0;
}

.text-center {
  text-align: center !important;
}

/* _layout.scss だけに置く（他では .container を書かない） */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  /* safe-area を含めた左右パディング（shorthand だと左右別値が不可なので個別指定） */
  padding-left: calc(var(--gutter-x) + var(--safe-left));
  padding-right: calc(var(--gutter-x) + var(--safe-right));
}

@media (min-width: 960px) {
  .container {
    padding-left: var(--gutter-x-lg);
    padding-right: var(--gutter-x-lg);
  }
}
/* 用途別の幅だけ modifier で */
.container--narrow {
  max-width: 880px;
}

.container--wide {
  max-width: 1280px;
}

.container--fluid {
  max-width: none;
}

main {
  min-height: 60vh;
}

/* _tokens.scss（なければ作成） */
:root {
  --container-max: 1120px;
  /* サイトの基準幅（1100/1120 のどちらかに統一） */
  --gutter-x: 20px;
  /* SP/タブの横余白 */
  --gutter-x-lg: 28px;
  /* PC の横余白 */
}

/* _tokens.scss など共通の場所 */
:root {
  /* セクションの縦余白（スマホでゆとり → PCで少し広げる） */
  --section-y: clamp(40px, 8vw, 80px);
  /* まずはスマホ基準で気持ち広め */
  --section-y-lg: clamp(56px, 6vw, 96px);
  /* PC */
}

@supports (padding: max(0px)) {
  :root {
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
  }
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  background: #ff6600;
  color: #fff;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

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

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

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

/* =========================================================
   Header (cleaned)
   - PCは水平ナビ＋右端ユーティリティ
   - SPは右スライドのドロワー、下部にCTAと言語切替
   - 既存のHTML構造にそのままフィット
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
  /* brand */
  /* 右端ユーティリティ（PC表示、SPはドロワー内へ移動） */
  /* 問い合わせボタン（PC） */
  /* 言語スイッチ（PCは控えめ） */
  /* ===== PC: 水平メニュー ===== */
  /* nav > ul.main-nav を想定 */
  /* ul.main-nav / ul.main-nav__list のどちらでも効く anchor スタイル */
  /* ドロップダウン（PC） */
  /* ===== ハンバーガー（SP表示） ===== */
  /* ===== SP: ドロワー ===== */
  /* PCでは .drawer-extra は常に非表示（保険） */
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 20px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .logo a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  line-height: 1;
}
.site-header .logo .brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.35);
  margin-right: 2px;
}
.site-header .logo .brand-jp {
  font-weight: 700;
  font-size: 0.92em;
  color: #444;
}
.site-header .logo .brand-en {
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 1.14em;
  color: #111;
}
.site-header .logo .brand-tagline {
  margin-left: 0.25rem;
  color: #777;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.site-header .header-utils {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-header .btn--cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.62rem 1.45rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to bottom, #ff7b26, #ff5a00);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.05s ease, opacity 0.2s, box-shadow 0.2s, background 0.2s;
  margin-top: 0 !important;
}
.site-header .btn--cta:hover {
  background: linear-gradient(to bottom, #ff8d40, #ff6600);
  opacity: 0.97;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
.site-header .lang-switch {
  display: inline-flex;
  gap: 2px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 2px;
}
.site-header .lang-switch .pill {
  padding: 0.38rem 0.6rem;
  line-height: 1;
  color: #444;
  background: transparent;
  border: 0;
  font-weight: 700;
}
.site-header .lang-switch .pill.is-active {
  color: #111;
  box-shadow: inset 0 -2px 0 #ff6a1a;
}
.site-header #global-nav {
  flex: 0 1 auto;
}
.site-header .main-nav {
  margin-left: 24px;
}
.site-header .main-nav__list {
  /* （ulに .main-nav__list を併用している場合の保険） */
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .main-nav > li > a,
.site-header .main-nav__list > li > a {
  color: #444;
  padding: 0.9rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-header .main-nav > li > a:hover,
.site-header .main-nav__list > li > a:hover {
  color: #111;
}
.site-header .main-nav > li > a.is-active,
.site-header .main-nav__list > li > a.is-active {
  color: #111;
  border-color: #ff6a1a;
}
.site-header .nav-group {
  position: relative;
}
.site-header .nav-group > .nav-sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  min-width: 240px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.site-header .nav-group > .nav-sub::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.site-header .nav-group > .nav-sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #222;
}
.site-header .nav-group > .nav-sub a:hover {
  background: rgba(255, 102, 0, 0.08);
}
.site-header .nav-group > .nav-sub a + a {
  margin-top: 2px;
}
.site-header .nav-group:hover > .nav-sub,
.site-header .nav-group:focus-within > .nav-sub,
.site-header .nav-group.is-hover > .nav-sub {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header .nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: #f7f7f8;
  color: #111;
  align-items: center;
  justify-content: center;
}
.site-header .nav-toggle .nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}
.site-header .nav-toggle .nav-toggle__bar::before, .site-header .nav-toggle .nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.site-header .nav-toggle .nav-toggle__bar::before {
  top: -6px;
}
.site-header .nav-toggle .nav-toggle__bar::after {
  top: 6px;
}
@media (max-width: 768px) {
  .site-header {
    /* 右側からドローインするパネル */
    /* 会社情報（トグル） */
    /* ドロワー下部（CTA + 言語切替） */
    /* オープン時の背面 */
    /* SPのヘッダー右側はハンバーガーだけ残す（言語はドロワーへ） */
  }
  .site-header .container {
    height: 56px;
    padding: 0 12px;
  }
  .site-header .only-desktop {
    display: none !important;
  }
  .site-header .nav-toggle {
    display: inline-flex;
  }
  .site-header .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 360px);
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 16px;
  }
  .site-header .main-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .site-header .main-nav > li > a,
  .site-header .main-nav__list > li > a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  .site-header .nav-group {
    width: 100%;
  }
  .site-header .nav-group.is-open-sub > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .site-header .nav-sub a {
    display: block;
    padding: 12px;
    border-radius: 8px;
    color: #222;
  }
  .site-header .nav-sub a + a {
    margin-top: 4px;
  }
  .site-header .drawer-extra {
    display: grid !important;
    gap: 12px;
    position: sticky;
    bottom: 0;
    padding: 12px 16px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 30%, #fff 100%);
  }
  .site-header .drawer-extra .btn--wide {
    justify-content: center;
    width: 100%;
  }
  .site-header .drawer-extra .lang-switch {
    display: inline-flex;
    justify-content: center;
    gap: 2px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 4px;
  }
  .site-header .drawer-extra .lang-switch .pill {
    padding: 0.6rem 1rem;
  }
  .site-header .drawer-extra .lang-switch .pill.is-active {
    color: #111;
    box-shadow: inset 0 -2px 0 #ff6a1a;
  }
  .site-header .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .site-header.is-open .main-nav {
    transform: translateX(0);
  }
  .site-header.is-open .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .site-header .header-utils {
    display: inline-flex !important;
    gap: 8px;
    margin-left: auto;
  }
  .site-header .header-utils .lang-switch {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .site-header .drawer-extra {
    display: none !important;
  }
}

/* ================= SP: 折りたたみ会社情報 ================= */
@media (max-width: 768px) {
  /* トリガー（会社情報） */
  .site-header .nav-group > a {
    position: relative;
    display: block;
    padding: 14px 38px 14px 14px;
    /* 右に矢印分の余白 */
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #222;
    z-index: 0;
  }
  /* 矢印（ボタン内に収める） */
  .site-header .nav-group > a::after {
    content: "";
    position: absolute;
    right: 14px;
    /* ← ここが right:-12px になっていたら上書き */
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-header .nav-group.is-open-sub > a::after {
    transform: rotate(-135deg);
    opacity: 0.85;
  }
  /* サブメニュー本体（閉時は完全に“無”に） */
  .site-header .nav-group > .nav-sub {
    position: static;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.2s ease, margin 0.2s ease, padding 0.2s ease, border-width 0.2s ease;
  }
  /* 開時 */
  .site-header .nav-group.is-open-sub > .nav-sub {
    margin: 6px 0 8px;
    padding: 6px;
    border: 1px solid var(--line);
    max-height: 60vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }
  .site-header .nav-group .nav-sub a {
    display: block;
    padding: 12px;
    border-radius: 8px;
    color: #222;
  }
  .site-header .nav-group .nav-sub a + a {
    margin-top: 4px;
  }
  /* 折りたたみ群の下に来る .drawer-extra との距離を一定に */
  .site-header .drawer-extra {
    margin-top: 14px;
  }
}
/* 便利クラス */
.only-desktop {
  display: inline-block;
}

.show-on-sp {
  display: none;
}

@media (max-width: 768px) {
  .show-on-sp {
    display: inline-flex;
  }
}
/* 背面スクロール抑止（JSが .no-scroll を付与） */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

/* ===== Lang switch — quiet segmented control ===== */
.site-header .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* ぴったり結合 */
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  /* 小さめ角丸で主張控えめ */
  background: #fff;
  overflow: hidden;
  /* 角丸内に収める */
}

.site-header .lang-switch .pill,
.site-header .lang-switch .seg {
  display: inline-flex;
  /* JP と EN がくっつかないよう “箱化” */
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 0.38rem 0.6rem;
  line-height: 1;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #666;
  background: transparent;
  border: 0;
  text-decoration: none;
  user-select: none;
}

.site-header .lang-switch .pill + .pill,
.site-header .lang-switch .seg + .seg {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  /* 中央の仕切り線 */
}

.site-header .lang-switch .pill:hover,
.site-header .lang-switch .seg:hover {
  color: #111;
  background: #f9f9fa;
}

.site-header .lang-switch .pill.is-active,
.site-header .lang-switch .seg.is-active {
  color: #111;
  background: #f6f7f8;
  /* ごく淡い面でアクティブを示す */
  box-shadow: inset 0 -2px 0 #ff6a1a;
  /* 下線だけブランド色でアクセント */
}

/* SPドロワー内は少しだけタップ幅を広げる */
@media (max-width: 768px) {
  .site-header .drawer-extra .lang-switch .pill,
  .site-header .drawer-extra .lang-switch .seg {
    min-width: 44px;
    padding: 0.55rem 0.9rem;
  }
}
/* ===== Dropdown (PC サブメニュー感を強化) ===== */
.site-header .nav-group {
  position: relative;
}

/* 親ラベルにチート矢印 */
.site-header .nav-group > a {
  position: relative;
  padding-right: 18px;
  /* 矢印分の余白 */
}

.site-header .nav-group:hover > a::after,
.site-header .nav-group.is-hover > a::after,
.site-header .nav-group:focus-within > a::after {
  transform: rotate(225deg);
  /* 開いたら上向きに */
  opacity: 0.9;
}

.site-header .nav-group:hover > .nav-sub,
.site-header .nav-group.is-hover > .nav-sub,
.site-header .nav-group:focus-within > .nav-sub {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

/* サブメニューの各項目 */
.site-header .nav-sub li {
  list-style: none;
}

.site-header .nav-sub li + li {
  margin-top: 2px;
}

.site-header .nav-sub a {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.94rem;
  /* 少し小さくして“サブ”らしく */
  line-height: 1.45;
  color: #222;
  white-space: nowrap;
}

/* ドット・アイコン風のプレフィックス（控えめ） */
.site-header .nav-sub a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7b26;
  /* ブランド系オレンジに寄せる */
  opacity: 0.55;
}

/* ホバー／アクティブ */
.site-header .nav-sub a:hover {
  background: rgba(255, 102, 0, 0.08);
}

.site-header .nav-sub a.is-active {
  font-weight: 700;
  background: rgba(255, 102, 0, 0.12);
}

@media (max-width: 768px) {
  .site-header .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88svw, 360px);
    /* ← ここが肝（“ちょい外”に押し出す） */
    transform: translateX(calc(100% + 1px));
    transition: transform 0.28s ease;
    /* 1px の境界線は影に置換（ボーダーは溢れの原因に） */
    border-left: 0;
    box-shadow: -1px 0 0 rgba(0, 0, 0, 0.08);
    /* 余白計算の安全策 */
    box-sizing: border-box;
    overflow-y: auto;
    /* 背景側に横スクロールを作らせない */
    contain: paint;
    /* Safariでも効く範囲で */
  }
  .site-header.is-open .main-nav {
    transform: translateX(0);
  }
}
/* =========================
   Footer (sharp & clean)
   ========================= */
.site-footer {
  --ft-bg: #fafafa;
  --ft-bar-bg: #fff;
  --ft-text: #444;
  --ft-muted: #767676;
  --ft-line: #ececec;
  --brand: #ff6a22;
  color: var(--ft-text);
  background: var(--ft-bg);
  border-top: 1px solid var(--ft-line);
  font-size: 14px;
  line-height: 1.8;
  /* ── 上段グリッド ───────────────────────── */
  /* ── 下段バー（コピーライト＋法的リンク） ───────────── */
  /* ── SP: 縦積みで“間延びしない” ───────────────── */
}
.site-footer .container {
  /* 既存の .container に合わせて適用されます */
}
.site-footer .footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.6fr;
  gap: clamp(16px, 3.2vw, 36px) clamp(24px, 4.2vw, 56px);
  padding-block: clamp(28px, 6vw, 56px);
}
.site-footer .footer__brand {
  display: grid;
  align-content: start;
  gap: 8px;
}
.site-footer .footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.site-footer .footer__logo .brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 1px 4px rgba(255, 102, 0, 0.25);
}
.site-footer .footer__logo .brand-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-footer .footer__tagline {
  color: var(--ft-muted);
  font-size: 12.5px;
}
.site-footer .footer__heading {
  margin: 0 0 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #222;
}
.site-footer .footer__nav,
.site-footer .footer__company {
  display: grid;
  align-content: start;
  gap: 6px;
}
.site-footer .footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.site-footer .footer__list a {
  color: var(--ft-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-footer .footer__list a:hover {
  color: #111;
  border-color: var(--ft-line);
}
.site-footer .footer__list a:active {
  opacity: 0.9;
}
.site-footer .footer__company {
  font-style: normal;
}
.site-footer .footer__company a {
  color: var(--ft-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.site-footer .footer__company a:hover {
  color: #111;
}
.site-footer .footer__company p {
  margin: 0 0 6px;
}
.site-footer .footer__bar {
  border-top: 1px solid var(--ft-line);
  background: var(--ft-bar-bg);
}
.site-footer .footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 12px;
}
.site-footer .footer__copy {
  color: var(--ft-muted);
  font-size: 12.5px;
  white-space: nowrap;
}
.site-footer .footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.site-footer .footer__legal a {
  color: var(--ft-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer .footer__legal a:hover {
  border-color: var(--ft-line);
}
.site-footer .footer__legal .sep {
  color: var(--ft-muted);
}
@media (max-width: 768px) {
  .site-footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: clamp(22px, 6vw, 36px);
  }
  .site-footer .footer__heading {
    margin-bottom: 8px;
  }
  .site-footer .footer__bar-inner {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-block: 10px;
  }
  .site-footer .footer__copy {
    order: 2;
  }
  .site-footer .footer__legal {
    order: 1;
  }
}

.fv {
  text-align: center;
  background: #fff;
}

.fv-title {
  color: #111;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0.005em;
}

.fv-lead {
  color: #666666;
  margin-top: 10px;
  font-size: clamp(14px, 1.6vw, 18px);
}

@media (max-width: 768px) {
  .fv {
    padding: 72px 12px 48px;
  }
}
.fv-slider {
  position: relative;
  overflow: hidden;
}
.fv-slider .fv-slide {
  position: relative;
}
.fv-slider .fv-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.fv-slider .fv-slide .fv-caption {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  max-width: 80%;
  line-height: 1.4;
}

/* 白 ↔ 薄グレーで交互に面分け（セクションが増えても自動で切替） */
main > section:nth-of-type(odd) {
  background: #fff;
}

/* これを置き換え：ショートハンド禁止＋grid除外 */
main > section:nth-of-type(even):not(.section--grid) {
  background-color: #f7f7f8;
}

/* 任意セクションに極薄方眼（あなたの調整値を既定に） */
.section--grid {
  --grid-bg: #fbfbfb;
  --grid-cell: 24px;
  --grid-cell-lg: 120px;
  --grid-line: rgba(0, 0, 0, .02);
  --grid-bold: rgba(0, 0, 0, .03);
  background-color: var(--grid-bg);
  background-image: linear-gradient(90deg, var(--grid-line) 1px, transparent 1px), linear-gradient(0deg, var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-bold) 1px, transparent 1px), linear-gradient(0deg, var(--grid-bold) 1px, transparent 1px);
  background-size: var(--grid-cell) var(--grid-cell), var(--grid-cell) var(--grid-cell), var(--grid-cell-lg) var(--grid-cell-lg), var(--grid-cell-lg) var(--grid-cell-lg);
}

.content .container {
  padding: 48px 16px;
}

.content h2 {
  color: #111;
  font-size: clamp(20px, 2.6vw, 28px);
  margin-bottom: 12px;
  font-weight: 700;
}

.content p {
  color: #333;
}

@media (max-width: 768px) {
  .content .container {
    padding: 40px 12px;
  }
}
/* ===== Services (2 cards) ===== */
.home-services .cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}

@media (max-width: 900px) {
  .home-services .cards {
    grid-template-columns: 1fr;
  }
}
.card--service {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.card--service .card__title {
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 2px 0 10px;
}

.card--service .card__list {
  margin: 0 0 14px;
  padding-left: 1.1em;
  color: #444;
}

.card--service .card__list li {
  list-style: disc;
  line-height: 1.9;
}

.card--service .card__actions {
  margin-top: 6px;
}

/* ===== Reasons (3 cards) ===== */
.reasons__grid {
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .reasons__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .reasons__grid {
    grid-template-columns: 1fr;
  }
}
.reason {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: clamp(16px, 2.2vw, 22px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.reason__icon {
  --sz: 38px;
  width: var(--sz);
  height: var(--sz);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd3b3, #ff9c66);
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 102, 0, 0.18);
  margin-bottom: 8px;
}

.reason__icon i {
  font-size: 18px;
  line-height: 1;
}

.reason__title {
  font-weight: 800;
  margin: 4px 0 6px;
}

/* ===== Steps (3) ===== */
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.step__num {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
}

/* ===== FAQ ===== */
.faq .faq__item {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  margin: 10px 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq .faq__a {
  padding: 0 16px 14px;
  color: #444;
}

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(90deg, #fff3eb, #ffe6d5);
  padding: clamp(28px, 4.2vw, 48px) 0;
}

.cta-band__inner {
  text-align: center;
}

.cta-band__title {
  font-weight: 900;
  font-size: clamp(20px, 3.2vw, 28px);
  margin: 0 0 6px;
}

.cta-band__lead {
  color: #555;
  margin: 0 0 14px;
}

/* Ghost button (透過境界の補助) */
.btn.btn--ghost {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
}

/* ===== Services (2 cards) ===== */
.home-services .cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}

@media (max-width: 900px) {
  .home-services .cards {
    grid-template-columns: 1fr;
  }
}
.card--service {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.card--service .card__title {
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 2px 0 10px;
}

.card--service .card__list {
  margin: 0 0 14px;
  padding-left: 1.1em;
  color: #444;
}

.card--service .card__list li {
  list-style: disc;
  line-height: 1.9;
}

.card--service .card__actions {
  margin-top: 6px;
}

/* ===== Reasons (3 cards) ===== */
.reasons__grid {
  display: grid;
  gap: clamp(16px, 2.6vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .reasons__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .reasons__grid {
    grid-template-columns: 1fr;
  }
}
.reason {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: clamp(16px, 2.2vw, 22px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.reason__icon {
  --sz: 38px;
  width: var(--sz);
  height: var(--sz);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd3b3, #ff9c66);
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 102, 0, 0.18);
  margin-bottom: 8px;
}

.reason__icon i {
  font-size: 18px;
  line-height: 1;
}

.reason__title {
  font-weight: 800;
  margin: 4px 0 6px;
}

/* ===== Steps (3) ===== */
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.step__num {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
}

/* ===== FAQ ===== */
.faq .faq__item {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  margin: 10px 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq .faq__a {
  padding: 0 16px 14px;
  color: #444;
}

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(90deg, #fff3eb, #ffe6d5);
  padding: clamp(28px, 4.2vw, 48px) 0;
}

.cta-band__inner {
  text-align: center;
}

.cta-band__title {
  font-weight: 900;
  font-size: clamp(20px, 3.2vw, 28px);
  margin: 0 0 6px;
}

.cta-band__lead {
  color: #555;
  margin: 0 0 14px;
}

/* Ghost button (透過境界の補助) */
.btn.btn--ghost {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
}

/* ===== こんな課題を解決します ===== */
.home-problems .problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

.home-problems .problem {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.home-problems .problem i {
  font-size: 22px;
  color: #ff6600;
  margin-bottom: 8px;
  display: inline-block;
}

.home-problems .problem h3 {
  font-weight: 800;
  margin: 6px 0;
}

.home-problems .problem p {
  color: #555;
  line-height: 1.8;
  margin: 0 0 8px;
}

.home-problems .problem .more {
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.home-problems .assure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: #444;
}

.home-problems .assure-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-problems .assure-list i {
  color: #ff6600;
}

/* ===== FAQ ===== */
.home-faq .faq details {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.home-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.home-faq summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
  transition: 0.2s ease;
}

.home-faq details[open] summary::after {
  transform: rotate(45deg);
  top: 0.8em;
}

.home-faq .faq__a {
  color: #555;
  line-height: 1.9;
  margin-top: 8px;
}

.home-faq .hl {
  font-weight: 800;
  color: #111;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .home-problems .problems-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .home-problems .problems-grid {
    grid-template-columns: 1fr;
  }
  .home-problems .assure-list {
    gap: 10px;
  }
}
/* === Home FAQ CTA の配置/余白調整 =============================== */
.home-faq {
  /* 質問同士の間隔も少し広げる */
  /* CTAを右寄せ＋上に余白。SPは中央寄せ */
}
.home-faq .faq details + details {
  margin-top: 12px;
}
.home-faq .section-cta {
  margin-top: clamp(18px, 3.2vw, 32px);
  display: flex;
  justify-content: flex-end;
  /* ← PCは右寄せ */
}
.home-faq .section-cta .btn {
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(255, 102, 0, 0.2);
}
@media (max-width: 768px) {
  .home-faq .section-cta {
    justify-content: center;
    /* ← SPは中央 */
    margin-top: 20px;
  }
}

/* ========= Photo band (背景画像＋PCだけ固定) ========= */
.section--photo {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0;
  color: #fff;
  /* 背景は ::before に重ねる（テキストは上） */
  /* 画像＋トーンの2レイヤー（PCは画像のみ fixed に） */
  /* PCのみ parallax風（1枚目のグラデはscroll、2枚目の写真だけfixed） */
  /* 中央レイアウト例 */
  /* 明るい面でも読めるように */
  /* 透明ボタン */
  /* 余白と配置（SPは中央） */
}
.section--photo > .container {
  position: relative;
  z-index: 1;
}
.section--photo::before {
  --photo: url("../img/bg/placeholder.png");
  /* HTMLのstyleで上書き */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.45) 100%), var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  /* SPは通常スクロール */
  background-attachment: scroll, scroll;
}
@media (min-width: 1024px) {
  .section--photo::before {
    background-attachment: scroll, fixed;
  }
}
.section--photo .photo-cta {
  text-align: center;
  max-width: 960px;
  margin-inline: auto;
}
.section--photo .section-title--light {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.section--photo .section-title--light::after {
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.85;
}
.section--photo .lead--light {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.section--photo .btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.section--photo .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.section--photo .section-cta {
  margin-top: clamp(16px, 3vw, 28px);
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .section--photo {
    /* 好みで right にしてもOK */
  }
  .section--photo .section-cta {
    justify-content: center;
  }
}

/* === Global container gutter (mobile-safe) === */
:root {
  --safe: 16px;
  /* PC 既定 */
}

@media (max-width: 768px) {
  :root {
    --safe: 12px;
  }
  /* SP 既定（好みに応じて 10–16px） */
}
/* main に横余白は持たせない（縦方向だけ必要なら padding-block を使う） */
main {
  padding: 0;
}

/* フルブリード系は相殺の負マージンを撤去（背景は wrapper が端まで伸びる） */
.fv--swiper,
.page-hero,
.section--wide {
  margin-left: 0;
  margin-right: 0;
}

/* Hero の縦だけゆったり（横ガターは .container が担保） */
.page-hero {
  background: linear-gradient(180deg, #fff, #f7f7f7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero > .container {
  padding-block: clamp(28px, 6vw, 72px);
  /* padding-inline は .container の共通設定をそのまま使う */
}

/* もし“中身も端まで”見せたいヒーローがあれば個別にクラスで */
.page-hero.is-full > .container {
  padding-inline: 0;
}

/* ============ Vision blocks ============ */
/* ミッションの値（アイコン付きカード） */
.vision-values {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}
.vision-values li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.vision-values h3 {
  font-weight: 800;
  margin: 6px 0 6px;
  font-size: 1.05rem;
  color: #111;
}
.vision-values p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}
.vision-values .vicon {
  --sz: 40px;
  width: var(--sz);
  height: var(--sz);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd3b3, #ff9c66);
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 102, 0, 0.18);
}
.vision-values .vicon i {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .vision-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .vision-values {
    grid-template-columns: 1fr;
  }
}
/* 事業領域（3カラムカード） */
.pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.pillar-card__icon {
  --sz: 44px;
  width: var(--sz);
  height: var(--sz);
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.22);
  margin-bottom: 8px;
}
.pillar-card__icon i {
  font-size: 20px;
}

.pillar-card__title {
  font-weight: 800;
  color: #111;
  margin: 4px 0 6px;
}

.pillar-card__text {
  color: #555;
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
/* 沿革（縦タイムライン） */
.timeline {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.08);
}

.timeline__item {
  position: relative;
  padding: 12px 0 12px 14px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6600;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.15);
}

.timeline__year {
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.timeline__body {
  color: #555;
  line-height: 1.9;
}

/* ポリシー（チェックの付いたシンプルリスト） */
.policy-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}

.policy-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  color: #333;
}

.policy-list i {
  color: #2e7d32;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .policy-list {
    grid-template-columns: 1fr;
  }
}
/* 会社概要ダイジェスト（DLグリッド） */
.facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}

.facts > div {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
}

.facts dt {
  font-weight: 700;
  color: #666;
}

.facts dd {
  margin: 2px 0 0;
  color: #222;
}

@media (max-width: 1024px) {
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .facts {
    grid-template-columns: 1fr;
  }
}
/* ========== Photo Hero (rich) ========== */
.section--photo.hero-rich {
  /* 既存の交互グレー背景や方眼紙を打ち消し */
  background: none !important;
  position: relative;
  isolation: isolate;
  padding-block: clamp(56px, 14vw, 180px);
  /* 背景写真 */
}
.section--photo.hero-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.55)), var(--photo) center/cover no-repeat;
  z-index: 0;
}

.hero-rich__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: clamp(12px, 5vw, 24px);
}

.hero-rich__kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-rich__title {
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-rich__lead {
  max-width: 860px;
  margin: 10px auto 22px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* --- chips（長丸ラベル） --- */
.hero-chips {
  list-style: none;
  margin: 18px auto 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  max-width: 980px;
}

.hero-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
  font-weight: 600;
  line-height: 1.2;
  /* 小さなオレンジの“点”でAMFらしさを添える */
}
.hero-chips .chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7b26;
  box-shadow: 0 0 0 3px rgba(255, 123, 38, 0.25);
}

/* --- CTA行 --- */
.hero-rich__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}

/* 白アウトラインのゴーストボタン（写真上専用） */
.section--photo .hero-rich__ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
}

.section--photo .hero-rich__ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* --- 下部の小バッジ --- */
.hero-badges {
  list-style: none;
  margin: 14px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-badges .badge {
  color: #fff;
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* --- モバイル微調整 --- */
@media (max-width: 768px) {
  .section--photo.hero-rich {
    padding-block: clamp(40px, 20vw, 120px);
  }
  .hero-chips .chip {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
  .hero-badges .badge {
    font-size: 0.84rem;
  }
}
.hero-rich__kicker {
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-rich__kicker.kicker--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* 小さなオレンジの“点”でAMFらしさを添える（任意） */
.hero-rich__kicker.kicker--pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7b26;
  box-shadow: 0 0 0 3px rgba(255, 123, 38, 0.24);
}

@media (max-width: 768px) {
  .hero-rich__kicker.kicker--pill {
    padding: 5px 10px;
  }
}
/* ===============================
   Hero rich（既存に上書きOK）
   影響範囲：.hero-rich 内だけ
=================================*/
.hero-rich {
  --chip-gap: 10px;
  --chip-pad: .6rem .9rem;
  --chip-bg: rgba(0, 0, 0, .28);
  --chip-line: rgba(255, 255, 255, .40);
  --chip-soft: rgba(255, 255, 255, .08);
  --text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

/* kicker（埋もれ対策・控えめカプセル） */
.hero-rich__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: var(--text-shadow);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-rich__kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ff7b26;
  box-shadow: 0 0 0 4px rgba(255, 123, 38, 0.22);
}

/* チップ列（今の並びのまま wrap して中央寄せ） */
.hero-rich__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--chip-gap);
}

/* ベースは “全部ピル” のまま、質感だけ上げる */
.hero-rich .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--chip-pad);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid var(--chip-line);
  border-radius: 999px;
  background: var(--chip-bg);
  text-shadow: var(--text-shadow);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ほんの差分用（任意でクラスを付けた時だけ表情が変わる） */
.hero-rich .chip--ghost {
  background: var(--chip-soft);
}

.hero-rich .chip--outline {
  background: rgba(255, 255, 255, 0.02);
}

.hero-rich .chip--dot::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: #ff7b26;
  box-shadow: 0 0 0 4px rgba(255, 123, 38, 0.2);
}

/* CTA ボタン並びの整え（高さ揃えと間隔だけ） */
.hero-rich__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.hero-rich__actions .btn {
  padding: 0.72rem 1.2rem;
}

/* 下の小バッジ（まとまり感だけ強化） */
.hero-rich__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 12px;
}

.hero-rich__badges .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  text-shadow: var(--text-shadow);
}

/* モバイル微調整（窮屈さを回避） */
@media (max-width: 480px) {
  .hero-rich .chip {
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
  }
  .hero-rich__badges .badge {
    padding: 0.38rem 0.7rem;
    font-size: 0.86rem;
  }
}
/* ===============================
   Hero rich（既存に上書きOK）
   影響範囲：.hero-rich 内だけ
=================================*/
.hero-rich {
  --chip-gap: 10px;
  --chip-pad: .6rem .9rem;
  --chip-bg: rgba(0, 0, 0, .28);
  --chip-line: rgba(255, 255, 255, .40);
  --chip-soft: rgba(255, 255, 255, .08);
  --text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

/* kicker（埋もれ対策・控えめカプセル） */
.hero-rich__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: var(--text-shadow);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-rich__kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ff7b26;
  box-shadow: 0 0 0 4px rgba(255, 123, 38, 0.22);
}

/* チップ列（今の並びのまま wrap して中央寄せ） */
.hero-rich__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--chip-gap);
}

/* ベースは “全部ピル” のまま、質感だけ上げる */
.hero-rich .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: var(--chip-pad);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid var(--chip-line);
  border-radius: 999px;
  background: var(--chip-bg);
  text-shadow: var(--text-shadow);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ほんの差分用（任意でクラスを付けた時だけ表情が変わる） */
.hero-rich .chip--ghost {
  background: var(--chip-soft);
}

.hero-rich .chip--outline {
  background: rgba(255, 255, 255, 0.02);
}

.hero-rich .chip--dot::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: #ff7b26;
  box-shadow: 0 0 0 4px rgba(255, 123, 38, 0.2);
}

/* CTA ボタン並びの整え（高さ揃えと間隔だけ） */
.hero-rich__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.hero-rich__actions .btn {
  padding: 0.72rem 1.2rem;
}

/* 下の小バッジ（まとまり感だけ強化） */
.hero-rich__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 12px;
}

.hero-rich__badges .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  text-shadow: var(--text-shadow);
}

/* モバイル微調整（窮屈さを回避） */
@media (max-width: 480px) {
  .hero-rich .chip {
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
  }
  .hero-rich__badges .badge {
    padding: 0.38rem 0.7rem;
    font-size: 0.86rem;
  }
}
:root {
  --brand: #ff6600;
  --line: rgba(0, 0, 0, .06);
  --muted: #666;
  --radius: 14px;
}

/* セクション余白はプロジェクトの規約に合わせてOK */
.targets {
  padding-block: clamp(28px, 6vw, 88px);
}

/* 見出し */
.targets__head {
  margin-bottom: clamp(18px, 3.2vw, 28px);
}

.targets__title {
  margin: 0 0 8px;
}

.targets__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* 2カラム本体 */
.targets__body {
  --gap-x: clamp(22px, 5vw, 56px);
  --gap-y: clamp(16px, 3vw, 24px);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.2fr);
  gap: var(--gap-y) var(--gap-x);
  align-items: start;
}

/* 左：写真 */
.targets__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.targets__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* 右：チップ + 右下CTA（columnレイアウト） */
.targets__side {
  display: grid;
  grid-template-rows: 1fr auto;
  /* 上：チップ群 / 下：CTA */
  gap: 16px;
  align-content: start;
  min-height: 100%;
  /* 画像の高さにだいたい寄り添う */
}

/* チップのグリッド（2×2・左寄せ） */
.targets__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px 20px;
  align-content: start;
}

.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.chip__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff8d40, var(--brand));
  box-shadow: 0 6px 14px rgba(255, 102, 0, 0.28);
}

.chip__label {
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* 右下CTA */
.targets__cta {
  justify-self: start;
  /* PC時：右カラムの左寄せ（お好みで end でもOK） */
}

/* レスポンシブ（縦積み） */
@media (max-width: 1024px) {
  .targets__body {
    grid-template-columns: 1fr;
  }
  .targets__chips {
    grid-template-columns: 1fr;
  }
  .targets__cta {
    justify-self: center;
  }
  /* SPは中央に */
}
@media (prefers-reduced-motion: reduce) {
  .chip,
  .chip:hover {
    transition: none;
    transform: none;
  }
}
/* ===== “私たちなら解決できます” ブリッジカード ===== */
.targets__bridge {
  --pad: clamp(16px, 2.4vw, 24px);
  margin-top: clamp(18px, 3vw, 28px);
  padding: var(--pad);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* ─ Head（タイトル + サブ） */
.bridge__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 10px;
}

.bridge__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.bridge__title .ok {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.bridge__title .ok::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.14);
}

.bridge__kicker {
  margin: 0;
  color: var(--muted, #666);
  font-size: 0.95rem;
}

/* ─ Reasons（2カラム） */
.bridge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.reasons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.reasons li {
  position: relative;
  padding-left: 1.25em;
  line-height: 1.75;
}

.reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.18);
}

/* ほんのり強調（下線＆太字） */
.em {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 102, 0, 0.32);
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
}

/* ─ Foot（注釈 + CTA） */
.bridge__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.bridge__note {
  margin: 0;
  color: var(--muted, #666);
  font-size: 0.93rem;
}

/* ─ レスポンシブ */
@media (max-width: 960px) {
  .bridge__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .bridge__grid {
    grid-template-columns: 1fr;
  }
  .bridge__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .bridge__foot .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ==== bridge: ヘッダーを縦スタック & サブ感を強化 ==== */
.targets__bridge .bridge__head {
  display: block;
  /* 横並び → 縦積みに */
  margin-bottom: 8px;
}

.targets__bridge .bridge__title {
  margin: 0 0 4px;
  /* タイトルとkickerを近づける */
  font-weight: 800;
  letter-spacing: 0.01em;
}

.targets__bridge .bridge__kicker {
  margin: 0;
  /* 余白を詰める */
  font-size: 0.92rem;
  /* ワンサイズ落とす */
  color: var(--muted, #666);
  /* トーンを落として副見出し化 */
}

/* ==== bridge: タイトルのアクセント（丸ピン → 下線バー） ==== */
.targets__bridge .bridge__title .ok {
  position: relative;
  padding-bottom: 4px;
}

.targets__bridge .bridge__title .ok::before {
  content: none;
  /* 丸を廃止 */
}

.targets__bridge .bridge__title .ok::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  /* セクション見出しと同系の短いバー */
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff8d40, #ff6600);
  box-shadow: 0 1px 0 rgba(255, 102, 0, 0.15);
}

/* ==== bridge: 注釈とCTAを縦配置（PCもSPも同じレイアウト） ==== */
.targets__bridge .bridge__foot {
  display: flex;
  flex-direction: column;
  /* 常に縦並び */
  align-items: flex-start;
  gap: 0;
  /* 指定どおりギャップ0 */
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.targets__bridge .bridge__foot .btn {
  margin-top: 6px;
  /* 注釈との最小距離だけ足す */
}

/* === Ads media block =================================================== */
.ads-media__grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 960px) {
  .ads-media__grid {
    grid-template-columns: 1.1fr 0.9fr;
    /* 左：媒体 / 右：解決＋CTA */
    gap: 36px;
  }
}

/* チップ（オレンジ差し色） */
.ads-media__chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 960px) {
  .ads-media__chips {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.chip {
  display: flex;
  align-items: baseline;
  gap: 10px 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.25);
  flex: 0 0 auto;
  margin-top: 0.35em;
}

.chip__title {
  font-weight: 800;
  color: #222;
}

.chip__meta {
  color: var(--muted, #666);
  margin-left: 0.25em;
}

/* 右カラム */
.ads-media__side {
  display: grid;
  gap: 14px;
}

.ads-media__sub {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(16px, 1.8vw, 18px);
}

.ads-media__cta {
  margin-top: 6px;
}

.section-head .note {
  margin-top: 6px;
}

/* =========================================================
   Buttons & CTA — clean sheet
   どのページでも一貫して“オレンジボタン”に統一
   ======================================================= */
/* Brand */
/* ========== Button base ================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.05s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn:disabled,
.btn[aria-disabled=true] {
  opacity: 0.55;
  pointer-events: none;
}

/* sizes */
.btn--lg {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.btn--block {
  width: 100%;
}

/* アイコン位置調整（任意） */
.btn i,
.btn svg {
  font-size: 1.1em;
  line-height: 1;
}

.btn .icon-left {
  margin-right: 0.4em;
}

.btn .icon-right {
  margin-left: 0.4em;
}

/* 画像背景でアウトラインにしたい“ときだけ”使う */
.btn--outline {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: none !important;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #fff !important;
}

/* ========== CTA block =================================== */
.cta {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(28px, 6vw, 72px) 16px;
}

.cta__lead {
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #111;
}

/* A) 無地のオレンジ帯 */
.cta--band {
  background: radial-gradient(40% 60% at 50% 40%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, #ff8d40, #ff6600);
}

.cta--band .cta__lead {
  color: #222;
  text-shadow: none;
}

/* B) 画像背景（薄い黒ベール＋白文字） */
.cta--img {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35)), url("../img/bg/cta-bg.png");
  /* 差し替え可 */
  background-size: cover;
  background-position: 50% 45%;
  background-attachment: fixed;
  /* iOSは下のメディアクエリで無効化 */
}

.cta--img .cta__lead {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* モバイルは parallax を無効化（カクつき対策） */
@media (max-width: 768px) {
  .cta--img {
    background-attachment: scroll;
    background-position: 50% 50%;
  }
}
/* === どこに置いても“オレンジボタン”に統一 ===================== */
/* CTA 内のボタン装飾を強制的にオレンジへ（以前の上書きを抑える） */
.cta .btn,
.cta--band .btn,
.cta--img .btn {
  color: #fff;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  border: 0;
}

/* （必要時のみ）画像CTAでアウトラインにしたいときは
   <a class="btn btn--lg btn--outline">…</a> を明示的に付けて使う */
/* ===== Section system (共通レイアウト) ===== */
/* _sections.scss（ここが唯一の .section） */
.section {
  padding-block: var(--section-y);
}

@media (min-width: 960px) {
  .section {
    padding-block: var(--section-y-lg);
  }
}
.section__hd {
  margin-bottom: clamp(16px, 3.2vw, 28px);
}

.section__title {
  font-size: clamp(18px, 3.6vw, 28px);
}

.section__lead {
  color: #555;
  margin-top: 0.5rem;
}

/* 状況に応じて使う modifier（必要なときだけ） */
.section--tight {
  --section-y: clamp(28px, 6.5vw, 56px);
}

.section--loose {
  --section-y: clamp(56px, 9vw, 120px);
}

.section--no-top {
  padding-top: 0;
}

.section--no-bottom {
  padding-bottom: 0;
}

.section--muted {
  background: #f6f7f9;
}

.section__inner {
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding-inline: clamp(16px, 3.8vw, 28px);
}

/* 汎用カード（必要に応じて各所で流用可） */
.panel, .service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ===== Home: Services ===== */
.home-services__grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  display: grid;
  gap: clamp(10px, 1.6vw, 14px);
}

.service-card__title {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
}

.service-card__list {
  margin: 2px 0 clamp(10px, 1.6vw, 14px);
  padding: 0;
  list-style: none;
}
.service-card__list li {
  position: relative;
  padding-left: 1.4em;
  line-height: 1.8;
}
.service-card__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #ff6600;
  font-size: 0.9em;
}

/* ゴーストボタン（カード内の“詳しく見る”想定） */
.btn--ghost {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.08s ease;
}
.btn--ghost:hover {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* スマホだけ見出し中央寄せが映える帯 */
@media (max-width: 768px) {
  .home-intro .page-title,
  .home-services .section-title {
    text-align: center;
  }
  .home-intro .page-title::after,
  .home-services .section-title::after {
    margin-inline: auto;
  }
}
/* セクション内の基本リズム（必要なら） */
.section > .container > * + * {
  margin-top: 18px;
}

@media (min-width: 768px) {
  .section > .container > * + * {
    margin-top: 22px;
  }
}
/* 見出しまわりを少し大きめに */
.section .section-title {
  margin-bottom: clamp(14px, 3.5vw, 20px);
}

/* =========================================================
   FV Swiper – soft fade, slow zoom, dreamy caption
   ---------------------------------------------------------
   1) キャプションは「常に中央下」固定（全スライド共通）
   2) 画像はゆっくり微ズーム
   3) オーバーレイはスライドごとに差し替え
   4) is-light（白パネル） / is-contrast（白文字のみ）で切替
   ========================================================= */
.fv--swiper {
  position: relative;
  /* ---- サイズ ---- */
  /* ---- スライド基礎 ---- */
  /* ---- テーマ切替 ---- */
  /* 透明パネル＋白文字（背景を暗くする前提） */
  /* ガラス調の白パネル（明るい背景用） */
  /* ---- スライド別オーバーレイ ---- */
  /* ---- ページネーション（Swiper標準上書き） ---- */
  /* ---- SP調整 ---- */
  /* ---- 動き軽減 ---- */
}
.fv--swiper .swiper {
  height: clamp(360px, 48vw, 560px);
}
.fv--swiper .swiper-wrapper,
.fv--swiper .swiper-slide {
  height: 100%;
}
.fv--swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  /* 画像：ゆるいズーム */
  /* オーバーレイ（各スライド専用の背景を当てる） */
  /* ---- キャプション：常に中央下固定 ---- */
  /* 見出しテキスト（ドラマチック入場） */
  /* 任意：左右寄せクラス（位置は中央下のまま、整列だけ変える） */
}
.fv--swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 7.2s ease-out;
  will-change: transform;
}
.fv--swiper .swiper-slide.swiper-slide-active img {
  transform: scale(1.03);
}
.fv--swiper .swiper-slide .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.fv--swiper .swiper-slide .caption {
  position: absolute;
  bottom: max(8%, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
  pointer-events: none;
  /* テキスト以外はクリック透過 */
}
.fv--swiper .swiper-slide .caption .container {
  max-width: min(96vw, 1100px);
  margin: 0 auto;
  padding-inline: clamp(12px, 5vw, 24px);
  text-align: center;
  /* 既定は中央寄せ */
}
.fv--swiper .swiper-slide .caption__text {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  pointer-events: auto;
  /* タイポ */
  font-weight: 900;
  letter-spacing: 0.04em;
  /* 入場で .02em に締める */
  line-height: 1.18;
  font-size: clamp(24px, 4.8vw, 56px);
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55), 0 0 3px rgba(0, 0, 0, 0.85);
  -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 0.3rem 0.6rem;
  /* 初期は見えない＆少しブラー（JSで .is-show を後付け） */
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), letter-spacing 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, filter, transform;
  text-wrap: balance;
}
.fv--swiper .swiper-slide .caption__text.is-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-50px);
  letter-spacing: 0.02em;
}
.fv--swiper .swiper-slide.is-left .caption .container {
  text-align: left;
}
.fv--swiper .swiper-slide.is-right .caption .container {
  text-align: right;
}
.fv--swiper .swiper-slide.is-center .caption .container {
  text-align: center;
}
.fv--swiper .swiper-slide.is-contrast .caption__text {
  background: none;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55), 0 0 3px rgba(0, 0, 0, 0.85);
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.28);
  border: 0;
  box-shadow: none;
  padding: 0.3rem 0.6rem;
}
.fv--swiper .swiper-slide.is-light .caption__text {
  color: #222;
  text-shadow: none;
  -webkit-text-stroke: 0;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px) saturate(1.08);
  padding: 18px 22px;
  border-radius: 14px;
}
.fv--swiper .slide--cuisine .overlay {
  /* 下を軽く暗くして白文字を映えさせる */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 60%, transparent 100%);
}
.fv--swiper .slide--handshake .overlay {
  /* 右側をしっかり暗く＋上から薄いベールで均し */
  background: linear-gradient(to left, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.24) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 65%), linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 55%);
}
.fv--swiper .slide--exterior .overlay {
  /* 左から暖色のブランドベール → 右で透明 */
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.35) 0%, rgba(255, 102, 0, 0.12) 28%, transparent 60%);
}
.fv--swiper .swiper-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(8px);
  width: auto !important;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 10px 20px;
}
.fv--swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(0, 0, 0, 0.25);
  margin: 0 4px !important;
}
.fv--swiper .swiper-pagination-bullet-active {
  background: #ff6600;
  transform: scale(1.25);
}
@media (max-width: 768px) {
  .fv--swiper .swiper {
    height: clamp(280px, 58vw, 420px);
  }
  .fv--swiper .caption__text {
    font-size: clamp(18px, 5.2vw, 28px);
  }
  .fv--swiper .swiper-slide.is-light .caption__text {
    background: rgba(255, 255, 255, 0.52);
    padding: 14px 16px;
    border-radius: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv--swiper .swiper-slide {
    transition: none;
  }
  .fv--swiper .swiper-slide img {
    transition: none;
    transform: none !important;
  }
  .fv--swiper .caption__text {
    transition: none;
    opacity: 1;
    filter: none;
    transform: none;
    letter-spacing: 0.02em;
  }
}

/* ===== SP: caption と pagination の干渉を解消 & 目立ちすぎ調整 ===== */
@media (max-width: 768px) {
  .fv--swiper {
    /* キャプションの下にドット分の余白を作る（iPhoneのセーフエリア考慮） */
    /* ドットのパネルを小さく・薄く・下げる */
    /* ドット自体も控えめに */
  }
  .fv--swiper .swiper-slide .caption {
    padding-bottom: max(56px, 12vw, env(safe-area-inset-bottom));
  }
  .fv--swiper .swiper-pagination {
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 50%;
    background: rgba(255, 255, 255, 0.38);
    /* 目立ち過ぎない薄さ */
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 999px;
    width: auto !important;
    z-index: 4;
    /* キャプションの下に潜らないように */
  }
  .fv--swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 3px !important;
    opacity: 1;
    background: rgba(0, 0, 0, 0.25);
  }
  .fv--swiper .swiper-pagination-bullet-active {
    background: #ff6600;
    /* ブランド色 */
    transform: none;
    /* スケールアップをやめて控えめに */
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
  }
}
/* ===== 下層共通（ヒーロー/パンくず/セクション/カード/表） ===== */
/* ヒーロー帯（背景と罫線はこのままでOK） */
.page-hero {
  background: linear-gradient(180deg, #fff, #f7f7f7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* コンテンツの器：上下はゆったり、左右は安全マージンを確保 */
.page-hero > .container {
  max-width: 1120px;
  margin: 0 auto;
  /* 上下だけ可変 */
  padding-block: clamp(72px, 6vw, 72px);
  /* 左右はスマホでも必ず余白を確保（ノッチ対応） */
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  /* 他ルールのmarginをリセット */
}
.page-hero > .container .page-title {
  margin: 0 0 0.5rem;
}
.page-hero > .container .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}
.page-hero > .container h1 {
  font-size: clamp(22px, 4.4vw, 40px);
  letter-spacing: 0.02em;
}
.page-hero > .container .lead {
  margin-top: 0.75rem;
  color: #555;
  font-size: clamp(14px, 2.6vw, 18px);
}

.breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.breadcrumb .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #666;
}
.breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: #aaa;
}
.breadcrumb a {
  color: #666;
}
.breadcrumb a:hover {
  color: #111;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* ===== Cards (media) ============================================ */
/* グリッド全体（2列→SPで1列） */
.cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.card {
  grid-column: span 6;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* 本文 */
.card__body {
  padding: clamp(16px, 2.2vw, 24px);
  display: flex;
  /* ← ボタンを下に寄せるため */
  flex-direction: column;
}

.card__title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 800;
}

.card__lead {
  margin: 0 0 12px;
  color: #555;
}

/* ボタン配置：PCは右、SPは中央 */
.card__body .btn {
  align-self: flex-end;
  margin-top: 14px;
}

/* 画像付きカード */
.card--media {
  display: grid;
  grid-template-columns: 1fr 42%;
  align-items: stretch;
  /* ← 画像カラムをカード高にストレッチ（重要） */
  gap: 0;
}

/* 画像側 */
.card__media {
  margin: 0;
  /* ← figure 既定の margin を打ち消す（重要） */
  display: block;
  height: 100%;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SP（～768px）============================================= */
@media (max-width: 768px) {
  .card {
    grid-column: span 12;
  }
  .card--media {
    grid-template-columns: 1fr;
    /* 1列 */
  }
  .card--media .card__media {
    order: -1;
    /* 画像→本文の順 */
    height: auto;
    aspect-ratio: 16/9;
    /* 使い勝手の良い比率に固定 */
  }
  .card__body .btn {
    align-self: center;
  }
}
@media (max-width: 768px) {
  .card {
    grid-column: span 12;
  }
  /* 1列 */
}
.card--media {
  --body-min: 240px;
}

/* ===== Service cards – spacing polish (追加パッチ) ===== */
.cards.cards--media .card__body {
  /* 本文全体の余白を強めに＆端末に合わせて可変 */
  --card-space: clamp(18px, 2.4vw, 28px);
  padding: var(--card-space);
  /* 要素間の基本ギャップ（タイトル・リード・リスト・ボタン） */
  gap: clamp(10px, 1.6vw, 16px);
}

/* タイトルまわりの余白を少し増やす */
.cards.cards--media .card__title {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
}

/* リード文の下に余白を追加して呼吸させる */
.cards.cards--media .card__lead {
  margin: 0 0 clamp(10px, 1.6vw, 16px);
  line-height: 1.85;
  color: #555;
}

/* 箇条書き同士の間隔を少し広げる（マーカーは現状維持） */
.cards.cards--media .checklist li + li {
  margin-top: clamp(6px, 1vw, 10px);
}

/* ボタンは下寄せのまま、上にゆとりを足す */
.cards.cards--media .card__body .btn {
  margin-top: clamp(12px, 1.6vw, 18px);
  align-self: flex-end;
  /* 右寄せのまま。中央にしたい場合は center に変更 */
}

/* SPは少しだけ更にゆったり（好みで数値を微調整してください） */
@media (max-width: 768px) {
  .cards.cards--media .card__body {
    --card-space: clamp(20px, 5vw, 26px);
    gap: clamp(12px, 3vw, 18px);
  }
  /* 中央寄せにしたい場合はこの1行だけ切り替え */
  /* .cards.cards--media .card__body .btn { align-self: center; } */
}
/* ===== Brand checklist (復活) ===== */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  /* ドット分のインデント */
  line-height: 1.9;
}

/* ブランドドット（小さなハイライト付） */
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  /* ベースライン合わせ */
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9a4d, #ff6600);
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12);
  /* ほんのり光輪 */
}

/* ちょい詰めたい時は .checklist--tight を併用 */
.checklist--tight li {
  padding-left: 1.4rem;
}

.checklist--tight li::before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

/* 画像や濃色背景上（例：.cta--img 等）での見え方調整 */
.cta--img .checklist li::before,
.section--dark .checklist li::before {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
  /* ハローを白寄りに */
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 14px 16px;
  vertical-align: top;
}

.table th {
  width: 200px;
  background: #fafafa;
  color: #333;
  font-weight: 600;
}

.table tr + tr th,
.table tr + tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6600;
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  color: #111;
  background: #fff;
}

/* ===== Service Pages ===== */
.page .lead {
  margin-top: 8px;
}

.page .section-title {
  font-size: clamp(20px, 3.6vw, 28px);
  font-weight: 800;
  margin-bottom: 18px;
}

.page .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page .tags li {
  background: #f5f5f7;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 8px 12px;
}

.page .grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .page .grid-3 {
    grid-template-columns: 1fr;
  }
}
.page-services .cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .page-services .cards {
    grid-template-columns: 1fr;
  }
}
.page-services .card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.page-services .card__title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
}

.page-services .card__lead {
  color: #555;
  margin-bottom: 10px;
}

.page-services .checklist {
  margin: 10px 0 16px;
}

.page-services .checklist li::before {
  content: "✔";
  color: #ff6600;
  margin-right: 0.4em;
}

.page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: #ff6600;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  margin-top: 12px;
}

.page .btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.page .btn--ghost {
  background: #fff;
  color: #ff6600;
  border: 1px solid #ff6600;
}

.page .btn--lg {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

.page-service .feature {
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.page-service .price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .page-service .price-table {
    grid-template-columns: 1fr;
  }
}
.page-service .plan {
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  text-align: center;
}

.page-service .plan--rec {
  border-color: #ff6600;
  box-shadow: 0 10px 24px rgba(255, 102, 0, 0.12);
}

.page-service .plan .price {
  font-size: clamp(22px, 3.6vw, 28px);
  font-weight: 800;
  margin: 0.2rem 0 0.6rem;
}

.page-service .note {
  margin-top: 6px;
  color: #777;
  font-size: 0.95rem;
}

.page .process {
  counter-reset: step;
  display: grid;
  gap: 10px;
}

.page .process li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
}

.page .process li::before {
  counter-increment: step;
  content: counter(step) ".";
  color: #ff6600;
  font-weight: 800;
  margin-right: 0.5em;
}

.page .faq details {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}

.page .faq details + details {
  margin-top: 10px;
}

.page .faq summary {
  cursor: pointer;
  font-weight: 700;
}

.page .faq p {
  margin-top: 6px;
  color: #555;
}

.page .cta {
  text-align: center;
  padding: clamp(24px, 6vw, 48px) 0;
}

.page .cta__lead {
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== Services (PCでの行長を抑える & メディアカード) ===== */
.container--narrow {
  max-width: 960px;
  margin-inline: auto;
}

.page-services .cards--media {
  display: grid;
  gap: 24px;
}

.page-services .card--media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  /* 説明:画像 = 6:4 程度 */
  align-items: center;
  gap: 24px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  padding: clamp(16px, 2.5vw, 24px);
}

.page-services .card__title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
}

.page-services .card__lead {
  color: #555;
  margin-bottom: 10px;
}

.page-services .checklist {
  margin: 10px 0 16px;
}

.page-services .checklist li::before {
  content: "✔";
  color: #ff6600;
  margin-right: 0.4em;
}

.page-services .card__media {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
}

.page-services .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像未準備のときはグラデで“それっぽく”見せる */
.page-services .card__media.is-placeholder {
  background: linear-gradient(135deg, #f8f9fb, #eef2f6);
}

.page-services .card__media.is-website {
  background: linear-gradient(120deg, #fff2e7 0%, #ffe0cc 40%, #ffd4b8 100%);
}

.page-services .card__media.is-ads {
  background: radial-gradient(120% 120% at 0% 0%, #e8f3ff 0%, #d7ecff 40%, #d6f4ee 100%);
}

/* ===== Services > Reasons（整列きれい／コーポレート寄り） ===== */
.page-services .reasons__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.page-services .reason {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  /* アイコン左・テキスト右でベースラインを揃える */
  display: grid;
  grid-template-columns: 40px 1fr;
  /* 左：アイコン / 右：テキスト */
  column-gap: 12px;
  align-items: start;
}

.page-services .reason__icon {
  --sz: 36px;
  width: var(--sz);
  height: var(--sz);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd3b3, #ff9c66);
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 102, 0, 0.18);
  /* 見出しのベースラインと揃えるため少しだけ上に */
  grid-row: 1/span 2;
  align-self: start;
  margin-top: 2px;
}

.page-services .reason__icon i {
  font-size: 18px;
  line-height: 1;
}

.page-services .reason h3 {
  margin: 0 0 6px;
  line-height: 1.2;
  font-weight: 800;
}

.page-services .reason p {
  margin: 0;
  max-width: 42ch;
  /* 読みやすい行長に制御 */
  color: #444;
}

/* 既存ブレークポイントに合わせる */
@media (max-width: 1024px) {
  .page-services .card--media {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .page-services .reasons__grid {
    grid-template-columns: 1fr;
  }
  .page-services .reason {
    grid-template-columns: 1fr;
    /* SPは縦積み */
  }
  .page-services .reason__icon {
    grid-row: auto;
    margin: 0 0 8px;
    justify-self: start;
  }
}
/* ========== Hero height (CSS-only, both patterns supported) ========== */
/* 1) 背景・罫線は共通化（.page-hero と .hero.container のどちらにも適用） */
.page-hero,
header.hero.container {
  background: linear-gradient(180deg, #fff, #f7f7f7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* 3) タイポ周り（任意：揃えたい場合だけ） */
.page-hero .page-title,
header.hero.container .page-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-size: clamp(28px, 4.8vw, 44px);
}

.page-hero .lead,
header.hero.container .lead {
  margin-top: 8px;
  color: #666;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
}

/* 4) SP微調整（さらに低くしたい場合） */
@media (max-width: 768px) {
  .page-hero > .container,
  header.hero.container {
    padding-block: clamp(24px, 8vw, 56px);
  }
}
/* === Base: 帯なし（デフォルト） === */
.page-hero,
header.hero.container {
  background: none;
  border: 0;
  position: relative;
  isolation: isolate;
}

/* 高さ（余白）は共通で維持 */
.page-hero > .container,
header.hero.container {
  padding-block: clamp(36px, 7.5vw, 72px);
}

.page-hero > .container > *,
header.hero.container > * {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
}

/* === 帯あり：.hero--band / .is-band を付けた時だけ発動 === */
.hero--band,
.page-hero.is-band {
  position: relative;
}

.hero--band::before,
.page-hero.is-band::before {
  content: "";
  position: absolute;
  inset: 0 -50vw -1px;
  /* 横いっぱい（100vw）＋下に1pxの線 */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(180deg, #fff, #f7f7f7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 0;
}

/* ========= Flow (制作フロー) ===================================== */
.flow {
  --brand: #ff6600;
  --rail: rgba(0, 0, 0, .08);
  --card: #fff;
  --text: #111;
  --muted: #666;
  --shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.flow-rail {
  display: grid;
  gap: 18px;
  margin-top: 14px;
  list-style: none;
  padding: 0;
}

/* --- PC: 横レール + 丸バッジ ----------------------------------- */
@media (min-width: 960px) {
  .flow-rail {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: clamp(16px, 2.4vw, 28px);
    position: relative;
    padding-top: 38px;
    /* バッジ分の余白 */
  }
  .flow-rail::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 42px;
    /* バッジ中心の高さに合わせる */
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.18), rgba(255, 102, 0, 0.35));
    border-radius: 999px;
  }
}
/* --- SP: 縦のタイムライン -------------------------------------- */
@media (max-width: 959px) {
  .flow-rail {
    position: relative;
    padding-left: 18px;
  }
  .flow-rail::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--rail);
    border-radius: 999px;
  }
}
/* --- 各ステップ -------------------------------------------------- */
.flow-step {
  position: relative;
}

@media (max-width: 959px) {
  .flow-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
  }
}
/* 丸い番号バッジ */
.flow-step__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.25);
  border: 2px solid #fff;
}

@media (max-width: 959px) {
  .flow-step__badge {
    position: static;
    transform: none;
    width: 36px;
    height: 36px;
    grid-column: 1;
  }
}
/* 本文カード */
.flow-step__body {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--text);
  min-height: 116px;
}

@media (min-width: 960px) {
  .flow-step__body {
    padding: 18px 18px;
  }
}
.flow-step__title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(15px, 1.6vw, 18px);
}

.flow-step__meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* 最終ステップを少し強調したい場合のユーティリティ（任意） */
.flow-step.is-accent .flow-step__body {
  border-color: rgba(255, 102, 0, 0.25);
  box-shadow: 0 8px 22px rgba(255, 102, 0, 0.12);
}

/* ========= Flow steps (PC↔SPで統一したシャープなカード) ========= */
/* 各ステップの箱 */
.flow-step {
  position: relative;
}

/* 丸い番号バッジ（レール上に中央合わせ） */
.flow-step__badge {
  position: absolute;
  left: 50%;
  top: var(--railY);
  /* ← 親で --railY を指定している値に合わせて揃う */
  transform: translate(-50%, -50%);
  /* レールの中心にドンピシャ */
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, #ff8d40, #ff6600);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.22);
  z-index: 2;
}

/* 本文カード（PC/スマホとも同じトーン：細枠＋角丸ほぼ無し） */
.flow-step__body {
  margin-top: calc(var(--stem, 12px) + 10px);
  background: var(--card, #fff);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius, 2px);
  /* 0〜4px推奨。完全スクエアは 0 */
  padding: 14px 16px;
  min-height: 108px;
  color: var(--text, #222);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.flow-step__body:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

/* タイトル/本文 */
.flow-step__title {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(15px, 1.6vw, 18px);
}

.flow-step__meta {
  margin: 0;
  color: var(--muted, #555);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* 仕上げのアクセント（任意で最終ステップ等に） */
.flow-step.is-accent .flow-step__body {
  border-color: rgba(255, 102, 0, 0.25);
  box-shadow: 0 8px 22px rgba(255, 102, 0, 0.12);
}

/* ====== SPレイアウト（同じカードトーンを維持） ====== */
@media (max-width: 959px) {
  .flow-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: start;
  }
  /* SPはレールに乗せない → 左カラムへ配置 */
  .flow-step__badge {
    position: static;
    transform: none;
    width: 36px;
    height: 36px;
    grid-column: 1;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
  }
  /* 茎は不要 */
  .flow-step::after {
    content: none;
  }
  /* カードはPCと同じテイストのまま左のバッジと並べる */
  .flow-step__body {
    grid-column: 2;
    margin-top: 0;
    /* PC用の上マージンを打ち消し */
    padding: 12px 14px;
    min-height: auto;
    border-radius: var(--radius, 2px);
  }
  .flow-step__title {
    font-size: 16px;
  }
  .flow-step__meta {
    font-size: 0.95rem;
  }
}
/* 角丸ゼロにしたい時は .flow に .is-square を付けるだけ */
.flow.is-square .flow-step__body {
  border-radius: 0;
}

/* ===== form（共通） ===== */
.form {
  max-width: 880px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 10px 0;
}

.form__row--full {
  grid-template-columns: 1fr;
}

.form__label {
  font-weight: 700;
  padding-top: 10px;
}

.form__req {
  color: #fff;
  background: #ff6600;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 8px;
}

.form__opt {
  color: #888;
  font-size: 12px;
  margin-left: 8px;
}

.form__ctrl input[type=text],
.form__ctrl input[type=email],
.form__ctrl input[type=tel],
.form__ctrl select,
.form__ctrl textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 16px;
}

.form__ctrl textarea {
  min-height: 160px;
  resize: vertical;
}

.form__help {
  color: #666;
  font-size: 13px;
  margin-top: 6px;
}

.form__error {
  color: #b00020;
  font-size: 13px;
  margin-top: 6px;
}

.form__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* honeypot */
@media (max-width: 768px) {
  .form__row {
    grid-template-columns: 1fr;
  }
  .form__label {
    padding-top: 0;
  }
}
/* チェックボックスが消える/極小になるのを打ち消す */
.form__ctrl input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: auto;
  position: static;
  opacity: 1;
  width: auto;
  height: auto;
  margin: 0 8px 0 0;
  /* ラベルと間隔 */
  vertical-align: middle;
}

/* ラベルを横並びで綺麗に */
.form__ctrl label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  line-height: 1.6;
}

/* モダンブラウザならブランド色で塗る */
@supports (accent-color: auto) {
  .form__ctrl input[type=checkbox] {
    accent-color: var(--brand, #FF6A00);
  }
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
