/* ============================================================
   cheero Wireless Open Earphones Smart Pro Danboard ver. LP
   ゼロから新規実装（BONX CSS流用なし）
   ベース1440px / コンテナ最大1280px / 8pxグリッド
   ============================================================ */

:root{
  --color-bg: #ffffff;
  --color-cream: #e8dcc8;       /* セクション背景（クリーム） */
  --color-hero-beige: #f5dac5;  /* ヒーロー写真周辺の色味 */
  --color-text-main: #222222;   /* 見出し濃色 */
  --color-text-body: #6b5a44;   /* 本文ブラウン */
  --color-brown: #5c4534;       /* normal CTAボタン・アクセント */
  --color-green: #1a6b3c;       /* pop color CTA・リンク・枠線 */
  --color-orange: #f08300;      /* アクセントオレンジ */
  --color-gray-bg: #f8f8f8;     /* カテゴリナビ背景 */
  --color-gray-border: #e4e4e4;
  --color-placeholder: #d3d3d3; /* 画像プレースホルダー */
  --color-spec-label-bg: #ece5da;
  --color-footer-bg: #4a3626;

  --container-max: 1280px;
  --gap-8: 8px;
  --radius-pill: 999px;
  --radius-card: 16px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-main);
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }

.container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- ボタン共通 ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 400;
  font-size: 16px;
  border: none;
  white-space: nowrap;
}
.btn-brown{ background: var(--color-brown); color: #fff; }
.btn-green{ background: var(--color-green); color: #fff; }
.btn-outline{
  background: #fff;
  color: var(--color-green);
  border: 1.5px solid var(--color-green);
  font-weight: 500;
}
.btn-icon{ display: inline-block; width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- ヘッダー（Figma実測値：デスクトップ 94 / 1 / 87 / 53px、モバイル 50 / 1 / 56 / 53px） ---------- */
.site-header{
  background: #fff;
  position: relative;
  z-index: 100;
}
/* ヘッダー上段：左右いっぱいに広がる（幅の上限なし）。
   1fr auto 1fr の3列にすることで、ロゴ＝左端／製品名＝画面のど真ん中／
   ログイン・カート・メニュー＝右端 に固定される（発注者指示 2026-08-17）。 */
.header-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
}
.logo{ justify-self: start; }
.logo img{ height: 29px; width: auto; display: block; }
.header-title{
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: #444444;
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}
/* 製品名が1行に収まらない幅では非表示（発注者指示 2026-08-17） */
@media (max-width: 1230px){
  .header-title{ display: none; }
  /* 商品名が消えると3列のうち1列が余り、操作リンクが中途半端な位置に残る。
     2列にして Log In / Cart / Menu を右端へ寄せる */
  .header-top{ grid-template-columns: 1fr auto; }
}
.header-actions{
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
  white-space: nowrap;
}
/* ヘッダーの操作リンク。以前は「Log In」等の文字ごと画像だったため、
   アイコン（SVG）＋本物の文字に分離した */
.header-action{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: var(--color-text-body);
  white-space: nowrap;
}
.header-action__icon{ width: 20px; height: 20px; flex-shrink: 0; }
.header-action--menu{ font-size: 16px; gap: 10px; }
.header-action__icon--menu{ width: 24px; height: 24px; }

.header-divider{
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* カテゴリ帯：cheero.shop 本体の指定に合わせている（アイコン40px／ラベル10px／6等分） */
.category-nav{
  width: 100%;
  background: var(--color-gray-bg);
  padding: 16px 0;
}
.category-nav__list{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  justify-items: center;
  /* 中身は1600pxまで広がり、それ以上はグレーの帯だけが伸びる（cheero.shop と同じ） */
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 25px;
}
.category-nav__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
  max-width: 100px;
}
.category-nav__icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.category-nav__item:hover .category-nav__icon{ transform: translateY(-4px); }
.category-nav__icon img{ width: 100%; height: 100%; object-fit: contain; }
.category-nav__label{
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #ed342e;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media (prefers-reduced-motion: reduce){
  .category-nav__icon{ transition: none; }
}

.page-nav{
  background: #fff;
  overflow-x: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.page-nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8px 20px;
  min-width: max-content;
  height: 53px;
}
.page-nav a{
  display: inline-flex;
  align-items: center;
  padding: 8px;
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
}
.page-nav a.active{ color: var(--color-green); }

/* ---------- ヒーロー ---------- */
.hero{
  position: relative;
  background: url("img/hero-desk.jpg") center/cover no-repeat;
  padding: 64px 24px 80px;
}
.hero-inner{
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero-eyebrow{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  margin: 0 0 16px;
}
.hero-eyebrow .accent{ color: var(--color-green); }
.hero-eyebrow-break{ display: none; }
.hero-photo-wrap{ display: none; }
.hero-title{
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.88px;
  margin: 0 0 24px;
  max-width: 720px;
}
.hero-desc{
  font-size: 17px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.25px;
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-ctas{
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-malls-label{ font-size: 13px; font-weight: 400; margin-bottom: 8px; }
.hero-malls{ display: flex; gap: 8px; flex-wrap: wrap; }
.hero-malls img{
  height: 40px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
}

/* ---------- セクション共通 ---------- */
.section{ padding: 80px 24px; }
.section-cream{ background: var(--color-cream); }
.section-gray{ background: var(--color-gray-bg); }
.section-title{
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.88px;
  color: var(--color-text-body);
  margin: 0 0 24px;
}
.section-eyebrow{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--color-text-body);
  margin: 0 0 8px;
}
.section-rule{
  width: 32px;
  height: 4px;
  background: var(--color-orange);
  margin: 0 auto 48px;
  border-radius: 2px;
}

/* ---------- 動画プレースホルダー ---------- */
.video-placeholder{
  background: var(--color-placeholder);
  border: 1px solid var(--color-green);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Smart Pro Danboard ver.とは ---------- */
/* クリーム色の角丸の箱。このセクション専用で、
   スペック・よくある質問の .section-cream（背景ベタ）には影響させない */
.intro-box{
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--color-cream);
  border-radius: 16px;
  /* 1280px以上でデザインどおりの80px。狭くなるほどなめらかに詰まり、
     文章側の列が狭くなり過ぎないようにする（下限48px） */
  padding: clamp(48px, 6.25vw, 80px);
}
.intro-lead{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-body);
  margin: 0 0 48px;
}
.intro-block{
  display: grid;
  grid-template-columns: 4fr 3fr;
  /* 余白と同じ考え方。1280pxで80px、狭くなるほど詰まる */
  gap: clamp(48px, 6.25vw, 80px);
  align-items: center;
}
.intro-heading{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.64px;
  margin: 0 0 16px;
}
.intro-heading .accent{ color: var(--color-orange); font-weight: 900; }
.intro-text{
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.25px;
  opacity: 0.8;
  margin: 0 0 24px;
  color: var(--color-text-body);
}
.video-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.video-link-icon{ width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- 特徴・機能 ---------- */
.features-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
.feature-row{
  display: grid;
  /* デザイン準拠：1列＝動画と同じ500px。2列＋gap48pxの塊を中央に置く（1440時は計1048px） */
  grid-template-columns: repeat(2, minmax(0, 500px));
  justify-content: center;
  gap: 48px;
  align-items: stretch;
}
#features .feature-row:nth-child(odd) > .feature-item.has-media { order: -1; }
#features .feature-item{ display: flex; flex-direction: column; justify-content: center; }
#features .feature-item.has-media{ align-items: center; justify-content: center; }
#features .video-placeholder{ width: 100%; max-width: 500px; margin: 0 auto; }
.feature-tag{
  position: relative;
  display: inline-block;
  background: var(--color-orange);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  padding: 10px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  align-self: center;
  z-index: 0;
}
.feature-tag::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--color-orange);
  z-index: 0;
}
.feature-title{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.72px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--color-text-body);
}
.feature-title .accent{ color: var(--color-orange); font-weight: 900; font-size: 36px; display: inline-block; line-height: 1.4; }
.feature-sub{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  color: var(--color-text-body);
  margin: 0 0 24px;
}
.feature-item .btn-outline{ align-self: center; font-weight: 500; }
/* デザイン画像に合わせて横長に。特徴・機能の中だけに限定し、他セクションのボタンには波及させない */
#features .feature-item .btn-outline{ min-width: 240px; }
/* タグの三角より前面に置き、将来余白や文字サイズが変わっても重ならないようにする */
#features .feature-title,
#features .feature-sub,
#features .feature-item .btn-outline{ position: relative; z-index: 1; }

/* ---------- 音だけじゃなく、かわいさも本気 ---------- */
.cute-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
/* 差し替え用の画像。同名で上書きすれば入れ替わる。
   height:auto で、別の縦横比の写真に差し替えても歪まない */
.cute-block img,
.bt-block img{ width: 100%; height: auto; border-radius: var(--radius-card); }
.cute-heading{ font-size: 22px; font-weight: 800; margin: 0 0 16px; }
.cute-text{ font-size: 15px; color: var(--color-text-body); }

/* ---------- スペック（2カラーカード） ---------- */
.spec-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.spec-card{
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
}
.spec-card img{
  width: 240px;
  margin: 0 auto 24px;
}
.spec-card .variant-label{ color: #767676; font-size: 13px; margin-bottom: 8px; }
.spec-card .spec-title{ font-size: 22px; font-weight: 700; margin: 0 0 16px; color: var(--color-text-body); }
.spec-card hr{ border: none; border-top: 1px solid var(--color-gray-border); margin: 0 0 16px; }
.spec-card ul{ text-align: left; margin: 0 0 24px; font-size: 14px; }
.spec-card li{ margin-bottom: 8px; }
.spec-card li::before{ content: "・"; color: var(--color-orange); }
.spec-card .price{ font-weight: 700; color: var(--color-text-body); margin-bottom: 24px; }

/* ---------- Bluetooth/操作説明ブロック ---------- */
.bt-block{
  background: #fff;
  border-radius: var(--radius-card);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.bt-heading{ font-size: 20px; font-weight: 700; margin: 0 0 24px; }
.bt-sub{ font-size: 15px; font-weight: 700; margin: 0 0 16px; }
.bt-controls{
  background: var(--color-gray-bg);
  border-radius: 12px;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.bt-control{ display: flex; align-items: center; gap: 12px; }
.bt-key{
  background: var(--color-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.bt-note{ font-size: 13px; color: #767676; }

/* ---------- 主な仕様テーブル ---------- */
.spec-table-wrap{
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 48px;
}
.spec-table{ width: 100%; border-collapse: collapse; }
.spec-table tr{ border-bottom: 1px solid var(--color-gray-border); }
.spec-table tr:last-child{ border-bottom: none; }
.spec-table th, .spec-table td{
  text-align: left;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  color: #333333;
  vertical-align: top;
}
.spec-table th{
  background: #efe5df;
  width: 240px;
  font-weight: 400;
}

/* ---------- TIPS ---------- */
.tips-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.tips-block img{ border-radius: var(--radius-card); }
.tips-item{ margin-bottom: 24px; }
.tips-item h3{ font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.tips-item p{ font-size: 14px; color: var(--color-text-body); margin: 0; }

/* ---------- FAQ ---------- */
.faq-block{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.faq-heading{ font-size: 32px; font-weight: 700; letter-spacing: 0.36px; color: var(--color-text-body); }
/* FAQは<details>で開閉する（JavaScriptなし。キーボード操作・読み上げにも対応） */
.faq-item{
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 8px;
  background: #fff;
}
.faq-q{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;   /* 標準の三角マークを消す（Firefox等） */
}
.faq-q::-webkit-details-marker{ display: none; }  /* 同上（Safari・旧Chrome） */
.faq-q:focus-visible{ outline: 2px solid var(--color-green); outline-offset: 2px; }
.faq-item .q-mark{ color: var(--color-orange); font-weight: 500; margin-right: 8px; }
.faq-item .chevron{ color: #999; transition: transform 0.2s ease; }
.faq-item[open] .chevron{ transform: rotate(180deg); }
.faq-a{
  margin: 0;
  padding: 0 32px 24px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-body);
}
.faq-a .a-mark{ color: var(--color-green); font-weight: 700; margin-right: 8px; }
@media (prefers-reduced-motion: reduce){
  .faq-item .chevron{ transition: none; }
}

/* ---------- OTHER SHOPPING MALL ---------- */
.mall-block{ text-align: center; }
.mall-title{
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #666;
  margin: 0 0 32px;
  font-weight: 600;
}
.mall-note{ font-size: 14px; color: #666; margin-top: 24px; }
.mall-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mall-grid a{
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mall-grid img{ height: 32px; width: auto; }

/* ---------- Cheeroのダンボーシリーズ ---------- */
.series-title{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #555;
  margin: 0 0 48px;
}
.series-card{
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  padding: 32px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
}
.series-card img{ border-radius: 12px; }
.series-card-title{ font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.series-card-eyebrow{ font-size: 13px; color: #888; margin: 0 0 4px; }
.series-card-text{ font-size: 14px; color: var(--color-text-body); margin: 0 0 24px; }
.series-card-ctas{ display: flex; gap: 12px; flex-wrap: wrap; }

.series-cta-block{
  text-align: center;
  padding: 64px 24px;
}
.series-cta-title{ font-size: 26px; font-weight: 700; color: var(--color-text-body); margin: 0 0 32px; }
.series-cta-buttons{ display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Cheeroって？ ---------- */
.about-block{
  background: var(--color-gray-bg);
  border-radius: var(--radius-card);
  padding: 64px 24px;
  text-align: center;
}
.about-title{ font-size: 28px; font-weight: 700; margin: 0 0 24px; }
.about-text{ font-size: 15px; color: var(--color-text-body); margin: 0 0 32px; }
.about-cta{ margin-bottom: 48px; }
.about-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card{
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
/* 商品写真は元画像が800x800の正方形。枠も1:1にそろえることで、
   上下が切り落とされずに全体が見える（発注者指示 2026-08-17）。 */
.about-card img{
  width: 100%;
  height: auto;   /* HTML側の height 属性を打ち消す。これが無いと縦だけ元画像の高さのまま残る */
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.about-card-body{
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.about-card-body h3{ font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.about-card-cat{ font-size: 12px; color: #767676; margin: 0 0 12px; }
.about-card-desc{ font-size: 13px; color: var(--color-text-body); margin: 0 0 16px; }
/* ボタンはカード下端でそろえる */
.about-card .btn-outline{ width: 100%; margin-top: auto; }

/* ---------- フッター ---------- */
.site-footer{
  background: var(--color-footer-bg);
  color: #fff;
  padding: 64px 24px 40px;
  text-align: center;
}
.footer-logo{
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 16px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img{ height: 32px; }
.footer-copy{ font-size: 11px; font-weight: 400; letter-spacing: 0.22px; opacity: 1; }

/* ---------- フローティングCTA ---------- */
.floating-cta{
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 999;
}
.floating-cta .btn{ padding: 12px 20px; font-size: 13px; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.floating-cta .btn-outline{ background: #fff; }

/* ============================================================
   タブレット（Studio: 840px）以下
   ============================================================ */
/* タブレット以下：Studioのタブレット幅 840px を境にする */
@media (max-width: 840px){
  .header-top{ height: 50px; padding: 0 16px; }
  .logo img{ height: 18px; width: 100px; }
  .header-title{ display: none; }
  .header-actions{ gap: 16px; }
  .header-action{ font-size: 13px; gap: 4px; }
  .header-action__icon{ width: 18px; height: 18px; }
  .header-action--menu{ font-size: 14px; gap: 8px; }
  .header-action__icon--menu{ width: 22px; height: 22px; }
  /* カテゴリ帯：cheero.shop のタブレット幅と同じ指定 */
  .category-nav{ padding: 10px 0; }
  .category-nav__list{ gap: 15px; padding: 0 20px; }
  .category-nav__item{ max-width: 130px; }
  .category-nav__icon{ width: 30px; height: 30px; }
  .category-nav__label{ margin-top: 10px; font-size: 13px; }
  .page-nav ul{ padding: 8px 20px; gap: 24px; justify-content: flex-start; }
  /* ヒーロー：Figma 55:1206実測＝白背景＋中央寄せ＋インライン商品写真 */
  .hero{
    background: none;
    background-color: #fff;
    padding: 40px 24px;
  }
  .hero-eyebrow{
    font-size: 13px;
    letter-spacing: 0.8px;
    text-align: center;
    margin: 0 0 20px;
  }
  .hero-eyebrow-break{ display: inline; }
  .hero-title{
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.8px;
    text-align: center;
    max-width: none;
    margin: 0 0 32px;
  }
  .hero-photo-wrap{ display: block; }
  /* 枠は 340×227（3:2）。スマホ用画像を切らずに全部出すための比率 */
  .hero-photo{
    display: block;
    width: 100%;
    max-width: 340px;
    height: 227px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 auto;
  }
  .hero-desc{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.25px;
    max-width: none;
    margin: 32px 0;
  }
  .hero-ctas{ flex-direction: column; gap: 16px; margin-bottom: 20px; }
  .hero-ctas .btn{ width: 100%; }
  .hero-malls-label{ text-align: center; color: var(--color-text-body); width: 100%; }
  .hero-malls{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
  }
  .hero-malls img{
    height: auto;
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
  }
  .section{ padding: 56px 16px; }
  .section-title{ font-size: 24px; }
  .container{ padding: 0 16px; }

  .intro-block,
  .cute-block,
  .spec-cards,
  .bt-block,
  .tips-block,
  .features-grid,
  .feature-row,
  .mall-grid{
    grid-template-columns: 1fr;
  }
  .intro-box{ padding: 40px; }
  .intro-block{ gap: 40px; }
  .cute-block img{ order: -1; }
  .tips-block img{ order: -1; }
  #features .feature-row:nth-child(odd) > .feature-item.has-media { order: 0; }

  .series-card{ grid-template-columns: 1fr; }
  .faq-block{ grid-template-columns: 1fr; }
  .faq-heading{ margin-bottom: 8px; }
  .faq-q{ padding: 20px; }
  .faq-a{ padding: 0 20px 20px; }

  .bt-block{ padding: 24px; }
  .bt-controls{ grid-template-columns: 1fr; }

  .spec-table th, .spec-table td{
    display: block;
    width: auto;
    padding: 12px 20px;
  }
  .spec-table tr{ display: block; padding: 8px 0; }
  .spec-table th{ padding-bottom: 4px; }

  .about-grid{ grid-template-columns: repeat(2, 1fr); }
  .mall-grid{ grid-template-columns: repeat(2, 1fr); }

  .floating-cta{ right: 12px; bottom: 12px; }
  .floating-cta .btn{ padding: 10px 14px; font-size: 12px; }
}

/* ============================================================
   モバイル（Studio: 540px）以下
   カテゴリ帯だけ、cheero.shop のスマホ幅と同じ指定にそろえる
   ============================================================ */
@media (max-width: 540px){
  .category-nav{ padding: 15px 0; }
  .category-nav__list{ gap: 10px; padding: 0 5px; }
  .category-nav__item{ max-width: 90px; }
  .category-nav__icon{ width: 20px; height: 20px; }
  /* 元サイトは7pxだが読みにくいため10pxに拡大（発注者指示 2026-08-17・折り返しは発生しないことを実測で確認） */
  .category-nav__label{ margin-top: 8px; font-size: 10px; }

  /* 右下のフローティングCTA：横並びのままだと実機のスマホ幅ではみ出すため、
     スマホでは「Smart Pro」と「TOP」の文字を隠して短くする（発注者指示 2026-08-17・案2）。
     display:none ではなく画面外に逃がすことで、文字は読み上げソフトには残る＝
     ボタンの意味が伝わらなくなるのを防ぐ。「Smart Pro」は商品名なので
     PC・タブレットではそのまま表示する。 */
  .floating-cta .cta-long{
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}
