:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #333;
  --pink: #ff9ac5;
  --bg: #fff7fb;
  --accent: #ff70b2;
}

body {
  margin: 0;
  padding: 24px 16px 48px;
  background: var(--bg);
}

.page {
  max-width: 960px;
  margin: 0 auto;
}

.article {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

/* ヘッダー */

.article-header {
  text-align: center;
  margin-bottom: 24px;
}

.article-tagline {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 154, 197, 0.16);
  color: var(--accent);
  margin-bottom: 8px;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.article-subtitle {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* メタ情報 */

.meta {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f8f8f8;
  margin: 0 4px 4px;
}

.pill strong {
  font-size: 0.9rem;
}

/* テキスト */

p {
  margin: 0 0 1em;
  font-size: 0.95rem;
}

.highlight {
  background: linear-gradient(transparent 60%, #ffe4f1 60%);
  font-weight: 600;
}

.center-text {
  text-align: center;
}

.gray {
  color: #b7b7b7; /* 好きな灰色の値に変えてOK */
}

/* 文字を大きくしたい時に使う */
.big-text {
  font-size: 1.25em;   /* 通常の1.25倍 */
  font-weight: 700;
  line-height: 1.4;
}

/* さらに強調したい場合 */
.bigger-text {
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.35;
}

/* スマホ時だけ少し抑える */
@media (max-width: 600px) {
  .big-text {
    font-size: 1.15em;
  }
  .bigger-text {
    font-size: 1.3em;
  }
}

/* 数字だけを強調 */
.big-number {
  font-size: 2.2em;      /* 周囲の2.2倍 */
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ff70b2;       /* accentと同色 */
  vertical-align: baseline;
}

/* スマホでは少しだけ小さく */
@media (max-width: 600px) {
  .big-number {
    font-size: 1.8em;
  }
}

/* 中央に大きく目立たせたい1行 */
.center-big {
  display: block;
  text-align: center;
  font-size: 1.6em;
  font-weight: 800;
  line-height: 1.4;
  margin: 20px 0 20px;
  color: #333;
}

/* スマホ時に少しだけ縮める */
@media (max-width: 600px) {
  .center-big {
    font-size: 1.35em;
  }
}

/* スマホ時：通常テキストのみ少し大きくする */
@media (max-width: 600px) {
  p {
    font-size: 1.05rem; 
  }
}

/* 画像 */

.image-block {
  margin: 16px 0 10px;
  text-align: center;
}

.image {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.image-caption {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-top: -4px;
  margin-bottom: 16px;
}

/* セクション */

.section-divider {
  border: none;
  border-top: 1px dashed #ffd1e8;
  margin: 32px 0 20px;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
}

h2 {
  font-size: 1.4rem;
  margin: 4px 0 12px;
  padding-left: 8px;
  border-left: 4px solid var(--accent);
}

h3 {
  font-size: 1.2rem;
  margin: 18px 0 8px;
}

/* ボックス系 */

.section-box {
  background: #ffe0f0;
  border-radius: 12px;
  padding: 16px 14px;
  margin: 12px 0 18px;
  border: 1px solid #ffe0f0;
}

.section-box ul {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.95rem;
}

.section-box li {
  margin-bottom: 4px;
}

.dialogue {
  background: #f9f9ff;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0 18px;
  border: 1px solid #e5e5ff;
  font-size: 0.9rem;
}

.dialogue p {
  margin-bottom: 6px;
}

.dialogue strong {
  color: #555;
}

.compare {
  background: #f8fffb;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #d3f3df;
  font-size: 0.9rem;
  margin: 12px 0 18px;
}

/* CTA */

/* CTA */

/* ラッパー */
.cta { width:100%; margin:26px 0 22px; }

/* ボタン本体 */
.cta > .cta-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background-color: #02bc62;
  color: #fcfefd;
  text-decoration: none;
  border-radius: 28px;
  padding: 18px 18px 20px;
  text-align: center;
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
  -webkit-tap-highlight-color: transparent;
  animation: cta-subtle-bounce 2.6s infinite ease-in-out;
}

/* 上部ラベル */
.cta > .cta-button .cta-top-text {
  display: inline-block;
  background: #fcfefd;
  color: #02bc62;
  font-size: 15px;
  padding: 6px 18px;
  border-radius: 8px;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 700;
}

/* メイン行：スマホでも絶対改行させない */
.cta > .cta-button .cta-line {
  display: inline-flex;
  align-items: flex-end; /* 小文字と大文字の下揃え */
  white-space: nowrap;   /* ←改行禁止を徹底 */
  gap: 4px;              /* 小文字と大文字の間を詰める */
  margin-top: 6px;
  line-height: 1;
}

/* 小さい文字 */
.cta > .cta-button .cta-small {
  font-size: 15px;
  font-weight: 700;
  vertical-align: bottom;
  line-height: 1;
}

/* 大きい文字 */
.cta > .cta-button .cta-big {
  font-size: 30px;
  font-weight: 700;
  vertical-align: bottom;
  line-height: 1;
  letter-spacing: -0.5px;
}

/* ホバー時 */
.cta > .cta-button:hover,
.cta > .cta-button:focus {
  animation: cta-bounce-hover 0.9s infinite ease-in-out;
  box-shadow: 0 26px 40px rgba(0,0,0,0.22);
  cursor: pointer;
}

/* タップ時 */
.cta > .cta-button:active {
  transform: translateY(2px) scale(0.997);
  animation-play-state: paused;
}

/* デフォルト強めプルプル */
@keyframes cta-subtle-bounce {
  0%   { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-6px) scale(1.05); }
  40%  { transform: translateY(0) scale(1); }
  60%  { transform: translateY(-4px) scale(1.025); }
  80%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0px) scale(1.0); }
}

/* ホバー強揺れ */
@keyframes cta-bounce-hover {
  0%   { transform: translateY(0) scale(1); }
  25%  { transform: translateY(-10px) scale(1.06); }
  50%  { transform: translateY(0) scale(1); }
  75%  { transform: translateY(-6px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

/* モーション軽減設定ユーザー対応 */
@media (prefers-reduced-motion: reduce) {
  .cta > .cta-button,
  .cta > .cta-button:hover {
    animation: none !important;
    transform: none !important;
  }
}

/* スマホ最適化(改行防止) */
@media (max-width: 520px) {
  .cta > .cta-button .cta-big {
    font-size: 26px;  /* 30px → 26px */
  }
  .cta > .cta-button .cta-small {
    font-size: 14px;  /* 15px → 14px */
  }
  .cta > .cta-button {
    padding: 14px 14px; /* 横幅の余裕を出す */
  }
}

/* フッターメモ */

.note {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-top: 16px;
}

/* レスポンシブ */

@media (max-width: 600px) {
  body {
    padding: 16px 10px 32px;
  }

  .article {
    padding: 18px 14px 28px;
    border-radius: 12px;
  }

  .article-title {
    font-size: 1.3rem;
  }
}

  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: inline-block;

