@charset "UTF-8";
/* =========================================================
   株式会社利功 — 共通スタイルシート
   カラー: グリーン基調
   ========================================================= */ :root {
  --green-900: #00b379;
  --green-800: #00b379;
  --green-700: #499f6f;
  --green-600: #2e8555;
  --green-500: #3a9d67;
  --green-400: #59b783;
  --green-100: #e7f3ec;
  --green-050: #f3f9f5;
  --gold: #d9a441;
  --gold-dark: #b9862a;
  --ink: #263029;
  --ink-soft: #4a564e;
  --muted: #74807a;
  --line: #dfe7e1;
  --white: #ffffff;
  --bg: #fbfdfb;
  --shadow-sm: 0 2px 10px rgba(20, 61, 39, 0.06);
  --shadow-md: 0 8px 28px rgba(20, 61, 39, 0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1160px;
  --header-h: 84px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--green-700);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: var(--green-500);
}
h1, h2, h3, h4 {
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}
/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-900);
  color: #fff;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar a {
  color: #eaf6ee;
}
.topbar .topbar-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar .topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .logo-mark {
  flex: 0 0 auto;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand .brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: 0.06em;
}
.brand .brand-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-tel {
  text-align: right;
  line-height: 1.25;
}
.header-tel .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .12em;
}
.header-tel .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-tel .num svg {
  color: var(--gold-dark);
}
/* ---------- Nav ---------- */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 46px;
  height: 46px;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover {
  color: var(--green-700);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.main-nav a[aria-current="page"] {
  color: var(--green-700);
}
/* 電話番号ブロックはドロワー（モバイル）内のみ表示。PCでは非表示 */
.main-nav .nav-tel {
  display: none;
}
.nav-backdrop {
  display: none;
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: #3a2a06;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-600);
  color: #fff;
}
.btn-lg {
  padding: 17px 40px;
  font-size: 17px;
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
}
.hero-media {
  height: clamp(420px, 100vh, 920px);
  background: #000; /* 余白が見える場合 */
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(105deg, rgba(20, 61, 39, .72) 0%, rgba(20, 61, 39, .32) 48%, rgba(20, 61, 39, .05) 78%);*/
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-inner .container {
  width: 100%;
}
.hero-copy {
  max-width: 640px;
  color: #fff;
}
.hero-copy .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .14em;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-copy h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.35;
  letter-spacing: .02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
  margin-bottom: 18px;
}
.hero-copy h1 .accent {
  color: #ffe9a8;
}
.hero-copy .lead {
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.85;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* ---------- Page header (sub pages) ---------- */
.page-hero {
  position: relative;
  height: clamp(220px, 34vh, 340px);
  overflow: hidden;
  /*background: var(--green-800);*/
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(20, 61, 39, .35), rgba(20, 61, 39, .65));*/
}
.page-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.page-hero-inner h1 {
  font-size: clamp(26px, 4.4vw, 40px);
  letter-spacing: .06em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
  z-index: 999;
}
.page-hero-inner .en {
  font-size: 13px;
  letter-spacing: .28em;
  opacity: .85;
  margin-top: 10px;
  text-transform: uppercase;
  z-index: 999;
}
/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--green-050);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb li::after {
  content: "›";
  margin-left: 8px;
  color: var(--muted);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--green-600);
}
/* ---------- Sections ---------- */
.section {
  padding: clamp(52px, 8vw, 92px) 0;
}
.section.alt {
  background: var(--green-050);
}
.section.green {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #eaf5ee;
}
.section.green .section-title h2, .section.green .section-title .ja {
  color: #fff;
}
.section.green .section-title .en {
  color: #a9d5bb;
}
.section-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 56px);
}
.section-title .en {
  display: block;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--green-500);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title h2, .section-title .ja {
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--green-900);
  letter-spacing: .04em;
}
.section-title .desc {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 760px;
  margin-inline: auto;
}
.lead-catch {
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--green-800);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: .03em;
}
/* ---------- Cards: 3 nav contents (home) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: .28s ease;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pillar-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pillar:hover .pillar-img img {
  transform: scale(1.06);
}
.pillar-body {
  padding: 22px 24px 26px;
  text-align: center;
}
.pillar-body .num {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold-dark);
  font-weight: 700;
}
.pillar-body h3 {
  font-size: 20px;
  color: var(--green-800);
  margin: 6px 0 14px;
}
.pillar-body .go {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* ---------- Greeting / message ---------- */
.message-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 44px;
  align-items: center;
}
.message-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.message-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--green-800);
  margin-bottom: 20px;
}
.message-body .sign {
  margin-top: 18px;
  font-weight: 700;
  color: var(--ink-soft);
}
/* ---------- Services grid (bordered boxes, 2 columns) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-box {
  border: 2px solid var(--green-200, #cfe4d6);
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: .25s ease;
  position: relative;
}
.svc-box {
  border-color: #cfe4d6;
}
.svc-box:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-box h3 {
  font-size: 19px;
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.svc-box h3 .ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
}
.svc-box .catch {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 14px;
  margin-bottom: 8px;
}
.svc-box p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}
/* ---------- Info / news ---------- */
.news-list {
  max-width: 820px;
  margin-inline: auto;
  list-style: none;
  padding: 0;
}
.news-list li {
  display: flex;
  gap: 20px;
  padding: 18px 6px;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
  flex-wrap: wrap;
}
.news-list .date {
  font-weight: 700;
  color: var(--green-600);
  min-width: 92px;
  font-size: 14px;
}
.news-list .txt {
  color: var(--ink-soft);
}
/* ---------- Company info panel (home) ---------- */
.info-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.info-panel .info-text {
  padding: clamp(30px, 4vw, 48px);
}
.info-panel .info-map {
  min-height: 320px;
}
.info-panel .info-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}
.info-table th {
  color: var(--green-700);
  width: 130px;
  font-weight: 700;
}
/* ---------- Two-column info cards (highlight) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.check-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-500);
}
.check-card.gold {
  border-top-color: var(--gold);
}
.check-card h3 {
  font-size: 19px;
  color: var(--green-800);
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 9px 0 9px 32px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.check-list li:last-child {
  border-bottom: 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--green-500);
  border-bottom: 3px solid var(--green-500);
  transform: rotate(-45deg);
}
.check-card.gold .check-list li::before {
  border-color: var(--gold-dark);
}
/* ---------- Feature blocks (values, 2col text) ---------- */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.feature-item .fnum {
  font-size: 30px;
  font-weight: 800;
  color: var(--green-200, #bfe0cc);
  line-height: 1;
}
.feature-item h3 {
  font-size: 18px;
  color: var(--green-800);
  margin: 8px 0 12px;
}
.feature-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}
/* ---------- Service detail rows ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.svc-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.svc-detail-card .pic {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.svc-detail-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-detail-card .body {
  padding: 26px 28px 30px;
}
.svc-detail-card h3 {
  font-size: 21px;
  color: var(--green-800);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
}
.svc-detail-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.svc-detail-card .tag-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-detail-card .tag-list li {
  background: var(--green-050);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}
/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(22px, 3.4vw, 32px);
  margin-bottom: 12px;
}
.cta-band p {
  color: #d6ecdd;
  margin-bottom: 26px;
  text-align: left;
}
.cta-band .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ---------- Flyer ---------- */
.flyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin-inline: auto;
}
.flyer-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.flyer-card img {
  width: 100%;
}
/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.ba-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.ba-card .ba-title {
  padding: 16px 22px;
  font-weight: 700;
  color: var(--green-800);
  font-size: 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ba-card .ba-title .badge {
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.ba-pair figure {
  margin: 0;
}
.ba-pair figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ba-pair figcaption {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 8px;
  color: #fff;
}
.ba-pair .before figcaption {
  background: var(--muted);
}
.ba-pair .after figcaption {
  background: var(--green-600);
}
.ba-arrow {
  padding: 0 14px;
  color: var(--gold-dark);
}
/* ---------- Achievements list ---------- */
.ach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ach-list li {
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
/* ---------- Steps (flow) ---------- */
.steps {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.step {
  display: flex;
  gap: 24px;
  padding-bottom: 30px;
  position: relative;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--green-100);
}
.step .step-num {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  line-height: 1.2em;
  text-align: center;
}
.step .step-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.step .step-body h3 {
  font-size: 18px;
  color: var(--green-800);
  margin-bottom: 6px;
}
.step .step-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}
/* ---------- Company profile / history ---------- */
.profile-table, .history-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.profile-table th, .profile-table td, .history-table th, .history-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 15px;
  vertical-align: top;
}
.profile-table th {
  background: var(--green-050);
  color: var(--green-800);
  width: 200px;
  font-weight: 700;
}
.history-table th {
  background: var(--green-050);
  color: var(--green-800);
  width: 200px;
  white-space: nowrap;
  font-weight: 700;
}
.history-table tr:last-child th, .history-table tr:last-child td, .profile-table tr:last-child th, .profile-table tr:last-child td {
  border-bottom: 0;
}
/* ---------- Recruit requirements table ---------- */
.req-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.req-table th, .req-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 15px;
  vertical-align: top;
}
.req-table th {
  background: var(--green-700);
  color: #fff;
  width: 190px;
  font-weight: 700;
}
.req-table td ul {
  margin: 0;
  padding-left: 18px;
}
.req-table td .sub {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 4px;
}
.req-table tr:last-child th, .req-table tr:last-child td {
  border-bottom: 0;
}
/* ---------- Highlight boxes ---------- */
.note-box {
  background: var(--green-050);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 20px 26px;
  font-size: 14px;
  color: var(--ink-soft);
}
.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.badge-row .pill {
  background: var(--gold);
  color: #3a2a06;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
/* ---------- Contact form ---------- */
.form-wrap {
  max-width: 780px;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
}
.form-row {
  margin-bottom: 22px;
}
.form-row label {
  display: block;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
  font-size: 15px;
}
.form-row label .req {
  background: var(--gold);
  color: #3a2a06;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-row label .opt {
  background: var(--green-100);
  color: var(--green-700);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fdfefd;
  transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58, 157, 103, .15);
}
.form-row textarea {
  min-height: 150px;
  resize: vertical;
}
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 24px 0;
}
.form-privacy input {
  width: auto;
  margin-top: 4px;
}
.form-submit {
  text-align: center;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  display: none;
}
.form-status.ok {
  display: block;
  background: var(--green-100);
  color: var(--green-800);
}
/* Contact info cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.contact-info .ci-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-info .ci-card .ci-ico {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
}
.contact-info .ci-card h3 {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-info .ci-card .big {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-800);
}
.contact-info .ci-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
/* ---------- Privacy policy ---------- */
.policy {
  max-width: 860px;
  margin-inline: auto;
}
.policy h3 {
  color: var(--green-800);
  font-size: 18px;
  margin: 28px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--green-500);
}
.policy p, .policy li {
  color: var(--ink-soft);
  font-size: 15px;
}
/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #fff;
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-name {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .06em;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: .08em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: #fff;
  font-size: 14px;
}
.footer-col ul a:hover {
  color: #fff;
}
.footer-contact p {
  font-size: 14px;
  margin: 0 0 8px;
}
.footer-contact .tel {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
/* ---------- Floating buttons ---------- */
.floating {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  transition: transform .2s;
}
.floating a:hover {
  transform: scale(1.08);
  color: #fff;
}
.floating .f-line {
  background: #06c755;
}
.floating .f-contact {
  background: var(--gold);
  color: #3a2a06;
}
.floating .f-tel {
  background: var(--green-600);
  display: none;
}
/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .info-panel {
    grid-template-columns: 1fr;
  }
  .info-panel .info-map {
    min-height: 300px;
  }
  .message-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .message-media {
    order: -1;
  }
}
@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }
  .header-tel {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 340px);
    height: 100vh;
    background: #fff;
    box-shadow: -6px 0 30px rgba(0, 0, 0, .15);
    z-index: 120;
    padding: 84px 24px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .32s ease;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 16px;
  }
  .main-nav a::after {
    display: none;
  }
  .main-nav .nav-tel {
    display: block;
    margin-top: 20px;
    padding: 16px;
    background: var(--green-050);
    border-radius: 12px;
    text-align: center;
  }
  .main-nav .nav-tel .num {
    font-size: 24px;
    font-weight: 800;
    color: var(--green-800);
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-backdrop.show {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 110;
  }
  .pillars {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
  .svc-detail {
    grid-template-columns: 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  body {
    font-size: 15px;
  }
  .topbar {
    display: none;
  }
  .svc-grid, .two-col, .feature-list, .flyer-grid, .ba-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .hero-actions .btn, .cta-band .btn {
    flex: 1 1 auto;
  }
  .profile-table th, .history-table th, .req-table th {
    width: 120px;
  }
  .floating .f-tel {
    display: grid;
  }
  .floating a {
    width: 54px;
    height: 54px;
  }
  .step {
    gap: 16px;
  }
  .step .step-num {
    width: 46px;
    height: 46px;
  }
  .step:not(:last-child)::before {
    left: 22px;
  }
}
@media (max-width: 420px) {
  .brand .brand-name {
    font-size: 18px;
  }
  .container {
    padding-inline: 16px;
  }
  .ba-pair {
    grid-template-columns: 1fr;
  }
  .ba-arrow {
    transform: rotate(90deg);
    padding: 6px 0;
  }
}
@media (max-width:900px) {
  html, body {
    overflow-x: hidden;
  }
  .site-header .container {
    position: relative;
  }
  .brand {
    flex: 1;
    min-width: 0;
  }
  .brand-name, .brand-sub {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .nav-toggle {
    position: relative;
    z-index: 1001;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    transform: translateX(100%);
    z-index: 1000;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-backdrop.show {
    z-index: 999;
  }
}
.indent {
  padding-left: 1em; /* 全体を右に動かす */
  text-indent: -1em; /* 1行目を左に戻す */
}
.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;
}
.ml0 {
  margin-left: 0px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.imageGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.imageItem {
  overflow: hidden;
  border-radius: 10px;
}
.imageItem img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形 */
  object-fit: cover;
  transition: .3s;
}
/*.imageItem:hover img{
    transform:scale(1.05);
}
*/
/* スマホ */
@media (max-width:768px) {
  .imageGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.text-center {
  text-align: center;
}
.message-media img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}