@charset "UTF-8";
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #2bb673;
  text-decoration: underline;
}
a:visited {
  color: #888888;
}

/*
//  モバイルファースト設計
//  - $breakpoint-sm: スマホ下限（参考用）
//  - $breakpoint-md: タブレット
//  - $breakpoint-lg: PC
//

$breakpoint-sm: 576px;
$breakpoint-md: 768px;
$breakpoint-lg: 1024px;

@mixin respond-sm {
  @media (min-width: $breakpoint-sm) {
    @content;
  }
}
@mixin respond-md {
  @media (min-width: $breakpoint-md) {
    @content;
  }
}
@mixin respond-lg {
  @media (min-width: $breakpoint-lg) {
    @content;
  }
}

// Breakpoints（必要に応じて）
$bp-md: 768px;
$bp-lg: 1024px;
$bp-xl: 1280px;
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: #111;
}

body {
  font-size: var(--font-size-base);
  color: var(--font-color);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1em;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

input,
textarea,
select {
  border: 1px solid #ccc;
  padding: 0.5em;
  border-radius: 4px;
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  padding: 0.5em 1em;
  border-radius: 4px;
  background: var(--btn-bg, #000);
  color: var(--btn-text, #fff);
}

button:hover {
  opacity: 0.85;
}

/* ==============================
 📊 Table（基本テーブルスタイル）
==============================

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border: 1px solid #ccc;
  padding: 0.75em;
  text-align: left;
}

th {
  background-color: #f9f9f9;
  font-weight: bold;
}
*/
/*! ==================================================
🚀 ヒーローセクション
====================================================== */
/* foundation呼び込み */
/* 🎯 ヒーロー全体 */
.hero {
  width: 100%;
  background: #fff;
  padding: 0;
}

/* 📦 ヒーローコンテナ */
.l-container--hero {
  width: 100%;
  background: #fff;
  font-size: 15px;
  line-height: 1.7;
  box-sizing: border-box;
}

/* 🏷️ 日付＋カテゴリ並び */
.hero--date-category-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

/* 🗓 更新日（メタ） */
.hero--date {
  font-size: 13px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}

/* 🏷 カテゴリラベル */
.hero--category {
  display: inline-flex;
  align-items: center;
  background-color: #2bb673;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

/* 📰 タイトル */
.hero--title {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 26px;
}

/* 🏷 キーワード群（Sakidori風） */
.hero--keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  row-gap: 4px;
  align-items: baseline;
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #888888;
}

/* 🔠 キーワード（li要素） */
.hero--keywords li {
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  white-space: nowrap;
  line-height: 1.6;
  color: inherit;
  font-size: 13px;
}

/* ➗ スラッシュ区切りバリエーション */
.hero--keywords--slash {
  gap: 0;
}
.hero--keywords--slash li + li::before {
  content: "/";
  margin: 0 8px;
  color: #888888;
}

/* 🔗 キーワードリンク（初期状態） */
.hero--keywords a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

/* 📌 訪問済みも色は変えない（foundationと整合） */
.hero--keywords a:link,
.hero--keywords a:visited,
.hero--keywords a.is-visited {
  color: inherit;
  border-color: transparent;
}

/* ✨ ホバー／フォーカス／アクティブ */
.hero--keywords a:hover,
.hero--keywords a:focus,
.hero--keywords a:active {
  color: #2bb673;
  border-color: #2bb673;
}

/* 🖼 画像ブロック */
.hero--image {
  position: relative;
  margin-bottom: 8px;
}

/* 🖼 画像本体 */
.hero--image-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 📝 画像クレジット */
.hero--image-credit {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 12px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 3px;
}

/* 📝 リード文 */
.hero--lead {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
  margin-top: 8px;
}

/* 📱 レスポンシブ補助 */
@media (max-width: 1024px) {
  .hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    padding-inline: 16px;
  }
  /* 🏷 日付＋カテゴリ並び */
  .hero--meta-label-wrap {
    gap: 8px;
  }
  /* 🗓 メタ */
  .hero--date {
    font-size: 13px;
  }
  /* 🏷 カテゴリラベル */
  .hero--category {
    font-size: 13px;
    padding: 4px 8px;
  }
/* 📰 タイトル */
.hero--title {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  font-size: 22px;
}
  /* 🔖 タグ群 */
  .hero--keywords {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    gap: 8px;
    justify-content: flex-start;
  }
  /* 🔖 タグ（li要素） */
  .hero--keywords li {
    font-size: 13px;
  }
	/* 📝 リード文 */
.hero--lead {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin-top: 8px;
}
}
/*! ==================================================
🚀 ボタンセクション
====================================================== */
/* 🔘 CTAボタン */
.btn--primary {
  background: var(--btn-bg, #000);
  color: var(--btn-text, #fff);
  padding: 6px 4px;
  width: 90px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s;
}

.btn--primary:hover {
  background: #333;
}

/*! ==================================================
🚀 カードセクション
====================================================== */
/*! ==================================================
🚀 比較表セクション
====================================================== */
/* 📦 比較表：全体ラッパー */
.compare-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 📊 表本体 */
.compare-table {
  --font-size-compare-base: 11px;
  --font-color-compare: #111;
  --row-stripe-compare: #f8f8f8;
  --cell-padding-compare: 6px;
  --cell-gap-compare: 6px;
  --cell-width-compare: 100px;
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-compare-base);
  color: var(--font-color-compare);
  width: 100%;
  min-width: 1000px; /* スマホ用でも幅を保持 */
}

/* 📦 行（商品ごと） */
.compare-row {
  display: flex;
}

/* 🎨 ストライプ背景（奇数行をグレー） */
/*.compare-row:nth-child(odd) .compare-cell,
.compare-row--header:nth-child(odd) .compare-cell {
  background-color: var(--row-stripe);
} */
/* 📦 セル（共通） */
.compare-cell {
  width: var(--cell-width-compare);
  min-width: var(--cell-width-compare);
  max-width: var(--cell-width-compare);
  padding: var(--cell-padding-compare);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--cell-gap-compare);
  background-color: #fff;
  border: 0.5px solid #ddd;
  word-break: break-word;
}

/* 🧱 ヘッダー行 */
.compare-row--header {
  display: flex;
  width: 100%;
  font-weight: bold;
}

/* 🖼 画像セル */
.compare-cell--image {
  background-color: #fff;
}

/*📌 ラベル列（1列目） */
.compare-cell--label {
  position: sticky;
  left: 0;
  background-color: var(--row-stripe-compare);
  z-index: 1;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 🔗 リンクセル（中央寄せ＋余白） */
.compare-cell--link {
  justify-content: center;
  text-align: center;
  padding: 8px 0;
}

/* 🔘 CTAボタン */
.compare-cell--btn-official a {
  display: block;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 11px;
  min-width: 90px;
  text-align: center;
  white-space: nowrap;
  transition: 0.1s;
  font-weight: bold;
  margin: 0;
}

.compare-cell--btn-official a:hover {
  background: #555;
}

.compare-cell--btn-official {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 📱 スマホ表示最適化 */
@media (max-width: 768px) {
  .compare-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    box-sizing: border-box;
  }
  .compare-table {
    font-size: 11px;
  }
  .compare-row {
    min-width: 1000px;
  }
}
/*! ==================================================
🚀 FAQセクション
====================================================== */
/*! ==================================================
🚀 目次セクション
====================================================== */
.unicon-toc {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
  margin: 32px 0;
}
.unicon-toc h2 {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 16px;
}
.unicon-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unicon-toc ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  line-height: 1;
}
.unicon-toc .toggle-btn {
  margin-top: 16px;
  text-align: center;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.unicon-list .toggle-item {
  display: none;
}

@media screen and (max-width: 768px) {
  .unicon-toc {
    padding-left: 16px;
    padding-right: 16px;
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
}
/*! ==================================================
🚀 サイドバーセクション
====================================================== */
/*! ==================================================
🚀 フィルターセクション
====================================================== */
.filter-bar-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 16px;
  padding: 0 12px;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-sizing: border-box;
}

.filter-bar-wrapper::-webkit-scrollbar {
  display: none;
}

.filter-bar {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 5px;
  padding: 0;
  margin: 0;
  min-width: -moz-max-content;
  min-width: max-content;
  box-sizing: border-box;
}

/* 🔘 ボタン基本スタイル */
.filter-bar button {
  flex: 0 0 auto;
  padding: 5px 10px;
  font-size: 11.5px;
  background: #ffffff;
  color: #111111;
  border: 0.5px solid #cccccc;
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* 🖱️ ホバー時 */
.filter-bar button:hover {
  background: #f0f0f0;
  border-color: #999999;
}

/* ✅ 選択中ボタン */
.filter-bar button.selected {
  background: #dddddd;
  border-color: #999999;
  font-weight: bold;
}

/*! ==================================================
🚀 商品カードセクション
====================================================== */
.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 20px;
  margin: 20px 0;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 500px) {
  .product-card {
    font-size: 13px;
    padding: 16px;
  }
}

.product-header {
  text-align: center;
  margin-bottom: 1em;
}

.product-image-wrapper {
  width: 100%;
  max-width: 360px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  overflow: hidden;
  background-color: #fff;
  margin: 0;
}
@media (max-width: 500px) {
  .product-image-wrapper {
    margin: 0 auto;
  }
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 500px) {
  .product-image {
    height: auto;
  }
}

.product-tags {
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  background: #e0f3ff;
  color: #0077cc;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  margin: 2px;
  border-radius: 4px;
}

.product-btn {
  display: inline-block;
  background: var(--btn-bg);
  color: white;
  font-weight: bold;
  padding: 20px 80px;
  font-size: 14px;
  border-radius: 9999px;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}
.product-btn:hover {
  background: #555;
  color: white;
}
@media (max-width: 500px) {
  .product-btn {
    font-size: 15px;
    padding: 10px 16px;
  }
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
  font-size: 13.5px;
}
.product-table th,
.product-table td {
  border: 0.5px solid #ddd;
  padding: 8px 10px;
  vertical-align: top;
}
.product-table th {
  background: #f8f8f8;
  font-weight: bold;
  color: #333;
  width: 40%;
  text-align: left;
}

.point-box {
  border-radius: 0;
  padding: 10px 14px;
  margin: 12px 0;
}
.point-box.good {
  background: #E8FCF0;
  border-left: 4px solid #3ECB76;
}
.point-box.bad {
  background: #FFF7F2;
  border-left: 4px solid #F56D6D;
}

.product-desc p {
  margin-bottom: 0.8em;
}

.product-hero-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0.3em 0 12px;
  text-align: left;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-btn {
  padding: 6px 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.color-btn:hover {
  background: #f0f0f0;
}
.color-btn.selected {
  background: #ddd;
  color: #333;
}

/*
// ==============================
// 📏 Utility｜Spacing（余白）
// ==============================
.u-mt-8  { margin-top: $space-8 !important; }
.u-mt-10 { margin-top: $space-10 !important; }
.u-mt-16 { margin-top: $space-16 !important; }
.u-mt-24 { margin-top: $space-24 !important; }

.u-mb-8  { margin-bottom: $space-8 !important; }
.u-mb-10 { margin-bottom: $space-10 !important; } // ←主力
.u-mb-16 { margin-bottom: $space-16 !important; }
.u-mb-24 { margin-bottom: $space-24 !important; }

.u-pt-8  { padding-top: $space-8 !important; }
.u-pt-10 { padding-top: $space-10 !important; }
.u-pt-16 { padding-top: $space-16 !important; }
.u-pt-24 { padding-top: $space-24 !important; }

.u-p-8  { padding: $space-8 !important; }
.u-p-10 { padding: $space-10 !important; }
.u-p-16 { padding: $space-16 !important; }
.u-p-24 { padding: $space-24 !important; }

.u-my-10 { margin-top: $space-10 !important; margin-bottom: $space-10 !important; }
.u-mx-10 { margin-left: $space-10 !important; margin-right: $space-10 !important; }
.u-py-10 { padding-top: $space-10 !important; padding-bottom: $space-10 !important; }
.u-px-10 { padding-left: $space-10 !important; padding-right: $space-10 !important; }

.u-mx-auto { margin-left: auto; margin-right: auto; }
*/
/*
// ==============================
// 🟢 Text Utility（文字整列・サイズ・色）
// ==============================

.u-text-center   { text-align: center; }
.u-text-left     { text-align: left; }
.u-text-right    { text-align: right; }

.u-text-sm       { font-size: 0.875rem; }  // 14px
.u-text-lg       { font-size: 1.125rem; }  // 18px

.u-font-bold     { font-weight: bold; }
.u-font-light    { font-weight: 300; }

.u-text-muted    { color: #999; }
.u-text-gray     { color: #666; }
*/
/*
// ==============================
// 🔵 Display Utility（表示制御）
// ==============================

.u-block         { display: block; }
.u-inline        { display: inline; }
.u-inline-block  { display: inline-block; }
.u-hidden        { display: none !important; }

// ----- レスポンシブ表示制御（モバイルファースト） -----

@media (min-width: 768px) {
  .u-md-block   { display: block !important; }
  .u-md-hidden  { display: none !important; }
}

@media (min-width: 1024px) {
  .u-lg-block   { display: block !important; }
  .u-lg-hidden  { display: none !important; }
}
*/
/*
// ==============================
// 🟣 Layout Utility（幅・配置）
// ==============================

.u-w-full            { width: 100%; }
.u-max-w-600         { max-width: 600px; margin-left: auto; margin-right: auto; }

.u-max-w-screen-sm   { max-width: 640px; }
.u-max-w-screen-md   { max-width: 768px; }
*/
/*
// ==============================
// 🟠 Decoration Utility（装飾・背景）
// ==============================

.u-rounded     { border-radius: 4px; }

.u-shadow-sm   { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.u-shadow-md   { box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); }

.u-border      { border: 1px solid #e0e0e0; }
.u-bg-light    { background-color: #f9f9f9; }
*/