/* =========================================================
   出張買取 ソレカウ - スタイルシート
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  background: #fffdf8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Variables ---------- */
:root {
  --green-900: #1f3d2b;
  --green-700: #2c5f3f;
  --green-500: #4f8a64;
  --green-50:  #eef4ef;
  --gold:      #b89556;
  --gold-light:#d8be83;
  --cream:     #faf6ec;
  --bg-light:  #fffdf8;
  --line:      #e6e1d3;
  --text:      #2a2a2a;
  --text-mute: #6b6b6b;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section {
  padding: 110px 0;
  position: relative;
}
.section--light  { background: var(--bg-light); }
.section--cream  { background: var(--cream); }
.section--green  { background: var(--green-700); color: #fff; }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
}

/* ---------- Section Heading ---------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head__en {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-head__ja {
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-900);
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.section-head__ja::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
}
.section-head__lead {
  margin-top: 24px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 2;
}
.section-head--light .section-head__ja { color: #fff; }
.section-head--light .section-head__lead { color: rgba(255,255,255,0.85); }
.section-head--light .section-head__en { color: var(--gold-light); }

@media (max-width: 768px) {
  .section-head { margin-bottom: 44px; }
  .section-head__ja { font-size: 26px; }
  .section-head__lead { font-size: 14px; }
}

/* =========================================================
   HERO / FIRST VIEW
   ========================================================= */
.hero {
  background: linear-gradient(160deg, #dff0d8 0%, #eef7e8 55%, #f0f8eb 100%);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__main {
  display: grid;
  grid-template-columns: auto auto;  /* コンテンツ幅に合わせる */
  justify-content: center;           /* 全体をセンタリング */
  align-items: flex-end;
  min-height: 440px;
  padding-top: 64px;
  gap: 60px;                         /* 文字と写真の間隔を固定 */
}

/* コピーライト側 */
.hero__copy {
  padding-bottom: 40px;
  max-width: 480px;                  /* 文字ブロックの最大幅を制限 */
}

.hero__kicker {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b89556;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero__title {
  font-family: "Shippori Mincho B1", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: #1f4a30;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.hero__title-brand {
  font-style: normal;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  display: block;
  letter-spacing: 0.12em;
  color: #1a3d28;
}

/* CTA - PC: 1行横並び */
.hero__cta-kochi { display: inline; }
.hero__cta-arr   { display: inline; margin-left: 6px; }

/* キッカー長い部分は極小画面で改行 */
.hero__kicker-long { display: inline; }
@media (max-width: 400px) {
  .hero__kicker-long { display: block; }
}

/* 引用符を小さく・縦位置調整してダクテンに見えないようにする */
.hero__quote {
  font-size: 0.55em;
  vertical-align: top;
  line-height: 1;
  opacity: 0.85;
  letter-spacing: 0;
}
.hero__quote--close {
  margin-left: 0.05em;
}

.hero__rule {
  width: 280px;
  height: 3px;
  background: linear-gradient(90deg, #b89556, #d8be83 60%, transparent);
  margin-bottom: 22px;
  border-radius: 2px;
}

.hero__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #1f4a30;
  line-height: 1.9;
  font-weight: 500;
}

/* 人物写真側 */
.hero__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.hero__person-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
}

.hero__person-name {
  font-size: 13px;
  color: #2c5f3f;
  letter-spacing: 0.12em;
  margin-top: 8px;
  padding-bottom: 16px;
  font-weight: 500;
}

/* バッジ帯 */
.hero__badges-wrap {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  padding: 20px 0;
  margin-top: 0;
}

.hero__badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 2px 14px rgba(44,95,63,0.10);
  flex: 0 0 auto;      /* コンテンツ幅に縮む */
  width: fit-content;
  min-width: 0;
}

.hero__badge-icon {
  color: #2c5f3f;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero__badge-text {
  font-size: 14px;
  line-height: 1.65;
  color: #1f4a30;
  font-weight: 500;
}
.hero__badge-text strong { font-size: 15px; }

/* Hero CTA ボタン — 共通 */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  background: var(--green-700);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(44,95,63,0.30);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.hero__cta:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44,95,63,0.40);
}

/* 固定浮きCTA（スクロール後に表示） */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(31,61,43,0.40);
  transition: background .25s, transform .2s;
}
.floating-cta__btn::before { content: "✉ "; font-size: 13px; }
.floating-cta__btn:hover { background: var(--green-900); transform: translateY(-2px); }

/* Hero レスポンシブ — PC と同じ2カラム構成を維持 */
@media (max-width: 900px) {
  .hero__title { font-size: clamp(22px, 4.5vw, 44px); }
  .hero__title-brand { font-size: clamp(28px, 6vw, 60px); }
  .hero__lead { font-size: 15px; }
}

@media (max-width: 640px) {
  .hero__main {
    grid-template-columns: 1fr 1fr;   /* 2カラム維持 */
    justify-content: stretch;         /* PCのcenterを解除 */
    align-items: flex-end;
    padding-top: 24px;
    gap: 0;
    min-height: 260px;
  }
  /* テキスト縮小・はみ出し防止 */
  .hero__copy {
    max-width: none;                  /* PCの幅制限を解除 */
    padding-bottom: 20px;
    padding-right: 6px;
    overflow: hidden;
  }
  .hero__kicker {
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero__title {
    font-size: clamp(17px, 4.2vw, 28px);
    margin-bottom: 10px;
  }
  .hero__title-brand { font-size: clamp(22px, 5.5vw, 36px); }
  .hero__rule { width: 100%; margin-bottom: 12px; }
  .hero__lead { font-size: 12px; line-height: 1.75; }
  /* CTA — スマホ: 2行レイアウト */
  .hero__cta {
    display: block;
    position: relative;
    font-size: 12px;
    padding: 10px 36px 10px 14px;
    margin-top: 14px;
    letter-spacing: 0.04em;
    border-radius: 2em;
  }
  .hero__cta-text {
    display: block;           /* 1行目: 予約・お問い合わせは */
  }
  .hero__cta-kochi {
    display: block;           /* 2行目: こちら */
    text-align: center;
    margin-top: 2px;
  }
  .hero__cta-arr {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-60%);  /* 1行目の高さに合わせる */
    margin-left: 0;
    font-size: 13px;
  }
  /* バッジのbrを非表示 → 1行に */
  .hero__badge-text br { display: none; }
  /* 写真 */
  .hero__person { order: 0; }          /* order: -1 を解除 */
  .hero__person-img { max-height: 220px; }
  .hero__person-name { font-size: 11px; padding-bottom: 20px; }
  /* バッジ帯 — 縦3つ並び */
  .hero__badges-wrap { padding: 14px 0; }
  .hero__badges {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 16px;
  }
  .hero__badge {
    flex: none;
    width: 100%;       /* スマホは全幅に戻す */
    max-width: 100%;
    padding: 10px 18px;
    gap: 10px;
  }
  .hero__badge-text { font-size: 13px; }
  .hero__badge-text strong { font-size: 14px; }
}

@media (max-width: 400px) {
  .hero__kicker { font-size: 9px; }
  .hero__title { font-size: 15px; }
  .hero__title-brand { font-size: 20px; }
  .hero__lead { font-size: 11px; }
  .hero__cta { font-size: 10px; padding: 8px 12px; }
  .hero__person-img { max-height: 180px; }
}

/* =========================================================
   1. SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px 32px 40px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(31,61,43,0.25);
}
.service-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 24px;
}
.service-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.service-card__desc {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-mute);
  margin-bottom: 24px;
  text-align: left;
}
.service-card__points {
  border-top: 1px dashed var(--line);
  padding-top: 20px;
  text-align: left;
}
.service-card__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 2px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   2. ITEMS
   ========================================================= */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.item-card {
  background: #fff;
  padding: 36px 28px;
  position: relative;
  transition: background .25s ease;
}
.item-card:hover { background: #fdfaf2; }
.item-card__num {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.item-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.item-card__desc {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.85;
}
.items-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-mute);
}
@media (max-width: 900px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .items-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   3. FLOW
   ========================================================= */
.flow-list {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 60px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  opacity: 0.45;
}
.flow-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}
.flow-step:last-child { margin-bottom: 0; }
.flow-step__num {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green-700);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.flow-step__num span {
  font-size: 32px;
  letter-spacing: 0;
  margin-top: 2px;
  color: var(--gold);
}
.flow-step__body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 32px;
  flex: 1;
}
.flow-step__title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.flow-step__body p {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 2;
}
@media (max-width: 700px) {
  .flow-list::before { left: 38px; }
  .flow-step { grid-template-columns: 80px 1fr; gap: 18px; }
  .flow-step__num { width: 78px; height: 78px; font-size: 10px; }
  .flow-step__num span { font-size: 22px; }
  .flow-step__body { padding: 20px 22px; }
}

/* =========================================================
   4. AREA
   ========================================================= */
.section--green .section-head__en { color: var(--gold-light); }
.section--green .section-head__ja { color: #fff; }
.section--green .section-head__ja::after { background: var(--gold-light); }
.section--green .section-head__lead { color: rgba(255,255,255,0.85); }

.area-box {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 48px 56px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  margin-bottom: 28px;
}
.area-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.area-list__pref {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  min-width: 80px;
}
.area-list__note {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}
.area-note {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .area-box { padding: 32px 24px; }
  .area-list { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   5. COMPANY
   ========================================================= */
.company-table {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.company-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.company-row:last-child { border-bottom: none; }
.company-row dt {
  background: var(--green-50);
  color: var(--green-900);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding: 22px 28px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.company-row dd {
  margin: 0;
  padding: 22px 28px;
  font-size: 14.5px;
  color: var(--text);
}
.company-row dd a { color: var(--green-700); text-decoration: underline; }
@media (max-width: 700px) {
  .company-row { grid-template-columns: 1fr; }
  .company-row dt { padding: 14px 18px; }
  .company-row dd { padding: 14px 18px; }
}

/* =========================================================
   6. VOICE
   ========================================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  padding: 36px 36px 32px;
  border-radius: 2px;
  position: relative;
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 16px; right: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 72px;
  color: var(--green-50);
  line-height: 1;
}
.voice-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.voice-card__badge {
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 999px;
}
.voice-card__badge--alt { background: var(--gold); }
.voice-card__person {
  font-size: 13px;
  color: var(--text-mute);
}
.voice-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 14px;
  line-height: 1.6;
}
.voice-card__body {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 2;
}
@media (max-width: 800px) {
  .voice-grid { grid-template-columns: 1fr; gap: 20px; }
  .voice-card { padding: 28px 24px; }
}

/* =========================================================
   7. FAQ
   ========================================================= */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.faq-item__q {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.6;
  transition: background .2s ease;
}
.faq-item__q:hover { background: #fdfaf2; }
.faq-item__mark {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.faq-item__mark--a { color: #fff; background: var(--green-700); border-color: var(--green-700); }
.faq-item__qtext { padding-right: 8px; }
.faq-item__icon {
  position: relative;
  width: 16px; height: 16px;
  justify-self: end;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--green-700);
  transition: transform .25s ease;
}
.faq-item__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item__q[aria-expanded="true"] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-item__a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 0 28px;
  background: var(--cream);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-item__q[aria-expanded="true"] + .faq-item__a {
  padding: 24px 28px 28px;
  max-height: 500px;
}
.faq-item__a p {
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 2;
}
@media (max-width: 600px) {
  .faq-item__q { grid-template-columns: 36px 1fr 24px; padding: 18px 18px; font-size: 15px; }
  .faq-item__mark { width: 32px; height: 32px; font-size: 18px; }
  .faq-item__a { grid-template-columns: 36px 1fr; padding: 0 18px; }
  .faq-item__q[aria-expanded="true"] + .faq-item__a { padding: 18px 18px 22px; }
}

/* =========================================================
   8. CONTACT FORM
   ========================================================= */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 56px 56px;
  border-radius: 4px;
}
.form-row {
  margin-bottom: 24px;
}
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.required {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10.5px;
  padding: 2px 8px;
  margin-left: 6px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  vertical-align: middle;
  font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-light);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
}
.contact-form textarea { resize: vertical; line-height: 1.8; }

.form-row--check { margin-top: 32px; text-align: center; }
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.checkbox input { width: 18px; height: 18px; accent-color: var(--green-700); }

.form-actions {
  text-align: center;
  margin-top: 16px;
}
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 280px;
  padding: 18px 32px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  border-radius: 3px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease;
}
.btn--primary {
  background: var(--green-700);
  color: #fff;
  border: 1px solid var(--green-700);
}
.btn--primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(31,61,43,0.5);
}
@media (max-width: 700px) {
  .contact-form { padding: 32px 22px; }
  .btn { min-width: 0; width: 100%; padding: 16px 20px; font-size: 15px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
  font-size: 13.5px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.footer__tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.footer__nav a {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 6px 0;
  transition: color .2s ease;
  position: relative;
  padding-left: 14px;
}
.footer__nav a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 1px;
  background: var(--gold);
}
.footer__nav a:hover { color: #fff; }
.footer__copy {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}
@media (max-width: 700px) {
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* =========================================================
   FADE-IN ANIMATION
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
