@charset "UTF-8";
/* =========================================================
   陸送ナビ リニューアル　- green corporate theme
   ホームロジ風（白基調 × 緑アクセント / 英字見出し + 和文サブ）
   ========================================================= */

:root {
  /* ベースカラー #19a752 を基準にした緑スケール */
  --green-900: #0a5028;
  --green-800: #106a36;
  --green-700: #148f47;
  --green-600: #19a752;
  --green-500: #28b863;
  --green-300: #86d6a6;
  --green-100: #cdeeda;
  --green-50:  #f1fbf5;
  --ink:   #33383a;
  --gray:  #6d7472;
  --line:  #e7ecea;
  --bg:    #ffffff;
  --shadow: 0 12px 40px rgba(10, 80, 40, .10);
  --radius: 14px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s, color .25s; }
a:hover { opacity: .75; }
ul { list-style: none; }

.en {
  font-family: "Oswald", sans-serif;
  letter-spacing: .14em;
  font-weight: 600;
}

/* ---------- layout helpers ---------- */
.container { width: min(92%, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tint { background: var(--green-50); }
.section--dark { background: var(--green-900); color: #fff; }

.sec-head { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.sec-head__en {
  display: block;
  color: var(--green-600);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
}
.section--dark .sec-head__en { color: var(--green-300); }
.sec-head__ja {
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .12em;
  position: relative;
  padding-top: 16px;
}
.sec-head__ja::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 36px; height: 2px; background: var(--green-500);
}

/* ---------- image placeholders (差し替え用) ---------- */
.imgph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, var(--green-50), var(--green-50) 14px, #e7f3ea 14px, #e7f3ea 28px);
  color: var(--green-700);
  border: 1px dashed var(--green-300);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  text-align: center;
}
.imgph span {
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  padding: 10px 16px; background: rgba(255, 255, 255, .82);
  border-radius: 999px; box-shadow: 0 2px 10px rgba(15, 77, 42, .12);
}
.imgph::after {
  content: "IMAGE";
  position: absolute; top: 12px; left: 14px;
  font-family: "Oswald", sans-serif; font-size: .68rem; letter-spacing: .2em;
  color: var(--green-500); opacity: .8;
}
.imgph--hero { min-height: 100%; border: none; border-radius: 0;
  background:
    linear-gradient(135deg, rgba(15,77,42,.78), rgba(34,138,77,.62)),
    repeating-linear-gradient(135deg, #1b7a43, #1b7a43 22px, #17703d 22px, #17703d 44px);
  color: #fff;
}
.imgph--hero span { background: rgba(15,77,42,.45); color: #fff; box-shadow: none; }
.imgph--hero::after { color: rgba(255,255,255,.8); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 16px 34px; border-radius: 999px;
  font-weight: 700; letter-spacing: .04em;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn--green { background: var(--green-600); color: #fff; box-shadow: 0 10px 24px rgba(34,138,77,.32); }
.btn--green:hover { opacity: 1; transform: translateY(-3px); box-shadow: 0 16px 30px rgba(34,138,77,.40); }
.btn--line { background: #06c755; color: #fff; box-shadow: 0 10px 24px rgba(6,199,85,.30); }
.btn--line:hover { opacity: 1; transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--green-700); border: 2px solid var(--green-300); }
.btn--ghost:hover { opacity: 1; background: var(--green-50); }
.btn--white { background: #fff; color: var(--green-800); }
.btn--white:hover { opacity: 1; transform: translateY(-3px); }
.btn--lg { padding: 19px 46px; font-size: 1.05rem; }

/* =========================================================
   header
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo-img { display: block; width: auto; height: clamp(34px, 5vw, 44px); }

.gnav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.gnav__list { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.gnav__list a { font-size: .9rem; font-weight: 600; }
.gnav__list .en-mini { display: block; font-size: .6rem; color: var(--green-600); letter-spacing: .14em; font-family: "Oswald", sans-serif; text-align: center; }
.gnav__cta { position: relative; display: flex; align-items: center; }
/* PCヘッダー：他メニュー同様の「CONTACT / お問い合わせ」トリガー */
.gnav__contact { display: flex; flex-direction: column; align-items: center;
  font-size: .9rem; font-weight: 600; cursor: pointer; }
.gnav__cta .en-mini { display: block; font-size: .6rem; color: var(--green-600);
  letter-spacing: .14em; font-family: "Oswald", sans-serif; text-align: center; }
.gnav__contact:hover { color: var(--green-600); }
/* ホバーで下にプルダウンするボタン群 */
.gnav__cta-menu { position: absolute; top: 100%; right: 0;
  display: flex; flex-direction: column; gap: 10px;
  min-width: 220px; padding: 14px; margin-top: 4px;
  background: #fff; border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.16);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s; }
.gnav__cta-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* ホバーの橋渡し */
.gnav__cta-menu .btn { width: 100%; justify-content: center; }
/* プルダウン／ドロワー内のフリーダイヤル */
.gnav__cta-tel { display: block; text-align: center; margin-top: 4px; padding-top: 10px;
  border-top: 1px solid var(--line); line-height: 1.2; }
.gnav__cta-tel__label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; color: var(--green-600); }
.gnav__cta-tel__num { display: block; font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.7rem; letter-spacing: .02em; color: var(--green-700); margin-top: 2px; }
.gnav__cta-tel__hours { display: block; font-size: .62rem; color: var(--gray); margin-top: 3px; }
/* 無料お見積もりは白背景・緑の縁と文字・緑シャドウ（PC/SP共通） */
.gnav__cta .btn--green { background: #fff; color: var(--green-600);
  border: 2px solid var(--green-600); box-shadow: 0 10px 24px rgba(25,167,82,.30); }
.gnav__cta:hover .gnav__cta-menu,
.gnav__cta:focus-within .gnav__cta-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.navtoggle { display: none; }

/* =========================================================
   hero
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__inner { position: relative; z-index: 2; padding-top: 90px; }
.hero__label { font-family: "Oswald", sans-serif; letter-spacing: .3em; font-size: clamp(1.1rem, 2.4vw, 1.9rem); font-weight: 500; opacity: .95; }
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800; line-height: 1.18; margin: 18px 0 10px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}
.hero__title .accent { color: #fff; }
.hero.is-accented .hero__title .accent {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 5px #2ccf6f;
  paint-order: stroke fill;
  filter: drop-shadow(0 0 8px rgba(70, 200, 120, .3));
}
/* タイプライター表示 */
.hero__title .tw-line { display: block; min-height: 1.05em; }
.hero__lead .tw-line { display: block; min-height: 1.6em; }
/* SP版のみの改行制御（PCでは1行に流す） */
.hero__lead .lead-seg { display: inline; }
/* 1行目「一台ごとに心を尽くし、日本全国どこへでも。」：PCは1行、SPは「、」の後で改行 */
.hero__lead .lead-line1 { display: block; }
.hero__lead .lead-line1 .tw-line { display: inline; }
.sp-br { display: none; }
@media (max-width: 767px) {
  .hero__lead .lead-break { display: block; } /* SPで「安全・確実に」の手前で改行 */
  .hero__lead .lead-line1 .lead-break-sp { display: block; } /* SPで「一台ごとに心を尽くし、」の後で改行 */
  .sp-br { display: inline; }                 /* SPでCTAの改行を有効化 */
  /* Our Visionの「自分の愛車のように。」は改行のみ（フォントは「一台一台を、」と同じ大きさ） */
  /* SP限定：説明文を1.15remにして読みやすく */
  .split__body p,
  .strength__body p:not(.strength__no),
  .card__body p:not(.card__no),
  .flow__body p { font-size: 1.15rem; line-height: 1.9; }
}
.hero__label { min-height: 1.4em; }
.tw-caret {
  display: inline-block; width: .055em; height: .9em;
  background: currentColor; margin-left: .04em; vertical-align: -.06em;
  animation: caretblink 1.05s step-end infinite;
}
@keyframes caretblink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero__lead { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 500; max-width: 36em; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero__btns { display: grid; grid-template-columns: auto auto; width: fit-content; gap: 14px; margin-top: 36px;
  transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hero__btns.tw-hidden { opacity: 0; transform: translateY(18px); pointer-events: none; }
.hero__telrow { grid-column: 1 / -1; margin-top: 16px; }
.hero__tel { display: inline-flex; width: 100%; justify-content: center; align-items: center; gap: 0px;
  padding: 12px 26px 12px 10px; border-radius: 16px; color: #fff;
  background: rgba(8, 38, 22, .38); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, .6); box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
  transition: transform .25s var(--ease), background .25s, box-shadow .25s; }
.hero__tel:hover { opacity: 1; transform: translateY(-3px); background: rgba(8, 38, 22, .55); box-shadow: 0 18px 34px rgba(0, 0, 0, .38); }
.hero__tel__ic {     
	width: 38px;
    height: 38px;
    flex: none;
    transform: translate(5px, 3px); }
.hero__tel__txt { display: inline-flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.1; }
.hero__tel__label { font-size: 1.3rem; font-weight: 700; letter-spacing: .1em; opacity: .95; }
.hero__tel__num { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 2.3rem; letter-spacing: .1em; }
.hero__tel__hours { display: block; font-size: 1rem; font-weight: 500; margin-top: 3px; opacity: .92; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-family: "Oswald", sans-serif; font-size: .9rem; letter-spacing: .22em; font-weight: 600;
  display: grid; justify-items: center; gap: 8px; opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}
.hero__scroll::after { content: ""; width: 2px; height: 46px; background: #fff; border-radius: 2px; box-shadow: 0 0 8px rgba(0, 0, 0, .4); animation: scrolldot 1.8s var(--ease) infinite; }
.hero__scroll { transition: opacity .8s var(--ease); }
.hero__scroll.tw-hidden { opacity: 0; }

/* ヒーロー：文字の視認性を上げる暗めグラデーション（左が濃く、右のトラックは見える） */
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(4, 40, 37, .44) 0%, rgba(4, 40, 37, .22) 40%, rgba(4, 40, 37, 0) 66%);
}
.hero__label { text-shadow: 0 2px 10px rgba(0, 0, 0, .45); }

/* SP限定：ファーストビューの白文字をトラック背景でも読みやすく（少し大きく＋濃いシャドウ） */
@media (max-width: 767px) {
  .hero__label { font-size: 1.3rem; text-shadow: 0 2px 6px rgba(0, 0, 0, .85); }
  .hero__title { text-shadow: 0 2px 6px rgba(0, 0, 0, .4), 0 6px 22px rgba(0, 0, 0, .28); }
  /* 「次の場所へ。」は文字間を広げる。通常時（アニメーション中・縁取り前）は「愛車を、」と同じ影を継承 */
  .hero__title .accent { letter-spacing: .16em; }
  /* 縁取り(text-stroke)が付くis-accented後はtext-shadowが不自然になるため、影はdrop-shadowで付与（iOSでも自然） */
  .hero.is-accented .hero__title .accent {
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(70, 200, 120, .3)) drop-shadow(0 3px 8px rgba(0, 0, 0, .38));
  }
  .hero__lead { font-size: 1.15rem; text-shadow: 0 1px 3px rgba(0, 0, 0, .95), 0 2px 12px rgba(0, 0, 0, .6); }
}

/* ヒーロー：最初は単色カバー → 斜めカットインで画像（トラック）を登場 */
.hero__cover {
  position: absolute; inset: -25% -45%; z-index: 1;
  background: #19a752;
  transform: skewX(-12deg) translateX(0);
  border-left: 4px solid rgba(255, 255, 255, .75);
  will-change: transform;
}
.hero.is-revealed .hero__cover { animation: heroWipe 1.5s cubic-bezier(.76, 0, .24, 1) forwards; }
@keyframes heroWipe {
  0%   { transform: skewX(-12deg) translateX(0); }
  100% { transform: skewX(-12deg) translateX(190%); }
}

/* トラック登場後、色替えの瞬間に一瞬の白フラッシュ（白の暗転） */
.hero__flash {
  position: absolute; inset: 0; z-index: 4; background: #fff;
  opacity: 0; pointer-events: none;
}
.hero.is-flash .hero__flash { animation: heroFlash .72s ease-out forwards; }
@keyframes heroFlash {
  0%   { opacity: 0; }
  22%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes scrolldot { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   numbers
   ========================================================= */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* 左から順に時間差で出現 */
.numbers .num:nth-child(1) { transition-delay: 0s; }
.numbers .num:nth-child(2) { transition-delay: .15s; }
.numbers .num:nth-child(3) { transition-delay: .30s; }
.numbers .num:nth-child(4) { transition-delay: .45s; }
.num { text-align: center; padding: 18px 14px; border-right: 1px solid var(--line); }
.num:last-child { border-right: none; }
.num__label { font-family: "Oswald", sans-serif; font-size: .8rem; letter-spacing: .22em; color: var(--green-600); }
.num__value { font-family: "Oswald", sans-serif; font-weight: 700; color: var(--green-800); line-height: 1; margin: 14px 0 10px;
  display: inline-flex; align-items: baseline; justify-content: center;
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.num__value strong { font-size: clamp(3.6rem, 7.5vw, 6rem); letter-spacing: -.01em; text-align: right; }
/* 桁数が変わっても幅が動かないよう、数字の最小幅を確保（カウント中の揺れ防止） */
.numbers .num:nth-child(1) .num__value strong { min-width: 2ch; }
.numbers .num:nth-child(2) .num__value strong { min-width: 3ch; }
.numbers .num:nth-child(3) .num__value strong { min-width: 2ch; }
.numbers .num:nth-child(4) .num__value strong { min-width: 1ch; text-align: center; }
.num__value span { font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin-left: 6px; font-weight: 700; }
.num__desc { font-size: clamp(.9rem, 1.3vw, 1.02rem); font-weight: 500; color: var(--gray); }

/* NUMBERS：背景 #45c1ba のベタ＋文字はすべて白 */
.section--numbers { background: #19a752; color: #fff; }
.section--numbers .sec-head__en,
.section--numbers .sec-head__ja,
.section--numbers .num__label,
.section--numbers .num__value,
.section--numbers .num__desc { color: #fff; }
.section--numbers .sec-head__ja::before { background: #fff; }
.section--numbers .num { border-right-color: rgba(255, 255, 255, .3); }

/* コンテンツごとに白と #45c1ba を交互に（ティール背景は見出しを白文字） */
.section--teal { background: #19a752; color: #fff; }
.section--teal .sec-head__en,
.section--teal .sec-head__ja { color: #fff; }
.section--teal .sec-head__ja::before { background: #fff; }
/* 白カード内の見出しは白のままだと見えないので色を付ける */
.section--teal .card__body h3,
.section--teal .flow__body h3 { color: #19a752; }

/* タイピング表示する見出しは高さを確保（開始時のガタつき防止） */
/* タイピング前から文字入り後と同じ高さを確保し、下のコンテンツのガタつきを防ぐ */
.sec-head--type .sec-head__en { min-height: 1.1em; } /* enの行高(1.1)に一致 */
.sec-head--type .sec-head__ja { display: block; line-height: 1.85; min-height: calc(1.85em + 16px); } /* jaの行高(1.85em)+上パディング(16px)に一致。inline-blockのstrut余白を避けるためblock化 */

/* =========================================================
   about (左右交互)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split + .split { margin-top: clamp(40px, 6vw, 80px); }
.split--rev .split__media { order: 2; }
.split__media .imgph { min-height: clamp(280px, 34vw, 440px); }
.split__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.5; margin-bottom: 22px; }
.split__body h3 .en { display: block; color: var(--green-600); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: .04em; margin-bottom: 16px; }
.split__body p { color: var(--gray); margin-bottom: 16px; font-size: 1.15rem;}
.split__body .btn { margin-top: 10px; }

/* =========================================================
   business / service cards
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media .imgph { min-height: 280px; border: none; border-radius: 0; border-bottom: 1px solid var(--line); }
.card__body { padding: 38px 40px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.card__body .card__no {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px;
  font-family: "Oswald", sans-serif; font-weight: 700; line-height: 1;
  font-size: 2.7rem; letter-spacing: .02em; color: #19a752;
}
.card__body .card__no::after { content: ""; width: 42px; height: 3px; border-radius: 3px; background: var(--green-500); }
.card__body h3 { font-size: clamp(1.5rem, 2.3vw, 1.85rem); line-height: 1.5; }
.card__body p { font-size: 1.15rem; line-height: 1.9; color: var(--gray); }

/* =========================================================
   strengths (番号付き 左右交互)
   ========================================================= */
.strength {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(28px, 4vw, 48px) 0;
}
.strength + .strength { border-top: 1px solid var(--line); }
.strength--rev .strength__media { order: 2; }
.strength__media .imgph { min-height: clamp(240px, 28vw, 360px); }
.strength__no { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gray); line-height: 1; }
.strength__body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 8px 0 16px; line-height: 1.45; }
.strength__body p:not(.strength__no) { color: var(--gray);  font-size: 1.15rem;}


/* =========================================================
   flow
   ========================================================= */
.flow { display: grid; gap: 28px; max-width: 1040px; margin-inline: auto; }
.flow__item {
  position: relative; display: grid; grid-template-columns: 132px 1fr auto; gap: 34px;
  align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 42px;
}
.flow__item::after {
  content: ""; position: absolute; left: 100px; bottom: -28px; width: 2px; height: 28px; background: var(--green-300);
}
.flow__item:last-child::after { display: none; }
.flow__step {
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  font-family: "Oswald", sans-serif; line-height: 1; text-align: center;
}
.flow__step small { display: block; font-size: .8rem; letter-spacing: .18em; margin: 0; }
.flow__step b { font-size: 3rem; line-height: .9; }
.flow__body h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); margin-bottom: 10px; }
.flow__body p { font-size: clamp(1.15rem, 1.5vw, 1.15rem); line-height: 1.9; color: var(--gray); }
.flow__media .imgph { width: 240px; min-height: 150px; }

/* =========================================================
   news
   ========================================================= */
.news { max-width: 820px; margin-inline: auto; }
.news__item { display: grid; grid-template-columns: 130px 110px 1fr; gap: 18px; align-items: center;
  padding: 22px 6px; border-bottom: 1px solid var(--line); }
.news__date { font-family: "Oswald", sans-serif; color: var(--gray); font-size: 1.15rem; }
.news__cat { justify-self: start; font-size: .9rem; font-weight: 700; letter-spacing: .08em;
  color: var(--green-700); background: var(--green-50); border: 1px solid var(--green-100);
  padding: 4px 14px; border-radius: 999px; }
.news__title { font-size: 1.15rem; }

/* =========================================================
   FAQ (アコーディオン)
   ========================================================= */
.faq { max-width: 960px; margin-inline: auto; display: grid; gap: 16px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item:hover { box-shadow: var(--shadow); }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 27px clamp(22px, 3vw, 34px);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; font-weight: 700; font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  color: var(--ink); line-height: 1.55;
}
.faq__qmark { color: var(--green-600); font-size: 1.55rem; flex: none; }
.faq__qtext { flex: 1; }
.faq__icon { position: relative; width: 22px; height: 22px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--green-600); border-radius: 2px; transition: transform .3s var(--ease);
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { display: flex; gap: 18px; padding: 0 clamp(22px, 3vw, 34px) 28px; }
.faq__amark { color: var(--green-300); font-size: 1.55rem; font-weight: 700; flex: none; }
.faq__a p { color: var(--gray); line-height: 1.95; font-size: clamp(1.15rem, 1.5vw, 1.15rem); }

/* =========================================================
   CTA band
   ========================================================= */
.cta { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media::after { content: ""; position: absolute; inset: 0; background: rgba(10, 34, 70, .34); }
.cta__en, .cta h2, .cta p, .cta__tel { text-shadow: 0 2px 10px rgba(0, 0, 0, .6), 0 1px 3px rgba(0, 0, 0, .55); }
.cta .container { position: relative; z-index: 2; }
.cta__en { display: block; font-family: "Oswald", sans-serif; letter-spacing: .1em; color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 14px 0 10px; }
.cta p { max-width: 40em; margin: 0 auto 30px; opacity: .92; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta__btns .btn { min-width: 260px; justify-content: center; }
.cta .cta__tel { margin-top: 52px; font-size: 1.2rem; opacity: .95; }
.cta__tel-label, .cta__tel b, .cta__tel-hours { display: block; } /* 3行（ラベル／番号／受付時間）に */
.cta__tel b { font-family: "Oswald", sans-serif; font-size: 3.2rem; letter-spacing: .04em; line-height: 1.2; margin: 6px 0; }
.cta__tel-hours { font-size: 1rem; }

/* =========================================================
   footer
   ========================================================= */
.site-footer { background: #19a752; color: rgba(255, 255, 255, .96); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand__logo { display: block; width: auto; height: 46px; margin-bottom: 16px; }
.footer-brand address { font-style: normal; font-size: 1.15rem; line-height: 2.05; margin-top: 12px; }
/* フッターの電話案内（お電話でのお問い合わせ／番号／受付時間を1行ずつ・番号を大きく） */
.footer-tel { margin-top: 18px; }
.footer-tel__label { display: block; font-size: 1.1rem; }
.footer-tel__num { display: block; font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: 2rem; letter-spacing: .02em; line-height: 1.25; margin: 4px 0; color: #fff; }
.footer-tel__free { font-family: "Noto Sans JP", sans-serif; font-size: 1rem; font-weight: 700; }
.footer-tel__hours { display: block; font-size: 1rem; }
.footer-col h4 { color: #fff; font-size: 1.05rem; letter-spacing: .14em; margin-bottom: 18px; font-family: "Oswald", sans-serif; }
.footer-col li { margin-bottom: 14px; font-size: 1.22rem; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 1.05rem; }
.footer-bottom .en { color: rgba(255,255,255,.75); }

/* =========================================================
   company / 会社概要
   ========================================================= */
.company { max-width: 720px; margin: 0 auto; border-top: 1px solid var(--line); }
.company__row { display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  padding: 20px 8px; border-bottom: 1px solid var(--line); }
.company__row dt { font-weight: 700; color: var(--green-800); font-size: 1.1rem; }
.company__row dd { color: var(--ink); line-height: 1.8; font-size: 1.1rem; }
.company__pp { max-width: 720px; margin: 30px auto 0; text-align: center; }

/* =========================================================
   modal / プライバシーポリシー
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 300;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(10, 40, 24, .55); backdrop-filter: blur(2px); }
.modal__dialog { position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -48%) scale(.98);
  width: min(92%, 720px); max-height: 86vh;
  display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transition: transform .3s var(--ease); }
.modal.is-open .modal__dialog { transform: translate(-50%, -50%) scale(1); }
.modal__close { position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(0,0,0,.06); color: var(--ink); font-size: 1.5rem; line-height: 1;
  cursor: pointer; transition: background .2s; }
.modal__close:hover { background: rgba(0,0,0,.12); }
.modal__body { overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 44px clamp(20px, 4vw, 44px); }
.modal__title { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 6px; color: var(--green-800); }
.modal__body h3 { font-size: 1.05rem; margin: 26px 0 8px; color: var(--green-700);
  padding-left: 12px; border-left: 4px solid var(--green-500); }
.modal__body h4 { font-size: .98rem; margin: 20px 0 6px; color: var(--ink); }
.modal__body p { font-size: .92rem; line-height: 1.9; margin-bottom: 10px; color: #333; }
.modal__body ol { margin: 0 0 12px 1.4em; }
.modal__body ol li { font-size: .92rem; line-height: 1.8; list-style: decimal; margin-bottom: 4px; }
.modal__addr { margin-top: 18px; padding: 14px 16px; background: var(--green-50);
  border-radius: 10px; font-size: .9rem; }

/* =========================================================
   reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 900px) {
  /* backdrop-filter を持つ .site-header が fixed の基準になるため、
     bottom:0 では基準がヘッダー高さになってしまう。top+height で画面全高を確保する。 */
  .gnav { position: fixed; top: 0; right: 0; bottom: auto; left: auto;
    height: 100vh; height: 100dvh; width: min(82%, 340px);
    padding: 42px 24px 24px; overflow-y: auto;
    background: #fff; flex-direction: column; justify-content: flex-start; gap: 14px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -10px 0 40px rgba(0,0,0,.12); }
  .gnav.is-open { transform: none; }
  .gnav__list { flex-direction: column; gap: 14px; text-align: center; }
  /* SPドロワー：各メニューの文字を大きく */
  .gnav__list a { font-size: 1.2rem; }
  .gnav__list .en-mini { font-size: .72rem; }
  /* SPドロワー：フリーダイヤルを大きく＆無料お見積もりの上に配置 */
  .gnav__cta-tel__label { font-size: .95rem; }
  .gnav__cta-tel__num { font-size: 2.2rem; }
  .gnav__cta-tel__hours { font-size: .8rem; }
  .gnav__cta-tel { order: -1; margin-top: 0; padding-top: 0; padding-bottom: 12px;
    border-top: none; border-bottom: 1px solid var(--line); }
  /* スマホのドロワーでは CONTACT トリガーを隠し、ボタンを直接表示 */
  .gnav__cta { position: static; flex-direction: column; gap: 14px; width: 100%; }
  .gnav__contact { display: none; }
  .gnav__cta-menu { position: static; opacity: 1; visibility: visible; transform: none;
    width: 100%; min-width: 0; padding: 0; margin-top: 0; gap: 14px;
    background: none; box-shadow: none; border-radius: 0; }
  .gnav__cta-menu::before { display: none; }
  .gnav__cta .btn { width: 100%; justify-content: center; }
  .navtoggle { display: inline-flex; flex-direction: column; gap: 5px; width: 30px; height: 24px; justify-content: center; align-items: center;
    background: none; border: none; padding: 0; -webkit-appearance: none; appearance: none; cursor: pointer; z-index: 110; }
  /* iOS Safariでは<button>のフレックス子要素の幅が0になりバーが消えるため、幅を明示 */
  .navtoggle span { display: block; width: 30px; height: 2px; background: #33383a; background: var(--ink); transition: transform .3s, opacity .3s; }
  .navtoggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navtoggle.is-open span:nth-child(2) { opacity: 0; }
  .navtoggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .num:nth-child(2n) { border-right: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .split, .strength { grid-template-columns: 1fr; }
  .split--rev .split__media, .strength--rev .strength__media { order: 0; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .company__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 4px; }
  .company__row dt { font-size: 1rem; }
  .numbers { grid-template-columns: 1fr 1fr; gap: 12px; }
  .num { padding: 16px 6px; }
  .num__value strong { font-size: 2.5rem; }
  .num__value span { font-size: 1rem; }
  .cards { grid-template-columns: 1fr; }
  .card__body h3 { letter-spacing: -.03em; }
  .flow__item { grid-template-columns: 78px 1fr; gap: 16px 20px; padding: 24px 22px; align-items: center; }
  .flow__item:nth-child(4) .flow__body h3 { font-size: 1.3rem; } /* STEP4のみ、長い見出しが2行に収まるよう少し縮小 */
  .flow__step { width: 72px; height: 72px; }
  .flow__step b { font-size: 1.9rem; }
  .flow__item::after { left: 58px; }
  /* SPでもFLOWの画像を表示（ステップ＋本文の下に横幅いっぱいで配置） */
  .flow__media { display: block; grid-column: 1 / -1; }
  .flow__media .imgph { width: 100%; min-height: 0; height: auto; border-radius: 12px; }
  .news__item { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  /* SP：コピーを上に引き上げ、下にSCROLL用の余白を確保して重なりを防ぐ */
  .hero__inner { padding-top: 70px; padding-bottom: 140px; }
  .hero__telrow { margin-top: 12px; }
  .hero__tel { padding: 12px 16px 12px 12px; gap: 1px; }
  .hero__tel__ic { width: 34px; height: 34px;  transform: translate(-1px, 3px);}
  .hero__tel__label { font-size: 1.1rem; }
  .hero__tel__num { font-size: 2rem; }
  .hero__tel__hours { font-size: .8rem; }
  /* SP：CTA見出しを1行に収める */
  .cta h2 { font-size: 1.5rem; }
  /* SP：LINEボタンと「お電話でのお問い合わせ」の間を空ける（.cta p より詳細度を上げる） */
  .cta .cta__tel { margin-top: 52px; }
  /* SP：電話・番号・受付時間をそれぞれ1行ずつに（番号と受付時間は詰める）＋大きく */
  .cta__tel-label, .cta__tel b, .cta__tel-hours { display: block; }
  .cta__tel-label { font-size: 1.3rem; line-height: 1.5; }
  .cta__tel b { margin: 6px 0 0; line-height: 1.2; font-size: 2.8rem; }
  .cta__tel-hours { font-size: 1.1rem; }
  .hero__btns { width: 100%; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .hero__btns .btn { flex: 1; justify-content: center; }
  .hero__btns .btn.btn--lg { padding: 18px 10px; font-size: .86rem; line-height: 1.35; }
  .hero__scroll { bottom: 14px; font-size: .74rem; }
  .hero__scroll::after { height: 34px; }
}


/* generated image replacement */
img.imgph {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  border: none;
  background: none;
}
img.imgph--hero {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.hero__media img.imgph--hero,
.cta__media img.imgph--hero {
  position: absolute;
  inset: 0;
}


/* final hero/footer image tuning */
.hero__media img.imgph--hero,
.cta__media img.imgph--hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  transform: none;
}
.hero__media, .cta__media { background: none; }

/* responsive retina image safeguards */
img.imgph { width: 100%; height: auto; }
.card img.imgph, .service-card img.imgph, .flow-card img.imgph { min-width: 0; }
.hero__media img.imgph--hero, .cta__media img.imgph--hero { image-rendering: auto; }

/* モバイルではCTA背景のトラックが見えるよう右寄りにクロップ */
@media (max-width: 768px) {
  .cta__media img.imgph--hero { object-position: 80% center; }
}
