/*
Theme Name: イマここワークス
Theme URI: https://imacoco-works.co.jp
Author: 株式会社イマここワークス
Description: 株式会社イマここワークス 公式サイト用テーマ
Version: 4.4.3
License: Private
Text Domain: imacoco
*/

:root {
  --green-deep: #1e5c38;
  --green-mid: #3a7a55;
  --green-light: #4a9968;
  --green-pale: #eef7f1;
  --green-mist: #f7fbf8;
  --cream: #fafafa;
  --warm-white: #ffffff;
  --text-dark: #1c2b22;
  --text-mid: #3a4f42;
  --text-light: #6b7f72;
  --accent: #8fbe6e;
  --gold: #c9a84c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============ NAV ============ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,106,69,0.1);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-decoration: none;
}
.nav-logo .nav-logo-en {
  display: block;
  font-size: 9px;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.22em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-logo .nav-logo-meaning {
  display: block;
  font-size: 9px;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.18em;
  color: var(--green-light);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-light); }

.nav-links .nav-cta a,
.nav-links li.menu-item-cta a {
  background: var(--green-mid);
  color: white !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  transition: background 0.2s !important;
}
.nav-links .nav-cta a:hover,
.nav-links li.menu-item-cta a:hover {
  background: var(--green-light) !important;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 72px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green-light);
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--green-deep);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-title em {
  font-style: normal;
  color: var(--green-light);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.6;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.22em;
  color: var(--green-light);
  margin-bottom: 32px;
  margin-top: -24px;
}

.hero-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 52px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-deep);
  color: white;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,74,46,0.25);
  color: white;
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  color: var(--green-deep);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(45,106,69,0.15);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.stat-num sup { font-size: 16px; vertical-align: super; }
.stat-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-right {
  position: relative;
  background: #1e5c38;
  overflow: hidden;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=1200&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61,138,90,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(143,190,110,0.15) 0%, transparent 50%);
}

.hero-circles { position: absolute; inset: 0; overflow: hidden; }
.circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); }
.circle-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.circle-2 { width: 350px; height: 350px; bottom: 50px; left: -80px; }
.circle-3 { width: 200px; height: 200px; top: 40%; right: 15%; }

.hero-content-right {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 60px;
}

.philosophy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
}
.philosophy-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.philosophy-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: white;
  letter-spacing: 0.05em;
}

.values-row { display: flex; gap: 12px; }
.value-chip {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}
.value-chip:hover { background: rgba(143,190,110,0.2); border-color: rgba(143,190,110,0.4); }
.value-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}
.value-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ============ SECTION BASE ============ */
.site-section { padding: 100px 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green-light);
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.section-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  max-width: 560px;
}

/* ============ ISSUES ============ */
.issues-section { background: #ffffff; }
.issues-header { margin-bottom: 60px; }

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.issue-item {
  background: white;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.issue-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,74,46,0.1); z-index: 1; }
.issue-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.issue-item:hover::before { height: 100%; }

.issue-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.issue-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.issues-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, #1e5c38 0%, #2d7a4e 100%);
  border-radius: 4px;
  color: white;
}
.issues-cta p {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.issues-cta .issues-cta-strong {
  font-size: 22px;
  font-weight: 600;
  margin: 12px 0;
}
.issues-cta span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

/* ============ SERVICES ============ */
.services-section { background: white; }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid rgba(45,106,69,0.12);
  border-radius: 4px;
  padding: 56px 40px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: white;
}
.service-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 16px 48px rgba(26,74,46,0.08);
  transform: translateY(-6px);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mist) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 0.5; }

.service-card-featured {
  border-color: var(--green-deep);
  border-width: 2px;
  padding-top: 84px;
}
.service-card-featured-label {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--green-deep);
  color: white;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 6px;
  font-family: 'Cormorant Garamond', serif;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  margin-top: 28px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.service-num-featured { margin-top: 0; }

.service-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-badge-dark {
  background: var(--green-deep);
  color: white;
}

.service-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.service-items {
  list-style: none;
  position: relative;
  z-index: 1;
}
.service-items li {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.service-items li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.service-more {
  font-size: 11px;
  color: var(--green-light);
  margin-top: 16px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

/* ============ STRENGTH ============ */
.strength-section {
  background: linear-gradient(135deg, #1e5c38 0%, #2a7048 100%);
  color: white;
  overflow: hidden;
  position: relative;
}
.strength-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,138,90,0.2) 0%, transparent 70%);
}

.strength-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.strength-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.strength-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

.strength-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.8;
  color: white;
  margin-bottom: 24px;
}
.strength-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.strength-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 2px;
}
.strength-desc { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.75); }

.strength-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.3s;
}
.metric-card:hover { background: rgba(143,190,110,0.15); border-color: rgba(143,190,110,0.3); }

.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-val sup { font-size: 18px; }
.metric-unit { font-size: 11px; color: var(--accent); letter-spacing: 0.15em; }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 8px; letter-spacing: 0.08em; }

.metric-card-full { grid-column: 1 / -1; }
.metric-card-full .metric-val { font-size: 36px; }
.metric-card-full-inner { display: flex; align-items: center; gap: 24px; }
.metric-card-full-text { flex: 1; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.8; }

/* ============ WORK BANNER ============ */
.work-banner { height: 380px; overflow: hidden; position: relative; }
.work-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(0.82) saturate(0.9); }
.work-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,74,46,0.45) 0%, rgba(26,74,46,0.1) 50%, transparent 100%);
}
.work-banner-text {
  position: absolute;
  top: 50%; left: 72px;
  transform: translateY(-50%);
}
.work-banner-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.work-banner-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 400;
  color: white;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* ============ FLOW ============ */
.flow-section { background: #f9f9f9; }
.flow-header { text-align: center; margin-bottom: 72px; }
.flow-header .section-label { justify-content: center; }
.flow-header .section-desc { margin: 0 auto; text-align: center; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--green-light), var(--accent));
}

.flow-step { padding: 0 20px; text-align: center; }
.flow-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500;
  color: var(--green-deep);
  transition: all 0.3s;
}
.flow-step:hover .flow-num { background: var(--green-deep); color: white; border-color: var(--green-deep); }

.flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.flow-step-desc { font-size: 12px; line-height: 1.8; color: var(--text-light); }

/* ============ PROFILE ============ */
.profile-section { background: white; }
.profile-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.profile-left { position: sticky; top: 100px; }

.profile-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green-mist);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-mist) 100%);
}
.profile-img-placeholder p { font-size: 13px; color: var(--text-light); letter-spacing: 0.1em; margin-top: 12px; }

.profile-img-deco {
  position: absolute; bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(26,74,46,0.15);
}
.profile-img-deco img { width: 100%; height: 100%; object-fit: cover; }

.profile-name-card { text-align: center; }
.profile-en { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 0.25em; color: var(--green-light); text-transform: uppercase; margin-bottom: 8px; }
.profile-name { font-family: 'Noto Serif JP', serif; font-size: 28px; font-weight: 500; color: var(--green-deep); letter-spacing: 0.1em; margin-bottom: 4px; }
.profile-title-text { font-size: 12px; color: var(--text-light); letter-spacing: 0.1em; }

.creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; justify-content: center; }
.cred-badge { background: var(--green-pale); color: var(--green-deep); font-size: 10px; font-weight: 500; padding: 5px 12px; border-radius: 2px; }

.profile-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; font-weight: 400; line-height: 1.9;
  color: var(--green-deep); margin-bottom: 36px;
}
.profile-body { font-size: 14px; line-height: 2.1; color: var(--text-mid); margin-bottom: 40px; }

.unique-strength {
  background: linear-gradient(135deg, #1e5c38 0%, #2a7048 100%);
  color: white; padding: 40px 44px; border-radius: 4px;
  margin-bottom: 40px; position: relative; overflow: hidden;
}
.unique-strength::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(143,190,110,0.1);
}
.unique-strength-label { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.3em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.unique-strength-text { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 400; line-height: 1.9; color: white; position: relative; z-index: 1; }
.unique-strength-text strong { color: var(--accent); font-weight: 600; }

.track-record-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.track-tag { background: #f0f7f3; border: 1px solid #c2dece; color: var(--green-deep); font-size: 11px; padding: 5px 14px; border-radius: 2px; letter-spacing: 0.06em; }
.exp-area-label { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; margin-bottom: 12px; }

.exp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.exp-item { border-left: 3px solid var(--green-light); padding-left: 20px; }
.exp-area { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; margin-bottom: 8px; }
.exp-list { font-size: 13px; line-height: 1.9; color: var(--text-mid); }

/* ============ NEWS / BLOG ============ */
.news-section { background: var(--green-mist); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }

.news-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(45,106,69,0.08);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,74,46,0.1); }

.news-card-thumb {
  width: 100%; height: 200px;
  background: var(--green-pale);
  overflow: hidden;
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-mist) 100%);
  font-size: 12px; color: var(--text-light); letter-spacing: 0.1em;
}

.news-card-body { padding: 24px 28px 32px; }
.news-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-card-date { font-family: 'Cormorant Garamond', serif; font-size: 12px; color: var(--text-light); letter-spacing: 0.1em; }
.news-card-cat {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  background: var(--green-pale); color: var(--green-deep);
  padding: 3px 10px; border-radius: 2px;
}
.news-card-title { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 500; line-height: 1.6; color: var(--green-deep); }

.news-all-link {
  text-align: center; margin-top: 48px;
}

/* ============ CONTACT ============ */
.contact-hero-section {
  background: linear-gradient(135deg, #1e5c38 0%, #163d28 100%);
  color: white; padding: 120px 0;
  position: relative; overflow: hidden;
}
.contact-hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,138,90,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(143,190,110,0.1) 0%, transparent 50%);
}
.contact-hero-inner { text-align: center; position: relative; z-index: 1; }
.contact-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.contact-label::before, .contact-label::after { content: ''; width: 32px; height: 1px; background: var(--accent); opacity: 0.5; }
.contact-title { font-family: 'Noto Serif JP', serif; font-size: clamp(28px, 3vw, 44px); font-weight: 400; line-height: 1.7; color: white; margin-bottom: 20px; }
.contact-desc { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.7); margin-bottom: 52px; }
.contact-options { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 42px; font-size: 13px; font-weight: 500; letter-spacing: 0.12em;
  text-decoration: none; border-radius: 2px; transition: all 0.3s;
}
.contact-btn-main { background: white; color: var(--green-deep); }
.contact-btn-main:hover { background: var(--accent); color: white; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.contact-btn-sub { border: 1.5px solid rgba(255,255,255,0.4); color: white; }
.contact-btn-sub:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-3px); }

.contact-info { display: flex; gap: 48px; justify-content: center; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info-label { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.25em; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.contact-info-val { font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }

/* ============ CONTACT FORM ============ */
.contact-form-section { background: var(--green-mist); padding: 100px 0; }
.contact-form-wrap { max-width: 680px; margin: 0 auto; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { font-size: 12px; letter-spacing: 0.1em; color: var(--text-light); display: block; margin-bottom: 6px; }
.form-field label .required { color: #c0392b; }
.form-field input,
.form-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(45,106,69,0.2);
  border-radius: 3px; font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  outline: none; transition: border-color 0.2s;
  background: white;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--green-light); }
.form-field textarea { resize: vertical; }

/* ============ FOOTER ============ */
.site-footer {
  background: #142b1e;
  color: rgba(255,255,255,0.5);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-family: 'Noto Serif JP', serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; }
.footer-logo-sub { display: block; font-family: 'Cormorant Garamond', serif; font-size: 11px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.35); letter-spacing: 0.2em; margin-top: 4px; }
.footer-copyright { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.1em; }

/* ============ BLOG / ARCHIVE ============ */
.blog-wrap { max-width: 860px; margin: 0 auto; }
.blog-wrap .posts-list { display: flex; flex-direction: column; gap: 32px; }
.post-card {
  border: 1px solid rgba(45,106,69,0.1);
  border-radius: 4px; padding: 36px 40px;
  background: white; transition: all 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.post-card:hover { box-shadow: 0 8px 24px rgba(26,74,46,0.08); transform: translateY(-2px); }
.post-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-card-date { font-family: 'Cormorant Garamond', serif; font-size: 12px; color: var(--text-light); }
.post-card-cat { font-size: 10px; background: var(--green-pale); color: var(--green-deep); padding: 3px 10px; border-radius: 2px; letter-spacing: 0.1em; }
.post-card-title { font-family: 'Noto Serif JP', serif; font-size: 20px; font-weight: 500; color: var(--green-deep); line-height: 1.6; margin-bottom: 12px; }
.post-card-excerpt { font-size: 13px; line-height: 1.9; color: var(--text-mid); }

.single-post-content { max-width: 760px; margin: 0 auto; }
.single-post-content h1 { font-family: 'Noto Serif JP', serif; font-size: 32px; font-weight: 500; color: var(--green-deep); line-height: 1.6; margin-bottom: 24px; }
.single-post-content .post-meta { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--text-light); margin-bottom: 48px; letter-spacing: 0.1em; }
.single-post-content .post-body { font-size: 15px; line-height: 2; color: var(--text-mid); }
.single-post-content .post-body h2 { font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 600; color: var(--green-deep); margin: 48px 0 16px; }
.single-post-content .post-body p { margin-bottom: 24px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.7s ease 0.1s both; }
.hero-title { animation: fadeUp 0.7s ease 0.25s both; }
.hero-subtitle { animation: fadeUp 0.7s ease 0.4s both; }
.hero-tagline { animation: fadeUp 0.7s ease 0.45s both; }
.hero-desc { animation: fadeUp 0.7s ease 0.5s both; }
.hero-buttons { animation: fadeUp 0.7s ease 0.6s both; }
.hero-stats { animation: fadeUp 0.7s ease 0.75s both; }
.philosophy-card { animation: fadeUp 0.8s ease 0.3s both; }
.values-row { animation: fadeUp 0.8s ease 0.5s both; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 400px; }
  .hero-left { padding: 100px 32px 60px; }
  .hero-content-right { padding: 60px 32px; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .strength-inner { grid-template-columns: 1fr; }
  .profile-inner { grid-template-columns: 1fr; }
  .profile-left { position: static; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-steps::before { display: none; }
  .issues-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; }
  .contact-info { flex-direction: column; gap: 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .exp-row { grid-template-columns: 1fr; }
  .work-banner-text { left: 32px; }
  .strength-metrics { grid-template-columns: 1fr; }
}

/* 会社概要テーブル */
.company-profile-wrap { max-width: 800px; margin: 0 auto; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th,
.company-table td { padding: 20px 24px; border-bottom: 1px solid rgba(45,106,69,0.1); vertical-align: top; font-size: 15px; line-height: 1.8; }
.company-table th { width: 200px; color: var(--green-deep); font-weight: 600; font-family: 'Noto Serif JP', serif; white-space: nowrap; }
.company-table td { color: var(--text-dark); }
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table a { color: var(--green-mid); }
@media (max-width: 600px) {
  .company-profile-wrap { padding: 0 4px; }
  .section-title { font-size: clamp(20px, 5vw, 28px); }
  .company-table th,
  .company-table td { display: block; width: 100%; text-align: center; }
  .company-table th { border-bottom: none; padding: 16px 16px 2px; font-size: 11px; color: var(--green-deep); font-weight: 700; letter-spacing: 0.15em; opacity: 0.7; }
  .company-table td { padding: 0 16px 14px; font-size: 15px; line-height: 1.7; color: var(--text-dark); }
  .company-table tr { border-bottom: 1px solid rgba(45,106,69,0.1); }
  .company-table tr:last-child { border-bottom: none; }
  .company-table tr th,
  .company-table tr td { border-bottom: none; }
}

/* ============ 研修ページ ============ */
.training-page { background: var(--warm-white); }

.training-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 100px 24px 80px;
  text-align: center;
}
.training-hero-inner { max-width: 760px; margin: 0 auto; }
.training-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.6);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
}
.training-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
}
.training-hero-title em { color: var(--accent); font-style: normal; }
.training-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
}

.training-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.training-problem { padding: 80px 24px; background: var(--green-mist); }
.problem-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.problem-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 16px;
  padding: 24px;
  border-left: 4px solid var(--green-light);
  background: white;
  text-align: left;
  border-radius: 4px;
}
.problem-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 20px;
}
.problem-title em { color: var(--green-mid); font-style: normal; }
.problem-body { font-size: 16px; line-height: 1.9; color: var(--text-mid); text-align: left; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--green-light);
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  margin-bottom: 12px;
}

.training-theories { padding: 80px 24px; }
.training-theories .section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 56px;
}

.theory-card {
  display: flex;
  gap: 32px;
  margin-bottom: 56px;
  padding: 40px;
  background: white;
  border: 1px solid rgba(45,106,69,0.1);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(45,106,69,0.06);
}
.theory-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--green-deep);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.theory-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--green-light);
  margin-bottom: 8px;
}
.theory-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}
.theory-body { font-size: 15px; line-height: 1.9; color: var(--text-mid); margin-bottom: 8px; }
.theory-list {
  list-style: none;
  padding: 16px 20px;
  background: var(--green-mist);
  border-radius: 8px;
  margin: 12px 0;
}
.theory-list li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.theory-list li::before {
  content: '▸';
  color: var(--green-light);
  position: absolute;
  left: 0;
}
.theory-approach {
  margin-top: 24px;
  padding: 24px;
  background: var(--green-pale);
  border-radius: 8px;
  border-left: 3px solid var(--green-mid);
}
.approach-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.approach-body { font-size: 14px; line-height: 1.8; color: var(--text-mid); }
.approach-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.approach-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.7;
}
.approach-list li::before {
  content: '✓';
  color: var(--green-mid);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.retention-table { margin: 16px 0; }
.retention-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: var(--green-mist);
}
.retention-type { font-size: 14px; color: var(--text-mid); flex: 1; }
.retention-type.high { color: var(--green-deep); font-weight: 700; }
.retention-result { font-size: 13px; font-weight: 700; white-space: nowrap; color: var(--green-mid); }

.training-summary {
  padding: 80px 24px;
  background: var(--green-mist);
}
.training-summary .section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.summary-table-wrap { overflow-x: auto; }
.summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(45,106,69,0.06);
}
.summary-table th {
  background: var(--green-deep);
  color: white;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.summary-table td {
  padding: 16px 20px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(45,106,69,0.08);
  line-height: 1.7;
}
.summary-table td:first-child { font-weight: 600; color: var(--green-deep); }
.summary-table tr:last-child td { border-bottom: none; }
.summary-message {
  margin-top: 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-mid);
}

.training-lineup { padding: 80px 24px; }
.training-lineup .section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lineup-card {
  padding: 32px 28px;
  background: white;
  border: 1px solid rgba(45,106,69,0.12);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(45,106,69,0.05);
  transition: box-shadow 0.2s;
}
.lineup-card:hover { box-shadow: 0 6px 24px rgba(45,106,69,0.12); }
.lineup-icon { font-size: 32px; margin-bottom: 12px; }
.lineup-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.lineup-target {
  font-size: 12px;
  color: var(--green-light);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.lineup-desc { font-size: 14px; line-height: 1.8; color: var(--text-mid); }

.training-contact-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
}
.training-contact-section .section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
}
.btn-contact-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.btn-contact-white:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .theory-card { flex-direction: column; gap: 16px; padding: 24px; }
  .theory-num { font-size: 36px; width: auto; }
  .lineup-grid { grid-template-columns: 1fr; }
  .summary-table th, .summary-table td { padding: 12px 14px; font-size: 13px; }
  .training-hero { padding: 80px 20px 60px; }
}

/* ============================================================
   LP共通スタイル（EAP・組織コンサル・キャリア支援の各LPページ）
   ============================================================ */
/* ===== EAP LP（テーマ共通スタイルへの上書き・追加。このページ内のみ有効） ===== */

/* HERO */
.lp-page .hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  overflow: hidden;
}
.lp-page .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 56px 80px 72px;
  position: relative;
  z-index: 2;
}
.lp-page .hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--green-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-page .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--green-light); }
.lp-page .hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--green-deep);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.lp-page .hero-title em {
  font-style: normal;
  color: var(--green-light);
  position: relative;
}
.lp-page .hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.6;
}
.lp-page .hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: 0.08em;
}
.lp-page .hero-desc {
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 44px;
}
.lp-page .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-page .btn-primary {
  background: var(--green-deep);
  color: white;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lp-page .btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,74,46,0.25);
}
.lp-page .btn-primary svg { width: 16px; height: 16px; }
.lp-page .btn-secondary {
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.lp-page .btn-secondary:hover { background: var(--green-pale); transform: translateY(-2px); }
.lp-page .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(45,106,69,0.15);
}
.lp-page .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--green-deep);
}
.lp-page .stat-num sup { font-size: 15px; }
.lp-page .stat-label { font-size: 11px; color: var(--text-light); letter-spacing: 0.08em; margin-top: 4px; }
.lp-page .hero-note { font-size: 10px; color: var(--text-light); margin-top: 12px; letter-spacing: 0.08em; opacity: 0.7; }

.lp-page .hero-right { position: relative; background: var(--green-deep); overflow: hidden; }
.lp-page .hero-right::after { content: none; }
.lp-page .hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61,138,90,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(143,190,110,0.15) 0%, transparent 50%);
}
.lp-page .circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); }
.lp-page .circle-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.lp-page .circle-2 { width: 350px; height: 350px; bottom: 50px; left: -80px; }
.lp-page .hero-content-right {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 56px 80px;
}
.lp-page .philosophy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
}
.lp-page .philosophy-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-page .philosophy-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.9;
  color: white;
  letter-spacing: 0.05em;
}
.lp-page .values-row { display: flex; gap: 12px; }
.lp-page .value-chip {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 20px 14px;
  text-align: center;
  transition: all 0.3s;
}
.lp-page .value-chip:hover { background: rgba(143,190,110,0.2); border-color: rgba(143,190,110,0.4); }
.lp-page .value-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.lp-page .value-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

/* SECTION BASE */
.lp-page section { padding: 100px 0; }
.lp-page .container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.lp-page .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-page .section-label::before { content: ''; width: 24px; height: 1px; background: var(--green-light); }
.lp-page .section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.lp-page .section-desc { font-size: 14px; line-height: 2; color: var(--text-mid); max-width: 620px; }

/* ISSUES */
.lp-page .issues { background: var(--green-mist); }
.lp-page .issues-header { margin-bottom: 56px; }
.lp-page .issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.lp-page .issue-item {
  background: white;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.lp-page .issue-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,74,46,0.1); z-index: 1; }
.lp-page .issue-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.3s;
}
.lp-page .issue-item:hover::before { height: 100%; }
.lp-page .issue-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 16px;
}
.lp-page .issue-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}
.lp-page .issues-cta {
  text-align: center;
  margin-top: 56px;
  padding: 52px 48px;
  background: linear-gradient(135deg, #1e5c38 0%, #2d7a4e 100%);
  border-radius: 4px;
  color: white;
}
.lp-page .issues-cta .cta-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.lp-page .issues-cta .cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-top: 14px;
}

/* CAN-DO */
.lp-page .cando { background: white; }
.lp-page .cando-header { margin-bottom: 64px; }
.lp-page .cando-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.lp-page .cando-card {
  border: 1px solid rgba(45,106,69,0.12);
  border-radius: 4px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: white;
}
.lp-page .cando-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 16px 48px rgba(26,74,46,0.08);
  transform: translateY(-6px);
}
.lp-page .cando-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--green-light);
  margin-bottom: 20px;
}
.lp-page .cando-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.lp-page .cando-desc { font-size: 13px; line-height: 1.95; color: var(--text-mid); }
.lp-page .cando-card-wide { grid-column: 1 / -1; background: var(--green-mist); border-color: rgba(45,106,69,0.18); }

/* STRENGTH */
.lp-page .strength {
  background: linear-gradient(135deg, #1e5c38 0%, #2a7048 100%);
  color: white;
  overflow: hidden;
  position: relative;
}
.lp-page .strength::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,138,90,0.2) 0%, transparent 70%);
}
.lp-page .strength-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-page .strength-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.lp-page .strength-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.lp-page .strength-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.8;
  color: white;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.lp-page .strength-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.lp-page .strength-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 2px;
}
.lp-page .strength-desc { font-size: 14px; line-height: 2.1; color: rgba(255,255,255,0.78); }
.lp-page .strength-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-page .metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.3s;
}
.lp-page .metric-card:hover { background: rgba(143,190,110,0.15); border-color: rgba(143,190,110,0.3); }
.lp-page .metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.lp-page .metric-val sup { font-size: 18px; }
.lp-page .metric-unit { font-size: 11px; color: var(--accent); letter-spacing: 0.15em; }
.lp-page .metric-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 8px; letter-spacing: 0.08em; }
.lp-page .metric-card-full { grid-column: 1 / -1; }
.lp-page .metric-card-full .metric-val { font-size: 34px; }

/* PLAN (サービスメニュー) */
.lp-page .plan-section { background: var(--green-mist); }
.lp-page .plan-header { text-align: center; margin-bottom: 64px; }
.lp-page .plan-header .section-label { justify-content: center; }
.lp-page .plan-header .section-desc { margin: 0 auto; }
.lp-page .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-page .plan-item {
  background: white;
  border: 1px solid rgba(45,106,69,0.1);
  border-radius: 4px;
  padding: 36px 30px;
  transition: all 0.3s;
  position: relative;
}
.lp-page .plan-item:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,74,46,0.08);
}
.lp-page .plan-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.lp-page .plan-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.lp-page .plan-desc { font-size: 12px; line-height: 1.9; color: var(--text-mid); }
.lp-page .plan-note { text-align: center; margin-top: 40px; font-size: 12px; color: var(--text-light); letter-spacing: 0.06em; }

/* FLOW */
.lp-page .flow { background: white; }
.lp-page .flow-header { text-align: center; margin-bottom: 72px; }
.lp-page .flow-header .section-label { justify-content: center; }
.lp-page .flow-header .section-desc { margin: 0 auto; text-align: center; }
.lp-page .flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.lp-page .flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--green-light), var(--accent));
}
.lp-page .flow-step { padding: 0 20px; text-align: center; }
.lp-page .flow-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--green-deep);
  transition: all 0.3s;
}
.lp-page .flow-step:hover .flow-num { background: var(--green-deep); color: white; border-color: var(--green-deep); }
.lp-page .flow-step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.lp-page .flow-step-desc { font-size: 12px; line-height: 1.8; color: var(--text-light); }

/* FAQ */
.lp-page .faq { background: var(--green-mist); }
.lp-page .faq-header { text-align: center; margin-bottom: 56px; }
.lp-page .faq-header .section-label { justify-content: center; }
.lp-page .faq-list { max-width: 800px; margin: 0 auto; }
.lp-page .faq-item {
  background: white;
  border: 1px solid rgba(45,106,69,0.1);
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}
.lp-page .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 28px;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  line-height: 1.6;
  position: relative;
  display: flex;
  gap: 14px;
  align-items: baseline;
  transition: background 0.2s;
}
.lp-page .faq-item summary::-webkit-details-marker { display: none; }
.lp-page .faq-item summary:hover { background: var(--green-mist); }
.lp-page .faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--green-light);
  flex-shrink: 0;
}
.lp-page .faq-item summary::after {
  content: '+';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--green-light);
  transition: transform 0.3s;
}
.lp-page .faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-page .faq-a {
  padding: 4px 28px 26px 62px;
  font-size: 13px;
  line-height: 2;
  color: var(--text-mid);
}

/* CONTACT */
.lp-page .contact {
  background: linear-gradient(135deg, #1e5c38 0%, #163d28 100%);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.lp-page .contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,138,90,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(143,190,110,0.1) 0%, transparent 50%);
}
.lp-page .contact-inner { text-align: center; position: relative; z-index: 1; }
.lp-page .contact-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.lp-page .contact-label::before, .lp-page .contact-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.lp-page .contact-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.8;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.lp-page .contact-desc { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.7); margin-bottom: 48px; }
.lp-page .contact-options { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.lp-page .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}
.lp-page .contact-btn-main { background: white; color: var(--green-deep); }
.lp-page .contact-btn-main:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.lp-page .contact-btn-sub { border: 1.5px solid rgba(255,255,255,0.4); color: white; }
.lp-page .contact-btn-sub:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.lp-page .contact-info {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.lp-page .contact-info-item { text-align: center; }
.lp-page .contact-info-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lp-page .contact-info-val { font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; line-height: 1.8; }

/* ANIMATIONS */
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.lp-page .hero-eyebrow { animation: lpFadeUp 0.7s ease 0.1s both; }
.lp-page .hero-title { animation: lpFadeUp 0.7s ease 0.25s both; }
.lp-page .hero-subtitle { animation: lpFadeUp 0.7s ease 0.4s both; }
.lp-page .hero-desc { animation: lpFadeUp 0.7s ease 0.5s both; }
.lp-page .hero-buttons { animation: lpFadeUp 0.7s ease 0.6s both; }
.lp-page .hero-stats { animation: lpFadeUp 0.7s ease 0.75s both; }
.lp-page .philosophy-card { animation: lpFadeUp 0.8s ease 0.3s both; }
.lp-page .values-row { animation: lpFadeUp 0.8s ease 0.5s both; }

/* responsive */
@media (max-width: 900px) {
  .lp-page .hero { grid-template-columns: 1fr; min-height: auto; }
  .lp-page .hero-left { padding: 110px 32px 60px; }
  .lp-page .hero-content-right { padding: 60px 32px; }
  .lp-page .hero-stats { flex-wrap: wrap; gap: 24px; }
  .lp-page .issues-grid { grid-template-columns: 1fr 1fr; }
  .lp-page .cando-grid { grid-template-columns: 1fr; }
  .lp-page .strength-inner { grid-template-columns: 1fr; }
  .lp-page .plan-grid { grid-template-columns: 1fr 1fr; }
  .lp-page .flow-steps { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .lp-page .flow-steps::before { display: none; }
  .lp-page .container { padding: 0 24px; }
}
@media (max-width: 560px) {
  .lp-page .issues-grid, .lp-page .plan-grid { grid-template-columns: 1fr; }
}

/* ---- キャリア支援LP専用（対象別カード） ---- */
.lp-page .targets { background: var(--green-mist); }
.lp-page .targets-header { margin-bottom: 56px; }
.lp-page .targets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-page .target-card {
  background: white;
  border: 1px solid rgba(45,106,69,0.1);
  border-radius: 4px;
  padding: 40px 34px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.lp-page .target-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--accent));
}
.lp-page .target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,74,46,0.1);
  border-color: var(--green-light);
}
.lp-page .target-badge {
  display: inline-block;
  background: var(--green-deep);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.lp-page .target-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.lp-page .target-list { list-style: none; }
.lp-page .target-list li {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-mid);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px dashed rgba(45,106,69,0.12);
}
.lp-page .target-list li:last-child { border-bottom: none; }
.lp-page .target-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.lp-page .targets-cta {
  text-align: center;
  margin-top: 56px;
  padding: 52px 48px;
  background: linear-gradient(135deg, #1e5c38 0%, #2d7a4e 100%);
  border-radius: 4px;
  color: white;
}
.lp-page .targets-cta .cta-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}
.lp-page .targets-cta .cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-top: 14px;
  line-height: 2;
}
@media (max-width: 900px) {
  .lp-page .targets-grid { grid-template-columns: 1fr; }
}

/* ---- LP 代表プロフィールカード ---- */
.lp-page .lead-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 20px 24px;
}
.lp-page .lead-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid rgba(143,190,110,0.55);
  flex-shrink: 0;
}
.lp-page .lead-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
}
.lp-page .lead-name span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--accent);
  margin-left: 10px;
  letter-spacing: 0.18em;
}
.lp-page .lead-title {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  margin-top: 4px;
  line-height: 1.7;
}
.lp-page .lead-note {
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .lp-page .lead-profile { flex-direction: column; text-align: center; }
}


/* ---- 日本語の改行バランス調整（最終行に1文字だけ送られるのを防ぐ） ---- */
h1, h2, h3, h4,
.section-title, .hero-title, .hero-subtitle, .strength-title, .contact-title,
.issue-text, .philosophy-text, .cta-main, .issues-cta p,
.flow-step-title, .cando-title, .plan-title, .target-title,
.service-title, .lineup-title, .profile-lead, .unique-strength-text {
  text-wrap: balance;
}
p, li, .section-desc, .hero-desc, .cando-desc, .plan-desc,
.strength-desc, .service-desc, .flow-step-desc, .faq-a,
.contact-desc, .cta-sub, .lead-note, .metric-label {
  text-wrap: pretty;
}

/* ---- 改行チャンク（この単位でしか折り返さない） ---- */
.u-nobr { display: inline-block; }
