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

body {
  background-color: #F4F4F4;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.page-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

/* ===== FVセクション ===== */
.fv {
  padding: 24px 20px 32px;
}

.fv__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fv__tag {
  display: inline-block;
  background: #6c757d;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.fv__date {
  font-size: 13px;
  color: #888;
}

.fv__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.45;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.fv__author {
  font-size: 13px;
  color: #666;
  margin-bottom: 28px;
}

/* ---- FVメイン画像 ---- */
.fv__image-wrap {
  margin: 0 auto 28px;
  width: 90%;
}

.fv__image {
  width: 100%;
  display: block;
}

.fv__lead { margin-bottom: 20px; }

.fv__hook {
  font-size: 17px;
  font-weight: bold;
  color: #c0392b;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 16px;
}

.fv__body {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 12px;
}

.fv__body strong {
  background: linear-gradient(transparent 55%, #fff176 55%);
  font-weight: bold;
}

.fv__result-box {
  background: #fff8e1;
  border-left: 4px solid #f5a623;
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  margin: 24px 0;
}

.fv__result-box p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.fv__result-box .highlight-num {
  font-size: 20px;
  font-weight: bold;
  color: #c0392b;
}

.fv__stats {
  background: #1a1a2e;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}

.fv__stats-label {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.fv__stats-grid {
  display: flex;
  justify-content: space-around;
  gap: 8px;
}

.fv__stat-item { text-align: center; flex: 1; }

.fv__stat-num {
  font-size: 22px;
  font-weight: bold;
  color: #f5a623;
  display: block;
  line-height: 1.2;
}

.fv__stat-desc {
  font-size: 11px;
  color: #ccc;
  margin-top: 4px;
  display: block;
}

.fv__stat-divider {
  width: 1px;
  background: #444;
  align-self: stretch;
}

.fv__closing {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-top: 8px;
}

.fv__closing .caution {
  font-weight: bold;
  color: #c0392b;
}

.fv__cta-wrap {
  margin-top: 28px;
  text-align: center;
}

.fv__cta-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.fv__cta-btn {
  display: block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.45);
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.fv__cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.35);
}

.fv__cta-btn span {
  font-size: 13px;
  font-weight: normal;
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

.fv__trust-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.fv__badge {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.fv__badge--yellow { background: #f5a623; color: #fff; }
.fv__badge--green  { background: #27ae60; color: #fff; }
.fv__badge--blue   { background: #2980b9; color: #fff; }

.fv__cta-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
  line-height: 1.7;
}

/* ===== 共通セクション ===== */
.section {
  padding: 32px 20px;
}

/* ===== セクション見出し ===== */
.sec-heading {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  line-height: 1.45;
  padding-bottom: 12px;
  border-bottom: 3px solid #27ae60;
  margin-bottom: 20px;
}

.sec-heading--warning {
  font-size: 20px;
  font-weight: bold;
  color: #c0392b;
  line-height: 1.45;
  padding-bottom: 12px;
  border-bottom: 3px solid #e74c3c;
  margin-bottom: 20px;
}

/* ===== 本文 ===== */
.body-text {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 14px;
}

.body-text strong {
  background: linear-gradient(transparent 55%, #fff176 55%);
  font-weight: bold;
}

.body-text .text-red { color: #c0392b; font-weight: bold; }
.text-center { text-align: center; }

/* ===== ピンク警告ボックス ===== */
.box-alert {
  background: #fff5f5;
  border-left: 4px solid #e74c3c;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

.box-alert strong { color: #c0392b; font-weight: bold; }

/* ===== 受給の真実ボックス ===== */
.truth-box {
  border: 3px solid #f5a623;
  border-radius: 10px;
  padding: 24px 20px 20px;
  margin: 24px 0;
  background: linear-gradient(135deg, #fffbe8 0%, #fff9e0 100%);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.25);
  text-align: center;
}

.truth-box__label {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #f5a623;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.truth-box__item {
  padding: 12px 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px dashed #f5c842;
}

.truth-box__item:last-child { border-bottom: none; }

.truth-box__item--main {
  font-size: 28px;
  color: #c0392b;
  letter-spacing: 0.02em;
}

/* ===== 箇条書きリスト ===== */
.bullet-list { margin: 14px 0; }

.bullet-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.8;
  padding: 6px 0;
}

.bullet-list__item::before {
  content: "■";
  color: #c0392b;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 5px;
}

/* ===== 強調テキスト ===== */
.emphasis-text {
  font-size: 15px;
  font-weight: bold;
  color: #c0392b;
  line-height: 1.9;
  margin: 16px 0;
}

/* ===== チェックボックス ===== */
.check-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  background: #f9f9f9;
}

.check-box__title {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}

.check-box__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px dashed #e5e5e5;
}

.check-box__item:last-child { border-bottom: none; }

.check-box__icon {
  color: #27ae60;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== 口コミカード ===== */
.review-header {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  padding-left: 12px;
  border-left: 4px solid #f5a623;
  margin-bottom: 20px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #d0e8e6;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.review-card__header {
  background: #3aafa9;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 14px;
  letter-spacing: 0.05em;
}

.review-card__header strong {
  font-size: 17px;
  margin-left: 6px;
}

.review-card__body {
  padding: 14px 16px 16px;
}

.review-card__hook {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-card__text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
  border-top: 1px dashed #e0e0e0;
  padding-top: 10px;
}

.review-card__text strong {
  background: linear-gradient(transparent 55%, #fff176 55%);
  font-weight: bold;
}

.review-card__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #d0e8e6;
}

.review-card__name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.review-card__name-main {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.review-card__name-sub {
  font-size: 12px;
  color: #888;
}

/* ===== 監修メモ ===== */
.monitor-note {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 16px 0;
}

/* ===== ステップボックス ===== */
.step-box {
  border: 2px solid #f5a623;
  border-radius: 8px;
  padding: 22px 20px;
  margin: 20px 0;
  background: #fffdf5;
}

.step-box__title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.step-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #f5c842;
}

.step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-item__label {
  font-size: 14px;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 6px;
}

.step-item__text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

.step-item__arrow {
  font-size: 14px;
  color: #c0392b;
  font-weight: bold;
  margin-top: 6px;
}

/* ===== 対象ボックス（緑） ===== */
.target-box {
  border: 2px solid #27ae60;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  background: #f0fff4;
}

.target-box__title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #27ae60;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #a8e6c8;
}

.target-item {
  padding: 12px 0;
  border-bottom: 1px dashed #a8e6c8;
}

.target-item:last-child { border-bottom: none; }

.target-item__label {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.target-item__note {
  font-size: 13px;
  color: #666;
  padding-left: 4px;
}

/* ===== NGボックス（赤） ===== */
.ng-box {
  border: 2px solid #e74c3c;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0;
  background: #fff5f5;
}

.ng-box__title {
  font-size: 14px;
  font-weight: bold;
  color: #c0392b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ng-box__item {
  font-size: 14px;
  color: #555;
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.7;
}

.ng-box__item::before {
  content: "■";
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 7px;
  color: #e74c3c;
}

/* ===== おめでとうテキスト ===== */
.congrats-wrap {
  text-align: center;
  margin: 24px 0;
  padding: 20px;
  background: #fff8e1;
  border-radius: 8px;
}

.congrats-wrap p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
}

.congrats-wrap .congrats-main {
  font-size: 20px;
  font-weight: bold;
  color: #c0392b;
  margin: 8px 0 4px;
}

.congrats-wrap .congrats-sub {
  font-size: 16px;
  font-weight: bold;
  color: #c0392b;
}

/* ===== FAQ ===== */
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid #eeeeee;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 15px;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.faq-q-label {
  background: #27ae60;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 1px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  height: fit-content;
}

.faq-a {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  display: flex;
  gap: 8px;
}

.faq-a-label {
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 1px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  height: fit-content;
}

/* ===== クロージングチェック ===== */
.closing-check {
  margin: 16px 0;
}

.closing-check__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.8;
  padding: 6px 0;
}

.closing-check__item::before {
  content: "✔";
  color: #27ae60;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 16px;
}

/* ===== 緊急CTAボックス ===== */
.urgency-box {
  border: 3px solid #f5a623;
  border-radius: 8px;
  padding: 24px 20px;
  margin: 24px 0;
  background: #fffdf0;
  text-align: center;
}

.urgency-box__warning {
  font-size: 13px;
  color: #e67e22;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.urgency-box__title {
  font-size: 18px;
  font-weight: bold;
  color: #c0392b;
  margin-bottom: 4px;
}

.urgency-box__sub {
  font-size: 14px;
  color: #e67e22;
  font-weight: bold;
  margin-bottom: 20px;
}

.urgency-box__body {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: left;
}

.urgency-box__body strong { color: #c0392b; font-weight: bold; }

/* ===== CTAボタン共通 ===== */
.cta-wrap { text-align: center; margin-top: 20px; }

.cta-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.cta-btn {
  display: block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.45);
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.35);
}

.cta-btn span {
  font-size: 13px;
  font-weight: normal;
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.badge--yellow { background: #f5a623; color: #fff; }
.badge--green  { background: #27ae60; color: #fff; }
.badge--blue   { background: #2980b9; color: #fff; }

.cta-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
  line-height: 1.7;
}

/* ===== 漫画イメージ ===== */
.fv__manga-wrap {
  margin-top: 16px;
}

.fv__manga-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ===== CTAボタン画像 ===== */
@keyframes cta-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.fv__cta-img {
  width: 100%;
  height: auto;
  display: block;
  animation: cta-pulse 1.6s ease-in-out infinite;
  cursor: pointer;
}

/* ===== セクション内イメージ ===== */
.section-img-wrap {
  margin: 16px 0;
}

.section-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ===== 退職代行との違い画像 ===== */
.fv__notice-img-wrap {
  margin-top: 16px;
}

.fv__notice-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 480px) {
  .fv__title      { font-size: 21px; }
  .fv__stat-num   { font-size: 18px; }
  .fv__cta-btn    { font-size: 16px; }
  .sec-heading    { font-size: 19px; }
  .sec-heading--warning { font-size: 17px; }
  .cta-btn        { font-size: 16px; }
  .truth-box__item--main { font-size: 20px; }
}
