
    /* ------------------------------
      基本設定
    ------------------------------ */
    :root {
      --color-main: #6699ff;
      --color-main-dark: #3b6fd6;
      --color-bg: #f5f7fb;
      --color-text: #222;
      --color-muted: #666;
      --radius-lg: 16px;
      --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    *,*::before,*::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
      color: var(--color-text);
      line-height: 1.7;
      max-width: 1000px;
      margin: 0 auto;
      background-color: #fff;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ------------------------------
      レイアウト
    ------------------------------ */
    .l-container {
      max-width: 1000px; /* 条件指定 */
      margin: 0 auto;
      padding: 0 16px;
    }

    header {
      background: #fff;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      top: 0;
      z-index: 50;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .05em;
    }

    .logo span {
      display: inline-block;
      margin-left: 6px;
      font-weight: 500;
      font-size: 13px;
      color: var(--color-muted);
    }

    /* ------------------------------
      ボタン
    ------------------------------ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 600;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all .2s ease;
      text-align: center;
      min-width: 160px;
      gap: 6px;
    }

    .btn--primary {
      background: var(--color-main);
      color: #fff;
      border-color: var(--color-main);
      box-shadow: 0 4px 10px rgba(102,153,255,0.4);
    }

    .btn--primary:hover {
      background: var(--color-main-dark);
      border-color: var(--color-main-dark);
      box-shadow: 0 6px 14px rgba(59,111,214,0.45);
      transform: translateY(-1px);
    }

    .btn--ghost {
      background: #fff;
      color: var(--color-main);
      border-color: var(--color-main);
    }

    .btn--ghost:hover {
      background: rgba(102,153,255,0.05);
    }

    .btn-sm {
      padding: 8px 14px;
      font-size: 15px;
      min-width: 0;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;justify-content: center;
    }

    /* ------------------------------
      Hero
    ------------------------------ */
    .hero {
      padding: 0;
      max-width: 1000px;
      margin: 0 auto;
      height: max-content;
    }

    .hero-bg{
        background-image: url(../images/saku-woman25.png);
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
    }

    .hero-inner {
      display: grid;
      gap: 24px;
      align-items: center;
        background: #57575796;
        padding-bottom: 5%; 
    }

    @media (min-width: 1024px) {
  .hero-inner{
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
    gap: 40px;
  }

  .hero-title {
    font-size: 28px;
    color: var(--color-bg);
  }
}

/* タブレット以下でタイトルが折り返されても重ならないようにする */
@media (max-width: 1024px) {
  .hero-title {
    line-height: 1.4;        /* 行間を広げる */
    margin-bottom: 20px;     /* タイトル下に余白 */
    padding: 0 10px;         /* 横に余裕を持たせて折返しやすく */
  }

  
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.3rem !important;
    line-height: 1.3;        /* 行間を広げる */
    margin-bottom: 30px;     /* タイトル下に余白 */
    padding: 0 10px;         /* 横に余裕を持たせて折返しやすく */
  }

  .hero-lead {
    font-size: medium;
    margin-top: 5%;        /* タイトルから離す */
  }

  .hero-bg{
        background-image: url(../images/saku-woman.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}


    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(102,153,255,0.08);
      color: #6791e5;;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hero-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      background: none;
      text-align: center;
      color: var(--color-bg);
    }


    .hero-lead {
      font-size: 16px;
      color: var(--color-bg);
      margin-bottom: 14px;
    }

    .hero-benefits {
      list-style: none !important;
      font-size: 15px;
      color: var(--color-bg);
      margin-bottom: 8px;
      padding: 0;
    }

    .hero-benefits li {
      position: relative;
      padding-left: 18px;
      margin-bottom: 4px;
      list-style: none !important;
    }

    .hero-benefits li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--color-main);
      font-size: 14px;
      font-weight: 700;
    }

    .hero-subnote {
      font-size: 13px;
      color: var(--color-bg);
      margin-top: 6px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
      font-size: 13px;
      color: var(--color-muted);
    }

    .hero-trust span {
      padding: 3px 8px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .hero-visual {
      max-width: 360px;
      margin: 0 auto;
    }

    .device-frame {
      border-radius: 32px;
      padding: 14px 10px;
      background: linear-gradient(135deg, #ffffff, #eef3ff);
      box-shadow: var(--shadow-soft);
      position: relative;
    }

    .device-notch {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 6px;
      border-radius: 999px;
      background: #d4daea;
    }

    .device-screen {
      background: #fff;
      border-radius: 22px;
      padding: 14px 12px;
      border: 1px solid rgba(0,0,0,0.04);
      min-height: 220px;
    }

    .device-caption {
      margin-top: 10px;
      font-size: 13px;
      color: var(--color-muted);
      text-align: center;
    }

    .pseudo-ui-bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(102,153,255,0.12);
      margin-bottom: 10px;
      width: 70%;
    }

    .pseudo-ui-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .pseudo-ui-label {
      width: 45%;
      height: 8px;
      border-radius: 999px;
      background: rgba(0,0,0,0.06);
    }

    .pseudo-ui-input {
      width: 50%;
      height: 10px;
      border-radius: 999px;
      background: rgba(102,153,255,0.18);
    }

    .pseudo-ui-btn {
      margin-top: 20px;
      height: 28px;
      border-radius: 999px;
      background: var(--color-main);
      opacity: 0.9;
    }

    /* ------------------------------
      セクション共通
    ------------------------------ */
    section {
      padding: 40px 0;
      background-color: #fff;
    }

   #features,#benefits,#price{
    background-color: #e5eaff;
   }


    .section-header {
      text-align: center;
      margin-bottom: 24px;
    }

    .section-eyebrow {
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--color-main);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .section-lead {
      font-size: 13px;
      color: var(--color-muted);
    }

    /* ------------------------------
      課題セクション
    ------------------------------ */
    .cards {
      display: grid;
      gap: 16px;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .cards--3col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 16px 16px 18px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0,0,0,0.03);
      /* max-width: 230px; */
    }

    .card-label {
      font-size: 11px;
      color: var(--color-main);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .card-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .card-text {
      font-size: 15px;
      color: var(--color-muted);
    }

    /* ------------------------------
      解決イメージ
    ------------------------------ */
    .two-col {
      display: grid;
      gap: 20px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .two-col {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }
    }

    .flow-diagram {
      background: #fff;
    }

    .flow-steps {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    @media (min-width: 600px) {
      .flow-steps {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .flow-step {
      flex: 1;
      text-align: center;
    }

    .flow-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: rgba(102,153,255,0.1);
      color: var(--color-main);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .flow-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .flow-text {
      font-size: 13px;
      color: var(--color-muted);
    }

    /* ------------------------------
      機能セクション
    ------------------------------ */
    @media (min-width: 801px) {
      .cards--4col {
        grid-template-columns: repeat(4,1fr);
      }
    }

    @media (min-width: 630px) and (max-width:800px) {
      .cards--4col {
        grid-template-columns: repeat(3,1fr);
      }
    }
    @media (min-width: 430px) and (max-width:631px) {
      .cards--4col {
        grid-template-columns: repeat(2,1fr);
      }
    }

    .feature-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: rgba(102,153,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      font-size: 16px;
    }

    /* ------------------------------
      メリット
    ------------------------------ */
    .benefit-list {
      list-style: none;
      font-size: 15px;
      padding: 0;
    }

    .benefit-list li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 6px;
      list-style: none !important;
    }

    .benefit-list li::before {
      content: "●";
      position: absolute;
      left: 4px;
      top: 4px;
      font-size: 10px;
      color: var(--color-main);
    }

    /* ------------------------------
      比較表
    ------------------------------ */
    .compare-wrapper {
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    }

    th, td {
      padding: 8px 10px;
      border-bottom: 1px solid rgba(0,0,0,0.04);
      text-align: left;
    }

    th {
      background: rgba(102,153,255,0.06);
      font-weight: 600;
      white-space: nowrap;
    }

    tr:last-child td {
      border-bottom: none;
    }

    /* ------------------------------
      導入ステップ
    ------------------------------ */
    .steps {
      display: grid;
      gap: 14px;
    }

    @media (min-width: 768px) {
      .steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .step {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 14px;
      text-align: center;
      font-size: 14px;
      /* box-shadow: 0 4px 12px rgba(0,0,0,0.04); */
      max-width: 400px;
      margin: 0 auto;
    }

    .step-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--color-main);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .step-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    /* ------------------------------
      ボトムCTA
    ------------------------------ */
    .cta-bottom-inner {
      background: linear-gradient(135deg, #5856ff, #90f5ff);
      border-radius: 24px;
      padding: 24px 18px;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }

    .cta-bottom-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cta-bottom-text {
      font-size: 15px;
      color: var(--color-muted);
      margin-bottom: 16px;
    }

    footer {
      font-size: 11px;
      color: var(--color-muted);
      text-align: center;
      background-color: #fff;
    }

    /* ------------------------------
      スマホ固定CTA（任意）
    ------------------------------ */
    .fixed-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 8px 12px;
      background: rgba(255,255,255,0.96);
      box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
      z-index: 40;
    }

    .fixed-cta-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .fixed-cta-text {
      font-size: 13px;
      color: var(--color-muted);
      flex: 1;
    }

    .fixed-cta .btn {
      flex-shrink: 0;
      min-width: 120px;
    }

    @media (min-width: 768px) {
      .fixed-cta {
        display: none;
      }
    }

    /* 料金カード全体 */
.price-cards {
  display: grid;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

/* @media (min-width: 768px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }
} */

/* カード本体 */
.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* バッジ */
.price-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--color-main);
  border-radius: 999px;
  margin-bottom: 14px;
}

.price-badge.badge-dark {
  background: var(--color-main-dark);
}

/* タイトル */
.price-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-catch {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* 金額 */
.price-number {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 16px;
}

.price-number .yen {
  font-size: 20px;
  margin-right: 2px;
}

.price-number .small {
  font-size: 12px;
  padding-left: 4px;
}

/* 機能箇条 */
.price-features {
  list-style: none;
  margin-bottom: 20px;
  font-size: 13px;
}

.price-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  list-style: none;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-main);
  font-weight: 700;
  font-size: 12px;
}

/* 申込みボタン */
.price-btn {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 0;
  font-size: 14px;
  border-radius: 12px;
}

/* 備考 */
.price-note {
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.5;
}

.center{
    text-align: center;
    display: block;
}

.center-left{
    text-align: left;
    display: inline-block;
}
.demo-section {
  text-align: center;
  padding: 80px 0;
  background: #f9fafb;
}

.video-frame {
  position: relative;
  display: inline-block;
  width: 100%;   /* 全体サイズを調整 */
  max-width: 600px;
}

.frame-image {
  width: 100%;
  display: block;
}

.frame-video {
  position: absolute;
  top: 12%;    /* 画像の中の画面位置に合わせる */
  left: 11%;
  width: 78%;  /* PC画面部分の幅に合わせる */
  height: 72%;
  border-radius: 4px;
  object-fit: cover;
}
.demo{background:#f9fafb;text-align:center}
.frame{position:relative;display:inline-block;width:min(860px,92vw)}
.frame-img{width:100%;display:block}

/* 画像中の“画面”位置に合わせて数値を微調整 */
.screen{
  position:absolute; top:9%; left:21%;
  width:57.7%; height:80%;
}
.screen lite-youtube{width:100%; height:100%; display:block; border-radius:6px; overflow:hidden}
@media screen and (min-width:669px) and (max-width: 768px) {
  .video-frame {
  position: relative;
  display: inline-block;
  width: 100%;   /* 全体サイズを調整 */
  max-width: 600px;
}
  .frame {
    width: 94%;
     margin-left: 3%;
    margin-right: 3%;
  }
  .frame img {
    max-width: 90%;
  }
  .screen {
   width:100%; height:100%;
    top: 8%;
    left: 19%;
    width: 62%;
    height: 78%;
  }
}
@media screen and (min-width:569px) and (max-width: 668px) {
   .screen {
   width:100%; height:100%;
    top: 8%;
    left: 7%;
    width: 86%;
    height: 78%;
  }
}
@media screen and (min-width:481px) and (max-width: 568px) {
   .screen {
   width:100%; height:100%;
    top: 8%;
    left: 7%;
    width: 86%;
    height: 78%;
  }
}
@media screen and (max-width: 480px) {
  .frame {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
  }

  .frame img {
    max-width: 100%;
  }
  .screen {
     width:100%; height:100%;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 77%;
  }
}
/* 画像に近い赤グラデのピル型ボタン */
.pill-btn{
  /* 色味（必要なら微調整） */
  --dark:#0f17b5;   /* 左の濃赤 */
  --mid:#1c41e4;    /* 中央の赤 */
  --lite:#6a74ff;   /* 右のハイライト寄り赤 */

  display:inline-block;
  padding:18px 40px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.02em;

  /* 本体グラデーション */
  background:
    linear-gradient(135deg,var(--dark) 0%, var(--mid) 45%, var(--lite) 88%);

  /* 下方向の影（画像の落ち影っぽく） */
  box-shadow:
    6px 10px 0 rgba(18, 0, 120, 0.25),      /* 近い影（赤み） */
    0 10px 22px rgba(0,0,0,.18);       /* 拡散影 */

  position:relative;
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
/* 右側の光沢をオーバーレイで追加 */
.pill-btn::after{
  content:"";
  /* position:absolute; inset:0; */
  border-radius:inherit;
  background:
    radial-gradient(120% 100% at 78% 30%, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,0) 40%);
  pointer-events:none;
}

/* ホバー／押下 */
.pill-btn:hover{ transform:translateY(-1px); filter:saturate(1.05); }
.pill-btn:active{ transform:translateY(1px); box-shadow:4px 6px 0 rgba(120,0,0,.28), 0 6px 16px rgba(0,0,0,.22); }

/* 長い横長ボタンにしたい場合 */
@media(min-width:900px){
.pill-btn.wide{ display:block; text-align:center; width:min(300px,92vw); margin:12px auto; }
}

/* 追加料金欄（小ボックス） */
.price-sub-box {
  background: rgba(102,153,255,0.06);
  border: 1px solid rgba(102,153,255,0.15);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.price-sub-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-main-dark);
  margin-bottom: 4px;
}

.price-sub-value {
  font-size: 13px;
  color: var(--color-text);
}
.cta-pill {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #4a82ff 0%, #2f6be8 50%, #1f4fb7 100%);
  box-shadow:
      0 6px 14px rgba(50, 90, 180, 0.35),
      inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
  letter-spacing: .03em;
}

/* ホバー時：少し浮く＆光沢が増える */
.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow:
      0 10px 20px rgba(50, 90, 180, 0.45),
      inset 0 1px 3px rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #5d94ff 0%, #3d7aff 50%, #2d5ed1 100%);
}

/* スマホ押下時：沈む表現 */
.cta-pill:active {
  transform: translateY(0px);
  box-shadow:
      0 4px 10px rgba(50, 90, 180, 0.25),
      inset 0 1px 3px rgba(255, 255, 255, 0.5);
}
.pill-btn--quiet {
  max-width: 200px;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #eaf1ff; /* 落ち着いた青 */
  background: rgba(38, 111, 255, 0.69); /* ごく薄い青の背景 */
  border: 1px solid rgba(102,153,255,0.25); /* やや薄い青枠 */
  text-decoration: none;
  letter-spacing: .02em;
  transition: all .2s ease;
}

/* ホバー：ほんの少しだけ濃くなる（控えめ） */
.pill-btn--quiet:hover {
  background: rgba(102, 153, 255, 0.637);
  border-color: rgba(102, 153, 255, 0.655);
}

/* クリック時：軽く沈む */
.pill-btn--quiet:active {
  background: rgba(88, 137, 235, 0.426);
  border-color: rgba(102,153,255,0.4);
}
.dis-flex1{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 5%;
  max-width: 400px;
  margin: 0 auto;
}
@media(max-width:430px){
.dis-flex1{
  display: grid;
   grid-template-columns: repeat(1, 1fr);
   margin: 0 auto;
   justify-content: center;
}
.pill-btn--quiet {
  max-width: 200px;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #eaf1ff; /* 落ち着いた青 */
  background: rgba(38, 111, 255, 0.69); /* ごく薄い青の背景 */
  border: 1px solid rgba(102,153,255,0.25); /* やや薄い青枠 */
  text-decoration: none;
  letter-spacing: .02em;
  transition: all .2s ease;margin: 0 auto;
}
}

/* 関連製品グリッド */
.related-grid {
  display: grid;
  gap: 18px;
  justify-content: center;
}

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 各カード */
.related-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 230px;
}

/* 小さなタグ */
.related-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #4a6fbf;
  background: rgba(102,153,255,0.12);
  border-radius: 999px;
  margin-bottom: 8px;
}

/* タイトル・本文・リンク */
.related-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.related-text {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  flex: 1;
}

.related-link {
  font-size: 12px;
  font-weight: 600;
  color: #4a6fbf;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-align: center;
  margin: 0 auto;
}

.related-link::after {
  content: "›";
  font-size: 13px;
  transform: translateY(0.5px);
}

.related-link:hover {
  text-decoration: underline;
}
/* サムネイル（動画エリア） */
.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #000;
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
}
