/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  line-height: 1.75;
}
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
.header {
  background: #1c3d6e;
  padding: 10px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
}
.header-site-name { color: #fff; font-weight: 700; font-size: 15px; }
.header-update { color: #a0bce0; font-size: 12px; }

/* ===== MAIN ===== */
.main { padding: 0 0 40px; }
.container { max-width: 860px; margin: 0 auto; padding: 0 14px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 12px; color: #888;
  padding: 10px 0 6px;
}

/* ===== ARTICLE TITLE ===== */
.article-title {
  font-size: 1.35rem; font-weight: 900; color: #111;
  line-height: 1.5; margin: 8px 0 10px;
  border-bottom: 3px solid #1c3d6e; padding-bottom: 10px;
}
.article-title-sub { font-size: 1rem; color: #1c3d6e; }
.article-lead {
  font-size: 14px; color: #444; line-height: 1.8;
  background: #eef3fb; border-left: 4px solid #1c3d6e;
  padding: 12px 14px; border-radius: 0 6px 6px 0;
  margin: 12px 0 16px;
}

/* ===== EVAL BOX ===== */
.eval-box {
  background: #fff; border: 1px solid #dde5f0;
  border-radius: 8px; padding: 14px 16px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.eval-stars { color: #f5a623; font-size: 18px; }
.eval-score { font-size: 14px; color: #333; }
.eval-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.etag {
  background: #eef3fb; color: #1c3d6e;
  font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid #c0d0e8;
}

/* ===== REC CARD ===== */
.rec-card {
  background: #fff;
  border: 2px solid #1c3d6e;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 14px rgba(28,61,110,0.1);
}
.rec-card-header {
  background: #1c3d6e; color: #fff;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.rec-rank {
  background: #f5a623; color: #fff;
  font-weight: 900; font-size: 12px;
  padding: 3px 10px; border-radius: 4px;
  white-space: nowrap;
}
.rec-name { font-size: 17px; font-weight: 900; flex: 1; }
.rec-stars { color: #f5d56a; font-size: 14px; white-space: nowrap; }
.rec-score { color: #fff; font-weight: 700; }
.rec-card-body { padding: 18px; }

/* ===== CONDITION TABLE ===== */
.cond-table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 14px; }
.cond-table th, .cond-table td {
  padding: 10px 12px; border: 1px solid #e0e8f0;
  text-align: left; vertical-align: middle;
}
.cond-table th {
  background: #f0f4fa; color: #1c3d6e;
  font-weight: 700; width: 35%; white-space: nowrap;
}
.cond-table td { color: #333; }
.highlight { color: #d94f00; font-weight: 700; }

/* ===== POINT SECTION ===== */
.point-section {
  background: #f8fbff; border: 1px solid #c8d8f0;
  border-radius: 8px; padding: 14px 16px; margin-bottom: 18px;
}
.point-section-title { font-weight: 700; color: #1c3d6e; margin-bottom: 10px; font-size: 14px; }
.point-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.point-list li { font-size: 14px; color: #333; }

/* ===== APPLY BUTTON ===== */
.apply-btn {
  display: block; width: 100%; text-align: center;
  background: #06c755; color: #fff;
  font-weight: 900; font-size: 16px;
  padding: 16px; border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 8px;
}
.apply-btn:hover { background: #05b34c; transform: translateY(-1px); }
.apply-btn--large { font-size: 17px; padding: 18px; }
.apply-note { text-align: center; font-size: 12px; color: #888; }

/* ===== SECTION ===== */
.section { margin-bottom: 28px; }
.section-h2 {
  font-size: 1.1rem; font-weight: 900; color: #fff;
  background: #1c3d6e; padding: 10px 14px;
  border-radius: 6px; margin-bottom: 14px;
}

/* ===== RECOMMEND GRID ===== */
.recommend-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.recommend-item {
  background: #fff; border: 1px solid #e0e8f0;
  border-radius: 8px; padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #333;
}
.ri-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

/* ===== FLOW ===== */
.flow-wrap { display: flex; flex-direction: column; }
.flow-step-item {
  background: #fff; border: 1px solid #dde5f0;
  border-radius: 8px; padding: 14px 16px;
  display: flex; gap: 14px; align-items: flex-start;
}
.flow-step-badge {
  background: #1c3d6e; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; margin-top: 2px; flex-shrink: 0;
}
.flow-step-body strong { display: block; font-size: 15px; color: #1c3d6e; margin-bottom: 4px; }
.flow-step-body p { font-size: 13px; color: #555; }
.flow-arrow { text-align: center; color: #1c3d6e; font-size: 18px; padding: 4px 0; }

/* ===== MID CTA ===== */
.mid-cta {
  background: #eef3fb; border: 2px solid #c0d0e8;
  border-radius: 10px; padding: 22px 18px; text-align: center;
  margin-bottom: 28px;
}
.mid-cta-text { font-weight: 700; color: #1c3d6e; font-size: 15px; margin-bottom: 12px; }

/* ===== FAQ ===== */
.faq-wrap { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid #dde5f0; border-radius: 8px; overflow: hidden; }
.faq-q {
  background: #f0f4fa; padding: 11px 14px;
  font-size: 14px; font-weight: 700; color: #1c3d6e;
  display: flex; gap: 8px; align-items: flex-start;
}
.faq-a {
  padding: 11px 14px; font-size: 13px; color: #444;
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.7;
}
.faq-qmark {
  background: #1c3d6e; color: #fff;
  font-weight: 900; font-size: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.faq-amark {
  background: #06c755; color: #fff;
  font-weight: 900; font-size: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ===== FINAL CTA ===== */
.final-cta-box {
  background: #1c3d6e; border-radius: 10px;
  padding: 28px 20px; text-align: center; margin-bottom: 8px;
}
.fctab-title { color: #fff; font-size: 1.05rem; font-weight: 900; margin-bottom: 6px; }
.fctab-sub { color: #a0bce0; font-size: 13px; margin-bottom: 16px; }

/* ===== FOOTER ===== */
.footer { background: #111; color: #666; padding: 18px 16px 0; }
.footer-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid #222; flex-wrap: wrap; gap: 10px;
}
.footer-site { color: #aaa; font-size: 14px; font-weight: 700; }
.footer-line { color: #06c755; font-size: 13px; font-weight: 700; }
.disclaimer {
  max-width: 860px; margin: 0 auto;
  padding: 12px 0; font-size: 11px; color: #444; line-height: 1.9;
  border-bottom: 1px solid #222;
}
.disclaimer strong { color: #666; }
.copyright {
  max-width: 860px; margin: 0 auto;
  padding: 10px 0 14px; font-size: 11px; color: #333;
}

/* ===== FLOAT BUTTON ===== */
.float-wrap { position: fixed; bottom: 18px; right: 16px; z-index: 200; }
.float-btn {
  display: flex; align-items: center; gap: 6px;
  background: #06c755; color: #fff;
  font-weight: 900; font-size: 14px;
  padding: 12px 20px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(6,199,85,0.5);
  transition: transform 0.15s;
}
.float-btn:hover { transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .recommend-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 1.15rem; }
  .cond-table th { width: 42%; }
  .rec-name { font-size: 15px; }
  .float-label { display: none; }
  .float-btn { padding: 13px 16px; border-radius: 50%; }
}
