/* ===== Base (variables) ===== */
:root {
  --blue: #16a3e6; /* アクセント青 */
  --blue-100: #e8f6fd; /* 押下時の水色 */
  --text: #0f172a;
  --border: #9bd7f0;
  --radius: 6px;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.cards-tabs-wrap {
  position: relative;
  padding: 36px 16px 64px;
}

/* ===== Grid layout ===== */
.cards-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 978px) {
  .cards-tabs {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}


/* 基本ボタン */
.card-tab {
  --radius: 10px;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 220px;
  height: 140px;
  padding: 18px 16px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--blue);
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none !important;
}

/* フォーカス/ホバー */
.card-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.card-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--blue);
  color: #fff;
}

/* ラベル/タイトル */
.card-tab__eyebrow {
  font-family: "Gantari";
}
.card-tab__eyebrow,
.card-tab .card-tab__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2cabed;
  text-align: center;
}
.card-tab__sup {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
}
.card-tab__title {
  font-size: 16px;
  line-height: 1.6;
  color: #213146;
  min-height: calc(1.6em * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ドット＋下矢印（細線） */
.card-tab__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--blue);
  position: relative;
}
.card-tab__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-sizing: border-box;
}

/* ホバー時：文字白/ドット反転 */
.card-tab:hover .card-tab__eyebrow,
.card-tab:hover .card-tab__title {
  color: #fff;
}
.card-tab:hover .card-tab__dot {
  background: #fff;
}
.card-tab:hover .card-tab__dot::before {
  border-left-color: var(--blue);
  border-bottom-color: var(--blue);
}

/* アクティブ（選択） */
.card-tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.card-tab.is-active .card-tab__eyebrow,
.card-tab.is-active .card-tab__title {
  color: #fff;
}
.card-tab.is-active .card-tab__dot {
  background: #fff;
}
.card-tab.is-active .card-tab__dot::before {
  border-left-color: var(--blue);
  border-bottom-color: var(--blue);
}

/* バリエーション（淡い初期色） */
.card-tab--soft {
  background: var(--blue-100);
}

/* モーション削減 */
@media (prefers-reduced-motion: reduce) {
  .card-tab {
    transition: none;
  }
  .card-tab:hover {
    transform: none;
    box-shadow: none;
  }
}

/* レスポンシブ（カードサイズのみ） */

/* @media (max-width: 978px) {
  .anchor-tabs__inner {
    display: flex !important;
    flex-wrap: wrap;
  }
} */

/* ===== Base tokens ===== */
:root {
  --feature-blue: #2cabed;
  --ink: #1a1f36;
  --muted: #f6f6f6;
  --card-bg: #fff;
  --card-bd: #e8eef5;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 36px;
  --maxw: 1100px;
}

/* ===== Section ===== */
.features {
  z-index: 2;
  position: relative;
  background: #fff;
}
.features::after {
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  width: 100vw;
  height: 5.2vw;
  background: url(../img/common/white_wave.svg) left bottom / cover no-repeat;
  content: "";
}
.features__container {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5%;
  padding-left: 5%;
  padding-top: 70px;
}
.features__title {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-2);
}

/* ===== Grid ===== */
.features__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 978px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
}

/* ===== Card ===== */
.feature-card {
  background: var(--muted);
  border-radius: var(--radius-2xl);
  padding: clamp(18px, 3vw, 24px);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-2);
}
.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.feature-card__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--feature-blue);
  margin: 0 0 var(--space-2);
}

/* bullet list */
.feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  margin: 0 auto;
  max-width: 360px;
}
.feature-card__list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}
.feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background: var(--feature-blue);
}

/* ===== Page base ===== */
#layout {
  background-color: #e9f7ff;
  position: relative;
  z-index: 2;
  padding-bottom: 143px;
}
#layout::before {
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  width: 100vw;
  height: 5.2vw;
  background: url(../img/common/lightblue_wave2.png) left bottom / cover
    no-repeat;
  content: "";
}

/* ===== Card ===== */
.layout-card {
  padding: 64px;
  margin-bottom: 32px;
  border-radius: clamp(16px, 2vw, 2em);
  background: #fff;
}
.layout-inner {
  padding: 10px;
}
/* Header */
.layout-card__head {
  display: flex;
  align-items: center;
  gap: 26px;
  border-bottom: 2px solid #1e9fe6;
}
.layout-card__inner {
  width: 50%;
}
.layout-badge {
  font-size: 20px;
  display: inline-block;
  padding: 10px 16px;
  background: #2cabed;
  color: #fff;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05) inset;
}
.layout-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

/* Grid (left info / right images) */
.layout-card__grid {
  display: grid;
  gap: 124px;
  margin-top: 51px;
}
@media (max-width: 978px) {
  .layout-card {
    padding: 44px 24px;
    margin-bottom: 15px;
  }
  .layout-card__inner {
    width: 100%;
  }
  .layout-card__grid {
    gap: 30px;
  }
  #layout {
    padding-bottom: 0;
  }

}

@media (min-width: 978px) {
  .layout-card__grid {
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
  .layout-card__inner{
    width: 45%;
  }
  .layout-card__right {
    width: 50%!important;
  }
}

/* Section small title (blue link-like) */
.layout-sec {
  color: #2cabed;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 0;
  border-top: 1px solid #e9eef3;
}

/* Definition list styled as rows with divider */
.layout-dl {
  margin: 0;
}
.layout-dl__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid #e9eef3;
}
.layout-dl__row:first-child {
  border-top: 1px solid #e9eef3;
}
.layout-dl dt {
  margin: 0;
  color: #495865;
  font-weight: 700;
}
.layout-dl dd {
  margin: 0;
  color: #222;
}

/* Right images */
.layout-card__right {
  width: 100%;
  display: grid;
  gap: 14px;
}
.layout-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #e7edf2;
}

/* Button */
.layout-card__foot {
  margin-top: 50px;
  text-align: center;
}
.layout-btn {
  width: 320px;
  height: 66px;
  display: inline-block;
  padding: 18px 36px;
  background: #2cabed;
  color: #fff;
  font-weight: 500;
  border-radius: 9999px;
  text-decoration: none !important;
}
.layout-btn:active {
  transform: translateY(1px);
}
@media (max-width: 978px) {
  .layout-card__head {
    display: block;
    padding-bottom: 10px;
  }
  .layout-badge {
    border-radius: 2px;
    font-size: 16px;
    padding: 2px 12px;
    margin-bottom: 15px;
  }
  .layout-title {
    font-size: 20px;
  }
  .l-cont_xxl {
    padding-bottom: 43px;
  }
}
.l-cont_xxl {
  padding-bottom: 140px;
}
/* ポイント */
:root {
  --c-bg: #e9f4ff; /* セクション淡青 */
  --c-line: #b8dcf9; /* 破線の縁色 */
  --c-brand: #2cabed; /* ブランド青 */
  --c-text: #183042; /* 濃いテキスト */
  --c-mute: #5e7b8f; /* 説明文 */
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --radius-lg: 26px;
  --container: 1120px;
}

/* ---- ベース ---- */
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: var(--c-text);
  line-height: 1.75;
  background: #fff;
}
.l-cont {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5%;
  padding-left: 5%;
}

/* ---- 見出し ---- */
.sec-head {
  font-family: "Gantari";
  text-align: center;
  padding-top: 80px;
  margin: 0 0 40px;
}
@media (max-width: 978px) {
  .layout-dl__row {
    grid-template-columns: 232px 1fr;
  }
  .sec-head {
    padding-top: 60px;
    margin: 0;
  }
}
.sec-eyebrow {
  font-size: 40px;
  display: inline-block;
  letter-spacing: 0.12em;
  color: #158eea;
  font-weight: 700;
}
.sec-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 6px;
  color: #158eea;
}

.recommend-mb {
  padding-bottom: 0;
}
/* ... (existing styles before @media) ... */

/* ========================================================================
   共通スタイル
   ======================================================================== */
.point {
  padding: 50px 0;
}
.point + .point {
  margin-top: 8px;
}
.point__grid {
  /* PCのデフォルトGridレイアウト */
  display: grid;
  grid-template-columns: 122px 1fr 540px;
  gap: 24px;
  align-items: start;
  /* padding-left: 140px; */
  position: relative;
}

/* 左丸バッジ（PC） */
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #4aa3e6;
  color: #fff;
  text-align: center;
  gap: 6px;
}
.badge small {
  display: block;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.badge strong {
  display: inline-block;
  font-size: 42px;
  line-height: 1;
  transform-origin: center;
  transform: scaleY(1.28);
  letter-spacing: 0;
  padding: 0;
}

/* 画像コンテナの共通スタイル */
/* POINT 1, 3 の大きな画像 */
.point__media {
  height: 300px; /* PCの高さ固定 */
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.point__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.diy-card {
  max-width: 47%;
}
/* POINT 2 の2枚のカード画像 */
.diy-card__img {
  height: 200px; /* PCの高さ固定 */
  overflow: hidden;
  border-radius: 12px;
}
.diy-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================================================
     PCスタイル (min-width: 978px)
     ======================================================================== */
@media (min-width: 978px) {
  .point__lead {
    font-size: 28px;
  }
  .point__desc p {
    font-size: 16px;
  }
  /* -------------------
       POINT 1, 3 (.point--flex) のレイアウト: バッジ | テキスト | 画像
       ------------------- */
  .point.point--flex > .point__grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .point.point--flex > .point__grid > .badge {
    flex: 0 0 116px;
  }
  .point.point--flex > .point__grid > .point__body {
    flex: 1 1 auto;
    min-width: 0;
  }
  .point.point--flex > .point__grid > .point__media {
    flex: 0 0 540px; /* 画像の固定幅 */
    max-width: 40%;
  }

  /* -------------------
       POINT 2 (.point--diy) のレイアウト: バッジ | テキスト/画像群
       ------------------- */
  .point--diy > .point__grid {
    grid-template-columns: 122px 1fr; /* バッジ | テキスト | 画像群 */
    grid-template-rows: auto auto;
    gap: 24px 24px; /* 縦横のギャップ */
    align-items: start;
  }

  .point--diy > .point__grid > .badge {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: start;
    display: flex;
  }
  .point--diy > .point__grid > .point__body {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-width: 0;
  }

  /* diy-grid（画像群）を3列目に配置 */
  .point--diy > .point__grid > .diy-grid {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    max-width: 1308px;
    width: 100%;
    display: flex;
    gap: 7%;
    max-width: 100%;
  }
}

/* ========================================================================
     モバイルスタイル (max-width: 978px)
     ======================================================================== */
@media (max-width: 978px) {
  /* PCの丸バッジを非表示にする（既存のCSSで対応済み） */

  /* .badge {
    display: none;
  } */

  .point[data-num] .point__lead {
    order: 1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }


  .point {
    padding: 0; /* モバイルの上下余白を調整 */
  }
  .badge {
    width: 70px;
    height: 70px;
  }
  .badge small {
    font-size: 12px;
  }
  .badge strong {
    font-size: 30px;
  }
  /* 全てのポイントを縦積みにする */
  .point[data-num] > .point__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    top: -36px;
  }

  /* PCの丸バッジを非表示にする */

  .sec-eyebrow {
    font-size: 20px;
  }
  .sec-title {
    font-size: 30px;
    margin-top: 0;
  }
  .point__media_container {
    margin-left: 80px;
    width: 70%;
  }

  /* -------------------
       point__lead (SP用バッジを含む)
       ------------------- */
  .point[data-num] .point__lead {
    order: 1;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-items: center;
  }

  .sp-badge-text {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 8px;
    background: #4aa3e6;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 4px;
    margin-top: 2px;
  }
  .point__desc {
    padding-top: 24px;
  }

  .point[data-num] > .point__grid > .point__body {
    order: 2;
    width: 100%;
    margin-bottom: 20px;
  }

  /* POINT 1, 3 の画像 */
  .point[data-num] > .point__grid > .point__media {
    order: 3; /* 画像を一番下に */
    height: 200px; /* SPの高さ調整 */
    margin-bottom: 0;
  }

  /* POINT 2 の画像群 */
  .point--diy > .point__grid > .diy-grid {
    order: 3; /* 画像群を一番下に */
    display: grid;
    grid-template-columns: 1fr; /* 縦積み */
    row-gap: 12px;
    margin-bottom: 0;
  }
  .diy-card__img {
    height: 150px; /* SPの高さ調整 */
  }
}
/* ========================================================================
   共通スタイル
   ======================================================================== */
/* ... (既存の .point, .point + .point, .point__grid スタイルはそのまま) ... */

/* POINT 1, 3 の新しい画像＋テキストコンテナ */
.point__media_container {
  /* PCでFlexboxの右端要素として機能させる */
  flex-shrink: 0;
}

/* 画像の下のキャプション */
.point__media_caption {
  margin-top: 16px; /* 画像とテキストの間に余白 */
  font-size: 14px;
  line-height: 1.6;
  color: #333; /* テキストの色 */
}

/* ========================================================================
 PCスタイル (min-width: 978px)
 ======================================================================== */
@media (min-width: 978px) {
  /* -------------------
   POINT 1, 3 (.point--flex) のレイアウト: バッジ | テキスト | 画像＋テキスト
   ------------------- */
  .point.point--flex > .point__grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  /* ... (既存の .badge, .point__body スタイルはそのまま) ... */

  /* 新しい画像コンテナの幅を制御 */
  .point.point--flex > .point__grid > .point__media_container {
    max-width: 42%;
  }

  /* 画像単体のスタイルをコンテナ内に移し、高さを制御 */
  .point__media_container .point__media {
    height: 100%;
    flex-shrink: unset;
  }
}

/* ========================================================================
 モバイルスタイル (max-width: 978px)
 ======================================================================== */
@media (max-width: 978px) {
  .point[data-num] > .point__grid > .point__media_container {
    order: 3;
    margin-bottom: 0;
  }

  .point__media_container .point__media {
    height: 100%;
  }

  .point__media_container .point__media_caption {
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .diy-card {
    padding-left: 60px;
    max-width: 90%;
  }
  .point__body {
    padding-left: 80px;
  }
}

/* 仕上げの微調整（見た目寄せ） */
.mt-12 {
  margin-top: 12px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-24 {
  margin-top: 24px;
}

.anchor-tabs {
  position: relative;
  padding: 48px 16px 110px;
  margin-top: 207px;
  isolation: isolate;
  background: #e9f7ff;
  z-index: 2;
}
@media (max-width: 978px) {
  .anchor-tabs {
    margin-top: 65px;
  }
}

.anchor-tabs::after {
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  width: 100vw;
  height: 5.2vw;
  background: url(../img/common/lightblue_wave2.png) left bottom / cover
    no-repeat;
  content: "";
}

@media (min-width:600px) {
  .anchor-tabs__inner {
    max-width: 560px;
  }
  .card-tab {
    width: 210px;
    height: auto;
    padding: 6px 12px;
  }
  .card-tab__title {
    font-size: 14px;
  }
}
@media (max-width:978px) {
  .anchor-tabs__inner {
    max-width: 750px!important;
  }
}
/* ===== Cards row ===== */
.anchor-tabs__inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  justify-content: center;
}
.card-tab__text {
  text-align: center;
}
/* ===== SP（スマホ）用調整 ===== */
@media screen and (max-width: 978px) {
  .anchor-tabs {
    padding: 24px 5px 48px;
  }

  .anchor-tabs__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .card-tab {
    width: calc(51% - 10px);
    box-sizing: border-box;
    padding: 4px 0;
  }

  .card-tab__title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }
  .card-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 80px;
  }
  .card-tab__dot {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .card-tab__eyebrow {
    font-size: 12px;
  }
  .br_sp {
    display: none;
  }
  .br_pc {
    display: block;
  }
}
.br_sp {
  display: block;
}
.br_pc {
  display: none;
}
.common-ttl {
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 40px;
  padding: 80px 0 54px;
}
@media (max-width: 978px) {
  .common-ttl {
    font-size: 30px;
  }
}
/* ===== 基本レイアウト ===== */
:root {
  --blue: #2da8e1;
  --text: #222;
  --line: #e5e7eb;
  --bg-soft: #fafafa;
}
.l-cont_sub {
  padding-bottom: 100px;
}
.l-cont {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5%;
  padding-left: 5%;
}
.prod {
  background-color: #e9f7ff;
  margin-bottom: 116px;
}
.prod-head {
  text-align: center;
  margin-bottom: 20px;
}
.prod-head__sup {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.prod-head__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

/* 2カラム本体 */
.prod-item {
  padding: 64px;
  margin-bottom: 32px;
  border-radius: clamp(16px, 2vw, 2em);
  background: #fff;
}
.prod-body {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.spec-list {
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}
.spec-row:first-child {
  border-top: 1px solid var(--line);
}
.spec-row__title {
  color: #16a3e6;
}
.spec-row__label {
  margin: 0;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.03em;
}
.spec-row__value {
  margin: 0;
  padding: 12px 12px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  word-break: break-word;
}

/* ===== 画像ボックス（右） ===== */
.prod-figure {
  padding: 16px;
  background: #fff;
}
.prod-figure__img {
  display: block;
  width: 100%;
  height: auto;
}
.prod-figure__placeholder {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: #9ca3af;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.prod-head__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
}
.prod-head__link:hover {
  text-decoration: underline;
}

/* 小さな丸＋下矢印（必要なら） */
.prod-head__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-block;
  background: #fff;
  border: 2px solid var(--blue);
  position: relative;
}
.prod-head__dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  /* height: 0; */
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--blue);
}
.heading-tit {
  font-size: 28px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 978px) {
  .heading-tit {
    font-size: 22px;
    padding-bottom: calc(1rem + 10px);
    margin-bottom: calc(1.5rem + -0.25em);
  }
  .prod-body {
    grid-template-columns: 1fr;
    gap: 20px;
    display: flex;
    flex-direction: column-reverse;
  }
  .prod-head {
    text-align: left;
  }
  .prod-item {
    padding: 40px 20px;
  }
  .prod-spec {
    width: 100%;
  }
  .spec-row {
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 978px) {
  .spec-row {
    grid-template-columns: 1fr;
  }
  .spec-row__label {
    background: transparent;
    padding: 16px;
  }
  .spec-row__value {
    padding-top: 4px;
  }
  .concept-intro {
    padding-bottom: 0;
  }
  .concept-intro__add02 {
    right: 0;
  }
}

:root {
  --blue: #2da8e1;
  --blue-100: #e8f6fd;
  --text: #0f172a;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.concept-intro__txt {
  text-align: left;
}
.concept-intro__inner {
  text-align: left;
}
@media (min-width: 1057px) {
  .concept-intro__inner {
      padding-top: 0;
  }

}
.concept-intro__add02 {
  right: 0;
}
/* @media (min-width: 978px) {
  .concept-intro__inner {
    text-align: left;
    padding-top: 0;
  }
  .concept-intro {
    padding-top: 70px;
    min-height: 1090px;
  }
  .concept-intro__add01 {
    top: 70px;
  }
  .concept-intro__add02 {
    top: 530px;
  }
} */
.product-point__box__num__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.product-point__box__num__inner span{
  font-size: 15px;
}
@media (max-width: 978px) {
  .product-point__box__num__inner {
      width: 70px;
      height: 70px;
  }

}

.point-number-display {
  display: block;
  font-weight: 600;
  font-size: 52px !important;
  line-height: 1;
  font-family: "Akshar", sans-serif !important;
  font-weight: 600;
}

.product-point__box__num__inner span::after {
  content: none;
  font-family: "Akshar", sans-serif;
  font-weight: 600;
  display: block;
}

@media (max-width: 978px) {
  .point-number-display {
    font-size: 32px !important;
  }
  .product-point__box__num {
    top: 70px !important;
  }
}
