@charset "utf-8";
/* ==========================================================================
   株式会社市場作り コーポレートサイト
   デザイン方針: オレンジ×グリーン / 丸ゴシック / 吹き出しモチーフ
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. トークン
   -------------------------------------------------------------------------- */
:root {
  --orange:        #f5913e;
  --orange-light:  #fbb072;
  --orange-deep:   #e8791f;
  --orange-pale:   #fde9dc;
  --orange-tint:   #fff4ec;

  --green:         #1f7a3c;
  --green-deep:    #14602d;
  --green-light:   #4aa864;

  --ink:           #23453a;
  --ink-soft:      #4e6b60;
  --line:          #ecdfd6;

  --cream:         #fff8f3;
  --white:         #ffffff;

  --stroke:        #3a2a1c;

  --font-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-base:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --wrap:  1160px;
  --gut:   clamp(20px, 5vw, 40px);
  --radius-lg: 40px;
  --radius-md: 24px;

  --shadow-soft: 0 10px 30px rgba(150, 96, 55, .10);
  --shadow-card: 0 18px 44px rgba(150, 96, 55, .14);
}

/* --------------------------------------------------------------------------
   2. リセット / ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s, background-color .2s, box-shadow .2s, transform .2s; }
a:hover { opacity: .78; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -60px; z-index: 200;
  transform: translateX(-50%);
  padding: 10px 22px; border-radius: 0 0 14px 14px;
  background: var(--green); color: #fff; font-weight: 700;
}
.skip-link:focus { top: 0; }

.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.sp-only { display: none; }
@media (max-width: 767px) { .sp-only { display: inline; } .pc-only { display: none !important; } }

/* --------------------------------------------------------------------------
   3. ヘッダー
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 14px var(--gut) 0;
  transition: padding .25s;
}
.site-header__inner {
  width: min(100%, 1360px); margin-inline: auto;
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
}
.brand { flex: none; margin-right: auto; }
.brand__logo { width: clamp(168px, 17vw, 252px); }

.gnav {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 6px 10px;
}
.gnav__list { display: flex; align-items: center; }
.gnav__list a {
  display: block; padding: 12px clamp(12px, 1.4vw, 20px);
  font-family: var(--font-round); font-weight: 700; font-size: 15px;
  color: var(--green-deep); border-radius: 999px; white-space: nowrap;
}
.gnav__list a:hover { opacity: 1; background: var(--orange-tint); color: var(--orange-deep); }
.gnav__list a[aria-current="page"] { color: var(--orange-deep); }

.btn-contact {
  flex: none; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--green); color: #fff;
  font-family: var(--font-round); font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 20px rgba(31, 122, 60, .28);
}
.btn-contact:hover { opacity: 1; background: var(--green-deep); transform: translateY(-2px); }
.btn-contact__icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--green); }
.btn-contact__icon svg { width: 17px; height: 13px; }

.nav-toggle { display: none; }

@media (max-width: 1023px) {
  .gnav, .btn-contact { display: none; }
  .nav-toggle {
    display: grid; place-items: center; flex: none;
    width: 52px; height: 52px; border-radius: 50%;
    background: #fff; box-shadow: var(--shadow-soft); color: var(--green-deep);
  }
  .nav-toggle__bars { display: grid; gap: 5px; width: 22px; }
  .nav-toggle__bars i { display: block; height: 2.5px; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

.drawer {
  position: fixed; inset: 0; z-index: 99;
  padding: 100px var(--gut) 40px;
  background: var(--orange-tint);
  overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer__nav ul { display: grid; gap: 4px; }
.drawer__nav a {
  display: block; padding: 16px 20px; border-radius: 18px;
  font-family: var(--font-round); font-weight: 700; font-size: 18px; color: var(--green-deep);
  background: #fff; box-shadow: var(--shadow-soft);
}
.drawer__cta { margin-top: 22px; width: 100%; justify-content: center; }
body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   4. ボタン
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 18px;
  min-width: 216px; padding: 15px 16px 15px 30px;
  border-radius: 999px;
  font-family: var(--font-round); font-weight: 700; font-size: 16px;
}
.btn__arrow {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 15px; line-height: 1;
  transition: transform .25s;
}
.btn:hover { opacity: 1; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--outline { background: #fff; color: var(--green-deep); border: 1.5px solid var(--green); }
.btn--outline .btn__arrow { background: var(--green); color: #fff; }
.btn--outline:hover { background: var(--green); color: #fff; }
.btn--outline:hover .btn__arrow { background: #fff; color: var(--green); }

.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(232, 121, 31, .3); }
.btn--orange .btn__arrow { background: #fff; color: var(--orange-deep); }
.btn--orange:hover { background: var(--orange-deep); transform: translateY(-2px); }

.btn--green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(31, 122, 60, .28); }
.btn--green .btn__arrow { background: #fff; color: var(--green); }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--orange-deep); box-shadow: 0 12px 28px rgba(120, 60, 20, .18); }
.btn--white .btn__arrow { background: var(--orange); color: #fff; }
.btn--white:hover { transform: translateY(-2px); }

.btn--lg { min-width: 300px; padding: 19px 19px 19px 36px; font-size: 18px; }
.btn--lg .btn__arrow { width: 40px; height: 40px; }

/* --------------------------------------------------------------------------
   5. 見出し / セクション
   -------------------------------------------------------------------------- */
.sec-head { text-align: center; margin-bottom: clamp(38px, 6vw, 64px); }
.sec-head__label {
  display: inline-flex; align-items: center; gap: 16px;
}
.sec-head__ja {
  display: inline-block; padding: 7px 30px; border-radius: 999px;
  background: var(--orange); color: #fff;
  font-family: var(--font-round); font-weight: 700; font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: .34em; text-indent: .34em;
}
.sec-head__en {
  font-family: var(--font-round); font-weight: 900; font-size: clamp(20px, 2.6vw, 26px);
  color: var(--green); letter-spacing: .02em;
}
.sec-head__title {
  margin-top: 26px;
  font-family: var(--font-round); font-weight: 700;
  font-size: clamp(24px, 3.6vw, 38px); line-height: 1.6; color: var(--green-deep);
}
.sec-head__text { margin-top: 18px; color: var(--ink-soft); }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--orange-tint); }

/* 白い角丸コンテナ（ヒーローに食い込む） */
.sheet {
  position: relative; z-index: 2;
  margin-top: -56px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--white);
}

/* --------------------------------------------------------------------------
   6. ヒーロー
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(126px, 13vw, 178px) var(--gut) 0;
  background:
    radial-gradient(58% 48% at 50% 46%, #fff2e8 0%, rgba(255, 242, 232, 0) 72%),
    linear-gradient(180deg, #fdf3ee 0%, #fbe4d5 62%, #fadfcd 100%);
  overflow: hidden;
}
.hero__inner {
  position: relative; width: min(100%, 1360px); margin-inline: auto;
  min-height: clamp(350px, 36vw, 500px);
  display: flex; flex-direction: column; justify-content: flex-end;
}

.hero__titlewrap { position: relative; z-index: 3; width: fit-content; margin-inline: auto; }

.hero__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-round); font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: .02em;
  /* em 指定だと -webkit-text-stroke が効かないブラウザがあるため px で持つ */
  -webkit-text-stroke-color: var(--stroke);
  paint-order: stroke fill;
}
.hero__title span { display: block; }
.hero__title .l1 {
  font-size: clamp(19px, 2.9vw, 42px); letter-spacing: .22em; text-indent: .22em;
  -webkit-text-stroke-width: clamp(3px, .44vw, 6.5px);
  text-shadow: clamp(1px, .16vw, 2.4px) clamp(1.5px, .22vw, 3.2px) 0 var(--orange);
}
.hero__title .l2, .hero__title .l3 {
  font-size: clamp(42px, 6.4vw, 96px);
  -webkit-text-stroke-width: clamp(6px, .98vw, 14.5px);
  text-shadow: clamp(2px, .34vw, 5px) clamp(3px, .45vw, 6.5px) 0 var(--orange);
}
.hero__title .l2 { margin-top: .1em; }
.hero__title .l3 { margin-top: .04em; }
.hero__title .l3 small { font-size: .55em; letter-spacing: .02em; }

/* マスコット（タイトル右上に添える） */
.hero__mascot {
  position: absolute; z-index: 4;
  top: clamp(-14px, -.8vw, 0px); right: clamp(-46px, -3.2vw, -18px);
  width: clamp(84px, 11vw, 152px);
}

.hero__photo {
  position: relative; z-index: 3;
  display: block; margin: clamp(2px, 1.2vw, 18px) auto -8px;
  width: clamp(290px, 42vw, 580px);
}

/* 吹き出し */
.hero__bubbles { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.bubble {
  position: absolute;
  display: flex; align-items: center;
  max-width: 30%;
  animation: bubbleFloat 6s ease-in-out infinite;
}
.bubble__body {
  position: relative;
  padding: clamp(13px, 1.3vw, 19px) clamp(15px, 1.5vw, 22px);
  border-radius: 26px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-round); font-weight: 700;
  font-size: clamp(11px, .87vw, 13.5px); line-height: 1.68; letter-spacing: .01em;
  max-width: 200px;
  box-shadow: 0 12px 26px rgba(190, 110, 50, .18);
}
.bubble__body::after {
  content: ""; position: absolute; bottom: -13px;
  width: 30px; height: 22px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 34% 100%);
}
.bubble--l .bubble__body::after { left: 34px; }
.bubble--r .bubble__body::after { right: 34px; transform: scaleX(-1); }
.bubble__face {
  flex: none; width: clamp(64px, 6.6vw, 92px); height: clamp(64px, 6.6vw, 92px);
  border-radius: 50%; object-fit: cover;
  background: var(--orange-pale);
  box-shadow: 0 10px 22px rgba(190, 110, 50, .2);
}
.bubble--l .bubble__face { order: -1; margin-right: -16px; }
.bubble--r .bubble__face { margin-left: -16px; }

/* 左右の余白ゾーンにだけ置き、中央のタイトルには重ねない */
.bubble.b1 { top: 14%; left: 0;    animation-delay: 0s; }
.bubble.b2 { top: -14%; left: 12%; animation-delay: .8s; }
.bubble.b3 { top: -12%; right: 9%; animation-delay: 1.6s; }
.bubble.b4 { top: 55%; left: 2%;   animation-delay: 2.4s; }
.bubble.b5 { top: 24%; right: 0;   animation-delay: 3.2s; }
.bubble.b6 { top: 63%; right: 2%;  animation-delay: 4s; }

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) { .bubble { animation: none; } }

/* モバイル: 吹き出しは絶対配置をやめて横スクロールの帯にする */
@media (max-width: 1023px) {
  .hero__bubbles {
    position: static; display: flex; gap: 14px;
    margin: 28px calc(var(--gut) * -1) 0; padding: 6px var(--gut) 76px;
    overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .hero__bubbles::-webkit-scrollbar { display: none; }
  .bubble { position: static; flex: none; max-width: none; scroll-snap-align: center; animation: none; }
  .bubble__body { width: 196px; max-width: none; font-size: 12.5px; line-height: 1.75; padding: 16px 20px; }
  .bubble--r { flex-direction: row-reverse; }
  .bubble--r .bubble__face { margin: 0 -18px 0 0; }
  .bubble--l .bubble__face { margin: 0 0 0 -18px; order: 0; }
  .bubble__body::after { display: none; }
}

/* 狭い画面ではマスコットをタイトルの真上に置く */
@media (max-width: 767px) {
  .hero__titlewrap { padding-top: 62px; }
  .hero__mascot { top: 0; right: auto; left: 50%; width: 124px; transform: translateX(-50%); }
  .hero__photo { width: min(84%, 340px); }
}

/* --------------------------------------------------------------------------
   7. メッセージ
   -------------------------------------------------------------------------- */
.message { padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 108px); }

.speech {
  position: relative;
  max-width: 860px; margin: 0 auto clamp(46px, 6vw, 78px);
  padding: clamp(22px, 3vw, 34px) clamp(24px, 4vw, 48px);
  border-radius: 999px;
  background: var(--orange);
  text-align: center;
}
.speech::after {
  content: ""; position: absolute; left: 50%; bottom: -26px;
  width: 56px; height: 34px; margin-left: -70px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 22% 100%);
}
.speech__text {
  font-family: var(--font-round); font-weight: 700; color: #fff;
  font-size: clamp(21px, 3.4vw, 38px); line-height: 1.4; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: .32em; flex-wrap: wrap; justify-content: center;
}
.speech__strong { font-size: 1.12em; letter-spacing: .1em; }
.speech__icon { width: clamp(28px, 3.4vw, 46px); }
@media (max-width: 767px) {
  .speech { border-radius: 32px; }
  .speech::after { margin-left: -28px; width: 44px; height: 26px; bottom: -20px; }
}

.message__cols {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.message__lead p + p { margin-top: 1.7em; }
.message__lead { font-size: clamp(15px, 1.15vw, 16.5px); line-height: 2.3; letter-spacing: .07em; color: var(--green-deep); }
.message__cta { margin-top: clamp(30px, 4vw, 46px); }
.message__art { width: 100%; }
@media (max-width: 900px) {
  .message__cols { grid-template-columns: 1fr; }
  .message__art { order: -1; max-width: 520px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   8. カード / グリッド
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.section--tint .card { background: #fff; }
.card__num {
  font-family: var(--font-round); font-weight: 900; font-size: 15px;
  color: var(--orange); letter-spacing: .14em;
}
.card__icon {
  width: 72px; height: 72px; margin-bottom: 20px;
  display: grid; place-items: center; border-radius: 22px;
  background: var(--orange-tint);
}
.card__icon img { width: 40px; }
.card__title {
  margin-top: 12px;
  font-family: var(--font-round); font-weight: 700;
  font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--green-deep);
}
.card__text { margin-top: 14px; font-size: 14.5px; line-height: 2; color: var(--ink-soft); }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px; }
.card__tags span {
  padding: 5px 14px; border-radius: 999px;
  background: var(--orange-tint); color: var(--orange-deep);
  font-size: 12.5px; font-weight: 700;
}

/* 数字 */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
@media (max-width: 767px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat { text-align: center; padding: clamp(22px, 3vw, 32px) 12px; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-soft); }
.stat__num { font-family: var(--font-round); font-weight: 900; color: var(--orange); line-height: 1; }
.stat__num b { font-size: clamp(38px, 5vw, 56px); }
.stat__num small { font-size: .42em; margin-left: .12em; }
.stat__label { margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--green-deep); }

/* 人物 */
.person {
  border-radius: var(--radius-md); background: #fff; overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.person__photo { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--orange-pale); }
.person__body { padding: clamp(22px, 2.6vw, 30px); }
.person__role { display: inline-block; padding: 4px 14px; border-radius: 999px; background: var(--green); color: #fff; font-size: 12.5px; font-weight: 700; }
.person__name { margin-top: 14px; font-family: var(--font-round); font-weight: 700; font-size: 22px; color: var(--green-deep); }
.person__name small { display: block; margin-top: 4px; font-size: 12px; font-weight: 500; color: var(--ink-soft); letter-spacing: .12em; }
.person__text { margin-top: 14px; font-size: 14.5px; line-height: 2; color: var(--ink-soft); }
.person__quote {
  margin-top: 18px; padding: 14px 18px; border-radius: 16px;
  background: var(--orange-tint); color: var(--orange-deep);
  font-family: var(--font-round); font-weight: 700; font-size: 14.5px; line-height: 1.8;
}

/* ステップ */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  position: relative; display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: clamp(16px, 2.4vw, 28px);
  align-items: start; padding: clamp(22px, 2.8vw, 32px);
  border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-soft);
}
.step__no {
  display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: var(--font-round); font-weight: 900; line-height: 1.1; text-align: center;
}
.step__no small { display: block; font-size: 10px; letter-spacing: .14em; }
.step__no b { font-size: 26px; }
.step__title { font-family: var(--font-round); font-weight: 700; font-size: clamp(17px, 1.5vw, 20px); color: var(--green-deep); }
.step__text { margin-top: 10px; font-size: 14.5px; line-height: 2; color: var(--ink-soft); }
@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; }
  .step__no { width: 58px; height: 58px; }
  .step__no b { font-size: 21px; }
}

/* 会社概要テーブル */
.table-info { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.table-info th, .table-info td { padding: 20px clamp(18px, 2.6vw, 32px); text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: 15px; }
.table-info tr:last-child th, .table-info tr:last-child td { border-bottom: 0; }
.table-info th { width: 30%; font-family: var(--font-round); font-weight: 700; color: var(--green-deep); background: var(--orange-tint); }
@media (max-width: 640px) {
  .table-info, .table-info tbody, .table-info tr, .table-info th, .table-info td { display: block; width: 100%; }
  .table-info th { border-bottom: 0; padding-bottom: 10px; }
  .table-info td { padding-top: 0; }
}

/* 下層ページの共通ヘッダー */
.page-hero {
  padding: clamp(128px, 15vw, 180px) var(--gut) clamp(52px, 7vw, 86px);
  background:
    radial-gradient(60% 60% at 50% 30%, #fff4ec 0%, rgba(255, 244, 236, 0) 70%),
    linear-gradient(180deg, #fdf3ee 0%, #fbe6d9 100%);
  text-align: center;
}
.page-hero__en { font-family: var(--font-round); font-weight: 900; font-size: clamp(30px, 5vw, 52px); color: var(--orange); letter-spacing: .04em; line-height: 1.2; }
.page-hero__ja { margin-top: 10px; font-family: var(--font-round); font-weight: 700; font-size: clamp(17px, 1.8vw, 21px); color: var(--green-deep); letter-spacing: .18em; }
.breadcrumb { margin-top: 22px; font-size: 12.5px; color: var(--ink-soft); }
.breadcrumb ol { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: "／"; margin-right: 8px; opacity: .5; }

/* --------------------------------------------------------------------------
   9. CTA / フッター
   -------------------------------------------------------------------------- */
.cta { padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 100px); background: var(--white); }
.cta__card {
  position: relative; overflow: hidden;
  padding: clamp(44px, 6vw, 78px) var(--gut);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f5913e 0%, #f8ad63 100%);
  text-align: center; color: #fff;
  box-shadow: 0 22px 50px rgba(214, 122, 44, .28);
}
.cta__card::before, .cta__card::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .13);
}
.cta__card::before { width: 260px; height: 260px; top: -90px; left: -70px; }
.cta__card::after  { width: 200px; height: 200px; bottom: -80px; right: -50px; }
.cta__lead { position: relative; font-family: var(--font-round); font-weight: 700; letter-spacing: .18em; font-size: 14px; }
.cta__title { position: relative; margin-top: 14px; font-family: var(--font-round); font-weight: 900; font-size: clamp(26px, 4.4vw, 46px); line-height: 1.45; }
.cta__text { position: relative; margin-top: 20px; font-size: 15px; line-height: 2.1; }
.cta .btn { position: relative; margin-top: clamp(28px, 4vw, 40px); }

.site-footer { background: var(--green-deep); color: #fff; padding: clamp(48px, 6vw, 74px) 0 26px; }
.site-footer__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(30px, 5vw, 60px); }
.site-footer__brand img { width: 232px; }
.site-footer__addr { margin-top: 20px; font-size: 13.5px; line-height: 2; color: rgba(255, 255, 255, .82); }
.site-footer__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-content: start; }
.site-footer__nav ul { display: grid; gap: 12px; align-content: start; }
.site-footer__nav a { font-size: 14px; color: rgba(255, 255, 255, .88); }
.site-footer__nav a:hover { color: var(--orange-light); opacity: 1; }
.site-footer__copy { margin-top: clamp(34px, 5vw, 54px); padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .16); text-align: center; font-size: 12px; color: rgba(255, 255, 255, .66); }
@media (max-width: 767px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.pagetop {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(20, 96, 45, .32);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.pagetop.is-visible { opacity: 1; visibility: visible; transform: none; }

/* --------------------------------------------------------------------------
   10. フォーム
   -------------------------------------------------------------------------- */
.form { max-width: 800px; margin-inline: auto; }
.form__row { display: grid; gap: 10px; margin-bottom: 26px; }
.form__label { font-family: var(--font-round); font-weight: 700; font-size: 15px; color: var(--green-deep); display: flex; align-items: center; gap: 10px; }
.form__req { padding: 3px 10px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 11px; }
.form__any { padding: 3px 10px; border-radius: 999px; background: var(--line); color: var(--ink-soft); font-size: 11px; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select, .form textarea {
  width: 100%; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 14px;
  background: #fff; font: inherit; font-size: 15.5px; color: var(--ink);
}
.form textarea { min-height: 190px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--orange); outline: none; box-shadow: 0 0 0 4px rgba(245, 145, 62, .16); }
.form__note { font-size: 13px; color: var(--ink-soft); }
.form__error { display: none; margin-top: 6px; font-size: 13px; font-weight: 700; color: #c0392b; }
.form__row.is-invalid .form__error { display: block; }
.form__row.is-invalid input, .form__row.is-invalid textarea, .form__row.is-invalid select { border-color: #c0392b; }
.form__agree { display: flex; gap: 12px; align-items: flex-start; justify-content: center; font-size: 14px; }
.form__agree a { text-decoration: underline; color: var(--green); }
.form__submit { display: flex; justify-content: center; margin-top: 32px; }
.form__submit .btn { justify-content: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { margin-top: 18px; text-align: center; font-weight: 700; }
.form__status[data-state="error"] { color: #c0392b; }

.contact-ways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: clamp(38px, 5vw, 56px); }
@media (max-width: 700px) { .contact-ways { grid-template-columns: 1fr; } }
.contact-way { padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-md); background: var(--orange-tint); text-align: center; }
.contact-way__label { font-family: var(--font-round); font-weight: 700; color: var(--green-deep); font-size: 16px; }
.contact-way__value { margin-top: 10px; font-family: var(--font-round); font-weight: 900; font-size: clamp(22px, 2.8vw, 30px); color: var(--orange-deep); letter-spacing: .02em; }
.contact-way__note { margin-top: 8px; font-size: 13px; color: var(--ink-soft); }

/* 本文（プライバシーポリシー等） */
.prose { max-width: 840px; margin-inline: auto; }
.prose h2 { margin-top: 44px; font-family: var(--font-round); font-weight: 700; font-size: 20px; color: var(--green-deep); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose ul { margin-top: 14px; font-size: 15px; line-height: 2.1; color: var(--ink-soft); }
.prose ul { padding-left: 1.3em; list-style: disc; }
.prose li + li { margin-top: 6px; }
.prose a { color: var(--green); text-decoration: underline; }

/* 出現アニメーション */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
