/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --teal: #40BFBF;
  --teal-dark: #2ea0a0;
  --teal-light: #e8f8f8;
  --navy: #0D1F2D;
  --navy-light: #1a3448;
  --text: #1a1a1a;
  --text-light: #555;
  --bg-light: #f8fdfd;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(64,191,191,0.12);
  --shadow-hover: 0 8px 32px rgba(64,191,191,0.24);
  --transition: 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(64,191,191,0.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.nav-logo img { height: 28px; width: auto; }
.nav-logo span { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.nav-cta {
  background: var(--teal);
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #fff;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(64,191,191,0.15);
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom, #ffffff 0%, #eaf7f9 45%, #dff2ec 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
.hero-bg-img { display: none; }
.hero-overlay { display: none; }
.hero-top {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 52px 24px 0;
  max-width: 960px;
  margin: 0 auto;
}
/* 太陽＋横線 */
.hero-sun-line {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto 1.6rem;
}
.hero-line {
  flex: 1;
  height: 1.5px;
  background: #1a3a1a;
  opacity: 0;
  animation: heroLineGrow 0.7s ease forwards 0.1s;
}
.hero-line-left  { transform-origin: right center; }
.hero-line-right { transform-origin: left center; }
.hero-sun-svg {
  flex-shrink: 0;
  display: block;
  animation: sunSpin 14s linear infinite;
  filter: drop-shadow(0 0 8px rgba(245,200,66,0.55));
}
.hero-logo-text {
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #1a3a1a;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: none;
}
.hl {
  display: inline-block;
  opacity: 0;
  animation: heroLetterIn 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
  animation-delay: calc(0.08s * var(--i) + 0.25s);
}
.hero-divider { display: none; }
/* キャッチコピー3段 */
.hero-copy-main {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #17323c;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.0s;
}
.hero-accent { color: var(--teal); }
.hero-copy-sub {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: #2a4a54;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.25s;
}
.hero-copy-note {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: #4a6a72;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.5s;
}
.hero-landscape { display: none; }
.hero-morimaru  { display: none; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-cta-bar {
  position: static;
  transform: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.75s;
}
.hero-btn {
  font-size: 1.05rem;
  padding: 15px 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(64,191,191,0.3);
}
/* 景観フォト */
.hero-landscape-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 300px;
  max-height: 440px;
  margin-top: 2rem;
  overflow: hidden;
  opacity: 0;
  animation: heroFadeUp 1s ease forwards 1.9s;
}
.hero-landscape-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to bottom, #dff2ec, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  max-width: none;
}
/* もりまるくん */
.hero-morimaru-wrapper {
  position: absolute;
  bottom: 8px;
  right: 6%;
  z-index: 4;
  opacity: 0;
  animation: morimaruIn 0.9s cubic-bezier(0.34,1.56,0.64,1) forwards 2.1s;
}
.hero-morimaru-char {
  width: min(230px, 20vw);
  max-height: 55vh;
  object-fit: contain;
  animation: morimaruHop 7s ease-in-out 3.5s infinite;
  transform-origin: bottom center;
  pointer-events: none;
  display: block;
}
/* ふわっと登場 */
@keyframes morimaruIn {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* ときどき ぴょこっ＋ゆらっ */
@keyframes morimaruHop {
  0%, 100%  { transform: translateY(0) rotate(0deg); }
  4%        { transform: translateY(-16px) rotate(-2deg); }
  8%        { transform: translateY(0) rotate(0deg); }
  11%       { transform: translateY(-8px) rotate(2deg); }
  14%       { transform: translateY(0) rotate(0deg); }
  55%       { transform: translateY(0) rotate(0deg); }
  59%       { transform: translateY(0) rotate(-3deg); }
  63%       { transform: translateY(0) rotate(3deg); }
  67%       { transform: translateY(0) rotate(0deg); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(26,58,26,0.4);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 2.1s;
}
.hero-scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(26,58,26,0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes heroLetterIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroLineGrow {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* アニメーションが苦手な方向け：すべて静止・即時表示 */
@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .hl,
  .hero-copy-main,
  .hero-copy-sub,
  .hero-copy-note,
  .hero-cta-bar,
  .hero-landscape-wrap,
  .hero-morimaru-wrapper,
  .hero-scroll-hint {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-sun-svg,
  .hero-morimaru-char,
  .hero-scroll-line {
    animation: none !important;
  }
  /* スクロール出現アニメも無効化（最初から表示） */
  .fade-in,
  .fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.65; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-title .accent { color: var(--teal); }
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.hero-sub2 {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(64,191,191,0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(64,191,191,0.4); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--teal);
  border: 2px solid #fff;
}
.btn-white:hover { background: transparent; color: #fff; }
.hero-image { position: relative; text-align: center; }
.hero-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13,31,45,0.15);
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-light); }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== SERVICE BLOCKS ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.service-block h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy); margin-bottom: 1rem; }
.service-block p { color: var(--text-light); margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.feature-item::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== INFO TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr { border-bottom: 1px solid #eee; }
.info-table th {
  width: 140px;
  padding: 16px 12px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}
.info-table td {
  padding: 16px 12px;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== VMV (Vision/Mission/Value) ===== */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.vmv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
}
.vmv-card .vmv-label {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.vmv-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; }
.vmv-card p { font-size: 0.9rem; color: var(--text-light); }
.value-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.value-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.value-list li::before { content: '🌱'; font-size: 0.85rem; }

/* ===== ADVISOR NETWORK ===== */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.advisor-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.advisor-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.advisor-card .role { font-size: 0.8rem; color: var(--teal); font-weight: 700; margin-bottom: 0.25rem; }
.advisor-card .name { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.advisor-card .org { font-size: 0.8rem; color: var(--text-light); margin-top: 0.25rem; }

/* ===== CONTACT ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
}
.contact-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.contact-hero p { font-size: 1rem; opacity: 0.8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-info-block h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text .label { font-size: 0.75rem; color: var(--text-light); }
.contact-item-text .value { font-weight: 700; color: var(--navy); }
.contact-item-text a.value { color: var(--teal); }
.phone-big {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: 0.03em;
}
.form-container {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-container iframe { width: 100%; border: none; min-height: 800px; border-radius: 8px; }

/* ===== MORIMARU BUBBLE ===== */
.morimaru-section {
  background: var(--teal);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.morimaru-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.morimaru-section p { font-size: 1rem; opacity: 0.9; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h2 { color: #fff; font-size: 1.4rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-top: 0.75rem; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 60px;
  color: #fff;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.page-hero p { font-size: 1rem; opacity: 0.8; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.06s; }
.fade-in-delay-2 { transition-delay: 0.12s; }
.fade-in-delay-3 { transition-delay: 0.18s; }
.fade-in-delay-4 { transition-delay: 0.24s; }

/* ===== STEP FLOW ===== */
.step-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 28px;
  font-size: 1.2rem;
  color: var(--teal);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.step h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.step p { font-size: 0.8rem; color: var(--text-light); }

/* ===== POINTS GRID ===== */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.point-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.point-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.point-item h4 { font-size: 0.9rem; color: var(--navy); font-weight: 700; margin-bottom: 0.25rem; }
.point-item p { font-size: 0.8rem; color: var(--text-light); }

/* ===== BLOG LIST ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.blog-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.blog-tag-agri { background: var(--teal-light); color: var(--teal-dark); }
.blog-tag-energy { background: rgba(13,31,45,0.08); color: var(--navy); }
.blog-tag-company { background: #fff3e0; color: #b26a00; }
.blog-tag-land { background: #f0ece6; color: #6b5340; }
.blog-card-date { font-size: 0.78rem; color: var(--text-light); }
.blog-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.5; }
.blog-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; flex: 1; }
.blog-card-link { font-size: 0.85rem; font-weight: 700; color: var(--teal); }
.blog-card-img {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.25rem;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ===== BLOG HERO BANNER (もりまる統一バナー) ===== */
.blog-hero-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow);
}
.blog-hero-banner-agri { background: linear-gradient(135deg, #0a4a3a 0%, #0d6b4a 55%, #1a7a5a 100%); }
.blog-hero-banner-energy { background: linear-gradient(135deg, var(--navy) 0%, #123a52 55%, var(--teal-dark) 100%); }
.blog-hero-banner-company { background: linear-gradient(135deg, #6b4400 0%, #a86a10 55%, #d99a3a 100%); }
.blog-hero-banner-land { background: linear-gradient(135deg, #3a3229 0%, #5f5344 55%, #8c7a63 100%); }
.blog-hero-banner-text { color: #fff; max-width: 62%; }
.blog-hero-banner-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.15);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.blog-hero-banner-title { font-size: clamp(1.15rem, 3vw, 1.6rem); font-weight: 900; line-height: 1.5; }
.blog-hero-banner-mori { width: 88px; flex-shrink: 0; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3)); }

.blog-card-thumb {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.25rem;
  height: 150px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-thumb img { width: 84px; height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28)); }

@media (max-width: 640px) {
  .blog-hero-banner { flex-direction: column-reverse; text-align: center; padding: 1.75rem 1.5rem; }
  .blog-hero-banner-text { max-width: 100%; }
  .blog-hero-banner-mori { width: 70px; }
}
.blog-empty {
  text-align: center;
  color: var(--text-light);
  padding: 3rem 0;
  font-size: 0.95rem;
}

/* ===== BLOG ARTICLE ===== */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.blog-article-date { font-size: 0.85rem; color: var(--text-light); }
.blog-article h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 2rem;
}
.blog-article-body h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-left: 14px;
  border-left: 4px solid var(--teal);
}
.blog-article-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
}
.blog-article-body p {
  color: var(--text);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.blog-article-body ul, .blog-article-body ol {
  margin: 0 0 1.2rem 1.2rem;
  list-style: disc;
}
.blog-article-body li { margin-bottom: 0.5rem; color: var(--text); }
.blog-note {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 2rem 0;
}
.blog-sources {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.82rem;
  color: var(--text-light);
}
.blog-sources h4 { font-size: 0.85rem; color: var(--navy); margin-bottom: 0.75rem; }
.blog-sources li { margin-bottom: 0.4rem; word-break: break-all; }
.blog-sources a { color: var(--teal); }
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.blog-back:hover { color: var(--teal); }
.blog-hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.blog-figure {
  margin: 2rem 0;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.blog-figure svg { width: 100%; height: auto; display: block; }
.blog-figure figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}
.blog-note-icon {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.blog-note-icon img { width: 48px; height: auto; flex-shrink: 0; }

/* ===== 記事内CTA（本文の途中と末尾に置く相談導線） ===== */
.blog-cta {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.blog-cta h3 {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.blog-cta p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.blog-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.blog-cta-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 1rem 0 0;
}
.blog-cta-note a { color: var(--teal-dark); font-weight: 700; }
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cta { padding: 1.5rem 1.25rem 1.25rem; }
  .blog-cta-buttons .btn { width: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 340px; margin: 0 auto; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .step-flow { gap: 1rem; }
  .step:not(:last-child)::after { display: none; }
  .step { min-width: 120px; }
  .hero-logo-text { font-size: 13vw; letter-spacing: 0.1em; white-space: nowrap; }
  .hero-morimaru-char { width: min(150px, 36vw); }
  .hero-morimaru-wrapper { right: 8%; }
  .hero-landscape-wrap { min-height: 220px; }
  .hero-copy-note { font-size: 0.95rem; }
  .hero-btn { width: 100%; max-width: 320px; font-size: 1.05rem; }
  .hero-cta-bar { flex-direction: column; align-items: center; }
}

/* ===== 実績・事例ページ（jisseki.html）の事例データ表 ===== */
/* 項目名（th）が140px固定だと、スマホで本文の幅が足りなくなるため縦積みにする */
.case-table th { width: 120px; }
@media (max-width: 640px) {
  .case-table tr { display: block; padding: 0.6rem 0; }
  .case-table th,
  .case-table td { display: block; width: auto; white-space: normal; }
  .case-table th { padding: 0 0 0.3rem; }
  .case-table td { padding: 0 0 0.3rem; }
}
