@charset "UTF-8";

:root {
  --green: #2e7d32;
  --green-light: #43a047;
  --green-pale: #e8f5e9;
  --green-mid: #c8e6c9;
  --orange: #f57c00;
  --orange-light: #fff3e0;
  --red: #c62828;
  --red-light: #ffebee;
  --gray: #555;
  --gray-light: #f8f8f8;
  --text: #222;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== STICKY CTA BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green);
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.sticky-bar a {
  display: flex; align-items: center; gap: 6px;
  background: #fff; color: var(--green);
  font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none;
  transition: transform .2s;
  white-space: nowrap;
}
.sticky-bar a:hover { transform: scale(1.03); }
.sticky-bar a.orange { background: var(--orange); color: #fff; }

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--green-mid);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-wrap:hover { opacity: .85; }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo { font-size: 18px; font-weight: 800; color: var(--green); line-height: 1.3; }
.logo span { font-size: 12px; color: #888; display: block; font-weight: 400; }
.header-tel { text-align: right; }
.header-tel .tel-num {
  font-size: 22px; font-weight: 900; color: var(--green);
  letter-spacing: 1px;
  display: block;
}
.header-tel small { font-size: 11px; color: #888; }

/* ===== HERO ===== */
/* .hero {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #fffde7 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 24px 40px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://thumb.photo-ac.com/f9/f9661dd011de58c30154079ae948eefc_t.jpeg?w=1200&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 5px 18px; border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero h1 {
  font-size: clamp(22px, 4.2vw, 40px);
  font-weight: 900;
  line-height: 1.55;
  color: #1a1a1a;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero h1 em {
  color: var(--green);
  font-style: normal;
  display: inline;
  border-bottom: 4px solid var(--green-light);
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(15px, 2.5vw, 19px);
  color: var(--gray);
  margin-bottom: 28px;
}
.hero-features {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 32px;
}
.hero-features span {
  background: #fff;
  border: 2px solid var(--green-light);
  color: var(--green);
  font-weight: 700; font-size: 14px;
  padding: 8px 16px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(46,125,50,0.1);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff; font-size: 18px; font-weight: 800;
  padding: 18px 36px; border-radius: 50px;
  text-decoration: none; display: inline-block;
  box-shadow: 0 6px 20px rgba(46,125,50,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,125,50,0.4); }
.btn-secondary {
  background: #fff;
  color: var(--green); font-size: 18px; font-weight: 800;
  padding: 18px 36px; border-radius: 50px;
  text-decoration: none; display: inline-block;
  border: 3px solid var(--green);
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--green-pale); }
.hero-note { margin-top: 16px; font-size: 13px; color: #888; } */

/* ===== SECTIONS ===== */
section { padding: 64px 24px; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.section-title span { color: var(--green); }
.section-sub {
  text-align: center; color: var(--gray);
  font-size: 16px; margin-bottom: 44px;
}
.divider {
  width: 200px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px; margin: 12px auto 40px;
}

/* ===== PAIN POINTS ===== */
.pain-section { background: var(--gray-light); }
.pain-intro {
  background: #fff;
  border-left: 5px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
  display: flex; gap: 24px; align-items: flex-end;
}
.pain-intro strong { color: var(--orange); }
.pain-intro-text { flex: 1; }
.staff-photo-wrap { flex-shrink: 0; text-align: center; }
.staff-photo-wrap img {
  width: 130px; height: 160px;
  object-fit: cover; object-position: top;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  display: block; margin: 0 auto 6px;
}
.staff-photo-wrap .staff-label {
  font-size: 12px; color: #888;
  font-weight: 600; line-height: 1.4;
}
@media(max-width: 600px) {
  .pain-intro { flex-direction: column; align-items: center; }
  .staff-photo-wrap img { width: 110px; height: 135px; }
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.pain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  display: flex; gap: 16px;
  align-items: flex-start;
}
.pain-card .icon { font-size: 36px; flex-shrink: 0; }
.pain-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: #1a1a1a; }
.pain-card p { font-size: 14px; color: var(--gray); }

/* ===== RISK ===== */
.risk-section { background: var(--red-light); }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-bottom: 32px;
}
.risk-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid #ef9a9a;
}
.risk-card .number {
  font-size: 48px; font-weight: 900;
  color: var(--red); line-height: 1;
  margin-bottom: 8px;
}
.risk-card .number span { font-size: 22px; }
.risk-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: #1a1a1a; }
.risk-card p { font-size: 13px; color: var(--gray); }
.risk-banner {
  background: var(--red);
  color: #fff; text-align: center;
  padding: 22px; border-radius: var(--radius);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(198,40,40,0.3);
}
.risk-banner span { font-size: .8em; display: block; margin-top: 6px; font-weight: 400; opacity: .9; }

/* ===== SOLUTIONS ===== */
.solution-section { background: #fff; }
.solution-lead {
  text-align: center;
  font-size: 18px; line-height: 1.8;
  max-width: 680px; margin: 0 auto 40px;
  color: var(--gray);
}
.solution-lead strong { color: var(--green); }
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.sol-card {
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.sol-card.buy { background: linear-gradient(145deg, #e8f5e9, #f1f8e9); border: 2px solid var(--green-mid); }
.sol-card.lease { background: linear-gradient(145deg, #e3f2fd, #f3e5f5); border: 2px solid #90caf9; }
.sol-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 14px;
}
.buy .sol-badge { background: var(--green); color: #fff; }
.lease .sol-badge { background: #1565c0; color: #fff; }
.sol-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.buy h3 { color: var(--green); }
.lease h3 { color: #1565c0; }
.sol-card .sol-desc { font-size: 15px; color: var(--gray); margin-bottom: 20px; }
.sol-list { list-style: none; }
.sol-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #333;
}
.sol-list li::before {
  content: '✓';
  position: absolute; left: 0;
  font-weight: 900;
  color: var(--green);
}
.sol-highlight {
  margin-top: 18px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; font-weight: 700;
  color: var(--green);
  text-align: center;
}

/* ===== PROMISE ===== */
.promise-section { background: var(--green-pale); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.promise-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow);
}
.promise-card .p-icon { font-size: 46px; margin-bottom: 12px; }
.promise-card h3 { font-size: 16px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.promise-card p { font-size: 13px; color: var(--gray); }

/* ===== STORY / SCENE ===== */
.story-section { background: #fff; }
.story-box {
  background: linear-gradient(135deg, #f9fbe7, #e8f5e9);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  display: flex; gap: 28px; align-items: flex-start;
}
.story-box::after {
  content: '"';
  position: absolute;
  right: 24px; top: 10px;
  font-size: 120px; color: var(--green-mid);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.story-content { flex: 1; position: relative; z-index: 1; }
.story-img-wrap { flex-shrink: 0; text-align: center; }
.story-img-wrap img {
  width: 200px; height: 240px;
  object-fit: cover; object-position: top;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: block;
}
.story-img-wrap .img-caption { font-size: 11px; color: #999; margin-top: 6px; }
@media(max-width: 700px) {
  .story-box { flex-direction: column; padding: 28px 20px; }
  .story-img-wrap img { width: 100%; height: 200px; }
}
.story-tag {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.story-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; line-height: 1.5; }
.story-box p { font-size: 15px; color: var(--gray); line-height: 1.9; }
.story-box .author { margin-top: 16px; font-size: 13px; color: #888; text-align: right; }

/* ===== STEPS ===== */
.steps-section { background: var(--gray-light); }
.steps {
  display: flex; flex-direction: column; gap: 0;
  position: relative; max-width: 640px; margin: 0 auto;
}
.step {
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--green);
  color: #fff; font-weight: 900; font-size: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(46,125,50,0.3);
  position: relative; z-index: 1;
}
.step-line {
  position: absolute;
  left: 27px; top: 54px; bottom: 0;
  width: 2px; background: var(--green-mid);
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 8px; }
.step-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: #1a1a1a; }
.step-body p { font-size: 14px; color: var(--gray); }

/* ===== FAQ ===== */
.faq-section { background: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 2px solid var(--green-mid);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-q {
  padding: 18px 20px;
  font-weight: 800; font-size: 15px;
  color: var(--green);
  display: flex; gap: 12px; align-items: flex-start;
  cursor: pointer;
  background: var(--green-pale);
}
.faq-q::before { content: 'Q'; font-size: 18px; flex-shrink: 0; }
.faq-a {
  padding: 16px 20px;
  font-size: 14px; color: var(--gray);
  line-height: 1.8;
  border-top: 1px solid var(--green-mid);
  display: flex; gap: 12px; align-items: flex-start;
}
.faq-a::before { content: 'A'; font-size: 18px; font-weight: 900; color: var(--orange); flex-shrink: 0; }

/* ===== TARGET AREA ===== */
.area-section {
  background: var(--green-pale);
  position: relative; overflow: hidden;
}
.area-map-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.10;
  pointer-events: none;
  width: 520px; max-width: 90%;
}
.area-section .section-inner { position: relative; z-index: 1; }
.area-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}
.area-tags span {
  background: #fff; border: 2px solid var(--green);
  color: var(--green); font-weight: 700; font-size: 15px;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(46,125,50,0.12);
}
.land-types {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 24px;
}
.land-types span {
  background: var(--green); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 8px 18px; border-radius: 50px;
}

/* ===== CONTACT ===== */
.contact-section { background: linear-gradient(135deg, #1b5e20, #2e7d32, #43a047); padding: 80px 24px; }
.contact-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-inner .section-title { color: #fff; }
.contact-inner .divider { background: linear-gradient(90deg, rgba(255,255,255,.6), #fff); }
.contact-inner .section-sub { color: rgba(255,255,255,.85); }
.contact-tel-box {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 16px; padding: 28px;
  margin-bottom: 24px;
}
.contact-tel-box .tel-label { color: rgb(255, 255, 255); font-size: 20px; margin-bottom: 8px; }
.contact-tel-box .tel-big {
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 900; color: #fff;
  display: block; letter-spacing: 2px;
  text-decoration: none;
}
.contact-tel-box .tel-big:hover { color: #c8e6c9; }
.contact-tel-box small { color: rgb(255, 255, 255); font-size: 16px; display: block; margin-top: 4px; }
.contact-form-box {
  background: #fff;
  border-radius: 16px; padding: 32px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  margin-bottom: 24px;
}
.contact-form-box h3 {
  font-size: 20px; font-weight: 800;
  color: var(--green); text-align: center;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 700;
  color: #333; margin-bottom: 6px;
}
.form-group label .req {
  background: var(--red); color: #fff;
  font-size: 11px; padding: 1px 6px;
  border-radius: 3px; margin-left: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px; font-size: 16px;
  font-family: inherit;
  transition: border-color .2s;
  color: #333;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff; font-size: 18px; font-weight: 800;
  padding: 18px; border: none; border-radius: 50px;
  cursor: pointer; box-shadow: 0 6px 20px rgba(46,125,50,0.35);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,125,50,0.4); }
.contact-info {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px 28px;
  color: rgba(255,255,255,.9);
  font-size: 14px; line-height: 2.2;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a; color: #aaa;
  padding: 32px 24px; text-align: center;
  font-size: 13px; line-height: 2;
  padding-bottom: 80px;
}
footer a { color: #ccc; }
footer strong { color: #fff; font-size: 15px; }

/* ===== TESTIMONIALS ===== */
.voice-section { background: var(--gray-light); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.voice-card::before {
  content: '"';
  font-size: 60px; color: var(--green-mid);
  font-family: Georgia, serif;
  position: absolute; top: 8px; left: 16px;
  line-height: 1;
}
.voice-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.voice-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 3px solid var(--green-mid);
  flex-shrink: 0;
}
.voice-meta { flex: 1; }
.voice-stars { color: #f9a825; font-size: 15px; margin-bottom: 2px; }
.voice-author-name { font-size: 13px; color: #555; font-weight: 700; }
.voice-text { font-size: 14px; color: var(--gray); line-height: 1.9; }

/* ===== RESPONSIVE ===== */
@media(max-width: 600px) {
  header { flex-direction: column; gap: 8px; text-align: center; }
  .header-tel { text-align: center; }
  section { padding: 48px 16px; }
  .hero { padding: 48px 16px 32px; }
  .story-box { padding: 28px 20px; }
  .contact-form-box { padding: 24px 16px; }
  .sticky-bar a { font-size: 13px; padding: 9px 14px; }
  .btn-primary, .btn-secondary { font-size: 16px; padding: 15px 24px; }
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border: 2px solid #ffd54f;
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  margin-top: 36px;
}
.highlight-box h3 { font-size: 20px; font-weight: 900; color: #e65100; margin-bottom: 8px; }
.highlight-box p { font-size: 15px; color: #555; }
.highlight-box .big { font-size: 26px; font-weight: 900; color: #c62828; }

/* Scroll animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }