/* ===== リセット・共通 ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, 'Hiragino Sans', 'Noto Sans JP', sans-serif; color: #333; line-height: 1.8; }
img { max-width: 100%; }
a { color: #06C755; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== ナビゲーション ===== */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #06C755;
}
.navbar-logo img { height: 36px; }
.navbar-links { display: flex; gap: 20px; align-items: center; list-style: none; }
.navbar-links a { color: #555; font-size: 14px; font-weight: 500; text-decoration: none; }
.navbar-links a:hover { color: #06C755; }
.navbar-cta {
  background: #06C755; color: white !important; padding: 8px 18px;
  border-radius: 50px; font-size: 13px !important; font-weight: bold;
  transition: transform 0.2s;
}
.navbar-cta:hover { transform: translateY(-1px); text-decoration: none !important; }
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; }

@media (max-width: 768px) {
  .navbar-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: white; padding: 20px; gap: 15px; border-bottom: 1px solid #eee; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
  .navbar-links.active { display: flex; }
  .hamburger { display: block; }
}

/* ===== セクション共通 ===== */
section { padding: 60px 20px; }
@media (min-width: 600px) { section { padding: 80px 20px; } }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-title { text-align: center; font-size: 24px; margin-bottom: 12px; color: #333; }
@media (min-width: 600px) { .section-title { font-size: 30px; } }
.section-subtitle { text-align: center; font-size: 14px; color: #888; margin-bottom: 40px; }
.section-banner { max-width: 800px; margin: 0 auto 30px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.section-banner img { width: 100%; display: block; }

/* ===== ヒーロー ===== */
.hero { padding: 0; text-align: center; }
.hero-banner { width: 100%; display: block; }
.hero-bottom {
  background: linear-gradient(135deg, #06C755 0%, #04a648 50%, #039940 100%);
  color: white; padding: 25px 20px 35px; text-align: center;
}
.hero-sub-copy { font-size: 14px; opacity: 0.9; margin-bottom: 18px; }
.hero-cta, .cta-btn {
  display: inline-block; background: white; color: #06C755;
  padding: 15px 40px; border-radius: 50px; font-size: 16px; font-weight: bold;
  text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 4px 25px rgba(6,199,85,0.4); }
}
.hero-cta:hover, .cta-btn:hover { transform: translateY(-2px); text-decoration: none; }
.hero-note { font-size: 12px; margin-top: 10px; opacity: 0.7; }

/* ===== お悩み ===== */
.problem { background: #fff5f5; }
.problem-list { list-style: none; max-width: 600px; margin: 0 auto; }
.problem-list li { padding: 12px 0; font-size: 15px; border-bottom: 1px solid #ffe0e0; display: flex; align-items: center; gap: 10px; }
.problem-list li::before { content: '😰 '; }

/* ===== 解決 ===== */
.solution { background: #f0fff4; }
.solution-flow { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 35px; flex-wrap: wrap; }
.flow-step { text-align: center; padding: 15px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); width: 180px; }
.flow-step img { width: 80px; height: 80px; object-fit: cover; margin-bottom: 8px; border-radius: 50%; background: #f0f0f0; }
.flow-step .speech { font-size: 14px; font-weight: bold; color: #06C755; margin-bottom: 5px; }
.flow-step .role { font-size: 11px; color: #999; }
.flow-arrow { font-size: 24px; color: #06C755; font-weight: bold; }
@media (max-width: 599px) { .flow-arrow { transform: rotate(90deg); } .solution-flow { gap: 5px; } .flow-step { width: 100%; max-width: 280px; } }
.solution-card { background: white; border-radius: 12px; padding: 25px; margin-bottom: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: flex; align-items: flex-start; gap: 15px; }
.solution-avatar { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: #f0f0f0; }
.solution-card h3 { font-size: 16px; margin-bottom: 5px; color: #06C755; }
.solution-card .speaker { font-size: 11px; color: #999; margin-bottom: 3px; }
.solution-card p { font-size: 14px; color: #666; }

/* ===== 機能 ===== */
.features-section { background: white; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-item { text-align: center; padding: 25px 15px; background: #f8faf9; border-radius: 12px; }
.feature-item .icon { font-size: 36px; margin-bottom: 10px; }
.feature-item h3 { font-size: 15px; margin-bottom: 8px; }
.feature-item p { font-size: 13px; color: #666; }

/* ===== 機能詳細（features.html用） ===== */
.feature-detail { padding: 40px 0; border-bottom: 1px solid #f0f0f0; }
.feature-detail:last-child { border-bottom: none; }
.feature-detail-inner { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.feature-detail-inner.reverse { flex-direction: row-reverse; }
@media (max-width: 599px) { .feature-detail-inner, .feature-detail-inner.reverse { flex-direction: column; } }
.feature-detail-image { flex: 1; min-width: 280px; }
.feature-detail-image img { border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.feature-detail-text { flex: 1; min-width: 280px; }
.feature-detail-text h3 { font-size: 20px; color: #06C755; margin-bottom: 10px; }
.feature-detail-text p { font-size: 14px; color: #666; margin-bottom: 10px; }
.feature-detail-text ul { list-style: none; font-size: 13px; }
.feature-detail-text ul li { padding: 4px 0; }
.feature-detail-text ul li::before { content: '✅ '; }

/* ===== 月次レポート ===== */
.report { background: #f0fff4; }
.report-content { display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }
@media (max-width: 599px) { .report-content { flex-direction: column; } }
.report-image { flex: 1; min-width: 250px; }
.report-image img { border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.report-text { flex: 1; min-width: 250px; }
.report-text h3 { font-size: 18px; color: #06C755; margin-bottom: 12px; }
.report-text p { font-size: 14px; color: #666; margin-bottom: 10px; }
.report-text ul { list-style: none; font-size: 13px; }
.report-text ul li { padding: 4px 0; }
.report-text ul li::before { content: '✅ '; }

/* ===== 料金 ===== */
.pricing { background: #f8f9fa; }
.price-grid { display: grid; grid-template-columns: 1fr; gap: 15px; max-width: 900px; margin: 0 auto; }
@media (min-width: 700px) { .price-grid { grid-template-columns: 1fr 1fr 1fr; } }
.price-card { background: white; border-radius: 12px; padding: 30px 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: relative; }
.price-card.popular { border: 3px solid #06C755; transform: scale(1.02); }
.price-card.popular::before { content: '人気No.1'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #06C755; color: white; padding: 3px 15px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.price-name { font-size: 18px; font-weight: bold; margin-bottom: 5px; }
.price-amount { font-size: 36px; font-weight: bold; color: #06C755; margin: 10px 0; }
.price-amount span { font-size: 14px; color: #999; }
.price-desc { font-size: 13px; color: #999; margin-bottom: 15px; }
.price-features { list-style: none; text-align: left; font-size: 13px; margin-bottom: 20px; }
.price-features li { padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.price-features li::before { content: '✅ '; }
.price-btn { display: block; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: bold; font-size: 14px; transition: transform 0.2s; }
.price-btn:hover { transform: translateY(-1px); text-decoration: none; }
.price-btn-green { background: #06C755; color: white; }
.price-btn-outline { background: white; color: #06C755; border: 2px solid #06C755; }

/* ===== 比較表 ===== */
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.compare-table th { background: #06C755; color: white; padding: 12px 10px; text-align: center; }
.compare-table td { padding: 10px; border-bottom: 1px solid #f0f0f0; text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:hover { background: #f8faf9; }

/* ===== 導入ステップ ===== */
.steps { background: white; }
.step-list { max-width: 600px; margin: 0 auto; }
.step-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 25px; }
.step-num { width: 40px; height: 40px; background: #06C755; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; flex-shrink: 0; }
.step-item h3 { font-size: 15px; margin-bottom: 3px; }
.step-item p { font-size: 13px; color: #666; }

/* ===== FAQ ===== */
.faq-section { background: #f8f9fa; }
.faq-category { margin-bottom: 30px; }
.faq-category h3 { font-size: 16px; color: #06C755; margin-bottom: 12px; padding-bottom: 5px; border-bottom: 2px solid #06C755; }
.faq-item { background: white; border-radius: 8px; padding: 18px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.faq-q { font-weight: bold; font-size: 14px; margin-bottom: 8px; color: #06C755; }
.faq-q::before { content: 'Q. '; }
.faq-a { font-size: 13px; color: #666; }
.faq-a::before { content: 'A. '; font-weight: bold; color: #333; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, #06C755, #04a648); color: white; text-align: center; padding: 60px 20px; }
.cta h2 { font-size: 24px; margin-bottom: 10px; }
@media (min-width: 600px) { .cta h2 { font-size: 30px; } }
.cta p { font-size: 15px; opacity: 0.9; margin-bottom: 25px; }
.cta-banner { max-width: 800px; margin: 0 auto 25px; border-radius: 12px; overflow: hidden; }
.cta-banner img { width: 100%; display: block; }

/* ===== LINE QR ===== */
.line-qr { text-align: center; margin: 20px 0; }
.line-qr img { width: 160px; border-radius: 12px; }
.line-qr p { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ===== フッター ===== */
footer { background: #333; color: #999; padding: 40px 20px; }
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-col h4 { color: #ccc; font-size: 14px; margin-bottom: 10px; }
.footer-col a { color: #999; font-size: 13px; display: block; margin-bottom: 5px; text-decoration: none; }
.footer-col a:hover { color: #06C755; }
.footer-bottom { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #444; font-size: 12px; }

/* ===== 法務ページ ===== */
.legal { background: white; }
.legal-content { max-width: 800px; margin: 0 auto; font-size: 14px; color: #555; line-height: 2; }
.legal-content h2 { font-size: 18px; color: #333; margin: 30px 0 10px; padding-bottom: 5px; border-bottom: 2px solid #06C755; }
.legal-content h3 { font-size: 15px; color: #444; margin: 20px 0 8px; }
.legal-content p { margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 25px; margin-bottom: 12px; }
.legal-content li { margin-bottom: 5px; }

/* ===== ページヒーロー（サブページ用） ===== */
.page-hero { background: linear-gradient(135deg, #06C755, #04a648); color: white; text-align: center; padding: 40px 20px; }
.page-hero h1 { font-size: 28px; margin-bottom: 8px; }
.page-hero p { font-size: 14px; opacity: 0.9; }
