/* =========================================================
   Base
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* header */
  --header-h: 50px;

  /* hero background shared by header + hero (PC用) */
  --hero-bg: url("../images/hero.webp");
  --hero-bg-pos: center right;

  /* common */
  --accent: #f6ab00;
  --muted: rgba(17, 17, 17, 0.72);
  --line: rgba(0, 0, 0, 0.14);
}

/* =========================================================
   Hero Wrap（PC：ヘッダー + ヒーローで背景共有）
   ========================================================= */
.hero-wrap {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: var(--hero-bg-pos);
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* =========================================================
   Header（固定しない）
   ========================================================= */
.lp-header {
  /* position: relative; */
  position: fixed;
  height: var(--header-h);
  background: transparent;
  z-index: 1;
  width: 100%;
}

.lp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
}

.lp-logo img {
  width: 200px;
  display: block;
}

/* Main offset（固定ヘッダーじゃないので不要） */
.lp-main {
  padding-top: 0;
}

/* =========================================================
   Hero（PC）
   ========================================================= */
.hero {
  background: transparent;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: stretch;
}

.hero__inner {
  width: 100%;
  padding-top: 22px;
  padding-bottom: 42px;
}

.hero__content {
  /* margin-top: 60px; */
  margin-top: 13%;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 40px;
  align-items: start;
}

.hero__headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-family: "Noto Sans JP", sans-serif;
}

.hero__lead {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.hero__lead p + p {
  margin-top: 4px;
}

.hero__product {
  margin-top: 30px;
}
.hero__product-en {
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero__product-jp {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 700;
}

.hero__right {
  min-height: 1px;
}

/* =========================================================
   Hero（PC）
   - hero__product を「下基準」にする（flexで押し下げ）
   ========================================================= */
/* .hero{
  background: transparent;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: stretch;
}

.hero__inner{
  width: 100%;
  padding-top: 22px;
  padding-bottom: 0px;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
}

.hero__content{
  margin-top: 60px;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 40px;
  align-items: stretch;
  flex: 1;
}

.hero__left{
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero__headline{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
  font-family: "Noto Sans JP", sans-serif;
}

.hero__lead{
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.hero__lead p + p{ margin-top: 4px; }

.hero__product.pc-only{
  margin-top: auto;
}

.hero__product-en{
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: .02em;
  line-height: 1.0;
}
.hero__product-jp{
  margin-top: 6px;
  font-size: 14px;
  opacity: .9;
  font-weight: 700;
}

.hero__right{ min-height: 1px; } */

/* =========================================================
   Section Titles（Point / With Trust / FAQ / Spec）
   ========================================================= */
.points-title,
.trust-title,
.faq-title,
.spec-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  line-height: 1;
}

.points-title__circle,
.trust-title__circle,
.faq-title__circle,
.spec-title__circle {
  position: absolute;
  left: -42px;
  top: 62%;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-55%);
  z-index: -1;
}

.points-title__en,
.trust-title__en,
.faq-title__en,
.spec-title__en {
  font-size: 44px;
  letter-spacing: 0.02em;
}

.points-title__jp,
.trust-title__jp,
.faq-title__jp,
.spec-title__jp {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.85;
  transform: translateY(6px);
}

/* =========================================================
   Point
   ========================================================= */
.points {
  padding: 200px 0px 0px 0px;
}

.points-head {
  margin-bottom: 50px;
}

.point-row {
  display: grid;
  grid-template-columns: 1fr 48%;
  gap: 50px;
  align-items: start;
  padding: 60px 0;
}

.point-row:last-child {
  padding: 40px 0px 0px 0px !important;
}

.point-row--media-left {
  grid-template-columns: 48% 1fr;
}

.point-text {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px 24px;
  align-items: start;
  position: relative;
  margin-top: 10px;
  /* top: -70px; */
}

.point-no {
  font-size: 46px;
  font-weight: 700;
  color: #9b9b9b;
  line-height: 1;
  letter-spacing: 0.02em;
}

.point-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 10px;
}

.point-sub {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 20px;
}

.point-desc {
  font-size: 14px;
  line-height: 2.05;
  opacity: 0.92;
}
.point-desc p + p {
  margin-top: 10px;
}

.point-media {
  margin: 0;
}
.point-media img {
  width: 100%;
  height: auto;
}

/* =========================================================
   With Trust
   ========================================================= */
.trust {
  padding: 200px 0px 0px 0px;
}

.trust-head {
  margin-bottom: 114px;
}

.trust-lead {
  font-size: 14px;
  line-height: 2;
  opacity: 0.95;
  max-width: 980px;
}
.trust-lead p + p {
  margin-top: 10px;
}

.trust-gallery {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-photo {
  margin: 0;
  height: 330px;
  overflow: hidden;
  background: #f3f3f3;
}

.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 200px 0px 0px 0px;
}

.faq-head {
  margin-bottom: 114px;
}

.faq-list {
  display: grid;
  gap: 46px;
}

.faq-item {
  display: grid;
  gap: 14px;
}

.faq-q,
.faq-a {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
  align-items: start;
}

.faq-mark {
  font-weight: 400;
  line-height: 1;
  font-size: 26px;
}

.faq-mark--q {
  color: #111;
}
.faq-mark--a {
  color: var(--accent);
}

.faq-text {
  font-size: 15px;
  line-height: 2;
}

.faq-text--q {
  color: #111;
  font-weight: 400;
}

.faq-text--a {
  /* color: var(--accent); */
  color: #f08300;
  font-weight: 400;
}

.faq-link {
  color: inherit;
  text-decoration: underline;
}
.faq-link:hover {
  opacity: 0.6;
}

/* =========================================================
   Spec
   ========================================================= */
.spec {
  padding: 200px 0px 0px 0px;
  width: 100%;
}

.spec-head {
  margin-bottom: 114px;
}

.spec-body {
  display: grid;
  grid-template-columns: 0.8fr 60%;
  gap: 30px;
  align-items: start;
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-row {
  display: grid;
  grid-template-columns: 100px 1fr; /* dt を固定幅に */
  gap: 40px;
  align-items: start;
}

.spec-row dt {
  text-align: justify; /* 均等割 */
  text-align-last: justify; /* 最後の行も均等割 */
  white-space: nowrap; /* 改行させない */
  letter-spacing: 0; /* 不要ならリセット */
  font-weight: 700;
}

.spec-row dd {
  margin: 0;
}

.spec-pdf {
  margin-top: 28px;
}

.spec-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #4d4e4d;
  color: #fff;
  font-size: 14px;
}
.spec-pdf-link:hover {
  opacity: 0.7;
}

.spec-pdf-icon {
  display: inline-block;
  background: #4d4e4d;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  line-height: 1;
}

.spec-image img {
  width: 100%;
  height: auto;
}

.spec-bottom-line {
  margin-top: 40px;
  height: 1px;
}

.spec-options {
  margin-top: 80px;
  display: grid;
  gap: 64px;
}

/* 見出し */
.spec-option__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

/* =========================================================
   ここが肝：常に「3カラム」で統一して、画像幅を揃える
   - 読書灯： [img1][img2][text]
   - 電源  ： [img ][text(textは2〜3列を結合)]
   ========================================================= */
.spec-option__grid {
  --img-col: 1fr; /* ←画像1枚の幅（2枚とも同じ幅） */
  --gap: 22px;

  display: grid;
  gap: 18px var(--gap);
  align-items: start;
}

/* 読書灯：画像2枚 + 文章（PC） */
.spec-option__grid--two {
  grid-template-columns: var(--img-col) var(--img-col) 1.1fr;
  grid-template-areas: "img1 img2 text";
}

.spec-option__grid--two .spec-option__media:nth-of-type(1) {
  grid-area: img1;
}
.spec-option__grid--two .spec-option__media:nth-of-type(2) {
  grid-area: img2;
}
.spec-option__grid--two .spec-option__text {
  align-self: start;
  transform: translateY(-7px);
  grid-area: text;
}

/* 電源：画像1枚 + 文章（PC）
   ※「3カラムは維持」して、文章を2〜3列にまたがせる */
.spec-option__grid--one {
  grid-template-columns: var(--img-col) var(--img-col) 1.1fr;
  grid-template-areas: "img text text";
}

.spec-option__grid--one .spec-option__media {
  grid-area: img;
}
.spec-option__grid--one .spec-option__text {
  align-self: start;
  transform: translateY(-7px);
  grid-area: text;
}

/* 画像 */
.spec-option__media {
  justify-self: stretch;
}

.spec-option__media img {
  width: 90%;
  height: auto;
  display: block;
}

/* キャプション */
.spec-option__caption {
  margin-top: 8px;
  font-size: 14px;
  /* color: rgba(0,0,0,.68); */
}

/* テキスト */
.spec-option__text p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* SP：縦積み */
@media (max-width: 575px) {
  /* .spec-options{ margin-top: 44px; gap: 44px; }

  .spec-option__title{
    font-size: 16px;
    margin-bottom: 14px;
  }

  .spec-option__grid--two,
  .spec-option__grid--one{
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .spec-option__text p{
    font-size: 13px;
    line-height: 2.0;
  } */

  /* オプション全体：縦積み前提 */
  .spec-options {
    margin-top: 44px;
    gap: 44px;
  }

  /* ===== 共通：SPは全部「縦に流す」 ===== */
  .spec-option__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    align-items: stretch !important;
  }

  /* 読書灯/電源の個別grid指定を無効化（重なり・消失の原因を潰す） */
  .spec-option__grid--two,
  .spec-option__grid--one {
    grid-template-columns: none !important;
    grid-template-areas: none !important;
    padding-bottom: 0 !important; /* PC用キャプション余白を戻す */
  }

  /* media（画像ブロック）は必ず表示、幅100% */
  .spec-option__media {
    width: 100% !important;
    display: block !important;
  }

  /* 画像は必ず100%（=揃う） */
  .spec-option__media img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* キャプションはSPは通常フローに戻す（absolute解除） */
  .spec-option__caption {
    position: static !important;
    margin-top: 6px !important;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.68);
  }

  /* テキストも縦流し */
  .spec-option__text {
    align-self: stretch !important;
  }
  .spec-option__text p {
    font-size: 13px;
    line-height: 2;
    margin: 0;
  }

  .spec-option__title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/* =========================================================
   utility: PC / SP（<=575px）
   ========================================================= */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 575px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* =========================================================
   SP（<=575px）
   ★崩れ防止のため「Heroだけ」大きく変更
   - 他セクションは“最小限”の調整に留める
   ========================================================= */
@media (max-width: 575px) {
  p {
    font-size: 12px;
  }

  :root {
    --px: 20px;
    --header-h: 56px;
  }

  .container {
    max-width: 100%;
    padding: 0 var(--px);
  }

  /* -------------------------
     SP Hero：上：画像 / 下：白ブロック
     ------------------------- */

  /* .hero-wrap{
    background: none;
    min-height: auto;
    position: relative;
  }

  .lp-header{
    position: absolute;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 3;
  }
  .lp-logo img{ width: 160px; }

  .hero{
    min-height: auto;
    display: block;
  }

  .hero::before{
    content: "";
    display: block;
    height: 54vh;
    min-height: 360px;
    max-height: 520px;
    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero__inner.container{
    padding-left: 0;
    padding-right: 0;
  }

  .hero__inner{
    padding: 0;
  } */

  /* 背景方式だと横スクロールできないので、SPは背景を使わない */
  /* .hero-wrap{
    background-image: none;
  }

  .hero__media{
    height: 58vh;
    min-height: 360px;
    max-height: 560px;

    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    line-height: 0;
  }

  .hero__media img{
    height: 100%;
    width: auto;
    display: block;

    min-width: 160vw;

    object-fit: cover;
  }

  .hero{
    min-height: auto;
    display: block;
  }

  .hero__inner{
    padding-left: var(--px);
    padding-right: var(--px);
  }

  .hero__content{
    margin-top: 0;
    display: block;
    background: #fff;
  }

  .hero__right{ display: none; } */

  .hero__inner {
    min-height: auto !important;
  }

  /* -------------------------
   SP Hero：ヘッダーは画像に重ねる（修正版）
   - 画像は最上部から表示（白帯を作らない）
   - ロゴは画像の上にオーバーレイ
   ------------------------- */

  .hero-wrap {
    background-image: none;
    min-height: auto;
    position: relative;
  }

  /* ヘッダーを画像の上に重ねる（白背景が付くのを強制で潰す） */
  .lp-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    z-index: 10;
  }
  .lp-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent !important;
  }
  .lp-logo,
  .lp-logo a {
    background: transparent !important;
  }
  .lp-logo img {
    width: 160px;
  }

  /* Hero本体は縦積み */
  .hero {
    min-height: auto;
    display: block;
  }

  /* 画像エリア（横スクロール領域） */
  /* =========================
    SP Hero 画像：横フル + 横スクロール（1枚をパンできる）
    ========================= */
  .hero__media {
    height: 58vh;
    min-height: 360px;
    max-height: 560px;

    /* 画面いっぱいにする（コンテナの左右余白を無視） */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /* ← ここを auto にして横スクロール復活 */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    line-height: 0;
    background: transparent;
  }

  .hero__media img {
    height: 100%;
    width: auto; /* 高さ基準で表示して横に伸びる */
    display: block;

    /* ★ここで“どれだけ横にパンできるか”を決める */
    min-width: 220vw; /* 140〜220vwくらいで好みに調整OK */

    object-fit: cover; /* 念のため */
  }

  /* 文字ブロック（白面） */
  .hero__inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__content {
    margin-top: 0;
    display: block;
    background: #fff;
    /* padding: 22px var(--px) 30px; */
  }

  .hero__right {
    display: none;
  }

  .hero__product {
    margin-top: 0;
  }

  .hero__product-en {
    font-size: 40px;
    line-height: 1;
  }

  .hero__product-jp {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
    opacity: 1;
  }

  .hero__headline {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.32;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2.05;
  }

  /* -------------------------
     SP：他セクションは「最小限」だけ
     （大きくdisplayを変えて崩すのを避ける）
     ------------------------- */

  /* セクション余白だけ調整（レイアウトは維持） */
  .points {
    padding: 60px 0px 0px 0px;
  }
  .trust {
    padding: 72px 0px 0px 0px;
  }
  .faq {
    padding: 72px 0px 0px 0px;
  }
  .spec {
    padding: 72px 0px 0px 0px;
  }

  .points-head {
    margin-bottom: -22px;
  }

  .trust-head,
  .faq-head,
  .spec-head {
    margin-bottom: 34px;
  }

  /* 見出しだけSPサイズ */
  .points-title__en,
  .trust-title__en,
  .faq-title__en,
  .spec-title__en {
    font-size: 34px;
  }

  .points-title__circle,
  .trust-title__circle,
  .faq-title__circle,
  .spec-title__circle {
    left: -32px;
    width: 78px;
    height: 78px;
  }

  /* Point：スマホでは必ず「文章 → 画像」の順にする */
  .point-row:first-child {
    display: grid; /* ★orderを効かせるためgrid維持 */
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 72px 0 0 0;
  }
  .point-row {
    display: grid; /* ★orderを効かせるためgrid維持 */
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0 0 0;
  }
  .point-row--media-left {
    grid-template-columns: 1fr; /* 念の為 */
  }

  /* ★並び順固定（偶数でも文章が先） */
  .point-text {
    order: 1;
  }
  .point-media {
    order: 2;
  }

  /* 文章内のレイアウト（番号→文章） */
  .point-text {
    grid-template-columns: 56px 1fr;
    gap: 10px 14px;
    display: block; /* ←あなたの現状を維持（中身の崩れ防止） */
    position: relative;
    top: 0px;
  }

  .point-no {
    font-size: 36px;
  }

  .point-heading {
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 15px;
  }

  .point-sub {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .point-desc {
    font-size: 13px;
    line-height: 2;
  }

  /* Trust：gridは維持、SPは1列に（横スクロールにしない＝崩れにくい） */
  /* .trust-gallery{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-photo{
    height: 220px;
  } */

  /* Trust：SPは1枚表示スライダー + ドット */
  .trust-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /* スクロールバーを目立たせない */
    scrollbar-width: none;
    margin-top: 30px;
  }
  .trust-gallery::-webkit-scrollbar {
    display: none;
  }

  .trust-photo {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 220px;
    overflow: hidden;
    background: #f3f3f3;
  }

  .trust-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ドット（SPのみ表示想定） */
  .trust-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.22);
  }

  .trust-dot.is-active {
    background: rgba(0, 0, 0, 0.72);
  }

  /* FAQ：列幅だけ調整 */
  .faq-mark--q {
    font-size: 20px;
  }
  .faq-mark--a {
    font-size: 20px;
  }
  .faq-text--q {
    font-weight: 400;
  }
  .faq-text--a {
    font-weight: 400;
  }

  .faq-list {
    gap: 26px;
  }
  .faq-q,
  .faq-a {
    grid-template-columns: 20px 1fr;
    column-gap: 12px;
  }
  .faq-text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Spec：2カラム→1カラム（ここは必要なので安全に切替） */
  .spec-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .spec-row {
    grid-template-columns: 108px 1fr;
    column-gap: 14px;
    font-size: 14px;
  }
  .spec-pdf-link {
    width: 30%;
    justify-content: center;
  }
  .spec-bottom-line {
    margin-top: 26px;
  }
}

/* =========================================================
   Hero text animation（1文字ずつ / 下から / 左→右 / 合計約3秒）
   ========================================================= */

/* JSで分割された各文字 */
.hero .char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 10px, 0); /* 下から */
  will-change: opacity, transform;

  /* ブレ防止 */
  backface-visibility: hidden;
  transform-style: preserve-3d;

  transition:
    opacity 0.9s cubic-bezier(0.18, 0.82, 0.28, 1),
    transform 0.9s cubic-bezier(0.18, 0.82, 0.28, 1);
}

/* 表示状態 */
.hero.is-show .char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 改行(br)はそのままなのでOK */

/* 低モーション設定の人は即時表示 */
@media (prefers-reduced-motion: reduce) {
  .hero .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   Hero product fade-in（テキスト完了後に出す）
   ========================================================= */
.hero__product {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.18, 0.82, 0.28, 1),
    transform 0.9s cubic-bezier(0.18, 0.82, 0.28, 1);
  will-change: opacity, transform;
}

.hero.is-show .hero__product {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =========================
   Spec PDF（PNGアイコン版）
   ========================= */

.spec-pdf {
  margin-top: 28px;
}

.spec-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;

  padding: 4px 10px;
  background: #4d4e4d;
  color: #fff;

  font-size: 14px;
  line-height: 1; /* ← アイコンと文字の上下ズレ防止 */
  text-decoration: none;
}

.spec-pdf-link:hover {
  opacity: 0.7;
}

/* アイコン枠（高さを固定してズレ防止） */
.spec-pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px; /* 好みで 24〜28px */
  height: 26px;
  flex: 0 0 26px; /* ← テキストで伸びない */
}

/* PNG自体 */
.spec-pdf-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* ← PNGを潰さず収める */
}
