:root {
  --color-base: #f7fafa;
  --color-main: #0f4c5c;
  --color-main-light: #1a7a8c;
  --color-accent: #ffd166;
  --color-text: #2b2b2b;
  --color-text-soft: #5b6b6e;
  --color-line: #06c755;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.8;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: var(--color-main);
  margin: 0;
}

a { text-decoration: none; color: inherit; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-main);
  box-shadow: 0 6px 16px rgba(15, 76, 92, 0.25);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-small { padding: 10px 20px; font-size: 13px; }
.btn-line {
  background: var(--color-line);
  color: #fff;
  font-size: 17px;
  padding: 16px 40px;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3);
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
  border-bottom: 1px solid #e3eced;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 62px;
  width: auto;
  display: block;
}
.header-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-inner .btn-primary {
  padding: 9px 20px;
  font-size: 13px;
  box-shadow: none;
}
.btn-diag {
  border: 1.5px solid var(--color-main);
  color: var(--color-main);
  background: transparent;
  font-size: 13px;
  padding: 8px 18px;
}

/* ---- hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(8, 32, 40, 0.85) 0%,
    rgba(15, 76, 92, 0.68) 50%,
    rgba(8, 32, 40, 0.45) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 0 20px 0 60px;
}
.eyebrow {
  letter-spacing: 0.15em;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.5;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12.5px;
  opacity: 0.9;
}
.hero-stats strong { display: block; font-size: 20px; color: var(--color-accent); }

/* ---- sections ---- */
.section { padding: 72px 0; }
.section-alt { background: #eef6f7; }
.section-title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 14px;
}
.section-lead {
  text-align: center;
  color: var(--color-text-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 4px 14px rgba(15, 76, 92, 0.08);
}
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { font-size: 13.5px; color: var(--color-text-soft); margin: 0; }

.voice-card { text-align: center; }
.voice-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}
.voice-comment {
  font-size: 13.5px;
  color: var(--color-text);
  margin-bottom: 10px;
}
.voice-name {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0;
}

.voice-featured {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid #d8e2e4;
  border-radius: 14px;
  padding: 24px;
  max-width: 720px;
  margin: 0 auto 28px;
  box-shadow: 0 6px 18px rgba(15, 76, 92, 0.1);
}
.voice-featured img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.voice-featured-label {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-main);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 0 8px;
}
.voice-featured-quote {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 6px;
}
.voice-featured-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-main-light);
}

@media (max-width: 600px) {
  .voice-featured { flex-direction: column; text-align: center; }
}

/* ---- affinity / story ---- */
.section-affinity { background: #fff; }
.story-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.story-photo {
  flex: 0 0 220px;
}
.story-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(15, 76, 92, 0.15);
}
.story-text { flex: 1 1 400px; }
.story-text .section-title { text-align: left; }
.story-text p { font-size: 14px; color: var(--color-text-soft); }

/* ---- cost comparison table ---- */
.cost-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 22px;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 76, 92, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.cost-table th, .cost-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #e3eced;
}
.cost-table thead th {
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.cost-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--color-main);
}
.cost-row-ynht {
  background: #fff8e6;
}
.cost-row-ynht td {
  color: var(--color-main);
  font-size: 15px;
}
.cost-row-ynht td:first-child { color: #c98a00; }

.cost-row-launch { background: linear-gradient(135deg, #082028 0%, #0f4c5c 100%); }
.cost-launch-inner { padding: 24px 28px !important; text-align: center; }
.cost-launch-badge {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #7eecd8;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(126,236,216,0.3);
  padding-bottom: 12px;
  width: 100%;
}
.cost-launch-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cost-launch-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cost-launch-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.cost-launch-num { font-family: "Zen Maru Gothic", sans-serif; font-size: 22px; color: #fff; }
.cost-launch-num strong { font-size: 38px; color: #7eecd8; font-weight: 900; }
.cost-launch-sep { font-size: 22px; color: rgba(255,255,255,0.4); margin-top: 16px; }
.cost-launch-sub { font-size: 11.5px; color: rgba(255,255,255,0.55); margin: 0; }
.cost-launch-detail { color: #7eecd8; font-size: 12px; font-weight: 500; text-decoration: underline; white-space: nowrap; }

/* ---- plan table ---- */
.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 40px;
  font-size: 14px;
  max-width: 720px;
}
.plan-table th, .plan-table td {
  border: 1px solid #d8e2e4;
  padding: 12px 16px;
  text-align: left;
}
.plan-table th { background: #eaf4f5; color: var(--color-main); width: 35%; }

/* ---- flow ---- */
.flow { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto 20px; }
.flow-step { display: flex; gap: 16px; align-items: flex-start; }
.flow-num {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.flow-text { font-size: 14px; padding-top: 4px; }
.note { font-size: 12px; color: #888; text-align: center; }

/* ---- narrow ---- */
.section-narrow {
  background: var(--color-main);
  color: #fff;
}
.section-narrow .section-title { color: #fff; }
.narrow-inner { text-align: center; max-width: 600px; }
.narrow-inner p { font-size: 14px; opacity: 0.92; }

/* ---- cta ---- */
.section-cta { text-align: center; background: #fff8e6; }
.cta-inner h2 { font-size: 26px; margin-bottom: 12px; }
.cta-inner p { font-size: 14px; color: var(--color-text-soft); margin-bottom: 26px; }
.section-cta .btn-line { margin-bottom: 16px; }

/* ---- cta tabs ---- */
.cta-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.cta-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 2px solid var(--color-main);
  background: transparent;
  color: var(--color-main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.cta-tab.active {
  background: var(--color-main);
  color: #fff;
}
.cta-tab:not(.active):hover {
  background: rgba(15,76,92,0.07);
}

.cta-panel { display: none; }
.cta-panel.active { display: block; }

.booking-lead {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0 0 16px;
  text-align: center;
}
.calendly-inline-widget { border-radius: 12px; overflow: hidden; }

@media (max-width: 620px) {
  .cta-tab { font-size: 13px; padding: 10px 18px; }
}

/* ---- contact form ---- */
.contact-form {
  max-width: 640px;
  margin: 32px auto 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-main);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  border: 2px solid #d8e2e4;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color 0.15s;
  color: var(--color-text);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--color-main-light); }
.contact-field textarea { resize: vertical; }
.contact-submit {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 16px;
}
.contact-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-success-icon { font-size: 40px; margin: 0 0 12px; }
.contact-success-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 10px;
}
.contact-success-body {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.8;
  margin: 0;
}

.contact-err {
  font-size: 13px;
  color: #d9534f;
  margin: 0;
  min-height: 1em;
}
@media (max-width: 600px) {
  .contact-row { grid-template-columns: 1fr; }
}

/* ---- footer ---- */
.site-footer {
  background: var(--color-main);
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
}
.site-footer .note { color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ---- works / sample sites marquee ---- */
.works-marquee-wrap {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.works-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: works-marquee 22s linear infinite;
}
.works-marquee-wrap:hover .works-track {
  animation-play-state: paused;
}
@keyframes works-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.works-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 76, 92, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 76, 92, 0.16);
}
.works-thumb-link { display: block; }
.works-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef6f7;
}
.works-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.works-card:hover .works-thumb img { transform: scale(1.04); }
.works-hover-label {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 92, 0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.works-card:hover .works-hover-label { opacity: 1; }
.works-info {
  padding: 18px 20px 22px;
}
.works-tag {
  display: inline-block;
  background: #e4f2f5;
  color: var(--color-main);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.works-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 6px;
}
.works-desc {
  font-size: 12.5px;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.75;
}

/* ---- QUIZ ---- */
.section-quiz { background: linear-gradient(160deg, #e4f2f5 0%, #f7fafa 60%); }

.quiz-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-main-light);
  margin: 0 0 8px;
}

.quiz-wrap {
  max-width: 600px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 48px rgba(15,76,92,0.12);
  padding: 40px 44px 32px;
}

.quiz-progress-track {
  background: #e3eced;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--color-main);
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
}
.quiz-step-label {
  font-size: 12px;
  color: var(--color-text-soft);
  text-align: right;
  margin: 8px 0 32px;
}

.quiz-body { min-height: 280px; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quizFadeIn 0.28s ease; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.quiz-q {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 22px;
  line-height: 1.6;
}

.quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quiz-opts-col1 { grid-template-columns: 1fr; }
.quiz-opts-col3 { grid-template-columns: 1fr 1fr 1fr; }

.quiz-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid #ddeaed;
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  text-align: center;
  line-height: 1.5;
}
.quiz-opts-col1 .quiz-opt {
  flex-direction: row;
  text-align: left;
  padding: 16px 20px;
  gap: 14px;
}
.quiz-opts-col1 .qo-label { font-size: 14px; }
.quiz-opt:hover { border-color: var(--color-main-light); background: #f0f8fb; transform: translateY(-1px); }
.quiz-opt.selected {
  border-color: var(--color-main);
  background: var(--color-main);
  color: #fff;
}
.qo-icon { font-size: 24px; line-height: 1; }
.quiz-opts-col1 .qo-icon { font-size: 20px; }

/* Contact step */
.quiz-contact-note {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: -10px 0 24px;
  line-height: 1.8;
}
.quiz-form { display: flex; flex-direction: column; gap: 18px; }
.quiz-field { display: flex; flex-direction: column; gap: 6px; }
.quiz-field label { font-size: 13px; font-weight: 700; color: var(--color-main); }
.quiz-req {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.quiz-field input {
  border: 2px solid #ddeaed;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.quiz-field input:focus { border-color: var(--color-main-light); }
.quiz-submit { width: 100%; text-align: center; border-radius: var(--radius); font-size: 15px; }

/* Result step */
.quiz-result-step { text-align: center; }
.quiz-result-inner { padding: 16px 0; }
.quiz-result-emoji { font-size: 52px; margin-bottom: 16px; }
.quiz-result-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 12px;
}
.quiz-result-body { font-size: 14px; color: var(--color-text-soft); margin: 0 0 28px; line-height: 1.9; }

/* Nav */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e3eced;
}
.quiz-prev-btn {
  background: none;
  border: none;
  color: var(--color-text-soft);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.15s;
}
.quiz-prev-btn:hover { color: var(--color-main); }
.quiz-prev-btn:disabled { opacity: 0; pointer-events: none; }
.quiz-hint { font-size: 12px; color: var(--color-text-soft); }

.quiz-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  margin-top: 18px;
}

/* ---- SAMPLE GENERATOR ---- */
.section-sample { background: linear-gradient(160deg, #f7f0e8 0%, #fbf7f2 60%); }

.samp-wrap {
  max-width: 600px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 48px rgba(15,76,92,0.12);
  padding: 40px 44px 32px;
}

.samp-progress-track {
  background: #e3eced;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.samp-progress-fill {
  height: 100%;
  background: var(--color-main);
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
}
.samp-step-label {
  font-size: 12px;
  color: var(--color-text-soft);
  text-align: right;
  margin: 8px 0 32px;
}

.samp-body { min-height: 280px; }

.samp-step { display: none; }
.samp-step.active { display: block; animation: quizFadeIn 0.28s ease; }

.samp-q {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 22px;
  line-height: 1.6;
}
.samp-q-sub { font-size: 12px; font-weight: 500; color: var(--color-text-soft); }

.samp-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.samp-opts-col1 { grid-template-columns: 1fr; }

.samp-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid #ddeaed;
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  text-align: center;
  line-height: 1.5;
}
.samp-opts-col1 .samp-opt {
  flex-direction: row;
  text-align: left;
  padding: 16px 20px;
  gap: 14px;
}
.samp-opts-col1 .qo-label { font-size: 14px; }
.samp-opt:hover { border-color: var(--color-main-light); background: #f0f8fb; transform: translateY(-1px); }
.samp-opt.selected {
  border-color: var(--color-main);
  background: var(--color-main);
  color: #fff;
}

.samp-next-btn { width: 100%; text-align: center; border-radius: var(--radius); font-size: 15px; margin-top: 20px; }

/* Contact step */
.samp-contact-note {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: -10px 0 24px;
  line-height: 1.8;
}
.samp-form { display: flex; flex-direction: column; gap: 18px; }
.samp-field { display: flex; flex-direction: column; gap: 6px; }
.samp-field label { font-size: 13px; font-weight: 700; color: var(--color-main); }
.samp-field input {
  border: 2px solid #ddeaed;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.samp-field input:focus { border-color: var(--color-main-light); }
.samp-err { font-size: 12px; color: #c0392b; margin: -8px 0 0; min-height: 14px; }
.samp-submit { width: 100%; text-align: center; border-radius: var(--radius); font-size: 15px; }

/* Result step */
.samp-result-step { text-align: center; }
.samp-result-inner { padding: 16px 0; }
.samp-result-emoji { font-size: 52px; margin-bottom: 16px; }
.samp-result-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 12px;
}
.samp-result-body { font-size: 14px; color: var(--color-text-soft); margin: 0 0 28px; line-height: 1.9; }

/* Nav */
.samp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e3eced;
}
.samp-prev-btn {
  background: none;
  border: none;
  color: var(--color-text-soft);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.15s;
}
.samp-prev-btn:hover { color: var(--color-main); }
.samp-prev-btn:disabled { opacity: 0; pointer-events: none; }
.samp-hint { font-size: 12px; color: var(--color-text-soft); }

/* Q1 LP/HP helper */
.samp-helper { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px dashed #ddeaed; }
.samp-helper.show { display: block; animation: quizFadeIn 0.28s ease; }
.samp-helper-q { font-size: 15px; margin-bottom: 16px; }

/* ---- launch offer section ---- */
.launch-offer {
  background: linear-gradient(160deg, #082028 0%, #0f4c5c 60%, #1a6070 100%);
  padding: 56px 0 48px;
  border-bottom: 4px solid var(--color-accent);
}

.launch-top { text-align: center; margin-bottom: 36px; }
.launch-ribbon {
  display: inline-block;
  background: var(--color-accent);
  color: #082028;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(255,209,102,0.35);
}
.launch-top-lead {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* 紹介プログラムバナー */
.referral-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--color-main), #1a7a8a);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
}
.referral-banner-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.referral-banner-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin: 0;
}
.referral-banner-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
}
.referral-banner-btn { margin-top: 4px; }

/* 3カード横並び */
.launch-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.launch-arrow {
  font-size: 28px;
  color: rgba(255,255,255,0.35);
  flex: 0 0 auto;
}
.launch-price-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 28px 24px 22px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  backdrop-filter: blur(4px);
}
.launch-price-zero   { border-color: rgba(255,209,102,0.45); }
.launch-price-monthly { border-color: rgba(100,200,180,0.35); }
.launch-price-limit  { border-color: rgba(255,120,120,0.35); }

.lpc-icon { font-size: 36px; margin: 0 0 10px; line-height: 1; }
.lpc-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.lpc-num { margin: 0 0 4px; min-height: 22px; }
.lpc-strike {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(255,80,80,0.8);
}
.lpc-price-big {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #7eecd8;
  line-height: 1;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(100,220,200,0.3);
}
.launch-price-monthly .lpc-price-big { font-size: 38px; color: #7eecd8; text-shadow: 0 2px 12px rgba(100,220,200,0.3); }
.lpc-currency { font-size: 24px; }
.lpc-en { font-size: 18px; color: inherit; }
.lpc-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.7;
}

/* 枠スロット */
.lpc-slots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}
.lpc-slot {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.lpc-slot.used {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.lpc-slot.open {
  background: rgba(255,80,80,0.2);
  color: #ff9090;
  border: 1px solid rgba(255,80,80,0.4);
  animation: pulse-slot 1.8s ease-in-out infinite;
}
@keyframes pulse-slot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* 理由ボックス */
.launch-reason {
  max-width: 680px;
  margin: 0 auto 32px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
}
.launch-reason p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.9;
}
.launch-reason strong { color: #ffd166; }

/* CTA */
.launch-cta-wrap { text-align: center; }
.launch-main-btn {
  font-size: 17px;
  padding: 18px 44px;
  box-shadow: 0 8px 28px rgba(255,209,102,0.35);
}
.launch-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 0;
}

@media (max-width: 720px) {
  .launch-arrow { display: none; }
  .launch-price-card { max-width: 100%; }
  .lpc-price-big { font-size: 44px; }
  .launch-price-monthly .lpc-price-big { font-size: 32px; }

  /* works marquee → 横スクロールに切り替え */
  .works-marquee-wrap {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    cursor: default;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .works-track {
    animation: none;
    padding: 0 20px;
    gap: 16px;
  }
  .works-card { scroll-snap-align: start; min-width: 260px; }
  /* 複製カード（ループ用）はモバイルでは非表示 */
  .works-card[aria-hidden="true"] { display: none; }
  /* 「サイトを見る」ラベルを常時表示 */
  .works-hover-label {
    opacity: 1;
    font-size: 13px;
    background: rgba(15, 76, 92, 0.55);
  }
}

/* ---- future warning section ---- */
.section-future {
  background: #0d1f24;
  color: #e8f1f3;
}
.future-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f4a230;
  margin: 0 0 10px;
}
.future-title { color: #fff; }
.section-future .section-lead { color: #9ab8be; }

.future-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 52px;
}
.future-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px 20px;
  text-align: center;
}
.fsc-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: #ffd166;
  line-height: 1;
  margin: 0 0 12px;
}
.fsc-unit { font-size: 28px; }
.fsc-label {
  font-size: 13px;
  line-height: 1.85;
  color: #cde2e6;
  margin: 0 0 10px;
}
.fsc-src {
  font-size: 10.5px;
  color: #6a8e94;
  margin: 0;
}

.future-timeline { margin-bottom: 44px; }
.future-timeline-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #9ab8be;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.05em;
}
.future-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
  margin: 0 auto;
  border-left: 2px solid rgba(255,255,255,0.12);
  padding-left: 28px;
}
.future-step {
  padding: 0 0 32px 0;
  position: relative;
}
.future-step::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4a8fa0;
  border: 2px solid #0d1f24;
}
.future-step-final::before { background: #e05252; }
.fstep-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.fstep-year {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #ffd166;
  white-space: nowrap;
}
.fstep-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #cde2e6;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
}
.future-step-final .fstep-tag.danger {
  background: rgba(224,82,82,0.2);
  color: #f08080;
}
.fstep-body {
  font-size: 13.5px;
  line-height: 2;
  color: #9ab8be;
  margin: 0;
}
.fstep-body strong { color: #e8f1f3; font-weight: 700; }

.future-cta-box {
  text-align: center;
  background: rgba(255,209,102,0.08);
  border: 1px solid rgba(255,209,102,0.25);
  border-radius: 14px;
  padding: 32px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.future-cta-box p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffd166;
  margin: 0 0 20px;
}

@media (max-width: 720px) {
  .future-stats { grid-template-columns: 1fr; }
  .fsc-num { font-size: 48px; }
  .future-steps { padding-left: 20px; }
  .future-step::before { left: -27px; }
}

/* ---- scroll fade-up animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.works-track .works-card { opacity: 1; transform: none; transition: transform 0.18s ease, box-shadow 0.18s ease; }

/* ---- download section ---- */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 20px;
}
.dl-card {
  background: #fff;
  border: 1px solid #E8E5DE;
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.dl-card:hover {
  box-shadow: 0 8px 28px rgba(45,168,154,0.12);
  transform: translateY(-3px);
}
.dl-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dl-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
}
.dl-tag-hearing { background: #E0F3F1; color: #1A7A70; }
.dl-tag-service  { background: #EAE8FF; color: #4A40B0; }
.dl-tag-prep     { background: #FEF3E2; color: #8B5E00; }
.dl-format {
  font-size: 10px;
  color: #9A9690;
  white-space: nowrap;
}
.dl-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.4;
  margin: 0;
}
.dl-desc {
  font-size: 12.5px;
  color: var(--color-text-soft);
  line-height: 1.85;
  flex: 1;
}
.btn-dl {
  display: block;
  text-align: center;
  background: var(--color-main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
  margin-top: 4px;
}
.btn-dl:hover { background: #2DA89A; }

@media (max-width: 920px) {
  .dl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .dl-grid { grid-template-columns: 1fr; }
}

/* ---- responsive ---- */
@media (max-width: 720px) {
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(16px, 4.8vw, 22px); }
  .story-inner { flex-direction: column; text-align: center; }
  .story-text .section-title { text-align: center; }
  .quiz-wrap { padding: 28px 20px 24px; }
  .quiz-opts-col3 { grid-template-columns: 1fr 1fr; }
  .quiz-q { font-size: 16px; }
  .samp-wrap { padding: 28px 20px 24px; }
  .samp-q { font-size: 16px; }
}

/* ---- news ---- */
.section-news { background: #fff; border-bottom: 1px solid rgba(15,76,92,0.08); padding: 26px 0; }
.news-inner { display: flex; gap: 28px; align-items: flex-start; }
.news-heading { font-size: 15px; font-weight: 700; color: var(--color-main); margin: 6px 0 0; white-space: nowrap; letter-spacing: 0.1em; border-left: 4px solid var(--color-accent); padding-left: 10px; }
.news-list { list-style: none; margin: 0; padding: 0; flex: 1; }
.news-list li + li { border-top: 1px dashed rgba(15,76,92,0.15); }
.news-list a { display: flex; gap: 14px; align-items: baseline; padding: 9px 6px; text-decoration: none; color: var(--color-text); border-radius: 6px; transition: background 0.2s; }
.news-list a:hover { background: rgba(26,122,140,0.06); }
.news-list time { font-size: 13px; color: var(--color-text-soft); white-space: nowrap; font-weight: 500; }
.news-tag { font-size: 11px; font-weight: 700; color: var(--color-main); background: rgba(15,76,92,0.08); padding: 2px 10px; border-radius: 999px; white-space: nowrap; }
.news-tag-hot { color: #7a4a00; background: var(--color-accent); }
.news-text { font-size: 14px; line-height: 1.6; }
.news-list a:hover .news-text { text-decoration: underline; }
@media (max-width: 720px) {
  .news-inner { flex-direction: column; gap: 10px; }
  .news-list a { flex-wrap: wrap; gap: 8px; padding: 10px 2px; }
  .news-text { width: 100%; }
}
