/* =========================================================
   S・R・Eサービス  —  共通スタイル
   メインカラー: 緑 / 差し色: オレンジ・黄色
========================================================= */

/* ---------- リセット ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
    "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  line-height: 1.85;
  background: var(--bg);
  font-size: 16px;
  letter-spacing: .02em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- カラー変数 ---------- */
:root {
  --green-900: #14461c;
  --green-700: #1f6b2b;
  --green-600: #2e8540;
  --green-500: #3a9d4f;
  --green-100: #e7f4ea;
  --green-050: #f2f9f4;

  --orange: #f28c1e;
  --orange-dark: #e0770a;
  --yellow: #ffc328;

  --ink: #23302a;
  --ink-soft: #5a675f;
  --line: #e2e8e3;
  --bg: #ffffff;
  --bg-soft: #f6faf7;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(20, 70, 28, .08);
  --shadow-lg: 0 18px 50px rgba(20, 70, 28, .14);
  --maxw: 1120px;
}

/* ---------- レイアウト ---------- */
.container {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}
.section { padding: 78px 0; }
.section--soft { background: var(--bg-soft); }
.section--green {
  background: linear-gradient(160deg, var(--green-700), var(--green-600));
  color: #fff;
}

.section-head { text-align: center; margin-bottom: 44px; }
.section-head .en {
  display: block;
  font-size: .78rem;
  letter-spacing: .35em;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section--green .section-head .en { color: var(--yellow); }
.section-head h2 {
  font-size: clamp(1.5rem, 4.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .04em;
}
.section-head h2 .accent { color: var(--green-600); }
.section--green .section-head h2 .accent { color: var(--yellow); }
.section-head p { margin-top: 16px; color: var(--ink-soft); }
.section--green .section-head p { color: rgba(255,255,255,.9); }

.lead { max-width: 820px; margin: 0 auto; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(224,119,10,.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(224,119,10,.4); }
.btn--green {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,107,43,.3);
}
.btn--green:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(31,107,43,.4); }
.btn--ghost {
  background: #fff;
  color: var(--green-700);
  border: 2px solid var(--green-100);
}
.btn--ghost:hover { border-color: var(--green-500); transform: translateY(-3px); }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

/* =========================================================
   ヘッダー
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
/* ヘッダーは横幅を広く使い、ナビの文字落ちを防ぐ */
.site-header .container { width: min(100% - 36px, 1400px); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand__logo { width: 230px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 800; font-size: 1.04rem; letter-spacing: .03em; color: var(--green-700); white-space: nowrap; }
.brand__sub { font-size: .62rem; color: var(--ink-soft); letter-spacing: .12em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 0; }
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 9px;
  font-size: .84rem;
  font-weight: 600;
  border-radius: 8px;
  color: var(--ink);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav a .ni { width: 15px; height: 15px; flex: none; color: var(--green-600); }
.nav a:hover { color: var(--green-600); background: var(--green-050); }
.nav a.is-active { color: var(--green-700); background: var(--green-050); }
.nav a.is-active .ni { color: var(--green-700); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--green-050);
  color: var(--green-700);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .2s;
}
.header-tel:hover { background: var(--green-100); }
.header-tel .ni { width: 15px; height: 15px; flex: none; }
.header-contact { padding: 11px 18px; font-size: .9rem; gap: 7px; }
.header-contact .ni { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: var(--green-050); border-radius: 10px;
  cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--green-700); border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   ページヘッダー（下層）
========================================================= */
.page-hero {
  position: relative;
  padding: 66px 0;
  background: linear-gradient(160deg, var(--green-700), var(--green-600));
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -80px; bottom: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,195,40,.28), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .en {
  display: block; font-size: .78rem; letter-spacing: .35em; font-weight: 700;
  color: var(--yellow); margin-bottom: 12px;
}
.page-hero h1 { font-size: clamp(1.7rem, 5vw, 2.5rem); font-weight: 800; letter-spacing: .04em; }
.page-hero p { margin-top: 14px; color: rgba(255,255,255,.9); max-width: 720px; }

.breadcrumb { padding: 14px 0; font-size: .82rem; color: var(--ink-soft); background: var(--bg-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a:hover { color: var(--green-600); }

/* =========================================================
   ホーム: ヒーロー
========================================================= */
.hero {
  position: relative;
  background: var(--green-050);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 46px;
  padding: 70px 0 84px;
}
.hero-copy .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--green-100);
  color: var(--green-700); font-weight: 700; font-size: .8rem;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero-copy .badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: .03em;
}
.hero-copy h1 .hl {
  color: var(--green-600);
  background: linear-gradient(transparent 62%, rgba(255,195,40,.42) 62%);
}
.hero-copy p { margin-top: 22px; color: var(--ink-soft); font-size: 1.05rem; }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4; object-fit: cover;
}
.hero-media .float-card {
  position: absolute; left: -22px; bottom: 26px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  max-width: 260px;
}
.hero-media .float-card svg { width: 40px; height: 40px; flex: none; color: var(--green-600); }
.hero-media .float-card b { display: block; font-size: .95rem; color: var(--ink); }
.hero-media .float-card span { font-size: .76rem; color: var(--ink-soft); }

/* =========================================================
   3サービスカード（ホーム）
========================================================= */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card__img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__no {
  position: absolute; top: 14px; left: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: .95rem;
  box-shadow: 0 6px 14px rgba(224,119,10,.4);
}
.svc-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { font-size: 1.2rem; font-weight: 800; color: var(--green-700); }
.svc-card__body p { margin-top: 10px; color: var(--ink-soft); font-size: .92rem; flex: 1; }
.svc-card__link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange-dark); font-weight: 700; font-size: .9rem;
}
.svc-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* =========================================================
   お悩みリスト
========================================================= */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.worry-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.worry-item:hover { border-color: var(--green-100); box-shadow: var(--shadow); }
.worry-item h3 {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1.05rem; font-weight: 800; color: var(--ink);
}
.worry-item h3 svg { width: 24px; height: 24px; flex: none; color: var(--green-600); margin-top: 2px; }
.worry-item p { margin-top: 12px; color: var(--ink-soft); font-size: .9rem; }

/* ---------- チェックリスト（□） ---------- */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 860px; margin: 0 auto; }
.check-list li {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 12px; padding: 16px 20px;
  box-shadow: var(--shadow); font-weight: 600; color: var(--ink);
}
.check-list li svg { width: 26px; height: 26px; flex: none; color: var(--orange); }

/* =========================================================
   特長（横並び 画像＋テキスト）
========================================================= */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.feature-row + .feature-row { margin-top: 64px; }
.feature-row:nth-child(even) .feature-row__media { order: 2; }
.feature-row__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); aspect-ratio: 5/4; object-fit: cover;
}
.feature-row__body .tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  color: var(--orange); margin-bottom: 12px;
}
.feature-row__body h3 { font-size: clamp(1.3rem, 3.6vw, 1.7rem); font-weight: 800; line-height: 1.5; }
.feature-row__body p { margin-top: 16px; color: var(--ink-soft); }

/* ---------- 囲みCTA ---------- */
.callout {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: #fff; border-radius: var(--radius-lg);
  padding: 46px 44px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.callout::before {
  content: ""; position: absolute; top: -60px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,195,40,.3), transparent 70%);
}
.callout > * { position: relative; z-index: 1; }
.callout h2 { font-size: clamp(1.3rem, 3.8vw, 1.85rem); font-weight: 800; line-height: 1.5; }
.callout p { margin-top: 16px; color: rgba(255,255,255,.92); max-width: 760px; margin-inline: auto; }
.callout .callout-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.callout .btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.callout .btn--ghost:hover { background: rgba(255,255,255,.24); }

/* =========================================================
   選ばれる理由カード
========================================================= */
.reason-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.reason-card {
  background: #fff; border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  box-shadow: var(--shadow); border-top: 4px solid var(--green-500);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* 各項目の写真枠 */
.reason-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-050); }
.reason-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.reason-card:hover .reason-card__img img { transform: scale(1.05); }
.reason-card__body { padding: 0 30px 32px; display: flex; flex-direction: column; flex: 1; }
.reason-card__ico {
  width: 62px; height: 62px; border-radius: 16px;
  background: var(--green-050); color: var(--green-600);
  display: grid; place-items: center; margin: -34px 0 16px;
  position: relative; z-index: 1; border: 3px solid #fff; box-shadow: var(--shadow);
}
.reason-card__ico svg { width: 32px; height: 32px; }
.reason-card__no { font-size: .78rem; font-weight: 800; color: var(--orange); letter-spacing: .12em; }
.reason-card h3 { margin-top: 6px; font-size: 1.22rem; font-weight: 800; color: var(--green-700); }
.reason-card p { margin-top: 14px; color: var(--ink-soft); font-size: .93rem; }

/* =========================================================
   施工事例（サービス内容ページ）
========================================================= */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-050); }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case-card:hover .case-card__img img { transform: scale(1.05); }
.case-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.case-card__cat {
  align-self: flex-start; font-size: .72rem; font-weight: 700; color: #fff;
  background: var(--green-600); padding: 4px 12px; border-radius: 999px; letter-spacing: .04em;
}
.case-card h3 { margin-top: 12px; font-size: 1.06rem; font-weight: 800; color: var(--green-700); }
.case-card p { margin-top: 8px; color: var(--ink-soft); font-size: .9rem; }
@media (max-width: 900px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .case-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* =========================================================
   サービス詳細
========================================================= */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.service-block + .service-block { margin-top: 40px; }
.service-block__media { position: relative; height: 100%; min-height: 300px; }
.service-block__media img { width: 100%; height: 100%; object-fit: cover; }
.service-block:nth-child(even) .service-block__media { order: 2; }
.service-block__body { padding: 40px 42px; }
.service-block__body .no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-600); color: #fff; font-weight: 800; margin-bottom: 16px;
}
.service-block__body h3 { font-size: 1.5rem; font-weight: 800; color: var(--green-700); }
.service-block__body > p { margin-top: 14px; color: var(--ink-soft); }
.service-block__body h4 {
  margin-top: 22px; font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  color: var(--orange); text-transform: uppercase;
}
.tag-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li {
  background: var(--green-050); color: var(--green-700);
  padding: 8px 15px; border-radius: 999px; font-size: .86rem; font-weight: 600;
}

/* =========================================================
   料金表
========================================================= */
.price-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.price-table th, .price-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--green-600); color: #fff; font-weight: 700; letter-spacing: .05em; }
.price-table tbody th { font-weight: 700; color: var(--ink); background: var(--green-050); width: 55%; }
.price-table tbody td { font-weight: 800; color: var(--orange-dark); font-size: 1.05rem; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: none; }
.price-note { margin-top: 18px; color: var(--ink-soft); font-size: .9rem; }

/* =========================================================
   STEPフロー
========================================================= */
.flow { max-width: 820px; margin: 0 auto; display: grid; gap: 20px; }
.flow-step {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 22px;
  background: #fff; border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow);
}
.flow-step__no {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700)); color: #fff;
}
.flow-step__no small { font-size: .58rem; letter-spacing: .14em; opacity: .85; }
.flow-step__no b { font-size: 1.5rem; line-height: 1; }
.flow-step__body h3 { font-size: 1.14rem; font-weight: 800; color: var(--green-700); }
.flow-step__body p { margin-top: 8px; color: var(--ink-soft); font-size: .92rem; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; left: 62px; bottom: -20px;
  width: 2px; height: 20px; background: var(--green-100);
}

/* =========================================================
   FAQ（アコーディオン）
========================================================= */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; border: none; background: none;
  padding: 22px 26px; display: flex; align-items: center; gap: 16px;
  cursor: pointer; font-size: 1.02rem; font-weight: 700; color: var(--ink);
}
.faq-q .qmark {
  flex: none; width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-600); color: #fff; display: grid; place-items: center; font-weight: 800;
}
.faq-q .chev { margin-left: auto; width: 20px; height: 20px; color: var(--green-600); transition: transform .3s; flex: none; }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 26px 24px 74px; color: var(--ink-soft); }

/* =========================================================
   会社概要テーブル
========================================================= */
.company-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.company-table th, .company-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.company-table th { width: 32%; background: var(--green-050); color: var(--green-700); font-weight: 700; white-space: nowrap; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }

.greeting { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.greeting__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; object-fit: cover; }
.greeting__body p + p { margin-top: 16px; }
.greeting__body .sign { margin-top: 22px; font-weight: 700; color: var(--green-700); }
.greeting__body .sign b { font-size: 1.2rem; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* =========================================================
   お問い合わせフォーム
========================================================= */
.form-wrap { display: grid; grid-template-columns: 1fr .8fr; gap: 40px; align-items: start; }
.contact-form {
  background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .95rem; }
.form-row .req { color: #fff; background: var(--orange); font-size: .68rem; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: 2px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: var(--bg-soft);
  transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--green-500); background: #fff;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.form-check input { width: auto; margin-top: 5px; }
.form-submit { text-align: center; margin-top: 8px; }

.contact-aside { display: grid; gap: 20px; }
.aside-card { background: var(--green-050); border-radius: var(--radius-lg); padding: 30px; }
.aside-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--green-700); margin-bottom: 14px; }
.aside-card .tel-big { font-size: 1.9rem; font-weight: 800; color: var(--green-700); letter-spacing: .02em; }
.aside-card .tel-big svg { width: 22px; height: 22px; vertical-align: -2px; margin-right: 4px; }
.aside-card p { color: var(--ink-soft); font-size: .9rem; margin-top: 6px; }
.aside-card .hours { margin-top: 14px; font-size: .9rem; }
.aside-card .hours span { display: block; }

/* ---------- Coming soon（ブログ） ---------- */
.comingsoon2, .coming-wrap { text-align: center; }
.coming-wrap { padding: 90px 0; }
.coming-ico { width: 110px; height: 110px; margin: 0 auto 28px; color: var(--green-500); }
.coming-wrap h2 { font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; color: var(--green-700); }
.comingsoon2 {
  display: inline-block; margin-top: 18px;
  background: var(--green-050); color: var(--green-700);
  font-weight: 800; letter-spacing: .3em; padding: 12px 34px; border-radius: 999px;
  border: 2px dashed var(--green-500);
}
.coming-wrap p { margin-top: 24px; color: var(--ink-soft); max-width: 560px; margin-inline: auto; }

/* =========================================================
   情報 / インフォメーション
========================================================= */
.info-list { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.info-item {
  display: flex; gap: 20px; align-items: center; background: #fff;
  border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow);
}
.info-item time { font-weight: 800; color: var(--green-600); font-size: .92rem; white-space: nowrap; }
.info-item .cat { font-size: .72rem; background: var(--orange); color: #fff; padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.info-item p { color: var(--ink); font-size: .95rem; }

/* =========================================================
   フッター
========================================================= */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.82); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: rgba(255,255,255,.6); }
/* 暗い背景でもロゴがはっきり見えるよう白い円形の下地を敷く */
.footer-brand .brand__logo { background: #fff; padding: 4px 10px; box-sizing: content-box; width: 250; height: auto; }
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.9; }
.footer-brand .ftel { margin-top: 14px; font-size: 1.3rem; font-weight: 800; color: #fff; }
.footer-col h4 { color: #fff; font-size: .98rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .05em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-sns { display: flex; gap: 12px; margin-top: 6px; }
.footer-sns a {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; transition: background .2s, transform .2s;
}
.footer-sns a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-sns svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.6);
}

/* =========================================================
   フローティングバナー / 電話
========================================================= */
.floating {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.floating a {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); transition: transform .2s; color: #fff;
}
.floating a:hover { transform: translateY(-4px) scale(1.05); }
.floating a svg { width: 28px; height: 28px; }
.floating .f-line { background: #06c755; }
.floating .f-insta { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.floating .f-tel { background: var(--green-600); display: none; }

/* スマホ固定CTAバー */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: 1fr 1fr;
  background: #fff; box-shadow: 0 -6px 20px rgba(0,0,0,.1);
}
.mobile-cta a { padding: 15px; text-align: center; font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-cta svg { width: 18px; height: 18px; }
.mobile-cta .m-tel { background: var(--green-600); color: #fff; }
.mobile-cta .m-mail { background: var(--orange); color: #fff; }

/* =========================================================
   アニメーション
========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   レスポンシブ
========================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 54px 0 64px; }
  .hero-media { max-width: 560px; }
  .greeting { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
}

/* ヘッダーのナビは早めにドロワー化して文字落ちを防ぐ */
@media (max-width: 1340px) {
  .nav, .header-tel { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    transform: translateY(-140%); transition: transform .35s ease; z-index: 99;
  }
  .nav.is-open { display: flex; transform: none; }
  .nav a { padding: 15px 12px; border-bottom: 1px solid var(--line); font-size: 1rem; border-radius: 0; }
  .nav a .ni { width: 20px; height: 20px; }
  .nav a.is-active { color: var(--green-700); background: var(--green-050); border-radius: 10px; border-bottom-color: transparent; }
}

@media (max-width: 900px) {
  .svc-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row:nth-child(even) .feature-row__media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block__media { order: 0; }
  .service-block__media { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .floating .f-tel { display: grid; }
  .floating { bottom: 74px; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 54px; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  /* 小さな画面ではロゴ補足を省き、お問い合わせボタンはアイコンのみ表示 */
  .brand__sub { display: none; }
  .brand__logo { width: 200px;  }
  .brand__name { font-size: 1rem; }
  .header-contact { padding: 12px; }
  .header-contact .contact-label { display: none; }
  .header-contact .ni { margin: 0; }
  .header-inner { gap: 10px; }
  .check-list { grid-template-columns: 1fr; }
  .service-block__body, .contact-form, .aside-card { padding: 28px 22px; }
  .callout { padding: 36px 24px; }
  .flow-step { grid-template-columns: 1fr; gap: 14px; }
  .flow-step__no { flex-direction: row; gap: 8px; width: auto; height: auto; padding: 8px 16px; border-radius: 10px; }
  .flow-step:not(:last-child)::after { display: none; }
  .price-table th, .price-table td { padding: 14px 16px; }
  .company-table th { width: 40%; }
}

/*===========================
ページ内リンク直し
===========================*/

#anch01, #anch02 , #anch03 , #anch04 , #anch05 , #anch06, #anch07 , #anch08 , #anch09 , #anch10 {
	margin-top:-120px;
	padding-top:160px;
}


/* Flexboxレイアウト */ 

.f-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch; /* アイテムを上揃えで配置します */
}

.f-wrap-AC {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center; /* アイテムを上下中央で配置します */
}

.f-wrap-end {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: end; /* アイテムを下揃えで配置します */
}

.f-wrap-HU {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	 /* アイテムの高さを揃える */
}

.f-wrap-cen {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.f-wrap-even {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.f-wrap-even-cen {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	align-items: center; /* アイテムを上下中央で配置します */
}


.f-item1 {
	box-sizing: border-box;
	width: 100%;
	margin-bottom:30px;
}

.f-item1-2 {
	box-sizing: border-box;
	width: 47%;
	margin-bottom:30px;
}

.f-item1-2-USU {
	box-sizing: border-box;
	width: 47%;
}

.f-item1-2-t1 {
	box-sizing: border-box;
	width: 47%;
	margin-bottom:30px;
}

.f-item1-3 {
	box-sizing: border-box;
	width: 31%;
	margin-bottom:30px;
}

.f-item1-3-t1 {
	box-sizing: border-box;
	width: 31%;
	margin-bottom:30px;
}

.f-item1-3-t2 {
	box-sizing: border-box;
	width: 31%;
	margin-bottom:30px;
}

.f-item1-3-ts2 {
	box-sizing: border-box;
	width: 31%;
	margin-bottom:30px;
}

.f-item1-3-s2 {
	box-sizing: border-box;
	width: 31%;
	margin-bottom:30px;
}

.f-wrap-cen .f-item1-3-t2 {
	margin:0 1px 30px 10px;
}
	

.f-item1-3n2 {
	box-sizing: border-box;
	width: 30%;
}

.f-item2-3 {
	box-sizing: border-box;
	width: 64%;
	margin-bottom:30px;
}

.f-item2-3-t1 {
	box-sizing: border-box;
	width: 64%;
	margin-bottom:30px;
}


.f-item1-4 {
	box-sizing: border-box;
	width: 23%;
	margin-bottom:30px;
}

.f-item3-4 {
	box-sizing: border-box;
	width: 72%;
	margin-bottom:30px;
}

.f-item1-4-t1 {
	box-sizing: border-box;
	width: 23%;
	margin-bottom:30px;
}

.f-item1-4-t2 {
	box-sizing: border-box;
	width: 23%;
	margin-bottom:30px;
}

.f-item1-4-sp2 {
	box-sizing: border-box;
	width: 23%;
	margin-bottom:30px;
}

.f-item3-4-t1 {
	box-sizing: border-box;
	width: 72%;
	margin-bottom:30px;
}

.f-item1-5 {
	box-sizing: border-box;
	width: 19%;
	margin-bottom:30px;
}

.f-item1-5-t1 {
	box-sizing: border-box;
	width: 19%;
	margin-bottom:30px;
}

.f-item1-5-t2 {
	box-sizing: border-box;
	width: 19%;
	margin-bottom:30px;
}

.f-item1-5-t3 {
	box-sizing: border-box;
	width: 19%;
	margin-bottom:30px;
}

.f-item2-5 {
	box-sizing: border-box;
	width: 38%;
	margin-bottom:30px;
}

.f-item2-5-t1 {
	box-sizing: border-box;
	width: 38%;
	margin-bottom:30px;
}

.f-item3-5 {
	box-sizing: border-box;
	width: 57%;
	margin-bottom:30px;
}

.f-item4-5 {
	box-sizing: border-box;
	width: 76%;
	margin-bottom:30px;
}

.f-item4-5-t1 {
	box-sizing: border-box;
	width: 76%;
	margin-bottom:30px;
}

.f-item3-5-t1 {
	box-sizing: border-box;
	width: 57%;
	margin-bottom:30px;
}

.f-item1-6 {
	box-sizing: border-box;
	width: 15%;
	margin-bottom:30px;
}

.f-item1-6-t1 {
	box-sizing: border-box;
	width: 15%;
	margin-bottom:30px;
}

.f-item1-6-t2 {
	box-sizing: border-box;
	width: 15%;
	margin-bottom:30px;
}

.f-item1-6-t3 {
	box-sizing: border-box;
	width: 15%;
	margin-bottom:30px;
}

.f-item1-6-sp2 {
	box-sizing: border-box;
	width: 15%;
	margin-bottom:30px;
}



.f-Vcenter {
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	box-sizing: border-box;
}

.f-row-reverse {
	flex-flow: row-reverse wrap;
}

/* 最後のコンテンツを左寄せにする指定 */
.f-wrap-ad4:after {
    content: "";
    display: block;
    width: 48%;  /* f-itemに指定したwidthと同じ幅を指定する */
    height: 0;
}

.boxDummy {
	text-align:center;
	background-color: #CCC;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	box-sizing: border-box;
	padding:1em;
}

@media screen and (max-width: 768px) {

.f-item1-2-t1 , .f-item1-3-t1 , .f-item2-3-t1 , .f-item1-4-t1 , .f-item3-4-t1 , .f-item1-5-t1 , .f-item2-5-t1 , .f-item3-5-t1 , f-item4-5-t1 , .f-item1-6-t1 {
	width: 100%;
}


.f-item1-3-t2 , .f-item1-3-ts2 , .f-item1-4-t2 , .f-item1-5-t2 , .f-item1-6-t2 {
	width: 49%;
}


.f-wrap-cen .f-item1-3-t2 {
	margin:0 3px 30px 3px;
}


.f-item1-5-t3 , .f-item1-6-t3 {
	width: 31%;
}


}

@media only screen and (max-width: 600px) {
.f-item1-2 , .f-item1-3 , .f-item1-3n2 , .f-item2-3 , .f-item1-4 , .f-item3-4 , .f-item1-5 , .f-item2-5 , .f-item3-5 , .f-item4-5 , .f-item1-6 {
	width: 100%;
	margin-bottom:30px;
}

.f-wrap-cen .f-item1-3-t2 {
	margin:0 0 30px 0;
}

.f-item1-3-t2 , .f-item1-4-t2 , .f-item1-5-t2 , .f-item1-6-t2 , .f-item1-5-t3 , .f-item1-6-t3 {
	width: 100%;
	margin-bottom:30px;
}

.f-item1-4-sp2 , .f-item1-6-sp2 {
	width: 49%;
	margin-bottom:30px;
}

.f-item1-2-USU {
	box-sizing: border-box;
	margin-bottom:10px;
}

.f-item1-3-s2 {
	width: 49%;
}


.spOrder1 {
	order:1;
}

.spOrder2 {
	order:2;
}

.spOrder3 {
	order:3;
}

.spOrder4 {
	order:4;
}

.spOrder5 {
	order:5;
}

.spOrder6 {
	order:6;
}


}

/* ビフォーアフター　*/

.imgBF {
	position: relative;
}

.imgBF .txtBef {
	position: absolute;
	right: 3%;
	bottom: 3%;
	content: '';
	text-align: center;
	background: rgba(33,111,46,.7);
	font-weight: bold;
	border-radius: 50%;
	color: #fff;
	width: 5em;
	height: 5em;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
}

.imgBF .txtAft {
	position: absolute;
	right: 3%;
	bottom: 3%;
	content: '';
	text-align: center;
background: rgba(243,82,10,.8);
/*		background: rgba(198,9,23,.8); */
	font-weight: bold;
	border-radius: 50%;
	color: #fff;
	width: 5em;
	height: 5em;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
}



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

.txtRight {
	text-align:right !important;
}

.txtLeft {
	text-align:left !important;
}

.txtSUP {
	font-size: 75.5%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}

.txtSUB {
	font-size: 75.5%;
	vertical-align: bottom;
	position: relative;
	top: 0.1em;
}


/* マージン */

.mgb1em {
	margin-bottom:1em !important;
}
.mgb2em {
	margin-bottom:2em !important;
}

.mgb3em {
	margin-bottom:3em !important;
}


.mgbS {
	margin-bottom:20px !important;
}

.mgbM {
	margin-bottom:50px !important;
}

.mgbL {
	margin-bottom:100px !important;
}


.mgb1em {
	margin-bottom:1em !important;
}
.mgb2em {
	margin-bottom:2em !important;
}
.mgb3em {
	margin-bottom:3em !important;
}
.mgbS {
	margin-bottom:30px !important;
}
.mgbM {
	margin-bottom:70px !important;
}
.mgbL {
	margin-bottom:120px !important;
}
.mgb0 {
	margin-bottom:0px !important;
}
.mgb10px {
	margin-bottom:10px !important;
}
.mgb20px {
	margin-bottom:20px !important;
}
.mgb30px {
	margin-bottom:30px !important;
}
.mgb40px {
	margin-bottom:40px !important;
}
.mgb50px {
	margin-bottom:50px !important;
}
.mgb60px {
	margin-bottom:60px !important;
}
.mgb70px {
	margin-bottom:70px !important;
}
.mgb80px {
	margin-bottom:80px !important;
}
.mgb100px {
	margin-bottom:100px !important;
}

.mgbPC0SP20px {
	margin-bottom:0 !important;
}

@media only screen and (max-width: 600px) {
.mgbPC0SP20px {
	margin-bottom:20px !important;
}
}

.mb0 {
	margin-bottom: 0px!important;
}
.mb5 {
	margin-bottom: 5px!important;
}
.mb10 {
	margin-bottom: 10px!important;
}
.mb15 {
	margin-bottom: 15px!important;
}
.mb20 {
	margin-bottom: 20px!important;
}
.mb25 {
	margin-bottom: 25px!important;
}
.mb30 {
	margin-bottom: 30px!important;
}
.mb40 {
	margin-bottom: 40px!important;
}
.mb50 {
	margin-bottom: 50px!important;
}
.mb60 {
	margin-bottom: 60px!important;
}
.mb70 {
	margin-bottom: 70px!important;
}
.mb80 {
	margin-bottom: 80px!important;
}
.mb90 {
	margin-bottom: 90px!important;
}
.mb100 {
	margin-bottom: 100px!important;
}


/* padding */
.pt0 {
	padding-top: 0px!important;
}
.pt5 {
	padding-top: 5px!important;
}
.pt10 {
	padding-top: 10px!important;
}
.pt15 {
	padding-top: 15px!important;
}
.pt20 {
	padding-top: 20px!important;
}
.pt25 {
	padding-top: 25px!important;
}
.pt30 {
	padding-top: 30px!important;
}
.pt40 {
	padding-top: 40px!important;
}
.pt50 {
	padding-top: 50px!important;
}
.pt60 {
	padding-top: 60px!important;
}
.pt70 {
	padding-top: 70px!important;
}
.pt80 {
	padding-top: 80px!important;
}
.pt90 {
	padding-top: 90px!important;
}
.pt100 {
	padding-top: 100px!important;
}
.pb0 {
	padding-bottom: 0px!important;
}
.pb5 {
	padding-bottom: 5px!important;
}
.pb10 {
	padding-bottom: 10px!important;
}
.pb15 {
	padding-bottom: 15px!important;
}
.pb20 {
	padding-bottom: 20px!important;
}
.pb25 {
	padding-bottom: 25px!important;
}
.pb30 {
	padding-bottom: 30px!important;
}
.pb40 {
	padding-bottom: 40px!important;
}
.pb50 {
	padding-bottom: 50px!important;
}
.pb60 {
	padding-bottom: 60px!important;
}
.pb70 {
	padding-bottom: 70px!important;
}
.pb80 {
	padding-bottom: 80px!important;
}
.pb90 {
	padding-bottom: 90px!important;
}
.pb100 {
	padding-bottom: 100px!important;
}
.pl0 {
	padding-left: 0px!important;
}
.pl5 {
	padding-left: 5px!important;
}
.pl10 {
	padding-left: 10px!important;
}
.pl15 {
	padding-left: 15px!important;
}
.pl20 {
	padding-left: 20px!important;
}
.pl25 {
	padding-left: 25px!important;
}
.pl30 {
	padding-left: 30px!important;
}
.pl40 {
	padding-left: 40px!important;
}
.pl50 {
	padding-left: 50px!important;
}
.pr0 {
	padding-right: 0px!important;
}
.pr5 {
	padding-right: 5px!important;
}
.pr10 {
	padding-right: 10px!important;
}
.pr15 {
	padding-right: 15px!important;
}
.pr20 {
	padding-right: 20px!important;
}
.pr25 {
	padding-right: 25px!important;
}
.pr30 {
	padding-right: 30px!important;
}
.pr40 {
	padding-right: 40px!important;
}
.pr50 {
	padding-right: 50px!important;
}
/* margin top */
.mt0 {
	margin-top: 0px!important;
}
.mt5 {
	margin-top: 5px!important;
}
.mt10 {
	margin-top: 10px!important;
}
.mt15 {
	margin-top: 15px!important;
}
.mt20 {
	margin-top: 20px!important;
}
.mt25 {
	margin-top: 25px!important;
}
.mt30 {
	margin-top: 30px!important;
}
.mt40 {
	margin-top: 40px!important;
}
.mt50 {
	margin-top: 50px!important;
}
.mt60 {
	margin-top: 60px!important;
}
.mt70 {
	margin-top: 70px!important;
}
.mt80 {
	margin-top: 80px!important;
}
.mt90 {
	margin-top: 90px!important;
}
.mt100 {
	margin-top: 100px!important;
}


