/* ============================================
   岐阜BUZZ studio LP - メインCSS v4.0
   カラー: メイン#236731 サブ#F6930D アクセント1#4972FF アクセント2#FCF08B
   フォント: Noto Sans JP 太めゴシック統一
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;800;900&display=swap');

/* ── リセット & ベース ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #236731;
  --green-dark: #1a4e24;
  --green-light: #e8f5ea;
  --orange: #F6930D;
  --orange-dark: #d47a00;
  --blue: #4972FF;
  --yellow: #FCF08B;
  --white: #fff;
  --black: #0d0d0d;
  --gray: #f5f5f5;
  --text: #1a1a1a;
  --text-light: #555;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 900; line-height: 1.3; }
p { font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }

/* ── ユーティリティ ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; overflow-x: hidden; }
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 48px;
}
.tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.tag-orange { background: var(--orange); }
.tag-blue { background: var(--blue); }

/* ── CTAボタン ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 18px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(246,147,13,0.45);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(246,147,13,0.55);
}
.btn-cta-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background-color 0.2s, border-color 0.2s;
}
.btn-cta-sub:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-cta-green {
  background: var(--green);
  box-shadow: 0 6px 20px rgba(35,103,49,0.35);
}
.btn-cta-green:hover { background: var(--green-dark); box-shadow: 0 10px 28px rgba(35,103,49,0.45); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ナビゲーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 12px 0;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-size: 1rem; font-weight: 900; color: var(--green); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: background-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ヒーローセクション (A案固定)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e5c2a 40%, #2d7a3e 70%, #1a4e24 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-catch {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .emphasis { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.6;
}
.hero-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.hero-cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
.hero-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}
.hero-spec i { color: var(--yellow); font-size: 0.9rem; }

/* ── PCフレーム ── */
.pc-frame-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pc-frame {
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 480px;
  position: relative;
}
.pc-frame::before {
  content: '';
  display: flex;
  gap: 4px;
  height: 28px;
  background: #2a2a3e;
  border-radius: 6px 6px 0 0;
  margin-bottom: 6px;
  background-image: radial-gradient(circle, #ff5f57 6px, transparent 6px),
                    radial-gradient(circle, #febc2e 6px, transparent 6px),
                    radial-gradient(circle, #28c840 6px, transparent 6px);
  background-size: 12px 12px, 12px 12px, 12px 12px;
  background-position: 8px center, 26px center, 44px center;
  background-repeat: no-repeat;
}
.pc-screen {
  background: #0f1117;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}
.pc-screen-tabs {
  display: flex;
  background: #1e1e2e;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pc-screen-tabs::-webkit-scrollbar { display: none; }
.pc-screen-tab {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
  white-space: nowrap;
}
.pc-screen-tab.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.pc-screen-content {
  flex: 1;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.pc-screen-content.active { display: flex; }
.pc-mock-header {
  background: var(--green);
  border-radius: 6px;
  padding: 10px 14px;
}
.pc-mock-title {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
}
.pc-mock-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 2px;
}
.pc-mock-body { display: flex; flex-direction: column; gap: 8px; }
.pc-mock-card {
  background: #1e2030;
  border-radius: 6px;
  padding: 10px 12px;
  border-left: 3px solid var(--orange);
}
.pc-mock-card.blue { border-left-color: var(--blue); }
.pc-mock-card.green { border-left-color: var(--green); }
.pc-mock-card.yellow { border-left-color: var(--yellow); }
.pc-mock-card-title { color: rgba(255,255,255,0.9); font-size: 0.72rem; font-weight: 800; margin-bottom: 4px; }
.pc-mock-card-text { color: rgba(255,255,255,0.6); font-size: 0.65rem; font-weight: 700; line-height: 1.5; }
.pc-mock-tag-row { display: flex; gap: 4px; flex-wrap: wrap; }
.pc-mock-tag {
  background: rgba(246,147,13,0.2);
  color: var(--orange);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 800;
}
.pc-mock-btn {
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}
.pc-mock-progress {
  background: #2a2a3e;
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  margin-top: 4px;
}
.pc-mock-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 4px;
}
.pc-stand {
  width: 60px;
  height: 20px;
  background: #2a2a3e;
  margin: 0 auto;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.pc-base {
  width: 120px;
  height: 8px;
  background: #1a1a2e;
  border-radius: 4px;
  margin: 0 auto;
}
.pc-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* スマホフレーム (MEOアンケート用) */
.phone-frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-frame {
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: 200px;
  position: relative;
}
.phone-notch {
  width: 60px;
  height: 18px;
  background: #0d0d1a;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0f1117;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  padding: 10px 8px;
  gap: 6px;
}
.phone-home-bar {
  width: 50px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 4px auto 0;
}
.phone-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 16px;
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   導入企業スライダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.clients-section {
  background: #ffffff;
  padding: 56px 0 36px;
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 20px;
}
.clients-heading-label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.clients-heading {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.clients-heading strong { color: var(--green); }

/* カルーセル外枠 */
.clients-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* トラック */
.clients-track-outer {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.clients-track-outer:active { cursor: grabbing; }
.clients-track {
  display: flex;
  gap: 16px;
  padding: 12px 24px 20px;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* 各カード */
.client-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.09);
  overflow: hidden;
  border: 1px solid #eeeeee;
  transition: transform 0.22s, box-shadow 0.22s;
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}

/* ロゴエリア */
.client-logo-area {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.client-logo-area img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.client-logo-text {
  text-align: center;
  line-height: 1.4;
  font-family: 'Noto Sans JP', sans-serif;
}

/* テキストエリア */
.client-info {
  padding: 12px 14px 16px;
}
.client-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.client-name {
  font-size: 0.82rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0 0 8px;
}
.client-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.client-results li {
  font-size: 0.72rem;
  font-weight: 700;
  color: #555;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.client-results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* 矢印ボタン */
.clients-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 10;
  color: #333;
  font-size: 0.9rem;
  margin: 0 8px;
}
.clients-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(35,103,49,0.28);
  transform: scale(1.08);
}
.clients-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* 注意書き */
.clients-note {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #aaa;
  padding: 0 20px;
  margin: 4px 0 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   トラストバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-bar {
  background: var(--green);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}
.trust-item i { color: var(--yellow); font-size: 1rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   課題セクション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problem-section { background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.problem-card {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}
.problem-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-4px); }
.problem-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.problem-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.problem-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   新常識セクション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.newstandard-section { background: var(--gray); }
.newstandard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.newstandard-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.ns-before {
  background: #fef0e7;
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.ns-before-label { font-size: 0.7rem; font-weight: 900; color: #c0392b; margin-bottom: 6px; letter-spacing: 0.1em; }
.ns-before-text { font-size: 0.9rem; font-weight: 800; color: #c0392b; }
.ns-arrow { font-size: 1.4rem; color: var(--green); margin: 12px 0; font-weight: 900; }
.ns-after {
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.ns-after-label { font-size: 0.7rem; font-weight: 900; color: var(--green-dark); margin-bottom: 6px; letter-spacing: 0.1em; }
.ns-after-text { font-size: 0.9rem; font-weight: 800; color: var(--green-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   中間CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mid-cta {
  background: linear-gradient(135deg, var(--orange), #e07800);
  padding: 60px 0;
  text-align: center;
}
.mid-cta h2 { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.mid-cta p { color: rgba(255,255,255,0.9); font-weight: 800; margin-bottom: 28px; font-size: 1rem; }
.mid-cta .btn-cta { background: #fff; color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.mid-cta .btn-cta:hover { background: var(--yellow); color: var(--orange-dark); }
.mid-cta-note { margin-top: 12px; color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   導入メリット
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.merit-section { background: var(--white); }
.merit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.merit-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--gray);
  border-radius: var(--radius);
  transition: background-color 0.25s, transform 0.25s;
  align-items: flex-start;
}
.merit-card:hover { background: var(--green-light); transform: translateY(-3px); }
.merit-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.merit-content {}
.merit-title { font-size: 1rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.merit-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   機能一覧 (621b4c6a スタイル: カード縦並び・左説明＋右フレーム)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features-section { background: #FFFFFF; padding: 80px 0; }
.features-section .section-title { color: var(--text); }
.features-section .section-subtitle { color: var(--text-light); }
.features-section .tag { background: var(--green); }

/* ─────── feature-list: 621b4c6aスタイル カード縦並び ─────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 48px;
}

/* 各機能カード */
.fi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #efefef;
  transition: transform 0.28s, box-shadow 0.28s;
}
.fi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
/* reverseでデバイスを左に */
.fi-card.fi-card-rev { }
.fi-card.fi-card-rev .fi-device-wrap { order: -1; }

/* テキストエリア */
.fi-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* カラーバッジ */
.fi-label-wrap { margin-bottom: 16px; }
.fi-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* 大きな半透明番号 */
.fi-big-num {
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -0.02em;
  user-select: none;
}
.fi-big-num-sub {
  font-size: 2.4rem;
  font-weight: 900;
  vertical-align: middle;
}

/* 機能名サブラベル */
.fi-sub-label {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

/* メインタイトル */
.fi-main-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 14px;
}

/* 本文 */
.fi-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.85;
  font-weight: 700;
  margin-bottom: 20px;
}

/* チェックリスト */
.fi-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fi-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.fi-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--check-color, #2D6A4F);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* 注記ボックス */
.fi-note {
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  background: #f9f9f9;
  border-left: 3px solid #ccc;
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  margin-top: 4px;
  line-height: 1.6;
}

/* デバイスエリア */
.fi-device-wrap {
  background: #f5f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  border-left: 1px solid #efefef;
}
.fi-card.fi-card-rev .fi-device-wrap {
  border-left: none;
  border-right: 1px solid #efefef;
}

/* ── PCフレーム（macOS風）── */
.fi-pc-frame {
  background: #1a1a2e;
  border-radius: 12px 12px 0 0;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  overflow: hidden;
}
.fi-pc-bar {
  background: #2a2a3e;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 7px;
}
.fi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.fi-pc-screen {
  background: #0f1117;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.fi-pc-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.fi-pc-stand {
  width: 50px;
  height: 16px;
  background: #2a2a3e;
  margin: 0 auto;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.fi-pc-base {
  width: 100px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 3px;
  margin: 0 auto 4px;
}

/* スクリーン内モックUI */
.fi-mock-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 6px;
  background: #0f1117;
}
.fi-mock-topbar {
  height: 7px;
  background: var(--green);
  border-radius: 3px;
  margin-bottom: 2px;
}
.fi-mock-card {
  background: #1e2030;
  border-radius: 4px;
  padding: 6px 8px;
  border-left: 3px solid var(--orange);
}
.fi-mock-line {
  height: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin-bottom: 4px;
}
.fi-mock-progress {
  height: 5px;
  background: #2a2a3e;
  border-radius: 3px;
  overflow: hidden;
}
.fi-mock-progress-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}
.fi-mock-btn {
  height: 14px;
  background: var(--orange);
  border-radius: 5px;
  width: 65%;
  margin-top: 2px;
}

/* デモ動画準備中オーバーレイ */
.fi-video-ready {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(15,17,23,0.88);
  pointer-events: none;
}
.fi-play-icon { font-size: 1.6rem; opacity: 0.35; color: #fff; }
.fi-video-ready span:last-child { font-size: 0.68rem; font-weight: 800; color: rgba(255,255,255,0.38); text-align: center; line-height: 1.5; }

/* ── 旧クラス互換（既存JSや他セクションで参照がある場合用） ── */
.feature-item { display: none; }
.feature-info {}
.feature-num { font-size: 0.72rem; font-weight: 900; color: var(--orange); }
.feature-title { font-size: 1.4rem; font-weight: 900; color: var(--text); }
.feature-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.85; font-weight: 700; }
.feature-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.feature-tag { background: var(--green-light); color: var(--green-dark); font-size: 0.72rem; font-weight: 800; padding: 4px 13px; border-radius: 20px; }
.feature-tag.orange { background: rgba(246,147,13,0.12); color: #c06300; }
.feature-tag.blue   { background: rgba(73,114,255,0.1);  color: #2a4fd6; }
.feature-frame { background: #f5f7fa; }

/* デモ動画準備中オーバーレイ */
.fi-video-ready {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(15,17,23,0.88);
  pointer-events: none;
}
.fi-play-icon { font-size: 1.6rem; opacity: 0.35; color: #fff; }
.fi-video-ready span:last-child { font-size: 0.68rem; font-weight: 800; color: rgba(255,255,255,0.38); text-align: center; line-height: 1.5; }

/* ── スマホフレーム 機能カード用 (9:16) ── */
.fi-smartphone-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fi-sp-body {
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px 8px 16px;
  width: 190px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  position: relative;
}
.fi-sp-notch {
  width: 56px;
  height: 14px;
  background: #0d0d1a;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}
.fi-sp-screen {
  background: #000;
  border-radius: 22px;
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
}
.fi-sp-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.fi-sp-home {
  width: 44px;
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 10px auto 0;
}
.fi-sp-body::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 72px;
  width: 4px;
  height: 28px;
  background: #2a2a3e;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 36px 0 #2a2a3e;
}
.fi-sp-body::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 88px;
  width: 4px;
  height: 44px;
  background: #2a2a3e;
  border-radius: 0 2px 2px 0;
}

/* ── スマホフレーム (大型) ── */
.fi-phone {
  background: #1a1a2e;
  border-radius: 28px;
  padding: 10px 6px 8px;
  width: 130px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
}
.fi-phone-notch {
  width: 44px;
  height: 12px;
  background: #0d0d1a;
  border-radius: 0 0 10px 10px;
  margin: 0 auto 6px;
}
.fi-phone-screen {
  background: #fff;
  border-radius: 18px;
  aspect-ratio: 9/18;
  overflow: hidden;
  position: relative;
}
.fi-phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fi-phone-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 8px;
  gap: 5px;
  background: #fff;
}
.fi-phone-bar { height: 6px; background: var(--orange); border-radius: 3px; }
.fi-phone-row { height: 5px; background: #f0f0f0; border-radius: 2px; }
.fi-phone-choice {
  font-size: 0.42rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px 5px;
  color: #555;
  text-align: center;
}
.fi-phone-choice.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.fi-phone-btn {
  font-size: 0.38rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  padding: 4px 3px;
  text-align: center;
  margin-top: auto;
}
.fi-phone-home {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  margin: 6px auto 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   使い方
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.howto-section { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(35,103,49,0.3);
  border: 4px solid var(--white);
}
.step-title { font-size: 0.95rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   採用促進セクション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.recruit-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d2137 60%, #0a1929 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.recruit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%234972FF' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.recruit-inner { position: relative; }
.recruit-header { text-align: center; margin-bottom: 48px; }
.recruit-header .tag { background: var(--blue); font-size: 0.8rem; letter-spacing: 0.08em; }
.recruit-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.recruit-title .accent { color: var(--yellow); }
.recruit-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  line-height: 1.7;
}
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.recruit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(73,114,255,0.3);
  border-radius: var(--radius);
  padding: 28px;
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}
.recruit-card:hover {
  background: rgba(73,114,255,0.12);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.recruit-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.recruit-card-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.recruit-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  font-weight: 700;
}
.recruit-highlight {
  background: rgba(73,114,255,0.15);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.recruit-highlight-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 12px;
}
.recruit-highlight-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  line-height: 1.8;
}
.recruit-cta-wrap { text-align: center; }
.recruit-cta-note { color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 700; margin-top: 12px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   アンバサダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ambassador-section { background: var(--gray); }
.ambassador-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.ambassador-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ambassador-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.ambassador-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 14px;
  overflow: hidden;
}
.ambassador-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ambassador-name { font-size: 0.95rem; font-weight: 900; margin-bottom: 4px; }
.ambassador-role { font-size: 0.75rem; font-weight: 800; color: var(--green); margin-bottom: 10px; }
.ambassador-comment { font-size: 0.8rem; color: var(--text-light); line-height: 1.65; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   業種例
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.industries-section { background: var(--white); }
.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.industry-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  border: 2px solid #e0e0e0;
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.industry-tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.industry-panel { display: none; }
.industry-panel.active { display: block; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.industry-item {
  background: var(--gray);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}
.industry-item:hover { background: var(--green-light); color: var(--green-dark); transform: translateY(-2px); }
.industry-item .icon { font-size: 1.4rem; margin-bottom: 6px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   岐阜えもんプロデュース
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gifuemon-section {
  background: linear-gradient(135deg, var(--green-dark), #2d7a3e);
  padding: 80px 0;
  overflow: hidden;
}
.gifuemon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gifuemon-content {}
.gifuemon-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.gifuemon-title .accent { color: var(--yellow); }
.gifuemon-desc {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.85;
  margin-bottom: 28px;
}
.gifuemon-members { display: flex; flex-direction: column; gap: 16px; }
.member-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.member-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-dark);
  flex-shrink: 0;
}
.member-info {}
.member-name { font-size: 0.95rem; font-weight: 900; color: var(--white); margin-bottom: 3px; }
.member-role { font-size: 0.78rem; font-weight: 800; color: var(--yellow); margin-bottom: 4px; }
.member-desc { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 700; line-height: 1.5; }
.gifuemon-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.gifuemon-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   岐阜県への想い
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gifu-love-section { background: var(--white); }
.gifu-love-content { max-width: 820px; margin: 0 auto; }
.gifu-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gifu-stat {
  text-align: center;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 28px 16px;
}
.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.82rem; font-weight: 800; color: var(--text-light); }
.gifu-story {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 32px;
}
.gifu-story-quote {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.75;
  margin-bottom: 20px;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.gifu-story-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 700;
}
.gifu-limited-box {
  background: linear-gradient(135deg, var(--green), #2d7a3e);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
}
.gifu-limited-icon { font-size: 2rem; color: var(--yellow); margin-bottom: 12px; }
.gifu-limited-title { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 20px; }
.gifu-limited-text { font-size: 0.92rem; color: rgba(255,255,255,0.88); font-weight: 700; line-height: 1.75; }
.gifu-limited-text .highlight { color: var(--yellow); font-weight: 900; }
.gifu-limited-conclusion { margin-top: 20px; font-size: 1rem; font-weight: 900; color: var(--yellow); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   料金プラン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-section { background: var(--gray); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card:hover { border-color: var(--green); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--orange);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-emoji { font-size: 2rem; margin-bottom: 10px; }
/* プランアイコン（絵文字代替） */
.plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.plan-icon-ume {
  background: #eef6ee;
  color: #3a8a3a;
}
.plan-icon-take {
  background: #e8effc;
  color: #3b6cf5;
}
.plan-icon-matsu {
  background: #fdf3e4;
  color: #c47d1a;
}
.plan-name { font-size: 1.2rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.plan-price { margin-bottom: 6px; }
.plan-price-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
}
.plan-price-unit { font-size: 0.9rem; font-weight: 800; color: var(--text-light); }
.plan-tax { font-size: 0.78rem; font-weight: 700; color: var(--text-light); margin-bottom: 16px; }
.plan-desc { font-size: 0.85rem; color: var(--text-light); font-weight: 700; margin-bottom: 20px; line-height: 1.65; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.plan-features li i { color: var(--green); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.plan-features li.disabled { color: #bbb; }
.plan-features li.disabled i { color: #ccc; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 900;
  transition: background-color 0.2s, transform 0.2s;
  margin-top: auto;
}
.plan-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.plan-cta.orange { background: var(--orange); }
.plan-cta.orange:hover { background: var(--orange-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   今後の展望
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vision-section { background: var(--white); }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.vision-card {
  border-radius: var(--radius);
  padding: 32px;
  background: var(--gray);
  transition: transform 0.25s, box-shadow 0.25s;
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vision-icon { font-size: 2.4rem; margin-bottom: 16px; }
.vision-title { font-size: 1.05rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.vision-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-section { background: var(--gray); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gray); }
.faq-q-mark {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; line-height: 1.5; }
.faq-q-arrow { font-size: 0.8rem; color: var(--text-light); transition: transform 0.2s; }
.faq-item.open .faq-q-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px 66px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 700;
}
.faq-item.open .faq-a { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   最終CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.final-cta {
  background: linear-gradient(135deg, var(--green-dark), #2d7a3e);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(252,240,139,0.08) 0%, transparent 70%);
}
.final-cta-inner { position: relative; }
.final-cta-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.final-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.final-cta-title .accent { color: var(--yellow); }
.final-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.88); font-weight: 800; margin-bottom: 36px; line-height: 1.65; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.final-cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--black);
  padding: 60px 0 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 32px; }
.footer-logo-text { font-size: 0.95rem; font-weight: 900; color: #fff; }
.footer-desc { font-size: 0.82rem; font-weight: 700; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: background-color 0.2s;
}
.social-btn:hover { background: var(--green); }
.footer-col-title { font-size: 0.9rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   アニメーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── フォーカス表示 ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.btn-cta:focus-visible,
.nav-cta:focus-visible,
.plan-cta:focus-visible {
  outline-color: var(--white);
  outline-offset: 3px;
}
.faq-q:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

/* ── FAQ ボタンリセット ── */
button.faq-q {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   レスポンシブ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── タブレット (〜900px) ─── */
@media (max-width: 900px) {
  /* ナビ */
  .nav-logo img { height: 30px; }
  .nav-cta { padding: 8px 16px; font-size: 0.82rem; }

  /* ヒーロー */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .pc-frame-wrapper { max-width: 480px; margin: 0 auto; }

  /* 機能一覧 fi-card */
  .fi-card,
  .fi-card.fi-card-rev { grid-template-columns: 1fr; }
  .fi-card .fi-device-wrap,
  .fi-card.fi-card-rev .fi-device-wrap {
    order: 1;
    border-left: none;
    border-right: none;
    border-top: 1px solid #efefef;
    padding: 36px 28px;
  }
  .fi-body { padding: 36px 32px; }
  .fi-big-num { font-size: 3.5rem; }
  .fi-main-title { font-size: 1.25rem; }
  .fi-pc-frame { max-width: 300px; }
  .feature-list { gap: 40px; }

  /* ステップ */
  .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps::before { display: none; }

  /* 岐阜えもん */
  .gifuemon-inner { grid-template-columns: 1fr; gap: 36px; }

  /* フッター */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* 料金 */
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ─── スマホ (〜640px) ─── */
@media (max-width: 640px) {
  /* ベース */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.35rem, 5vw, 1.7rem); margin-bottom: 10px; }
  .section-subtitle { font-size: 0.88rem; margin-bottom: 32px; }

  /* ナビ */
  .nav-inner { gap: 12px; }
  .nav-logo-text { font-size: 0.88rem; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }

  /* ヒーロー */
  .hero { padding: 88px 0 48px; }
  .hero-inner { gap: 28px; }
  .hero-content { overflow-wrap: break-word; word-break: auto-phrase; }
  .hero-catch { font-size: clamp(1.6rem, 7vw, 2.4rem); margin-bottom: 8px; }
  .hero-title { font-size: clamp(1.4rem, 5.5vw, 2rem); margin-bottom: 14px; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-subtitle br,
  .hero-lead br { display: none; }
  .hero-lead { font-size: 0.88rem; margin-bottom: 24px; }
  .hero-badge { font-size: 0.78rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-cta-group { align-items: stretch; gap: 10px; }
  .hero-cta-group .btn-cta { justify-content: center; font-size: 1rem; padding: 16px 24px; max-width: 100%; box-sizing: border-box; white-space: normal; }
  .hero-cta-group .btn-cta-sub { justify-content: center; font-size: 0.88rem; max-width: 100%; box-sizing: border-box; white-space: normal; }
  .hero-cta-note { font-size: 0.72rem; line-height: 1.5; }
  .hero-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 18px; }
  .hero-spec { font-size: 0.74rem; padding: 6px 10px; justify-content: flex-start; white-space: normal; }
  .hero-inner { max-width: 100%; overflow: hidden; }
  .pc-frame-wrapper { max-width: 100%; overflow: hidden; }
  .pc-frame { max-width: 100%; }
  .pc-badge { right: 8px; top: 4px; font-size: 0.6rem; padding: 3px 6px; }
  .pc-screen-tab { padding: 6px 8px; font-size: 0.6rem; }

  /* トラストバー */
  .trust-items { gap: 12px; flex-direction: column; align-items: flex-start; padding: 0 4px; }
  .trust-item { font-size: 0.82rem; }

  /* 課題・新常識 */
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 20px; }
  .newstandard-grid { grid-template-columns: 1fr; gap: 14px; }
  .newstandard-card { padding: 20px; }

  /* 中間CTA */
  .mid-cta { padding: 48px 0; }
  .mid-cta h2 { font-size: 1.35rem; }
  .mid-cta p { font-size: 0.9rem; }

  /* メリット */
  .merit-grid { grid-template-columns: 1fr; gap: 14px; }
  .merit-card { padding: 20px; }

  /* 機能一覧 */
  .features-section { padding: 56px 0; }
  .feature-list { gap: 28px; margin-top: 28px; }
  .fi-card { border-radius: 16px; }
  .fi-body { padding: 24px 20px; }
  .fi-big-num { font-size: 2.6rem; }
  .fi-big-num-sub { font-size: 1.8rem; }
  .fi-sub-label { font-size: 0.88rem; }
  .fi-main-title { font-size: 1.05rem; }
  .fi-text { font-size: 0.83rem; line-height: 1.75; }
  .fi-checklist li { font-size: 0.83rem; }
  .fi-note { font-size: 0.72rem; }
  .fi-card .fi-device-wrap,
  .fi-card.fi-card-rev .fi-device-wrap { padding: 24px 20px; }
  .fi-pc-frame { max-width: 100%; width: 100%; }
  .fi-sp-body { width: 160px; }

  /* ステップ */
  .steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step-num { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 12px; }
  .step-title { font-size: 0.85rem; }
  .step-desc { font-size: 0.76rem; }

  /* 採用 */
  .recruit-section { padding: 56px 0; }
  .recruit-grid { grid-template-columns: 1fr; gap: 12px; }
  .recruit-card { padding: 20px; }
  .recruit-highlight { padding: 24px 20px; }

  /* 業種 */
  .industry-tabs { gap: 8px; }
  .industry-tab { padding: 8px 16px; font-size: 0.82rem; }
  .industry-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
  .industry-item { padding: 12px 8px; font-size: 0.78rem; }
  .industry-item .icon { font-size: 1.2rem; margin-bottom: 4px; }

  /* 岐阜えもん */
  .gifuemon-section { padding: 56px 0; }
  .gifuemon-inner { gap: 28px; }
  .gifuemon-title { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .gifuemon-desc { font-size: 0.88rem; margin-bottom: 20px; }
  .member-card { padding: 14px 16px; gap: 12px; }
  .member-avatar { width: 44px; height: 44px; font-size: 1.1rem; }
  .member-name { font-size: 0.88rem; }
  .member-desc { font-size: 0.76rem; }

  /* 岐阜への想い */
  .gifu-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gifu-stat { padding: 18px 8px; }
  .gifu-story { padding: 24px 20px; margin-bottom: 20px; }
  .gifu-story-quote { font-size: 1rem; }
  .gifu-limited-box { padding: 24px 20px; }

  /* 料金 */
  .pricing-section { padding: 56px 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; max-width: 360px; margin: 0 auto; }
  .pricing-card { padding: 28px 22px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 0.88rem; gap: 10px; }
  .faq-a { padding: 0 18px 16px 56px; font-size: 0.83rem; }

  /* 最終CTA */
  .final-cta { padding: 64px 0; }
  .final-cta-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .final-cta-sub { font-size: 0.92rem; margin-bottom: 28px; }
  .final-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .final-cta-btns .btn-cta { width: 100%; max-width: 320px; justify-content: center; }

  /* フッター */
  .footer { padding: 48px 0 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { font-size: 0.72rem; }
}

/* ─── 小型スマホ (〜480px) ─── */
@media (max-width: 480px) {
  /* ベース */
  .section { padding: 48px 0; }
  .container { padding: 0 14px; }

  /* ヒーロー */
  .hero { padding: 80px 0 40px; }
  .hero-catch { font-size: clamp(1.5rem, 7.5vw, 2rem); }
  .hero-title { font-size: clamp(1.15rem, 5vw, 1.4rem); }
  .hero-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .hero-spec { font-size: 0.7rem; padding: 5px 8px; justify-content: flex-start; }
  .hero-content { overflow-wrap: break-word; word-break: auto-phrase; max-width: 100%; }
  .hero-badge { font-size: 0.72rem; padding: 4px 10px; white-space: normal; }
  .hero-cta-group .btn-cta { padding: 14px 18px; font-size: 0.95rem; white-space: normal; }
  .hero-cta-group .btn-cta-sub { font-size: 0.82rem; }
  .hero-specs { grid-template-columns: 1fr; gap: 6px; }
  .hero-cta-note { font-size: 0.68rem; }
  .hero-inner { max-width: 100%; overflow: hidden; }
  .pc-frame-wrapper { max-width: 100%; overflow: hidden; }
  .pc-frame { max-width: 100%; }
  .pc-badge { font-size: 0.6rem; padding: 3px 6px; }
  .pc-screen-tab { padding: 5px 8px; font-size: 0.6rem; }

  /* トラストバー */
  .trust-bar { padding: 16px 0; }
  .trust-item { font-size: 0.78rem; }

  /* 機能一覧 */
  .fi-body { padding: 20px 16px; }
  .fi-main-title { font-size: 1rem; }
  .fi-checklist li { font-size: 0.8rem; }
  .fi-card .fi-device-wrap,
  .fi-card.fi-card-rev .fi-device-wrap { padding: 20px 16px; }
  .fi-sp-body { width: 140px; }

  /* ステップ */
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps .step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1rem; }

  /* 統計 */
  .gifu-stats { grid-template-columns: 1fr; gap: 10px; }
  .gifu-stat { padding: 16px 14px; }

  /* 料金 */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 24px 18px; }
  .plan-price-num { font-size: 1.9rem; }

  /* CTAボタン */
  .btn-cta { font-size: 0.95rem; padding: 15px 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   アイコンカラー・サイズ調整
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problem-icon i { color: var(--green); font-size: 2.6rem; }
.ns-before-label i { color: #c0392b; font-size: 0.85rem; }
.ns-after-label i { color: var(--green-dark); font-size: 0.85rem; }
.recruit-card-icon i { color: #8ab4ff; font-size: 2.4rem; }
.industry-item .icon i { color: var(--green); font-size: 1.6rem; }
.vision-icon i { color: var(--green); font-size: 2.8rem; }
.hero-cta-note i { color: var(--yellow); font-size: 0.95rem; }
.final-cta-note i { color: var(--yellow); font-size: 0.95rem; }
.pc-screen-tab i { color: inherit; }
.ambassador-avatar i { color: #fff; }
