/* =========================================================
   みつもりくんie2 LP Stylesheet
   ========================================================= */

/* Reset & Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* SP/PC 切替ユーティリティ */
.sp-only { display: none; }
.pc-only { display: inline; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}
br.sp-only { display: none; }
br.pc-only { display: inline; }
@media (max-width: 768px) {
  br.sp-only { display: inline; }
  br.pc-only { display: none; }
}

/* Accessibility - Skip Link (キーボードフォーカス時のみ表示) */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #0a3a73;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-200%);
  transition: transform .15s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #2e9b4c;
}

/* Focus indicator (キーボード操作時) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid #2e9b4c;
  outline-offset: 2px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #1a2233;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.4em; }
strong { font-weight: 700; color: #1f6b3a; }

/* Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 88px 0;
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
}

.section-dark {
  background: linear-gradient(135deg, #0a3a73 0%, #142e5e 100%);
  color: #ffffff;
}
.section-dark strong { color: #7ce895; }
.section-light { background: #f4f7fb; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #2e9b4c;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-dark .section-eyebrow { color: #7ce895; }

.section-title {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.section-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin: 0 0 40px;
  font-weight: 500;
}
.section-dark .section-subtitle { color: #c5d1e2; }

/* Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5ebf2;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 1;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.logo-product {
  font-weight: 900;
  font-size: 16px;
  color: #0a3a73;
  letter-spacing: 0.02em;
  padding-left: 14px;
  border-left: 1.5px solid #d0d8e3;
}
@media (max-width: 600px) {
  .logo-img { height: 26px; }
  .logo-product { font-size: 13px; padding-left: 10px; }
  .logo { gap: 10px; }
}
@media (max-width: 380px) {
  .logo-product { display: none; }
}
.header-cta {
  display: inline-block;
  background: #2e9b4c;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(46,155,76,0.3); }
@media (max-width: 480px) {
  .header-cta { padding: 8px 14px; font-size: 12px; }
}

/* Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  line-height: 1.3;
}
.btn-primary {
  background: linear-gradient(135deg, #2e9b4c 0%, #45b863 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46,155,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46,155,76,0.45);
}
.btn-lg {
  padding: 22px 48px;
  font-size: 18px;
  min-width: 320px;
  max-width: 100%;
}
.btn-xl {
  padding: 28px 48px;
  font-size: 20px;
  width: 100%;
  max-width: 560px;
}
.btn-main { display: block; font-size: 1em; font-weight: 900; }
.btn-sub { display: block; font-size: 0.7em; opacity: 0.92; margin-top: 4px; font-weight: 500; }

@media (max-width: 480px) {
  .btn-lg { min-width: 0; width: 100%; padding: 18px 24px; font-size: 16px; }
  .btn-xl { padding: 22px 24px; font-size: 18px; }
}

.cta-block {
  text-align: center;
  margin: 48px 0 0;
}
.cta-mid {
  background: #f0faf3;
  border: 2px dashed #a3d9b1;
  border-radius: 16px;
  padding: 32px;
}

/* Figure (実画像コンテナ)
   ========================================================= */
.lp-figure {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10,31,61,0.10);
  background: #ffffff;
  line-height: 0;
}
.lp-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.lp-figure figcaption {
  display: block;
  background: #f0faf3;
  color: #1f6b3a;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid #a3d9b1;
  font-family: 'Noto Sans JP', sans-serif;
}
.section-dark .lp-figure {
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* Product screenshots (製品ページから取得した実UI) */
.lp-figure-screenshot {
  border: 1px solid #e5ebf2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
}
.lp-figure-screenshot img {
  background: #fff;
  padding: 14px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.product-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 32px;
}
.product-shots .lp-figure-screenshot {
  max-width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .product-shots { grid-template-columns: 1fr; }
}

/* FV product shot (画面キャプチャ／製品全体図) */
.fv-product-shot {
  margin: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(10,31,61,0.15);
  border: 1px solid #e5ebf2;
}
.fv-product-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.fv-product-shot figcaption {
  margin: 12px 4px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #1f6b3a;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}

/* Image Placeholder
   ========================================================= */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, #f0f4f9, #f0f4f9 12px, #e6ecf4 12px, #e6ecf4 24px);
  border: 2px dashed #b8c4d4;
  border-radius: 16px;
  text-align: center;
  padding: 40px 24px;
  color: #4a5e7a;
  margin: 0 0 32px;
  min-height: 220px;
}
.image-placeholder-fv { min-height: 360px; }
.image-placeholder-wide { min-height: 240px; }
.section-dark .image-placeholder {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}
.ph-label {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: inline-block;
  background: #fff;
  color: #0a3a73;
  padding: 6px 16px;
  border-radius: 999px;
}
.section-dark .ph-label { background: #7ce895; }
.ph-desc {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.85;
}

/* First View
   ========================================================= */
.fv {
  background:
    radial-gradient(ellipse at top right, rgba(46,155,76,0.10) 0%, transparent 60%),
    linear-gradient(135deg, #f5fbf7 0%, #e6f5ec 100%);
  padding: 64px 0 80px;
  overflow: hidden;
}
.fv-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .fv-inner { grid-template-columns: 1fr; gap: 32px; }
}

.fv-eyebrow {
  display: inline-block;
  background: #0a3a73;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}
.fv-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #0a3a73;
  margin: 0 0 20px;
}
.fv-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.85;
  margin: 0 0 16px;
  color: #2d3a52;
}
.fv-lead {
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.8;
  background: #fff;
  padding: 16px 20px;
  border-left: 4px solid #2e9b4c;
  border-radius: 4px;
  margin: 0 0 24px;
}
.fv-badges {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.fv-badges li {
  background: #fff;
  border: 1.5px solid #0a3a73;
  color: #0a3a73;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.fv-campaign {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fff3d6 0%, #ffe0b3 100%);
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 20px;
  position: relative;
  box-shadow: 0 4px 14px rgba(255,152,0,0.15);
}
.fv-campaign::before {
  content: "限定";
  position: absolute;
  top: -10px;
  left: 14px;
  background: #c93131;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.fv-campaign .campaign-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.fv-campaign .campaign-text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.fv-campaign .campaign-text strong {
  font-size: 14px;
  color: #c93131;
  font-weight: 900;
}
.fv-campaign .campaign-text span {
  font-size: 13px;
  color: #1a2233;
  font-weight: 500;
}
.fv-campaign .campaign-text em {
  font-style: normal;
  font-weight: 900;
  color: #0a3a73;
}

.fv-cta { margin-top: 8px; }
.fv-schedule {
  margin: 16px 0 0;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.7;
}
.fv-schedule small { color: #718096; }

/* Intro
   ========================================================= */
.intro .container { max-width: 880px; }
.intro p { font-size: 16.5px; margin: 0 0 18px; }
.lead-quote {
  font-size: 20px;
  font-weight: 700;
  color: #0a3a73;
  background: #f7faff;
  border-left: 4px solid #0a3a73;
  padding: 24px 28px;
  margin: 0 0 28px;
  line-height: 1.9;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px dashed #d6dfeb;
  font-size: 16px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: #2e9b4c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Problem
   ========================================================= */
.problem .container { max-width: 880px; }
.problem p { margin: 0 0 18px; }
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pain-list li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 16px;
}
.pain-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 14px;
  width: 26px;
  height: 26px;
  background: #7ce895;
  color: #1a2233;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.quote-box {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid #7ce895;
  padding: 24px 28px;
  margin: 24px 0;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.9;
}

/* Cause
   ========================================================= */
.cause-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
}
@media (max-width: 900px) {
  .cause-grid { grid-template-columns: 1fr; }
}
.cause-card {
  background: #fff;
  border-top: 4px solid #2e9b4c;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(10,58,115,0.06);
}
.cause-num {
  display: inline-block;
  background: #2e9b4c;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.cause-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 12px;
  line-height: 1.5;
}
.cause-card p { font-size: 15px; margin: 0 0 12px; }
.cause-card ul { font-size: 14px; padding-left: 1.2em; margin: 0 0 12px; }
.cause-card li { margin-bottom: 4px; }
.cause-conclusion {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #0a3a73;
  background: #f0faf3;
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0 0;
  line-height: 1.8;
}

/* Compare Table
   ========================================================= */
.table-wrapper { overflow-x: auto; margin: 0 0 32px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,58,115,0.08);
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid #e5ebf2;
  font-size: 14px;
}
.compare-table th {
  background: #0a3a73;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.compare-table th.highlight-col,
.compare-table td.highlight-col {
  background: #f0faf3;
  border-left: 2px solid #2e9b4c;
  border-right: 2px solid #2e9b4c;
}
.compare-table th.highlight-col {
  background: #2e9b4c;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr:last-child td.highlight-col { border-bottom: 2px solid #2e9b4c; }
.compare-table td:first-child { text-align: left; font-weight: 700; background: #f7faff; }

.rating { font-weight: 900; font-size: 14px; }
.rating.good { color: #1f8a3d; }
.rating.mid { color: #b88500; }
.rating.bad { color: #c93131; }

.compare-summary {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10,58,115,0.06);
}
.compare-summary p { margin: 0 0 12px; font-size: 15.5px; }
.compare-summary p:last-child { margin: 0; }

/* Product
   ========================================================= */
.product-intro {
  background: #f7faff;
  padding: 28px 32px;
  border-radius: 12px;
  margin: 0 0 40px;
  border-left: 4px solid #0a3a73;
}
.product-intro h3 {
  font-size: 22px;
  color: #0a3a73;
  margin: 0 0 12px;
  font-weight: 900;
}
.product-intro p { margin: 0; font-size: 16px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10,58,115,0.1);
}
.feature-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  font-weight: 900;
  color: #2e9b4c;
  opacity: 0.5;
  letter-spacing: 0.02em;
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 12px;
  padding-right: 50px;
  line-height: 1.5;
}
.feature-card p { font-size: 15px; margin: 0 0 8px; }
.feature-card ul { font-size: 14px; margin: 0 0 12px; padding-left: 1.4em; }
.feature-card li { margin-bottom: 4px; }

.result-box {
  background: linear-gradient(135deg, #f0faf3 0%, #dff5e7 100%);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px 0 0;
  border: 2px solid #a3d9b1;
}
.result-box h3 {
  font-size: 22px;
  color: #0a3a73;
  margin: 0 0 16px;
  font-weight: 900;
}
.result-box p { font-size: 16px; margin: 0 0 16px; }

/* Webinar Lead
   ========================================================= */
.webinar-lead .container { max-width: 880px; }
.webinar-lead p { font-size: 16.5px; margin: 0 0 18px; }
.qa-box {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  margin: 32px 0;
  border: 1px solid rgba(255,255,255,0.18);
}
.qa-box h3 {
  font-size: 18px;
  font-weight: 900;
  color: #7ce895;
  margin: 0 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .qa-box h3 { font-size: 14px; }
  .qa-box { padding: 22px 18px; }
}
.q-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.q-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15.5px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.q-list li:last-child { border-bottom: 0; }
.q-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: #7ce895;
  color: #0a3a73;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

/* Webinar Detail
   ========================================================= */
.timetable {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,58,115,0.08);
  margin: 0 0 40px;
  border: 1px solid #e5ebf2;
}
.tt-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #e5ebf2;
  gap: 20px;
}
.tt-row:last-child { border-bottom: 0; }
.tt-time {
  font-weight: 900;
  color: #2e9b4c;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.tt-content { font-size: 15.5px; }
@media (max-width: 600px) {
  .tt-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}
.col-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e5ebf2;
}
.col-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 16px;
}
.col-card-accent {
  background: linear-gradient(135deg, #f0faf3 0%, #dff5e7 100%);
  border: 2px solid #a3d9b1;
}
.gift-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gift-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 15.5px;
  font-weight: 500;
  border-bottom: 1px dashed #e5ebf2;
}
.gift-list li:last-child { border-bottom: 0; }
.gift-icon {
  font-size: 22px;
  margin-right: 14px;
  width: 32px;
  flex-shrink: 0;
}
.gift-list li.gift-headline {
  background: linear-gradient(135deg, #fff3d6 0%, #ffe0b3 100%);
  border: 2px solid #ff9800;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 2px solid #ff9800;
}
.gift-list li.gift-headline strong {
  color: #c93131;
  font-weight: 900;
  font-size: 15px;
}
.gift-list li.gift-headline .gift-icon {
  font-size: 30px;
}
.gift-note {
  margin: 12px 0 0;
  font-size: 11px;
  color: #4a5568;
  line-height: 1.7;
}

/* Before/After
   ========================================================= */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 0 32px;
}
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
}
.ba-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 2px solid;
}
.ba-before { border-color: #c93131; }
.ba-after { border-color: #1f8a3d; }
.ba-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
}
.ba-before h3 { color: #c93131; border-color: #c93131; }
.ba-after h3 { color: #1f8a3d; border-color: #1f8a3d; }

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 14px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}
.schedule-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #e5ebf2;
  display: flex;
  gap: 14px;
}
.schedule-list li:last-child { border-bottom: 0; }
.schedule-list .time {
  font-weight: 900;
  color: #2e9b4c;
  flex-shrink: 0;
  width: 56px;
}
.ba-summary {
  background: #f4f7fb;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin: 16px 0 0;
  line-height: 1.6;
}
.ba-before .ba-summary { background: #fff0f0; }
.ba-after .ba-summary { background: #f0fff5; }
.ba-summary strong { font-size: 22px; }
.ba-arrow {
  text-align: center;
  font-size: 36px;
  color: #2e9b4c;
  font-weight: 900;
}
.ba-conclusion {
  text-align: center;
  font-size: 17px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  margin: 0;
  line-height: 1.9;
  box-shadow: 0 4px 20px rgba(10,58,115,0.06);
}

/* Trust
   ========================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
}
.trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e5ebf2;
  box-shadow: 0 4px 20px rgba(10,58,115,0.06);
}
.trust-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #2e9b4c;
}
.trust-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14.5px;
  line-height: 1.7;
}
.trust-card li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2e9b4c;
  font-size: 10px;
}

/* FAQ
   ========================================================= */
.faq-list {
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,58,115,0.06);
}
.faq-item {
  border-bottom: 1px solid #e5ebf2;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item dt {
  font-weight: 900;
  color: #0a3a73;
  font-size: 16px;
  padding: 20px 24px 12px;
  position: relative;
  padding-left: 56px;
  line-height: 1.6;
}
.faq-item dt::before {
  content: "Q";
  position: absolute;
  left: 24px;
  top: 18px;
  width: 26px;
  height: 26px;
  background: #0a3a73;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.faq-item dd {
  margin: 0;
  padding: 0 24px 20px 56px;
  font-size: 15px;
  color: #2d3a52;
  position: relative;
  line-height: 1.85;
}
.faq-item dd::before {
  content: "A";
  position: absolute;
  left: 24px;
  top: 0;
  width: 26px;
  height: 26px;
  background: #2e9b4c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Final CTA
   ========================================================= */
.cta-final {
  background: linear-gradient(135deg, #2e9b4c 0%, #45b863 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10) 0%, transparent 30%);
  pointer-events: none;
}
.cta-final .container { position: relative; }
.cta-final-title {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
@media (max-width: 480px) {
  .cta-final-title { font-size: clamp(18px, 5.4vw, 24px); }
}
.cta-final-title .accent {
  background: #ffffff;
  color: #c93131;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 900;
}
.cta-final-lead {
  font-size: 17px;
  margin: 0 0 16px;
  line-height: 1.9;
}
.cta-final p { margin: 0 0 16px; font-size: 16px; line-height: 1.9; }
.cta-final-strong {
  font-size: 19px !important;
  font-weight: 900;
  background: rgba(255,255,255,0.95);
  color: #1f6b3a !important;
  border: 2px solid #ffffff;
  padding: 16px;
  border-radius: 8px;
  margin: 24px 0 32px !important;
}
.cta-final .image-placeholder {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-final .image-placeholder .ph-label { background: #fff; color: #2e9b4c; }

.webinar-info {
  background: rgba(10, 31, 61, 0.4);
  border-radius: 12px;
  padding: 24px;
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
}
.webinar-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.webinar-info li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  line-height: 1.7;
}
.webinar-info li:last-child { border-bottom: 0; }
.info-label {
  display: inline-block;
  background: #ffffff;
  color: #1f6b3a;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  margin-right: 12px;
  flex-shrink: 0;
  min-width: 84px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .webinar-info li {
    display: block;
    padding: 12px 0;
  }
  .info-label {
    margin-right: 0;
    margin-bottom: 6px;
    min-width: 0;
    padding: 4px 14px;
  }
}

/* Prefecture Schedule (県別申込カード)
   ========================================================= */
.prefecture-schedule {
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.form-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 3px solid rgba(255,255,255,0.3);
}
.form-intro {
  text-align: center;
  font-size: 15px;
  margin: 0 0 32px;
  color: #ffffff;
  line-height: 1.85;
}
.form-intro strong {
  color: #fff19a;
  font-weight: 900;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 32px;
}
@media (max-width: 900px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

.schedule-card {
  background: #ffffff;
  color: #1a2233;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  border: 2px solid #ffffff;
  transition: transform .2s ease;
}
.schedule-card:hover { transform: translateY(-3px); }

.schedule-card-head {
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0faf3;
}
.schedule-region-tag {
  display: inline-block;
  background: #2e9b4c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.schedule-card-head h4 {
  font-size: 19px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0;
  line-height: 1.4;
}
.schedule-dates {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-grow: 1;
}
.schedule-dates li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e5ebf2;
  font-size: 14px;
}
.schedule-dates li:last-child { border-bottom: 0; }
.sd-pref {
  font-weight: 900;
  color: #0a3a73;
  background: #f0faf3;
  padding: 4px 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
}
.sd-date {
  font-weight: 900;
  font-size: 18px;
  color: #c93131;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.sd-date small {
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
  margin-left: 2px;
}
.sd-time {
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
  text-align: right;
}
.sd-tba {
  font-size: 11px !important;
  color: #4a5568 !important;
  font-weight: 700 !important;
  line-height: 1.4;
  grid-column: 2 / 4;
  text-align: left;
}

.btn-block {
  width: 100%;
  display: flex;
}

/* Form
   ========================================================= */
.signup-form {
  background: #fff;
  color: #1a2233;
  border-radius: 16px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.form-title {
  font-size: 22px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 24px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 2px solid #2e9b4c;
}
.form-row {
  margin: 0 0 18px;
}
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #0a3a73;
  margin-bottom: 6px;
}
.required {
  display: inline-block;
  background: #c93131;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d0d8e3;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: #2e9b4c;
  box-shadow: 0 0 0 3px rgba(46,155,76,0.15);
}
.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
.form-checkbox input { width: auto; margin: 0; }
.form-notes {
  background: rgba(255,255,255,0.97);
  color: #1a2233;
  font-size: 13px;
  line-height: 1.85;
  margin: 24px 0 0;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid #d6dfeb;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  list-style: none;
}
.form-notes li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px dashed #e5ebf2;
}
.form-notes li:last-child { border-bottom: 0; }
.form-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2e9b4c;
  font-weight: 900;
}
.form-notes strong { color: #c93131; font-weight: 900; }
.form-notes a { color: #2e9b4c; font-weight: 700; text-decoration: underline; }
@media (max-width: 600px) {
  .form-notes { font-size: 12.5px; padding: 16px 18px; line-height: 1.9; }
}

/* 最終CTAセクション内のform-notes（緑背景上） */
.cta-final .form-notes {
  background: rgba(255,255,255,0.97);
  color: #1a2233;
}
@media (max-width: 600px) {
  .signup-form { padding: 28px 20px; }
}

/* Footer
   ========================================================= */
.site-footer {
  background: #f4f7fb;
  color: #4a5568;
  padding: 56px 0 32px;
  font-size: 14px;
  border-top: 4px solid #2e9b4c;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-logo {
  font-weight: 900;
  font-size: 18px;
  color: #0a3a73;
  margin: 0 0 8px;
}
.footer-corporate-logo {
  display: inline-block;
  margin: 0 0 12px;
  transition: opacity .15s ease;
}
.footer-corporate-logo:hover {
  opacity: 0.75;
}
.footer-corporate-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-text { line-height: 1.7; margin: 0; color: #4a5568; }
.footer-heading {
  font-weight: 700;
  color: #0a3a73;
  margin: 0 0 8px;
  font-size: 14px;
}
.site-footer p { margin: 0 0 4px; line-height: 1.7; }
.site-footer a {
  color: #2e9b4c;
  font-weight: 700;
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }
.copyright {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid #d6dfeb;
}

/* Floating CTA
   ========================================================= */
.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #2e9b4c 0%, #45b863 100%);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(46,155,76,0.4);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  transition: transform .15s ease, box-shadow .15s ease;
}
.floating-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(46,155,76,0.5);
}
.floating-main { font-size: 14px; font-weight: 900; }
.floating-sub { font-size: 11px; opacity: 0.9; margin-top: 2px; }

@media (max-width: 600px) {
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-top: 1px solid #e5ebf2;
  }
  .floating-cta-btn { width: 100%; padding: 14px; }
  body { padding-bottom: 80px; }
}
