/* =============================================
   LINE Seed JP フォント読み込み
============================================= */
@import url('https://seed.line.me/seed_jp/webfont/v1/css/seed_jp.css');

/* =============================================
   CSS 変数
============================================= */
:root {
  --deep-green:  #2D5A27;
  --mid-green:   #4A7C3F;
  --light-green: #E8F0E6;
  --pale-green:  #F2F7F1;
  --earth:       #C8A97A;
  --earth-light: #EDE0CC;
  --earth-pale:  #FAF6F0;
  --soil:        #5C3D1E;
  --dark:        #1A1A18;
  --mid:         #3D3D38;
  --muted:       #7A7A72;
  --white:       #FFFFFF;
  --border:      rgba(45,90,39,0.15);

  /* LINE Seed JP をメインに、日本語フォールバック付き */
  --font:        'LINE Seed JP_OTF', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;

  --max-w:       1160px;
  --gutter:      clamp(1.25rem, 5vw, 4rem);
  --gap-section: clamp(5rem, 10vw, 9rem);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--earth-pale);
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--gap-section); }

.section-label {
  font-size: clamp(0.65rem, 1.2vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--earth);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 900;    /* LINE Seed ExtraBold */
  line-height: 1.38;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
  color: var(--deep-green);
}

.section-body {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--mid);
  line-height: 2.0;
  max-width: 34em;
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9em 2.2em;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  line-height: 1;
}
.btn-primary  { background: var(--deep-green); color: var(--white); }
.btn-primary:hover  { background: var(--mid-green); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,90,39,.3); }
.btn-outline  { background: transparent; color: var(--deep-green); border: 2px solid var(--deep-green); }
.btn-outline:hover  { background: var(--deep-green); color: var(--white); }
.btn-earth    { background: var(--earth); color: var(--white); }
.btn-earth:hover    { background: var(--soil); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,61,30,.25); }

/* =============================================
   HEADER
============================================= */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,169,122,.2);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 24px rgba(45,90,39,.1); }

.header-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--deep-green);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
}
.header-logo span {
  font-size: 0.48rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.header-nav a { font-size: 0.82rem; font-weight: 700; color: var(--mid); letter-spacing: 0.03em; transition: color .2s; }
.header-nav a:hover { color: var(--deep-green); }

@media (max-width: 900px) { .header-nav { display: none; } }

/* =============================================
   HERO
============================================= */
#hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* 実写写真（右半分） */
.hero-photo {
  position: absolute;
  inset: 0;
  right: 0;
  left: 50%;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--earth-pale) 0%,
    rgba(250,246,240,.85) 30%,
    transparent 65%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem var(--gutter) 5rem calc(var(--gutter) + 0.5rem);
  max-width: 640px;
  animation: fadeUp .7s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--light-green);
  border: 1px solid var(--border);
  padding: .35em 1em;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--deep-green);
  letter-spacing: .06em;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.28;
  color: var(--dark);
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--deep-green); display: block; }

.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}

.hero-lead {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--mid);
  line-height: 2.05;
  margin-bottom: 2.5rem;
  max-width: 28em;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-check {
  margin-top: 1.5rem;
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-check::before { content: '✓'; color: var(--deep-green); font-weight: 700; }

/* SP */
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; }
  .hero-photo { left: 0; top: auto; height: 300px; bottom: 0; }
  .hero-photo::after { background: linear-gradient(to top, var(--earth-pale) 0%, rgba(250,246,240,.6) 50%, transparent 100%); }
  .hero-content { padding-bottom: 320px; max-width: 100%; }
}

/* =============================================
   PAIN
============================================= */
#pain {
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}
#pain::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(74,124,63,.18);
  pointer-events: none;
}

.pain-label { color: rgba(200,169,122,.8); }
.pain-label::before { background: rgba(200,169,122,.5); }
.pain-title { color: var(--white); margin-bottom: 3rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pain-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 2rem;
  transition: background .3s;
}
.pain-card:hover { background: rgba(255,255,255,.12); }

.pain-icon { font-size: 2rem; margin-bottom: 1rem; }

.pain-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--earth-light);
  margin-bottom: .55rem;
}
.pain-card-body { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.95; }

.pain-resolve {
  margin-top: 4rem;
  padding: 2.5rem;
  background: rgba(200,169,122,.1);
  border: 1px solid rgba(200,169,122,.25);
  border-radius: 16px;
  text-align: center;
}
.pain-resolve-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.6;
}
.pain-resolve-text em { font-style: normal; color: var(--earth); }

/* =============================================
   MESSAGE
============================================= */
#message { background: var(--earth-pale); }

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* 代表写真エリア */
.message-portrait { position: sticky; top: 110px; }

.portrait-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px 4px 60px 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.portrait-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.portrait-photo:hover img { transform: scale(1.03); }
.portrait-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,90,39,.35) 0%, transparent 50%);
}

.portrait-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--deep-green);
  color: var(--white);
  padding: .35em 1em;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  z-index: 1;
}

.portrait-name-block {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.portrait-name { font-size: 1rem; font-weight: 900; color: var(--dark); }
.portrait-role { font-size: .75rem; color: var(--muted); }

.location-chips {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.chip {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: .28em .8em;
  border-radius: 100px;
  font-size: .7rem;
  color: var(--mid);
}

.dual-base { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.25rem; }
.base-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem; }
.base-tag  { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--earth); margin-bottom: .4rem; }
.base-name { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.base-addr { font-size: .7rem; color: var(--muted); line-height: 1.7; }

/* メッセージ本文 */
.message-text .section-title { margin-bottom: 1.75rem; }

.message-body { font-size: clamp(.88rem, 1.5vw, 1rem); color: var(--mid); line-height: 2.1; margin-bottom: 1.75rem; }
.message-body strong { color: var(--dark); font-weight: 700; }

.message-quote {
  border-left: 3px solid var(--earth);
  padding: .5rem 0 .5rem 1.5rem;
  margin: 2.25rem 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.75;
}

/* 農場写真（メッセージ内） */
.message-farm-photo {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.message-farm-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.message-farm-photo:hover img { transform: scale(1.02); }

@media (max-width: 768px) {
  .message-grid { grid-template-columns: 1fr; }
  .message-portrait { position: static; }
  .portrait-photo { aspect-ratio: 3/2; }
  .dual-base { grid-template-columns: 1fr; }
}

/* =============================================
   WHY FREE
============================================= */
#why-free { background: var(--white); position: relative; overflow: hidden; }
#why-free::before {
  content: '¥0';
  position: absolute;
  top: -.1em; right: -.05em;
  font-size: clamp(10rem, 20vw, 20rem);
  font-weight: 900;
  color: var(--light-green);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.05em;
}

.why-free-inner { position: relative; z-index: 1; }

.why-free-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  margin-top: 4rem;
}

.why-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.why-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding-bottom: 2rem;
  position: relative;
}
.why-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.44rem; top: 2.5rem; bottom: 0;
  width: 1px;
  background: var(--border);
}
.why-step-num {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--deep-green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  flex-shrink: 0;
}
.why-step-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; margin-top: .55rem; }
.why-step-body  { font-size: .875rem; color: var(--mid); line-height: 1.95; }

.why-honest-box {
  background: var(--pale-green);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
}
.why-honest-label { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--deep-green); margin-bottom: .9rem; }
.why-honest-title { font-size: 1.35rem; font-weight: 900; color: var(--dark); line-height: 1.55; margin-bottom: 1.1rem; }
.why-honest-body  { font-size: .875rem; color: var(--mid); line-height: 2.0; }
.why-honest-vision { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.vision-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .75rem; font-size: .84rem; color: var(--mid); }
.vision-icon { flex-shrink: 0; width: 1.4rem; height: 1.4rem; background: var(--deep-green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; margin-top: .15rem; }

@media (max-width: 768px) { .why-free-grid { grid-template-columns: 1fr; } }

/* =============================================
   PRICING
============================================= */
#pricing { background: var(--earth-pale); }

.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-note { margin-top: .8rem; font-size: .84rem; color: var(--muted); }
.pricing-note strong { color: var(--deep-green); font-weight: 700; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(45,90,39,.12); }
.plan-card.featured { border-color: var(--deep-green); border-width: 2px; }

.plan-recommended {
  position: absolute;
  top: -.75rem; left: 50%;
  transform: translateX(-50%);
  background: var(--deep-green); color: var(--white);
  padding: .22em 1.1em;
  border-radius: 100px;
  font-size: .67rem; font-weight: 700; letter-spacing: .08em;
  white-space: nowrap;
}

.plan-tier  { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--earth); margin-bottom: .4rem; }
.plan-name  { font-size: 1.05rem; font-weight: 900; color: var(--dark); margin-bottom: 1rem; }

.plan-price-block { background: var(--pale-green); border-radius: 8px; padding: .9rem; margin-bottom: 1.1rem; text-align: center; }
.plan-initial { font-size: .7rem; font-weight: 700; color: var(--deep-green); margin-bottom: .25rem; }
.plan-price { font-size: 1.9rem; font-weight: 900; color: var(--dark); line-height: 1; }
.plan-price sup { font-size: .85rem; vertical-align: super; font-weight: 700; }
.plan-price sub { font-size: .62rem; font-weight: 400; color: var(--muted); }
.plan-pages { font-size: .72rem; color: var(--muted); margin-top: .3rem; }

.plan-tagline { font-size: .8rem; color: var(--mid); margin-bottom: 1.1rem; line-height: 1.75; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .45rem; font-size: .79rem; color: var(--mid); }
.plan-features li::before { content: '✓'; color: var(--deep-green); font-weight: 700; flex-shrink: 0; margin-top: .05em; }

.plan-btn {
  display: block; text-align: center;
  padding: .8em 1em; border-radius: 6px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  margin-top: 1.4rem;
  background: var(--light-green); color: var(--deep-green);
  transition: all .3s;
}
.plan-btn:hover { background: var(--deep-green); color: var(--white); }
.plan-card.featured .plan-btn { background: var(--deep-green); color: var(--white); }
.plan-card.featured .plan-btn:hover { background: var(--mid-green); }

.pricing-ec-note {
  margin-top: 2.5rem; padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--earth-light), var(--earth-pale));
  border: 1px solid rgba(200,169,122,.4);
  border-radius: 12px;
  display: flex; align-items: center; gap: 1.75rem;
}
.ec-icon { font-size: 2.5rem; flex-shrink: 0; }
.ec-text-title { font-size: .98rem; font-weight: 700; color: var(--soil); margin-bottom: .35rem; }
.ec-text-body  { font-size: .82rem; color: var(--mid); line-height: 1.8; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .pricing-grid { grid-template-columns: 1fr; } }

/* =============================================
   SUPPORT
============================================= */
#support { background: var(--deep-green); position: relative; overflow: hidden; }
#support::before {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(74,124,63,.15);
  pointer-events: none;
}

.support-inner { position: relative; z-index: 1; }

.support-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.support-label { color: rgba(200,169,122,.8); }
.support-label::before { background: rgba(200,169,122,.5); }
.support-title { color: var(--white); }
.support-lead  { font-size: clamp(.88rem, 1.5vw, 1rem); color: rgba(255,255,255,.72); line-height: 2.05; }
.support-big-msg { font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 700; color: var(--white); line-height: 1.8; }
.support-big-msg em { color: var(--earth); font-style: normal; }

.support-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.15rem;
}
.support-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.85rem 1.65rem;
  transition: background .3s;
}
.support-card:hover { background: rgba(255,255,255,.12); }
.support-card-icon  { font-size: 2rem; margin-bottom: .9rem; }
.support-card-title { font-size: 1rem; font-weight: 700; color: var(--earth-light); margin-bottom: .55rem; }
.support-card-body  { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.95; }

/* 実写写真帯（サポートセクション末尾） */
.support-photo-strip {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  border-radius: 16px;
  overflow: hidden;
}
.strip-photo { aspect-ratio: 4/3; overflow: hidden; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.strip-photo:hover img { transform: scale(1.05); }

.support-promise {
  margin-top: 3.5rem;
  padding: 2.25rem;
  background: rgba(200,169,122,.1);
  border: 1px solid rgba(200,169,122,.25);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.promise-item { text-align: center; }
.promise-num  { font-size: 2.8rem; font-weight: 900; color: var(--earth); line-height: 1; margin-bottom: .3rem; }
.promise-unit { font-size: 1rem; }
.promise-label { font-size: .8rem; color: rgba(255,255,255,.68); line-height: 1.65; }

@media (max-width: 768px) {
  .support-header { grid-template-columns: 1fr; gap: 2rem; }
  .support-cards  { grid-template-columns: 1fr; }
  .support-photo-strip { grid-template-columns: 1fr 1fr; }
  .support-photo-strip .strip-photo:last-child { display: none; }
  .support-promise { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ
============================================= */
#faq { background: var(--white); }
.faq-header { margin-bottom: 3rem; }
.faq-list   { max-width: 720px; margin-inline: auto; }

.faq-item   { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: var(--font);
}
.faq-q-text { font-size: .98rem; font-weight: 700; color: var(--dark); line-height: 1.6; }
.faq-q-text::before { content: 'Q. '; color: var(--deep-green); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--deep-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; line-height: 1;
  transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--deep-green); color: var(--white); }

.faq-a-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a-wrapper { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a { padding: 0 0 1.4rem; font-size: .9rem; color: var(--mid); line-height: 2.0; }
.faq-a::before { content: 'A. '; color: var(--earth); font-weight: 700; }

/* =============================================
   CTA / CONTACT FORM
============================================= */
#cta {
  background: linear-gradient(135deg, var(--deep-green) 0%, #1e3d1a 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,122,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,169,122,.15);
  border: 1px solid rgba(200,169,122,.3);
  padding: .35em 1.1em;
  border-radius: 100px;
  font-size: .76rem; font-weight: 700;
  color: var(--earth); letter-spacing: .08em;
  margin-bottom: 1.75rem;
}

.cta-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--white); line-height: 1.42; margin-bottom: 1rem; }
.cta-sub   { font-size: clamp(.88rem, 1.5vw, 1rem); color: rgba(255,255,255,.7); line-height: 2.0; margin-bottom: 2rem; }

.cta-info { display: flex; flex-direction: column; gap: .7rem; }
.cta-info-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.7); font-size: .87rem; }
.cta-info-item strong { color: var(--white); }

/* フォーム */
.contact-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 2.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: .4rem; letter-spacing: .04em; }
.form-label .req { color: var(--earth); margin-left: .3rem; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: .75em 1em;
  font-family: var(--font);
  font-size: 1rem;   /* iOS zoom 防止 */
  color: var(--white);
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--earth);
  background: rgba(255,255,255,.12);
}
.form-select option { color: var(--dark); background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  padding: 1em;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--earth);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s, transform .2s, box-shadow .3s;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--soil); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,61,30,.3); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-msg {
  margin-top: 1rem;
  padding: .8em 1em;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  display: none;
}
.form-msg.success { background: rgba(45,90,39,.3); color: #a8e6a3; border: 1px solid rgba(45,90,39,.4); }
.form-msg.error   { background: rgba(180,50,50,.2); color: #ffb3b3; border: 1px solid rgba(180,50,50,.3); }

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row  { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
============================================= */
#footer { background: var(--dark); color: rgba(255,255,255,.55); }

.footer-inner { padding: 4rem var(--gutter) 2rem; max-width: var(--max-w); margin-inline: auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.footer-brand-name    { font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: .04em; margin-bottom: .3rem; }
.footer-brand-tagline { font-size: .78rem; color: var(--earth); line-height: 1.65; }

.footer-nav-label { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-links     { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a   { font-size: .82rem; color: rgba(255,255,255,.48); transition: color .2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.28); }
.footer-policy a { font-size: .72rem; color: rgba(255,255,255,.28); transition: color .2s; }
.footer-policy a:hover { color: rgba(255,255,255,.55); }

/* =============================================
   ANIMATION & SCROLL REVEAL
============================================= */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: none; }
}

.reveal { opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform: none; }
