/* ============================================================
   バナナハウス株式会社 — Design System
   Brand: Green (#3a8c22 / #1a4d10) + Yellow (#f0cc00)
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --green-900: #1a4d10;
  --green-700: #2d7018;
  --green-600: #3a8c22;
  --green-500: #4aa82a;
  --green-100: #d4edca;
  --green-50:  #eef7e8;

  --yellow-500: #f0cc00;
  --yellow-400: #f5d833;
  --yellow-600: #c9a800;

  /* Neutral */
  --gray-900: #1a1a1a;
  --gray-700: #333333;
  --gray-600: #555555;
  --gray-400: #888888;
  --gray-200: #dddddd;
  --gray-100: #f4f4f4;
  --gray-50:  #fafafa;
  --white:    #ffffff;

  /* Semantic */
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);
  --border:         var(--gray-200);
  --bg-section-alt: var(--gray-50);
  --bg-green-light: var(--green-50);

  /* Typography */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.8;

  /* Spacing */
  --section-py: 80px;
  --container-max: 1160px;
  --container-px: 24px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,.07);

  /* Transition */
  --transition: 0.2s ease;
}

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

html { font-size: var(--font-size-base); scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-900); }
ul, ol { list-style: none; }

/* Font-size control (JS toggled) */
body.font-large  { font-size: 18px; }
body.font-xlarge { font-size: 20px; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.site-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.site-name small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-tool-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.header-tool-btn:hover {
  border-color: var(--green-600);
  color: var(--green-600);
  background: var(--green-50);
}

.header-tool-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Global Nav */
.global-nav {
  background: var(--green-900);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list li a {
  display: block;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--yellow-500);
  background: rgba(255,255,255,.08);
}

.nav-list li a.nav-cta {
  background: var(--yellow-500);
  color: var(--green-900);
  font-weight: 700;
  margin-left: 8px;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.nav-list li a.nav-cta:hover {
  background: var(--yellow-600);
  color: var(--green-900);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb__list li:not(:last-child)::after {
  content: '›';
  margin-left: 6px;
  color: var(--gray-400);
}

.breadcrumb__list li a {
  color: var(--green-600);
}

.breadcrumb__list li a:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58,140,34,.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-600);
  border-color: var(--green-600);
}

.btn-secondary:hover {
  background: var(--green-50);
  color: var(--green-700);
  transform: translateY(-1px);
}

.btn-yellow {
  background: var(--yellow-500);
  color: var(--green-900);
  border-color: var(--yellow-500);
}

.btn-yellow:hover {
  background: var(--yellow-600);
  border-color: var(--yellow-600);
  color: var(--green-900);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,204,0,.4);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.page-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,.78);
  max-width: 640px;
}

/* ---------- Section ---------- */
.section {
  padding: var(--section-py) 0;
}

.section--white { background: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--green { background: var(--green-50); }
.section--dark  { background: var(--green-900); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.section-title span {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.section-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 640px;
}

.section-header {
  margin-bottom: 40px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero (Top Page) ---------- */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--green-900);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,77,16,.85) 0%, rgba(26,77,16,.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__catchcopy {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  line-height: 1.9;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  color: var(--green-600);
}

.card__icon svg { width: 26px; height: 26px; }

.card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.card__excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Grid utilities ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---------- Property Card ---------- */
.property-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.property-card__img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--gray-100);
}

.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.property-card:hover .property-card__img img {
  transform: scale(1.04);
}

.property-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.property-card__body {
  padding: 16px;
  flex: 1;
}

.property-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.4;
}

.property-card__addr {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.property-card__specs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.property-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
}

.property-card__yield {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.property-card__footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--gray-50);
}

/* ---------- Badges / Tags ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.badge--sale    { background: var(--green-900); color: var(--white); }
.badge--rent    { background: var(--green-600); color: var(--white); }
.badge--invest  { background: var(--yellow-500); color: var(--green-900); }
.badge--remnant { background: #e07020; color: var(--white); }
.badge--new     { background: #d02020; color: var(--white); }

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
}

/* ---------- Page-internal Nav ---------- */
.page-nav {
  background: var(--white);
  border-bottom: 2px solid var(--green-100);
  position: sticky;
  top: 120px;
  z-index: 50;
}

.page-nav__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.page-nav__list a {
  display: block;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.page-nav__list a:hover,
.page-nav__list a.active {
  color: var(--green-600);
  border-bottom-color: var(--green-600);
}

/* ---------- Tables ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.info-table th {
  width: 200px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--gray-50);
  white-space: nowrap;
}

.info-table td { color: var(--gray-900); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--green-100);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item__dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-600);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-600);
}

.timeline-item__year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.timeline-item__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- News Items ---------- */
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.news-item:last-child { border-bottom: none; }

.news-item__date {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-feature-settings: "tnum";
  padding-top: 2px;
  min-width: 80px;
}

.news-item__badge {
  flex-shrink: 0;
}

.news-item__body { flex: 1; }

.news-item__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.5;
}

.news-item__title a:hover { color: var(--green-600); text-decoration: underline; }

.news-item__excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.news-item__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  align-self: center;
}

/* ---------- Stat Box ---------- */
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-box__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-box__number span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 2px;
}

.stat-box__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------- Form ---------- */
.form-row {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.badge-required {
  display: inline-block;
  padding: 1px 7px;
  background: #c0392b;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.badge-optional {
  display: inline-block;
  padding: 1px 7px;
  background: var(--gray-200);
  color: var(--gray-600);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 0.92rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58,140,34,.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Checkbox / Radio custom */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 8px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-600);
  cursor: pointer;
}

.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

/* ---------- Sidebar Box ---------- */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

.sidebar-box__head {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.04em;
}

.sidebar-box__body {
  padding: 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.sidebar-box__body p { margin-bottom: 8px; }
.sidebar-box__body p:last-child { margin-bottom: 0; }

/* ---------- Flow Steps ---------- */
.flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex: 1;
  min-width: 100px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.flow-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow {
  font-size: 1.2rem;
  color: var(--green-300, #7bc96f);
  padding: 0 6px;
  color: var(--green-600);
  flex-shrink: 0;
}

/* ---------- Filter Tabs ---------- */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover {
  border-color: var(--green-600);
  color: var(--green-600);
}

.filter-tab.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  background: var(--white);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.78);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  opacity: .9;
}

.footer-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.footer-address {
  font-size: 0.82rem;
  line-height: 2;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}

.footer-col__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.05em;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.9;
}

.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Tel in Sidebar ---------- */
.tel-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tel-number svg { color: var(--green-600); }

/* ---------- Philosophy Box ---------- */
.philosophy-box {
  background: var(--green-50);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.philosophy-box p { color: var(--gray-700); line-height: 2; }

.philosophy-box p + p { margin-top: 16px; }

.philosophy-box__lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 16px;
}

/* ---------- Feature Cards (Why) ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card__num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card__title svg { color: var(--green-600); width: 20px; height: 20px; }

.feature-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Privacy Box ---------- */
.privacy-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-height: 140px;
  overflow-y: auto;
  margin-bottom: 12px;
}

/* ---------- Completion Card ---------- */
.complete-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-md);
}

.complete-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-600);
}

.complete-card__icon svg { width: 36px; height: 36px; }

.complete-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.complete-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 28px;
}

/* ---------- Highlight Banner ---------- */
.highlight-banner {
  background: var(--yellow-500);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-banner svg { color: var(--green-900); flex-shrink: 0; width: 24px; height: 24px; }

.highlight-banner p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.5;
}

/* ---------- Print ---------- */
@media print {
  .global-nav, .page-nav, .header-tools, .site-footer, .btn, .cta-banner { display: none !important; }
  body { font-size: 12pt; }
  .site-header { position: static; box-shadow: none; }
  a { color: var(--gray-900); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --section-py: 56px; }

  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .hero { height: 440px; }
  .hero__title { font-size: 2rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 660px) {
  :root { --section-py: 40px; --container-px: 16px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .hero { height: 360px; }
  .hero__title { font-size: 1.6rem; }
  .hero__desc { font-size: 0.9rem; }

  .site-name { font-size: 0.85rem; }

  .nav-list { gap: 0; overflow-x: auto; }
  .nav-list li a { padding: 12px 14px; font-size: 0.82rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .section-title { font-size: 1.3rem; }
  .page-hero__title { font-size: 1.5rem; }

  .flow { gap: 0; }
  .flow-step { padding: 12px 10px; font-size: 0.75rem; min-width: 60px; }
  .flow-arrow { padding: 0 3px; }
}
