/* ================================================================
   LEBOIS GARDEN — style.css  v3 (design-faithful full rebuild)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* Futura — system stack fallback (WebフォントはCDN不可のため) */
/* 本番環境ではFuturaのWebフォントファイルを font-face で追加してください */

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: #332C1B;
  background: #FEFDFA;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── Design tokens ── */
:root {
  /* Colors */
  --col-bg: #FEFDFA;
  /* サイト背景 */
  --col-green-btn: #43573B;
  /* ボタン・ヘッダーCTA */
  --col-green-hero: #43573B;
  /* hero catch bg */
  --col-green-dark: #43573B;
  --col-green-mid: #5a7a45;
  --col-green-light: #a8bf88;
  --col-green-pale: #eef2e6;
  --col-green-xpale: #F8F7F3;
  /* Why背景 */
  --col-sec-title: #C5CDB1;
  /* セクションタイトル */
  --col-orange: #d97f52;
  --col-orange-light: #e8a07a;
  --col-cream: #faf8f3;
  --col-white: #ffffff;
  --col-text: #332C1B;
  /* メインテキスト */
  --col-text-mid: #666655;
  --col-text-light: #999988;
  --col-border: #dde5ce;
  --col-border-light: #eaeee3;

  /* Typography */
  --ff-en: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  /* 英語 */
  --ff-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  /* 日本語 */

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container: 1080px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .07);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --transition: .25s ease;
}

/* ================================================================
   LAYOUT HELPERS
   ================================================================ */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* Section heading */
.sec-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sec-en {
  font-family: var(--ff-en);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--col-sec-title);
  /* #C5CDB1 */
  line-height: 1.1;
}

.sec-ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: .18em;
  color: #332C1B;
  margin-top: .5rem;
}

/* ================================================================
   HEADER
   ================================================================ */
#hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 52px;
  background: rgba(254, 253, 250, .97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--col-border-light);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}

.hd-logo {
  font-family: var(--ff-en);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--col-green-dark);
  white-space: nowrap;
  flex-shrink: 0;
  /* 左寄せ — margin-right: autoでナビを右に押し出す */
  margin-right: auto;
}

.hd-nav {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 1.5vw, 1.4rem);
}

.hd-nav a {
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--col-text-mid);
  transition: color var(--transition);
  white-space: nowrap;
}

.hd-nav a:hover {
  color: var(--col-green-dark);
}

.hd-nav .hd-cta {
  background: #43573B;
  color: var(--col-white) !important;
  padding: .38rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: .7rem !important;
  letter-spacing: .06em;
  transition: background var(--transition) !important;
}

.hd-nav .hd-cta:hover {
  background: #354a2e !important;
}

/* Hamburger */
.hd-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 2px;
  margin-left: auto;
  flex-shrink: 0;
}

.hd-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--col-green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hd-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hd-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hd-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── ロゴリンク ── */
.hd-logo-link,
.ft-logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ── ロゴ下のサブテキスト ── */
.hd-logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-right: auto;
}

.hd-logo-ja {
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--col-text-light);
  margin-top: 1px;
}

/* ================================================================
   HERO — 画面いっぱい
   ================================================================ */
#hero {
  margin-top: 52px;
  position: relative;
  width: 100%;
  height: calc(100svh - 52px);
  min-height: 480px;
  overflow: hidden;
  background: var(--col-green-xpale);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-grad {
  display: none;
}

.hero-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 3vw, 7rem) clamp(4rem, 8vw, 8rem);
  max-width: 800px;
}

/* キャッチコピー */
.hero-catch {
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}

.hero-catch-line {
  display: inline-block;
  background: #8e9b6d;
  color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 2.8rem);
  font-weight: 400;
  opacity: .9;
  letter-spacing: .06em;
  line-height: 1.5;
  padding: .22em 0 .26em .45em;
  border-radius: 0;
  width: fit-content;
}

/* 説明文 */
.hero-desc {
  display: block;
  font-size: clamp(.72rem, 2vw, 1rem);
  color: var(--col-text);
  line-height: 1.9;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 6px rgba(255, 255, 255, .85);
}

.hero-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: #43573B;
  color: #ffffff;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .78rem 1.8rem;
  border-radius: 30px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: #354a2e;
  transform: translateY(-2px);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #43573B;
  border: 1.5px solid #43573B;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .76rem 1.8rem;
  border-radius: 30px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-hero-outline:hover {
  background: #43573B;
  color: #ffffff;
}

/* ================================================================
   BANNER
   ================================================================ */
#banner-wrap {
  margin-top: 88px;
  padding: 0 var(--gutter);
  background: var(--col-bg);
}

#banner-wrap a {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  line-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: opacity var(--transition);
}

#banner-wrap a:hover {
  opacity: .93;
}

#banner-wrap a:hover img {
  transform: scale(1.01);
}

#banner-wrap img {
  transition: transform .4s ease;
}

#banner-wrap img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

/* ================================================================
   WHY LEBOIS GARDEN
   ================================================================ */
#why {
  position: relative;
  background: transparent;
  /* 背景は2層で制御 */
  overflow: hidden;
}

/* ── タイトル層：#F8F7F3背景の上端に重なる大見出し ── */
.why-title-wrap {
  background: var(--col-bg);
  /* サイト背景色 #FEFDFA */
  padding-top: clamp(2.5rem, 7vw, 6rem);
  position: relative;
  z-index: 2;
}

.why-title-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.why-big-title {
  font-family: var(--ff-en);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--col-sec-title);
  line-height: 0.4;
  /* タイトルを下の緑背景に半分かかるよう下にはみ出す */
  margin-bottom: calc(-0.55em);
  position: relative;
  z-index: 3;
}

/* ── コンテンツ層：#F8F7F3背景 ── */
.why-content-wrap {
  background: #F8F7F3;
  position: relative;
  z-index: 1;
  /* 背景は写真より少し上で終了 → padding-bottomで制御 */
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0;
}

.why-content-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  /* 緑背景はコンテンツの8割あたりで終わらせる */
  padding-bottom: clamp(3rem, 3vw, 5rem);
}

/* 左：テキストエリア */
.why-left {
  padding-top: 1rem;
}

.why-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: var(--col-text);
  letter-spacing: .03em;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  /* 背景色なし */
  background: none;
  border: none;
  padding: 0;
}

.why-icon {
  flex-shrink: 0;
  width: 50px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.why-tree-img {
  width: 100px;
  height: auto;
  display: block;
  opacity: .85;
}

.why-item-body h3 {
  font-size: clamp(.9rem, 1.5vw, 1.02rem);
  font-weight: 500;
  color: var(--col-text);
  margin-bottom: .3rem;
  letter-spacing: .03em;
}

.why-item-body p {
  font-size: .78rem;
  color: var(--col-text-mid);
  line-height: 1.8;
}

/* 右：円形写真 ＋ 背後の円 */
.why-right {
  position: relative;
  /* 写真が画面右端から見切れるために右マージンをマイナスに（PC: 2カラム時のみ） */
  margin-right: calc(-1 * var(--gutter) - 2vw);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
}

/* #E2E7D7の大きな装飾円（写真の後ろ）— why-photo-wrapに対する相対サイズで統一 */
.why-circle-bg {
  position: absolute;
  opacity: 0.7;
  width: 90%;
  aspect-ratio: 1 / 1;
  background: #E2E7D7;
  border-radius: 50%;
  top: 4%;
  right: 6%;
  z-index: 0;
}

/* 写真の円形ラッパー */
.why-photo-wrap {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  /* 画面右端から少しはみ出す（PC: 2カラム時のみ意味を持つ） */
  margin-right: -5%;
}

.why-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── 緑背景の終端：写真の途中で切れる ──
   why-content-wrapの高さより写真が下にはみ出すことで自然に実現 */


/* ================================================================
   CERTIFICATIONS（保有資格）— 左：写真 / 右：資格バッジ
   ================================================================ */
#certifications {
  background: var(--col-bg);
  overflow: hidden;
}

/* .vacant-kicker に揃えたスタイル */
.cert-en {
  font-family: var(--ff-en);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--col-sec-title);
  line-height: 1.1;
  display: block;
}

.cert-ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: .18em;
  color: #332C1B;
  margin-top: .5rem;
}

/* ── レイアウト：左写真 ／ 右バッジ ── */
.cert-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* 左：円形写真（Whyセクションと同系デザイン） */
.cert-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-circle-bg {
  position: absolute;
  width: 90%;
  aspect-ratio: 1 / 1;
  background: var(--col-green-xpale);
  border-radius: 50%;
  top: 6%;
  left: -6%;
  z-index: 0;
}

.cert-photo-circle {
  position: relative;
  z-index: 1;
  width: 88%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cert-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 右：バッジ一覧（常に 上段3つ・下段2つ を維持する6列グリッド） */
.cert-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem) 0;
  list-style: none;
  max-width: 480px;
}

.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 上段：1〜3番目（各2列分） */
.cert-item:nth-child(1) {
  grid-column: 1 / 3;
}

.cert-item:nth-child(2) {
  grid-column: 3 / 5;
}

.cert-item:nth-child(3) {
  grid-column: 5 / 7;
}

/* 下段：4〜5番目（中央寄せ、各2列分＋隣接gap） */
.cert-item:nth-child(4) {
  grid-column: 2 / 4;
  justify-content: flex-end;
  padding-right: .35rem;
}

.cert-item:nth-child(5) {
  grid-column: 4 / 6;
  justify-content: flex-start;
  padding-left: .35rem;
}

.cert-img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ================================================================
   INSTAGRAM
   ================================================================ */
#instagram {
  background: transparent;
}

.insta-handle {
  display: block;
  text-align: center;
  font-size: .78rem;
  color: var(--col-text-light);
  letter-spacing: .12em;
  margin-bottom: 1.6rem;
  margin-top: 1rem;
}

.insta-handle a {
  color: var(--col-green-mid);
  transition: color var(--transition);
}

.insta-handle a:hover {
  color: var(--col-green-dark);
}

.insta-handle:hover {
  text-decoration: underline;
  opacity: 0.75;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.insta-cell {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.insta-cell:hover img {
  transform: scale(1.08);
  filter: brightness(1.06);
}

/* Pagination dots — matching design */
.insta-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 1.1rem;
}

.insta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--col-border);
  transition: background var(--transition);
}

.insta-dot.on {
  background: var(--col-green-dark);
}

/* ================================================================
   SERVICE + VACANT（一体ブロック）
   ================================================================ */
#service-vacant-block {
  position: relative;
  background: transparent;
}

/* ① タイトル層 */
.sv-title-wrap {
  background: var(--col-bg);
  padding-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.sv-title-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.sv-big-title {
  font-family: var(--ff-en);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--col-sec-title);
  line-height: 0.4;
  margin-bottom: calc(-0.45em);
  position: relative;
  z-index: 3;
}

/* ② コンテンツ層：F6F4F2、balloonの途中で終わる */
.sv-content-wrap {
  background: #F6F4F2;
  position: relative;
  z-index: 1;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 120px;
  overflow: visible;
}

.sv-content-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sv-sec-ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: .14em;
  color: var(--col-text-light);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* タブ */
.sv-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-bottom: 0;
}

.sv-tab {
  background: var(--col-white);
  border: 1.5px solid #548859;
  border-radius: 0;
  box-shadow: 3px 3px #B8BDB5;
  color: var(--col-text);
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .85rem 1rem;
  text-align: center;
  line-height: 1.3;
  transition: all var(--transition);
}

.sv-tab:hover {
  background: #e8ede5;
}

.sv-tab.on {
  background: #548859;
  border-color: #ffffff;
  color: var(--col-white);
  font-weight: 700;
  box-shadow: 3px 3px #B8BDB5;
}

/* パネル */
.sv-panels {
  margin-top: 1.4rem;
  position: relative;
  z-index: 2;
}

.sv-panel {
  display: none;
  animation: panelIn .3s ease;
}

.sv-panel.on {
  display: block;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* 吹き出しカード */
.sv-balloon {
  position: relative;
  background: var(--col-white);
  border-radius: 16px;
  padding: 2rem 2.2rem 2.4rem;
  box-shadow: 6px 6px rgba(0, 0, 0, .05);
}

.sv-balloon::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border: 16px solid transparent;
  border-bottom: 16px solid rgba(0, 0, 0, .06);
  border-top: none;
}

.sv-balloon::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid transparent;
  border-bottom: 14px solid var(--col-white);
  border-top: none;
}

.sv-header {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: .5rem;
}

.sv-name {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--col-text);
  letter-spacing: .03em;
  border-bottom: 4px solid #C5CDB1;
  padding-bottom: .1em;
  line-height: 1.3;
}

.sv-time {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: var(--col-text-mid);
  white-space: nowrap;
}

.sv-time-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.sv-desc {
  font-size: .83rem;
  color: var(--col-text-mid);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.sv-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.sv-ba-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/11;
}

.sv-ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .88);
  color: var(--col-text);
  font-family: var(--ff-en);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .25rem .85rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ================================================================
   VACANT PROPERTY
   ================================================================ */
#vacant {
  background: var(--col-bg);
  padding-top: clamp(7rem, 14vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.vacant-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vacant-kicker {
  font-family: var(--ff-en);
  font-size: 1.3rem;
  letter-spacing: .18em;
  color: var(--col-sec-title);
  display: block;
  margin-bottom: .6rem;
}

.vacant-heading {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--col-text);
  margin-bottom: 1rem;
}

.vacant-lead {
  font-size: .85rem;
  color: var(--col-text-mid);
  line-height: 2;
  text-align: center;
}

.vacant-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.vacant-photos {
  position: relative;
  width: 100%;
  /* aspect-ratioで高さを自動算出 → 固定px高さによる崩れを防ぐ */
  aspect-ratio: 1 / 1.05;
  max-width: 480px;
}

.vacant-photo-item {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.vacant-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vacant-photo-before {
  width: 78%;
  aspect-ratio: 4/3;
  top: 0;
  left: 0;
  z-index: 1;
}

.vacant-photo-after {
  width: 78%;
  aspect-ratio: 4/3;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.vacant-photo-item .sv-ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
}

.vacant-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: .5rem;
}

.vacant-feats {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0 auto;
}

.vacant-feat {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.vacant-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vacant-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vacant-feat-body h3 {
  font-size: .95rem;
  font-weight: 500;
  color: var(--col-text);
  margin-bottom: .3rem;
}

.vacant-feat-body p {
  font-size: .8rem;
  color: var(--col-text-mid);
  line-height: 1.8;
}

.vacant-checklist-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.vacant-checklist-title {
  display: inline-block;
  border: 1px solid #548859;
  border-radius: 30px;
  padding: .55rem 1.6rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--col-text);
  letter-spacing: .04em;
  margin: 0 auto .3rem;
  background: #ffffff;
}

.vacant-checklist-arrow {
  font-size: 1.1rem;
  color: var(--col-text-mid);
  text-align: center;
  margin: 0 auto .4rem;
}

.vacant-checklist {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--col-border);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.vacant-checklist li {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--col-text-mid);
  line-height: 1.6;
}

.vacant-checklist li::before {
  content: "✓";
  color: #C7674E;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--col-green-dark);
  color: var(--col-white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .72rem 1.8rem;
  border-radius: 30px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-green:hover {
  background: var(--col-green-mid);
  transform: translateY(-2px);
}

/* ================================================================
   SERVICE AREA
   ================================================================ */
#area {
  background: var(--col-bg);
}

.area-lead {
  text-align: center;
  font-size: .85rem;
  color: var(--col-text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* タグ：円形ピル */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.area-tag {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--col-white);
  border: 1px solid #e0ddd6;
  color: var(--col-text);
  font-size: .72rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  letter-spacing: .03em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.area-tag-small {
  font-size: .62rem;
}

/* 福岡県マップ画像 */
.area-map-wrap {
  max-width: 580px;
  margin: 0 auto 2rem;
}

.area-map-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.area-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .78rem;
  color: var(--col-text-mid);
  line-height: 1.8;
}


/* ================================================================
   CONTACT ボタン切り替え
   ================================================================ */
.contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: .85rem 2rem;
  border-radius: 40px;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  background: var(--col-green-dark);
  color: var(--col-white);
  border: 1.5px solid var(--col-green-dark);
}

.contact-tab-btn.active {
  background: var(--col-green-dark);
  color: var(--col-white);
}

.contact-tel-btn,
.contact-line-btn {
  background: transparent;
  color: var(--col-green-dark);
  border: 1.5px solid var(--col-green-dark);
}

.contact-tel-btn:hover,
.contact-line-btn:hover {
  background: var(--col-green-dark);
  color: var(--col-white);
}

#contact-form-area {
  transition: opacity .3s ease;
}

@media (max-width: 480px) {
  .contact-tab-btn {
    min-width: 140px;
    font-size: .82rem;
    padding: .75rem 1.4rem;
  }
}

/* ================================================================
   CONTACT
   ================================================================ */
#contact {
  background: var(--col-white);
}

.contact-lead {
  text-align: center;
  font-size: .82rem;
  color: var(--col-text-mid);
  line-height: 2;
  margin-bottom: 2.5rem;
}

.contact-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--col-white);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}

/* Two-column row */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.f-group {
  margin-bottom: 1rem;
}

.f-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--col-text-mid);
  margin-bottom: .35rem;
}

.f-req {
  background: #C7674E;
  color: var(--col-white);
  font-size: .57rem;
  font-weight: 700;
  padding: .1rem .38rem;
  border-radius: 2px;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.f-input,
.f-select,
.f-textarea {
  width: 100%;
  border: 1.5px solid var(--col-border);
  border-radius: var(--radius-sm);
  padding: .6rem .88rem;
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: var(--col-text);
  background: var(--col-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: var(--col-green-mid);
  box-shadow: 0 0 0 3px rgba(122, 148, 85, .14);
  background: var(--col-white);
}

.f-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.8;
}

.f-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

/* Checkbox pills */
.f-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.f-check-wrap {
  position: relative;
}

.f-check-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.f-check-label {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--col-text-mid);
  padding: .32rem .85rem;
  border: 1.5px solid var(--col-border);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.f-check-wrap input:checked+.f-check-label {
  background: var(--col-green-pale);
  border-color: var(--col-green-mid);
  color: var(--col-green-dark);
  font-weight: 700;
}

/* Submit */
.f-submit-row {
  text-align: center;
  margin-top: 1.8rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--col-orange);
  color: var(--col-white);
  border: none;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: .95rem 4rem;
  border-radius: 40px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn-submit:hover {
  background: #c96e41;
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: none;
}

.f-privacy {
  text-align: center;
  margin-top: 1rem;
  font-size: .68rem;
  color: var(--col-text-light);
}


/* ================================================================
   INSTAGRAM カルーセル埋め込み（002版）
   ================================================================ */

/* コンテナ */
.insta-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 auto;
}

/* スライドビューポート */
.insta-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

/* スライドトラック */
.insta-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform .4s ease;
  will-change: transform;
  align-items: flex-start;
}

/* 各スライド：PC は3枚表示（gap込みで幅計算） */
.insta-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  /* max-height: 540px; */
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 6px;
}

/* 埋め込みウィジェット自体のサイズ調整 */
.insta-slide .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

/* 矢印ボタン */
.insta-carousel-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--col-border, #dde5ce);
  background: var(--col-white, #fff);
  color: var(--col-text-mid, #666);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  user-select: none;
}

.insta-carousel-btn:hover {
  background: var(--col-green-dark, #43573B);
  color: #fff;
  border-color: var(--col-green-dark, #43573B);
}

/* ドット */
.insta-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.2rem;
}

.ic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--col-border, #dde5ce);
  cursor: pointer;
  transition: background .25s ease;
}

.ic-dot.on {
  background: var(--col-green-dark, #43573B);
}

/* SP（768px以下）：1枚表示 */
@media (max-width: 768px) {
  .insta-slide {
    flex: 0 0 100%;
    /* max-height: 480px; */
    max-height: 300px;
  }

  .insta-carousel-track {
    gap: 0;
  }

  .insta-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
#ft {
  background: #65744B;
  padding: 2.2rem var(--gutter) 1.6rem;
}

.ft-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}

.ft-logo {
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--col-white);
}

.ft-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.ft-nav a {
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

.ft-nav a:hover {
  color: var(--col-white);
}

.ft-logo-ja {
  font-size: .58rem;
  letter-spacing: .14em;
  color: #ffffff;
  margin-top: 3px;
  text-align: center;
}

.ft-copy {
  font-size: .65rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .08em;
}

/* ================================================================
   REVEAL ON SCROLL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}


/* ================================================================
   MOBILE FULLSCREEN OVERLAY MENU
   ================================================================ */
.mob-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #43573B;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 0 2rem;
}

.mob-nav-overlay.is-open {
  display: flex;
}

/* ヘッダー行 */
.mob-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

.mob-nav-logo {
  text-decoration: none;
}

.mob-logo-en {
  font-family: var(--ff-en);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--col-white);
}

.mob-logo-ja {
  font-size: .58rem;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

/* 閉じるボタン */
.mob-nav-close {
  background: rgba(255, 255, 255, .15);
  border: none;
  color: var(--col-white);
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.mob-nav-close:hover {
  background: rgba(255, 255, 255, .25);
}

/* ナビリスト */
.mob-nav-list {
  list-style: none;
  padding: 0;
  flex: 1;
}

.mob-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mob-nav-link {
  display: flex;
  flex-direction: column;
  padding: 1.3rem 1.5rem;
  text-decoration: none;
  transition: background var(--transition);
  position: relative;
}

.mob-nav-link::after {
  content: '›';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .4);
}

.mob-nav-link:hover {
  background: rgba(255, 255, 255, .07);
}

.mob-nav-ja {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--col-white);
  letter-spacing: .04em;
  margin-bottom: .2rem;
}

.mob-nav-en {
  font-family: var(--ff-en);
  font-size: .62rem;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .5);
}

/* CTAボタン */
.mob-nav-cta {
  padding: 2rem 1.5rem 0;
  flex-shrink: 0;
}

.mob-cta-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: var(--col-white);
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 1rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}

.mob-cta-btn:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--col-white);
}

/* ================================================================
   INSTAGRAM スライダー（スマホのみ）
   ================================================================ */
.insta-slider-wrap {
  overflow: visible;
}

/* Instagram slider — PC: 5列グリッド風スライド / SP: 1枚スライド */
.insta-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.insta-slider-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.insta-grid {
  display: flex;
  gap: 0;
  transition: transform .4s ease;
  will-change: transform;
}

/* PC: セル間にgap */
@media (min-width: 769px) {
  .insta-grid {
    gap: .6rem;
  }

  .insta-cell {
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
}

/* PC: 5枚同時表示 */
.insta-cell {
  flex: 0 0 20%;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  display: block;
}

.insta-cell:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* 矢印ボタン */
.insta-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--col-border);
  background: var(--col-white);
  color: var(--col-text-mid);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.insta-arrow:hover {
  background: var(--col-green-dark);
  color: var(--col-white);
  border-color: var(--col-green-dark);
}

/* SP: 1枚スライド */
@media (max-width: 768px) {
  .insta-cell {
    flex: 0 0 100%;
  }

  .insta-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .insta-slider-outer {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .insta-slider-outer {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* ================================================================
   RESPONSIVE — 全デバイス対応（統一ロジック）
   ================================================================ */

/* ────────────────────────────────────────
   タブレット（〜960px）
   ──────────────────────────────────────── */
@media (max-width: 960px) {

  /* Why: 2カラム→1カラム、円形写真は中央寄せで相対サイズ維持 */
  .why-content-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-right {
    margin-right: 0;
    justify-content: center;
    width: 100%;
  }

  .why-photo-wrap {
    width: min(380px, 70vw);
    max-width: 380px;
    margin-right: 0;
  }

  .why-circle-bg {
    width: 50%;
    right: auto;
    left: 44%;
    transform: translateX(-46%);
    top: 4%;
  }

  /* Vacant: 2カラム→1カラム、写真エリアは中央寄せ＆比率維持 */
  .vacant-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vacant-photos {
    margin: 0 auto;
    max-width: 420px;
  }

  .vacant-checklist {
    padding: 1.4rem 3rem;
    width: 70%;
    margin: 0 auto;
  }

  /* Service */
  .sv-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .sv-ba {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .f-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ────────────────────────────────────────
   スマートフォン（〜768px）
   ──────────────────────────────────────── */
@media (max-width: 768px) {

  /* ヘッダー */
  .hd-nav {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--col-white);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--col-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    gap: .75rem;
    max-height: calc(100svh - 52px);
    overflow-y: auto;
    z-index: 200;
  }

  .hd-nav.is-open {
    display: flex;
  }

  .hd-burger {
    display: flex;
  }

  .hd-nav .hd-cta {
    text-align: center;
    border-radius: 8px;
    padding: .6rem 1rem;
  }

  /* Hero */
  #hero {
    height: 90svh;
    min-height: 460px;
    aspect-ratio: unset;
  }

  #hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    background: linear-gradient(to bottom,
        rgba(255, 250, 243, 0) 0%,
        rgba(255, 250, 243, 0.5) 30%,
        rgba(255, 250, 243, 0.82) 60%,
        rgba(255, 250, 243, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .hero-body {
    max-width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding: 0 1.5rem clamp(3rem, 8svh, 6rem);
    position: relative;
    z-index: 1;
  }

  .hero-catch {
    margin-bottom: .75rem;
  }

  .hero-catch-line {
    font-size: clamp(1.25rem, 6.5vw, 1.9rem);
    opacity: 1;
  }

  .hero-desc {
    font-size: clamp(.78rem, 3.8vw, .95rem);
    color: var(--col-text);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    margin-bottom: 1.4rem;
    text-shadow: none;
  }

  .hero-btns {
    gap: .55rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    font-size: .82rem;
    padding: .75rem 1.6rem;
    width: fit-content;
  }

  /* Banner */
  #banner-wrap {
    margin-top: 48px;
    padding: 0 1rem;
  }

  /* Why */
  .why-title-wrap {
    padding-top: 4.5rem;
  }

  .why-big-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin-bottom: calc(-0.4em);
  }

  .why-content-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .why-right {
    margin-right: 0;
    justify-content: center;
  }

  .why-photo-wrap {
    width: min(300px, 78vw);
    max-width: 300px;
    margin-right: 0;
  }

  .why-circle-bg {
    width: 45%;
    right: auto;
    left: 40%;
    transform: translateX(-44%);
    top: 6%;
  }

  .why-subtitle {
    font-size: 1.1rem;
  }

  /* Certifications: SP では「上に月桂樹バッジ・下に写真」の縦並びに */
  #certifications {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .cert-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
  }

  /* 表示順を入れ替え：バッジ→写真 */
  .cert-list {
    order: 1;
  }

  .cert-photo-wrap {
    order: 2;
    justify-self: center;
  }

  .cert-list {
    max-width: 420px;
    margin: 0 auto;
  }

  .cert-img {
    width: 160px;
    max-width: 100%;
  }

  .cert-photo-wrap {
    width: min(300px, 78vw);
    margin: 0 auto;
  }

  .cert-photo-circle {
    width: 88%;
    max-width: 280px;
  }

  .cert-circle-bg {
    left: auto;
    top: 4%;
    right: 12%;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  /* Service */
  .sv-title-wrap {
    padding-top: 4.5rem;
  }

  .sv-big-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .sv-sec-ja {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .sv-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
  }

  .sv-tab {
    font-size: .8rem;
    padding: .7rem .5rem;
  }

  .sv-balloon {
    padding: 1.4rem 1.2rem 1.8rem;
  }

  .sv-ba {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .sv-content-wrap {
    padding-bottom: 0;
  }

  .sv-panels {
    padding-bottom: 0;
  }

  /* Vacant */
  #vacant {
    padding-top: 4.5rem;
  }

  .vacant-head {
    margin-bottom: 2rem;
  }

  .vacant-kicker {
    letter-spacing: 0;
    font-size: 1.1rem;
  }

  .vacant-heading {
    font-size: 1.1rem;
  }

  .vacant-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }

  .vacant-photos {
    max-width: 340px;
  }

  .vacant-photo-item {
    border-radius: 8px;
  }

  .vacant-right {
    gap: 2rem;
  }

  .vacant-checklist-title {
    font-size: .85rem;
    padding: .5rem 1.2rem;
  }

  .vacant-checklist {
    padding: 1.4rem 4rem;
    width: 80%;
    margin: 0 auto;
  }

  /* Service Area */
  .area-tags {
    gap: .6rem;
  }

  .area-tag {
    width: 72px;
    height: 72px;
    font-size: .66rem;
  }

  .area-tag-small {
    font-size: .58rem;
  }

  /* Contact */

  .contact-btns {
    flex-direction: column;
    align-items: center;
  }

  .contact-tab-btn {
    width: 100%;
    max-width: 320px;
  }


  .f-row {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    padding: .9rem 2rem;
    font-size: .84rem;
    letter-spacing: .1em;
  }

  /* Footer */
  .ft-nav {
    gap: .9rem;
  }
}

/* ────────────────────────────────────────
   小スマートフォン（〜480px）
   ──────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --gutter: 1rem;
  }

  .why-title-wrap {
    padding-top: 4rem;
  }

  .why-photo-wrap {
    width: min(260px, 84vw);
    max-width: 260px;
  }

  .why-circle-bg {
    width: 70%;
    right: auto;
    left: 40%;
    transform: translateX(-46%);
    top: 6%;
  }

  #certifications {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .cert-list {
    max-width: 340px;
    gap: 1.1rem 0;
    margin-top: 1.2rem;
  }

  .cert-img {
    width: 160px;
    max-width: 100%;
  }

  .cert-photo-wrap {
    width: min(260px, 84vw);
  }

  .cert-photo-circle {
    max-width: 240px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sv-title-wrap {
    padding-top: 4rem;
  }

  .sv-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
  }

  .sv-tab {
    font-size: .72rem;
    padding: .6rem .4rem;
  }

  .sv-ba {
    grid-template-columns: 1fr;
  }

  .sv-panels {
    padding-bottom: 80px;
  }

  #vacant {
    padding-top: 4rem;
  }

  .vacant-photos {
    max-width: 280px;
  }

  .vacant-checklist {
    padding: 2rem 1.6rem;
    width: 100%;
  }

  .vacant-right {
    gap: 1.6rem;
  }

  .area-tags {
    gap: .5rem;
  }

  .area-tag {
    width: 64px;
    height: 64px;
    font-size: .62rem;
  }

  .area-tag-small {
    font-size: .54rem;
  }

  .hero-catch-line {
    font-size: clamp(1rem, 5.5vw, 1.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}