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

/* ===== VARIABLES ===== */
:root {
  --green: #6ab41e;
  --green-bright: #7cc520;
  --green-dark: #2d6e00;
  --green-mid: #4d9015;
  --green-light: #edfad0;
  --green-pale: #f5fce8;

  --accent-lime: #96d42a;
  --accent-teal: #00a88a;

  --text: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --gray-bg: #f9fafb;
  --gray-light: #f3f4f6;
  --border: #e5e7eb;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
  --shadow-green: 0 4px 20px rgba(106,180,30,0.25);
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 80px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-buttons { display: flex; gap: 10px; }
.btn-nav-outline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 160px; height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--green);
  color: var(--green); font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-nav-outline:hover { background: var(--green); color: #fff; }
.btn-nav-fill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 160px; height: 40px;
  border-radius: 8px;
  background: var(--green-dark); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-nav-fill:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-green); }

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 90px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 20px 24px; z-index: 999;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #fff;
  display: flex; align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
/* 背景装飾：右上に大きな緑の円 */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,180,30,0.12) 0%, rgba(106,180,30,0.04) 50%, transparent 70%);
  pointer-events: none;
}
/* 左下にも薄い装飾 */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale);
  border: 1px solid rgba(106,180,30,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--accent-lime));
  border-radius: 2px;
  opacity: 0.4;
}
.hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  margin-bottom: 36px; line-height: 1.8;
}
.hero-cta { display: flex; flex-direction: column; gap: 12px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 12px; min-width: 180px;
  background: var(--green-dark, #3a7d00);
  color: #fff; font-size: 0.97rem; font-weight: 800;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(58,125,0,0.4);
  letter-spacing: 0.02em;
}
.btn-hero:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(45,110,0,0.45); }
.btn-hero-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-hero-outline:hover { border-color: var(--green); color: var(--green); background: #fff; box-shadow: 0 6px 18px rgba(106,180,30,0.2); }
.btn-apply-note {
  font-size: 0.78rem; color: var(--text-muted);
  font-weight: 500;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: var(--green-dark);
  color: #fff; font-size: 0.95rem; font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(45,110,0,0.35);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,110,0,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: #fff; color: var(--text);
  border: 1.5px solid var(--border);
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ヒーロー右側：ビジュアルカード */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-card-main {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%; max-width: 420px;
  position: relative;
  z-index: 2;
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.hero-card-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.hero-card-sub { font-size: 0.8rem; color: var(--text-muted); }
.hero-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 20px;
}
.hero-stat-item {
  background: var(--gray-bg);
  border-radius: 12px; padding: 16px;
  text-align: center;
}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 800;
  color: var(--green); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); }
.hero-card-bar {
  background: var(--gray-bg); border-radius: 8px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero-card-bar-icon { font-size: 1.2rem; }
.hero-card-bar-text { font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.hero-card-bar-badge {
  background: var(--green-pale); color: var(--green-mid);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
/* フローティングバッジ */
.hero-float-badge {
  position: absolute;
  background: #fff; border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 3;
}
.hero-float-badge.badge-1 { top: -20px; left: -30px; animation-delay: 0s; }
.hero-float-badge.badge-2 { bottom: -20px; right: -20px; animation-delay: -2s; }
.hero-float-badge .badge-icon { font-size: 1.2rem; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gray-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item {}
.stat-num {
  font-size: 2.4rem; font-weight: 800;
  color: var(--green); line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { font-size: 1.2rem; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 16px; line-height: 1.3;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: #fff; }
.service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--accent-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(106,180,30,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-illust {
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-card-illust {
  background: var(--green-light);
  transform: scale(1.08) rotate(-3deg);
}
.service-card-illust svg { width: 44px; height: 44px; }
.service-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--text); margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.service-tag {
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  background: var(--green-pale); color: var(--green-mid);
  border: 1px solid rgba(106,180,30,0.2);
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--green);
  padding: 10px 20px; border-radius: 10px;
  background: var(--green-pale);
  transition: all 0.2s;
}
.service-link:hover { background: var(--green-dark); color: #fff; }
.service-link-sumapla {
  background: var(--green-dark);
  color: #fff;
  margin-bottom: 8px;
}
.service-link-sumapla:hover { background: var(--green-mid); color: #fff; }

/* ===== VISION ===== */
.vision-section { background: var(--gray-bg); }
.vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vision-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.vision-card:hover { border-color: rgba(106,180,30,0.4); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.vision-card-num {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.15em; color: var(--text-light);
  margin-bottom: 16px;
}
.vision-card-icon {
  font-size: 2rem; margin-bottom: 16px;
}
.vision-card h3 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); margin-bottom: 12px;
}
.vision-card p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75;
}

/* ===== SERVICE CARD LAYER ===== */
.service-card-layer {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--gray-light);
  border-radius: 100px;
  display: inline-block;
}

/* ===== ROADMAP ===== */
.roadmap-section { background: #fff; }
.roadmap-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}
.roadmap-arrow {
  font-size: 1.4rem; color: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  padding: 0 8px; margin-top: 48px;
}
.roadmap-step {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}
.roadmap-step:hover { border-color: rgba(106,180,30,0.4); box-shadow: var(--shadow); transform: translateY(-4px); }
.roadmap-step-phase {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.roadmap-step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.roadmap-step h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.roadmap-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.roadmap-step-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}
.roadmap-step-tag.current { background: var(--green); color: #fff; }
.roadmap-step-tag.next { background: var(--green-pale); color: var(--green-mid); border: 1px solid rgba(106,180,30,0.3); }
.roadmap-step-tag.future { background: var(--gray-light); color: var(--text-muted); }

/* ===== FLOW ===== */
.flow { background: var(--gray-bg); }
.flow-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
/* 3ステップ＋ゴール構成 */
.flow-steps-3 {
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-light));
  z-index: 0;
}
.flow-step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 12px;
}
.flow-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem; font-weight: 800; color: var(--green);
  box-shadow: 0 0 0 6px var(--green-pale);
  transition: all 0.3s;
}
.flow-step:hover .flow-step-num {
  background: var(--green); color: #fff;
  transform: scale(1.1);
}
.flow-step-title { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.flow-step-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
/* ゴール（入居開始）ステップ */
.flow-step-goal {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 16px;
  border: 2px solid var(--green);
  padding: 20px 12px;
}
.flow-step-goal-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
/* flow-steps-3内の矢印プレースホルダー：偶数列（矢印）*/
.flow-steps-3 > .flow-step:nth-child(even) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  padding: 0;
}
.flow-steps-3::before { display: none; }
.flow-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green); font-weight: 700;
  padding-top: 0;
}
.flow-arrow-goal {
  color: var(--green-dark);
}

/* ===== VISION SVG ILLUST ===== */
.vision-svg {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
.vision-card-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 88px;
}

/* ===== FLOW STEP ILLUST ===== */
.flow-step-illust {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step-illust svg {
  width: 56px;
  height: 56px;
  display: block;
}
.flow-step-goal .flow-step-illust svg {
  filter: drop-shadow(0 2px 6px rgba(22,163,74,0.18));
}

/* ===== FEATURES ===== */
.features { background: #fff; }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
}
.feature-card:hover { background: var(--green-pale); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.1); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* ===== MICROSOFT FOR STARTUPS HIGHLIGHT ===== */
.ms-highlight-section {
  background: #fff;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ms-highlight-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.ms-highlight-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #0078d4;
  background: #e8f4fd;
  border: 1.5px solid #0078d4;
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.ms-highlight-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #f0f8ff 0%, #fff 60%);
  border: 1.5px solid #c8e0f7;
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 8px 32px rgba(0,120,212,0.08);
}
.ms-highlight-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.ms-highlight-logo {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
}
.ms-highlight-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.ms-highlight-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ms-highlight-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-highlight-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}
.ms-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: #0078d4;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 700px) {
  .ms-highlight-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    text-align: center;
  }
  .ms-highlight-logo-wrap {
    max-width: 160px;
    margin: 0 auto;
  }
  .ms-highlight-point {
    text-align: left;
  }
}

/* ===== TRUST & CERTIFICATIONS ===== */
.trust-certs-section {
  background: var(--gray-bg);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.trust-certs-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.trust-certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
/* TC Card */
.tc-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.tc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
/* Badge */
.tc-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.tc-badge-blue  { color: #0078d4; background: #e8f4fd; border: 1.5px solid #0078d4; }
.tc-badge-gold  { color: #92600a; background: #fef9ec; border: 1.5px solid #d4a017; }
.tc-badge-green { color: var(--green-dark); background: var(--green-pale); border: 1.5px solid var(--green-dark); }
.tc-badge-cyan  { color: #0e7490; background: #ecfeff; border: 1.5px solid #0e7490; }
.tc-badge-red    { color: #b91c1c; background: #fef2f2; border: 1.5px solid #b91c1c; }
.tc-badge-purple { color: #7c3aed; background: #f5f3ff; border: 1.5px solid #7c3aed; }
/* Logo */
.tc-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 20px;
  height: 160px;        /* 全カード共通の固定高さ */
  border: 1px solid var(--border);
  overflow: hidden;
}
.tc-logo {
  max-width: 180px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.tc-logo-award {
  max-width: 110px;
  max-height: 120px;
}
/* 横長画像（Microsoft統合・全国保証機構）用 */
.tc-logo-wide {
  max-width: 100%;
  max-height: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* 特許証合成画像：全体を枠内に収める */
.tc-logo-patent {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 6px;
  background: #fff;
}
/* Microsoft For Startups: 2ロゴ並列 */
.tc-logo-wrap-ms {
  flex-direction: column;
  gap: 10px;
  padding: 16px 12px;
  height: 160px;        /* 共通固定高さ */
}
.tc-logo-ms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.tc-logo-ms-row .tc-logo {
  max-width: 140px;
  max-height: 56px;
}
.tc-logo-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}
/* Title */
.tc-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
}
/* Desc */
.tc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
}
/* Points */
.tc-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tc-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}
.tc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #0078d4;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.tc-check-gold  { background: #d4a017; }
.tc-check-green { background: var(--green-dark); }
.tc-check-cyan  { background: #0e7490; }
.tc-check-red    { background: #b91c1c; }
.tc-check-purple { background: #7c3aed; }

/* Patent Icon */
.tc-patent-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(124,58,237,0.25);
}
/* Patent Card - 2 images side by side */
.tc-card-patent {
  grid-column: span 1;
}
.tc-patent-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 8px;
  width: 100%;
}
.tc-patent-img {
  width: calc(50% - 5px);
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.18), 0 1px 6px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.tc-patent-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(124,58,237,0.28), 0 2px 10px rgba(0,0,0,0.14);
}
/* Responsive */
@media (max-width: 1280px) {
  .trust-certs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .trust-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .trust-certs-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--accent-lime) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff;
  margin-bottom: 16px; line-height: 1.3;
}
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px;
  background: #fff; color: var(--green-dark);
  font-size: 1rem; font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-size: 1rem; font-weight: 700;
  transition: all 0.25s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700;
  color: #fff; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== FOOTER LOGOS BAR ===== */
.footer-logos-bar {
  /* フッター本体の外側・上部に白背景帯として配置 */
  background: #ffffff;
  width: 100%;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 3px solid #e8f0e0;
}
.footer-logos-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
}
.footer-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-cert-logo {
  height: 112px;
  width: auto;
  object-fit: contain;
  /* カラー表示（フィルターなし） */
  filter: none;
  opacity: 1;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-cert-logo:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
/* 横長ロゴ（全国保証機構等） */
.footer-cert-logo-wide {
  height: 104px;
  max-width: 480px;
  width: auto;
}
/* Microsoft統合ロゴ（1.5倍） */
.footer-cert-logo-ms {
  height: 156px;
  max-width: 720px;
  width: auto;
}

/* ===== FIXED CTA BAR ===== */
.fixed-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fixed-cta-bar.visible { transform: translateY(0); }
.fixed-cta-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.fixed-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700;
  transition: all 0.2s; text-align: center;
}
.fixed-cta-btn.primary { background: var(--green-dark); color: #fff; }
.fixed-cta-btn.primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.fixed-cta-btn.outline { border: 1.5px solid var(--green); color: var(--green); }
.fixed-cta-btn.outline:hover { background: var(--green-pale); }
.fixed-cta-btn.dark { background: #111827; color: #fff; }
.fixed-cta-btn.dark:hover { background: #1f2937; }

/* ===== SMART APPLY MODAL ===== */
.smart-modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.smart-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.smart-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 860px;
  padding: 32px 32px 40px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh; overflow-y: auto;
}
.smart-modal-overlay.open .smart-modal {
  transform: translateY(0);
}
.smart-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.smart-modal-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--green); text-transform: uppercase; margin-bottom: 6px;
}
.smart-modal-title {
  font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 8px;
}
.smart-modal-sub {
  font-size: 0.85rem; color: var(--text-light); line-height: 1.6;
}
.smart-modal-close {
  background: #f3f4f6; border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; flex-shrink: 0;
  transition: background 0.2s;
}
.smart-modal-close:hover { background: #e5e7eb; }
.smart-modal-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 600px) {
  .smart-modal-cards { grid-template-columns: 1fr; }
  .smart-modal { padding: 24px 20px 32px; }
}
.smart-service-card {
  border: 1.5px solid var(--border); border-radius: 16px;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s;
}
.smart-service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.smart-service-logo {
  display: flex; align-items: center; gap: 10px;
}
.smart-service-icon {
  font-size: 1.6rem;
}
.smart-service-name {
  font-size: 1rem; font-weight: 800; color: var(--text); letter-spacing: 0.04em;
}
.smart-service-title {
  font-size: 1.05rem; font-weight: 800; color: var(--text);
}
.smart-service-desc {
  font-size: 0.83rem; color: var(--text-light); line-height: 1.65;
}
.smart-service-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.smart-service-points li {
  font-size: 0.82rem; color: var(--text-light);
  display: flex; align-items: center; gap: 6px;
}
.smart-service-points li::before { display: none; }
.smart-service-btn {
  margin-top: auto;
  padding: 12px 0; border-radius: 10px;
  font-size: 0.88rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
.smart-service-btn.coming-soon {
  background: #f3f4f6; color: #9ca3af; cursor: not-allowed;
  border: 1.5px dashed #d1d5db;
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-steps { grid-template-columns: 1fr 1fr; }
  .roadmap-arrow { display: none; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-steps::before { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .service-cards { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .roadmap-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .fixed-cta-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
