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

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

/* ---------- CSS Variables ---------- */
:root {
  --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;

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

  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);
  --border:         var(--gray-200);

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

  --section-py: 80px;
  --container-max: 1160px;
  --container-px: 24px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --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: 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: 小 / 標準 / 大 ---- */
html.font-small { font-size: 14px; }
html.font-large { font-size: 18px; }

/* ---------- 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: 200;
}
.header-top { border-bottom: 1px solid var(--border); }
.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;
  flex-shrink: 0;
}
.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 */
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-base);
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-tool-btn:hover {
  border-color: var(--green-600);
  color: var(--green-600);
  background: var(--green-50);
}
.header-tool-btn.is-active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}
.header-tool-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.font-size-btns {
  display: flex;
  align-items: center;
  gap: 4px;
}
.font-size-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: 2px;
  white-space: nowrap;
}

/* ---- Global Nav (PC) ---- */
.global-nav { background: var(--green-900); }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list li a {
  display: block;
  padding: 14px 26px;
  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,
.nav-list li a[aria-current="page"] {
  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: 4px 0 4px 12px;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
}
.nav-list li a.nav-cta:hover {
  background: var(--yellow-600);
  color: var(--green-900);
}

/* ---- SP用ナビ内ツール ---- */
.sp-nav-tools { display: none; }

/* ---- Hamburger button ---- */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 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;
  justify-content: 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;
  text-decoration: none;
}
.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-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.btn-sm  { padding: 7px 16px;  font-size: 0.82rem; }
.btn-lg  { padding: 16px 40px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 52px; font-size: 1.1rem;  }

/* ============================================================
   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-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;
  min-height: 580px;
  overflow: hidden;
  background: var(--green-900);
  display: flex;
  align-items: stretch;
}
.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;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 72px 0;
}
.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: 36px;
  line-height: 1.9;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  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: 20px;
  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: 10px;
}
.card__excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ============================================================
   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: 20px; }

.layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.layout-portrait-text {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.layout-map-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* ============================================================
   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);
}

/* ============================================================
   COLUMN CARD (コラム)
   ============================================================ */
.column-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;
}
.column-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.column-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.column-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.column-card:hover .column-card__img img { transform: scale(1.04); }
.column-card__no-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
}
.column-card__body { padding: 20px; flex: 1; }
.column-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 2px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.column-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.5;
  margin-bottom: 8px;
}
.column-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.column-card__footer {
  padding: 10px 20px;
  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); }
.badge--ir      { background: var(--green-700); color: var(--white); }
.badge--notice  { background: var(--gray-200); color: var(--gray-700); }
.badge--important { background: #c0392b; 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;
  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: 28px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.badge-required {
  display: inline-block;
  padding: 2px 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: 2px 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: 12px 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; }
.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: stretch;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  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: 90px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.flow-step__num {
  width: 30px;
  height: 30px;
  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;
  flex-shrink: 0;
}
.flow-arrow {
  font-size: 1.2rem;
  color: var(--green-600);
  padding: 0 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ============================================================
   PROPERTIES LAYOUT
   ============================================================ */
.properties-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

/* ============================================================
   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);
  text-decoration: none;
  display: inline-block;
}
.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,
.pagination span {
  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 .current {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

/* ============================================================
   SINGLE PROPERTY / COLUMN / IR CONTENT
   ============================================================ */
.single-content {
  max-width: 860px;
}
.single-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-100);
}
.single-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 24px 0 12px;
}
.single-content p { margin-bottom: 16px; line-height: 1.9; color: var(--gray-700); }
.single-content ul, .single-content ol { margin: 16px 0 16px 1.5em; }
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: 6px; line-height: 1.8; color: var(--gray-700); }
.single-content img { border-radius: var(--radius-md); margin: 24px 0; }
.single-content a { color: var(--green-600); text-decoration: underline; }

.single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

/* ============================================================
   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: 72px 0;
  text-align: center;
}
.cta-banner__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  line-height: 1.9;
}
.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-banner__btns .btn { min-width: 220px; }

/* ============================================================
   TEL / PHILOSOPHY / FEATURE CARD / MAP / PRIVACY / COMPLETE
   ============================================================ */
.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 {
  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-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.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: 12px;
  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.9; }

.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 {
  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;
}

.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: 56px 40px;
  box-shadow: var(--shadow-md);
}
.complete-card__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--green-600);
}
.complete-card__icon svg { width: 40px; height: 40px; }
.complete-card__title { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }
.complete-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 2.1; margin-bottom: 32px; }

/* ============================================================
   CONTACT FORM 7 — デザイン統一
   ============================================================ */

/* CF7ラッパー */
.wpcf7 { width: 100%; }
.wpcf7 .wpcf7-form { display: flex; flex-direction: column; gap: 24px; }

/* テキスト・メール・電話 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"] {
  width: 100%;
  padding: 12px 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;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58,140,34,.15);
}

/* セレクト */
.wpcf7 select {
  width: 100%;
  padding: 12px 36px 12px 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) 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") no-repeat right 12px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.wpcf7 select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58,140,34,.15);
}

/* テキストエリア */
.wpcf7 textarea {
  width: 100%;
  padding: 12px 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);
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(58,140,34,.15);
}

/* チェックボックス・ラジオ */
.wpcf7 .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 16px 4px 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-600);
  cursor: pointer;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 52px;
  background: var(--green-600);
  color: var(--white);
  border: 2px solid var(--green-600);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58,140,34,.3);
}

/* 送信ボタン中央寄せ用ラッパー（CF7フォームテンプレートで使用） */
.wpcf7 .cf7-submit-wrap {
  text-align: center;
  margin-top: 8px;
}

/* バリデーションエラー */
.wpcf7 .wpcf7-not-valid-tip {
  color: #b91c1c;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #fca5a5 !important;
  background: #fef2f2 !important;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-900);
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

/* CF7 form-row 互換（フォームテンプレートで .form-row を使う場合） */
.wpcf7 .form-row { margin-bottom: 0; }
.wpcf7 .form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.wpcf7 .badge-required {
  display: inline-block;
  padding: 2px 7px;
  background: #c0392b;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.wpcf7 .badge-optional {
  display: inline-block;
  padding: 2px 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;
}
.wpcf7 .form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.wpcf7 .name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wpcf7 .name-grid-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.wpcf7 .form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

/* ============================================================
   RECRUIT PAGE
   ============================================================ */

/* ---- Recruit Hero ---- */
.recruit-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}
.recruit-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.recruit-hero__inner { position: relative; z-index: 1; }
.recruit-hero__badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.recruit-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  letter-spacing: .03em;
  white-space: nowrap;
}
.recruit-hero__badge--accent {
  background: var(--yellow-500);
  border-color: var(--yellow-500);
  color: var(--green-900);
}
.recruit-hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow-500);
  margin-bottom: 14px;
}
.recruit-hero__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 18px;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.recruit-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.84);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 560px;
}
.recruit-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Appeal Cards ---- */
.appeal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.appeal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.appeal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
}
.appeal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.appeal-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--green-600);
}
.appeal-card__icon svg { width: 26px; height: 26px; }
.appeal-card__big {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.appeal-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
}
.appeal-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- Recruit Table ---- */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.85;
}
.recruit-table th,
.recruit-table td {
  padding: 14px 20px;
  border: 1px solid var(--green-100);
  vertical-align: top;
  text-align: left;
}
.recruit-table th {
  background: var(--green-50);
  font-weight: 700;
  color: var(--green-900);
  width: 200px;
  white-space: nowrap;
}
.recruit-table td { color: var(--gray-900); }
.recruit-table tr:first-child th,
.recruit-table tr:first-child td { border-top: 2px solid var(--green-600); }

.tag-required {
  display: inline-block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  margin-right: 6px;
  vertical-align: middle;
}
.tag-welcome {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ---- Target List ---- */
.target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.target-list__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  line-height: 1.5;
}
.target-list__item svg { flex-shrink: 0; color: var(--green-600); width: 20px; height: 20px; }

/* ---- Application Flow ---- */
.apply-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.apply-flow__step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}
.apply-flow__step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--green-500);
  z-index: 1;
  pointer-events: none;
}
.apply-flow__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.apply-flow__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.apply-flow__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
}
.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.faq-q {
  background: var(--green-50);
  padding: 16px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-900);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.faq-q__mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.faq-a {
  background: var(--white);
  padding: 16px 22px 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.85;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-a__mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---- Apply CTA ---- */
.apply-cta {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-cta::before {
  content: '';
  position: absolute;
  bottom: -40%; left: -8%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.apply-cta__inner { position: relative; z-index: 1; }
.apply-cta__title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.apply-cta__desc {
  font-size: 0.96rem;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  margin-bottom: 40px;
}
.apply-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.apply-cta__divider {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  position: relative;
}
.apply-cta__divider::before,
.apply-cta__divider::after {
  content: '──────';
  margin: 0 12px;
  opacity: .4;
  letter-spacing: -.1em;
}
.apply-cta__tel {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1.2;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}
.apply-cta__tel svg { color: var(--yellow-500); }
.apply-cta__tel-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
}

/* ---- Recruit SP ---- */
@media (max-width: 900px) {
  .appeal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 660px) {
  .recruit-hero { padding: 48px 0 44px; }
  .recruit-hero__desc { max-width: 100%; }
  .recruit-hero__cta { flex-direction: column; gap: 10px; }
  .recruit-hero__cta .btn { width: 100%; }
  .appeal-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .appeal-card { padding: 20px 14px 18px; }
  .appeal-card__big { font-size: 1.25rem; }
  .recruit-table { font-size: 0.84rem; }
  .recruit-table th { width: 100px; padding: 10px 12px; font-size: 0.8rem; white-space: normal; }
  .recruit-table td { padding: 10px 12px; }
  .target-list { grid-template-columns: 1fr; gap: 10px; }
  .target-list__item { font-size: 0.88rem; padding: 14px 16px; }
  .apply-flow { grid-template-columns: 1fr; gap: 12px; }
  .apply-flow__step { padding: 24px 20px; }
  .apply-flow__step::after { display: none; }
  .apply-cta { padding: 56px 0; }
  .apply-cta__btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .apply-cta__btns .btn { width: 100%; }
  .apply-cta__tel { font-size: 1.8rem; gap: 8px; }
}

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

/* ============================================================
   RESPONSIVE — タブレット (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-py: 60px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 2.2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .single-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — スマートフォン (max-width: 660px)
   ============================================================ */
@media (max-width: 660px) {
  :root {
    --section-py: 48px;
    --container-px: 16px;
  }
  .site-name { font-size: 0.88rem; }
  .site-name small { display: none; }
  .font-size-btns { display: none; }
  .header-tools > .header-tool-btn { display: none; }
  .hamburger-btn { display: flex; }
  .global-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    overflow-y: auto;
    background: var(--green-900);
  }
  .global-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .global-nav > .container { flex-shrink: 0; }
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
  }
  .nav-list li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list li a { padding: 18px 24px; font-size: 1.05rem; }
  .nav-list li a.nav-cta {
    margin: 12px 20px 16px;
    display: block;
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 14px 24px;
  }
  .sp-nav-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,.15);
    flex-shrink: 0;
  }
  .sp-nav-tools__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
    margin-right: 4px;
  }
  .sp-nav-tools .header-tool-btn {
    border-color: rgba(255,255,255,.3);
    color: rgba(255,255,255,.85);
    background: transparent;
  }
  .sp-nav-tools .header-tool-btn:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.5);
    color: var(--white);
  }
  .sp-nav-tools .header-tool-btn.is-active {
    background: var(--yellow-500);
    border-color: var(--yellow-500);
    color: var(--green-900);
  }
  .hero { min-height: auto; }
  .hero__content { padding: 56px 0 60px; align-items: center; text-align: center; }
  .hero__catchcopy { font-size: 0.78rem; letter-spacing: 0.1em; }
  .hero__title { font-size: 1.8rem; margin-bottom: 16px; }
  .hero__desc  { font-size: 0.9rem; margin-bottom: 28px; max-width: 100%; }
  .hero__cta   { flex-direction: column; gap: 10px; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .properties-layout { display: flex; flex-direction: column; gap: 20px; }
  .properties-layout .grid-2 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .layout-2col,
  .layout-portrait-text,
  .layout-map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .layout-2col > *,
  .layout-portrait-text > *,
  .layout-map-sidebar > * {
    width: 100% !important;
    max-width: 100% !important;
  }
  .company-img { order: -1; }
  .card { padding: 28px 20px; }
  .feature-card { padding: 28px 20px; }
  .page-hero { padding: 36px 0; text-align: center; }
  .page-hero__title { font-size: 1.5rem; }
  .page-hero__sub { font-size: 0.88rem; margin-top: 8px; margin-left: auto; margin-right: auto; }
  .section-title { font-size: 1.3rem; text-align: center; }
  .section-header { text-align: center; }
  .section-label { display: table; margin-left: auto; margin-right: auto; }
  .section-lead { text-align: center; margin-left: auto; margin-right: auto; }
  .layout-2col .btn,
  .layout-portrait-text .btn,
  .layout-map-sidebar .btn {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .property-card__footer .btn { margin-left: 0; margin-right: 0; width: auto; display: inline-flex; }
  form .btn[type="submit"] { margin-left: auto; margin-right: auto; }
  .cta-banner { padding: 52px 0; }
  .cta-banner__title { font-size: 1.3rem; }
  .cta-banner__btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-banner__btns .btn { width: 100%; min-width: unset; }
  .flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .flow-arrow { display: none; }
  .flow-step { min-width: unset; padding: 14px 8px; font-size: 0.75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-col ul li { text-align: center; }
  .info-table th { width: 100px; font-size: 0.82rem; }
  .info-table td { font-size: 0.85rem; }
  .info-table th, .info-table td { padding: 10px 12px; }
  .page-nav { top: 72px; }
  .page-nav__list a { padding: 12px 14px; font-size: 0.82rem; }
  .news-item { flex-wrap: wrap; gap: 8px; }
  .news-item__date { min-width: unset; }
  .single-layout { grid-template-columns: 1fr; }
}
