@charset "utf-8";
/*
Theme Name: SERUM Child
Template: serum_tcd096
*/

iframe {
  width: 100%;
}

/* PC表示（幅992px以上）の時、強制的にメニューを表示する修正 */
@media screen and (min-width: 992px) {
  /* ハンバーガーボタンを消す */
  #drawer_menu_button {
    display: none !important;
  }
  /* PC用メニューを表示する */
  #global_menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.open_header #side_icon_button {
    display: block;
    background-color: #fff;
  }
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* --------------------------------------------------
   LINEボタンのデザイン（画像不要版）
   -------------------------------------------------- */
.header-line-banner {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
}

/* ボタン本体のデザイン */
.header-line-banner .line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background-color: #06c755;
  color: #fff;

  font-size: 16px;
  font-weight: bold;
  text-decoration: none;

  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  border-radius: 50px;

  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  transition: all 0.3s ease;
  line-height: 1.4;
}

/* マウスを乗せた時の動き */
.header-line-banner .line-btn:hover {
  background-color: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
  opacity: 1;
}

/* --------------------------------------------------
   トップページ：買取品目一覧のデザイン
   -------------------------------------------------- */
.customColumn {
  height: 85px !important;
  background-color: #1b1a50;
}
.customColumn .bg_image {
  display: none;
}
.custom_genre_list .genre_item .clearfix::after {
  content: none !important;
}
.top-concept {
  margin: 40px 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}
.cb_content_wrap h2 {
  text-align: center;
  margin: 3rem 0;
  color: #c9a063;
}
.custom_genre_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

/* カード全体のデザイン */
.custom_genre_list .genre_item {
  display: flex;
  align-items: center;
  width: 33%;
  border: 1px solid #eee;
  padding: 15px;
  text-decoration: none;
  color: #333;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  box-sizing: border-box;
  border-radius: 5px;
}

/* ホバー時の動き */
.custom_genre_list .genre_item:hover {
  opacity: 0.8;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* 画像エリア */
.custom_genre_list .genre_item .img_box {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
}

/* 画像（丸くする） */
.custom_genre_list .genre_item .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* テキストエリア */
.custom_genre_list .genre_item .txt_box h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

/* ------------------------- */
/* お客様の声 */
/* ------------------------- */
.post_content h2 {
  margin: 0 0 2rem 0;
  text-align: left;
  padding: 10px 10px 5px 10px;
  background-color: #f6f6f6;
  border-left: 7px solid #cda435;
  border-bottom: none !important;
}
/* ------------------------- */
/* レスポンシブ */
/* ------------------------- */
@media screen and (max-width: 768px) {
  .custom_genre_list {
    width: 100%;
  }
  .custom_genre_list .genre_item {
    display: block;
    padding: 15px 3px;
    text-align: center;
  }
  .custom_genre_list .genre_item .img_box {
    margin: 0 auto 10px auto;
  }
  .custom_genre_list .genre_item .txt_box h3 {
    font-size: 15px;
  }
}

/* ------------------------------------------ */
/* 親テーマにあった追加CSS */
/* ------------------------------------------ */
/* テーブル全体 */
table.inquiry {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  table-layout: fixed;
  word-wrap: break-word;
}

/* セル共通 */
table.inquiry th,
table.inquiry td {
  border: 1px solid #ddd;
  padding: 12px;
  vertical-align: middle;
}

/* 見出しセル */
table.inquiry th {
  background-color: #f9f9f9;
  text-align: left;
  width: 35%;
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

/* 入力セル */
table.inquiry td {
  background-color: #f3f5f7;
}

/* 入力フィールド */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 15px;
  background-color: #f3f5f7;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #333;
  transition: border-color 0.3s ease;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* フォーカス時 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: #8ab4f8;
  outline: none;
}

/* テキストエリア調整 */
textarea {
  height: 140px;
  resize: vertical;
}

/* 必須/任意 ラベル */
.haveto,
.any {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
  color: #fff;
  vertical-align: middle;
}

.haveto {
  background-color: #f28b82;
}

.any {
  background-color: #8ab4f8;
}

/* 中央寄せ用クラス */
.center,
center {
  text-align: center;
  margin-top: 20px;
}

/* 送信ボタン */
#formbtn {
  background-color: #8ab4f8;
  color: #fff;
  padding: 12px 30px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

#formbtn:hover {
  background-color: #7aa3e6;
}

/* reCAPTCHA説明など */
small {
  font-size: 12px;
  color: #666;
  display: block;
  margin-top: 10px;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  table.inquiry th,
  table.inquiry td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  table.inquiry th {
    border-bottom: none;
    font-size: 14px;
    padding: 8px 10px;
  }

  table.inquiry td {
    font-size: 14px;
    padding: 10px;
  }

  #formbtn {
    width: 100%;
    font-size: 16px;
  }
}

/* ボタンを完全に中央に寄せる */
#formbtn {
  display: block;
  margin: 20px auto 40px; /* ← 下に余白追加（40px） */
  background-color: #8ab4f8;
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

/* ホバー時の色変化 */
#formbtn:hover {
  background-color: #7aa3e6;
}

/* reCAPTCHAまわりの説明文も中央寄せ */
center small,
center p {
  text-align: center;
  margin-top: 16px;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 22px;
  color: #c9a063;
  margin-top: 40px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

h3 {
  font-size: 18px;
  margin-top: 20px;
  color: #555;
}

.box {
  background-color: #fdf8f1;
  padding: 20px;
  border: 1px solid #e0d2b8;
  border-radius: 8px;
  margin-bottom: 30px;
}

.tag {
  display: inline-block;
  background-color: #c9a063;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* マップ */
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px auto; /* 上0、左右auto、下20px */
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

/* ========= 買取品目 ========== */
:root {
  --accent: #bfa37a;
  /* ベージュ寄りのアクセント色 */
  --text: #222;
  --muted: #666;
  --border: #e8e6e3;
  --card-bg: #fff;
}

.buy-items {
  background: #fff;
}

.buy-items__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
}

/* 見出し・リード */
.buy-items__eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.buy-items__title {
  margin: 0 0 12px;
  line-height: 1.2;
}

.buy-items__lead {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 24px;
}

/* グリッド */
.buy-items__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .buy-items__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .buy-items__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* カード */
.buy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  height: 100%;
}

/* aタグを入れる場合のための配慮（入ってなくても崩れない） */
.buy-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.buy-card:hover,
.buy-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #ded9d2;
}

/* 画像＋キャプション */
.buy-card figure {
  margin: 0;
  display: grid;
  grid-template-rows: auto min-content;
  height: 100%;
}

.buy-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center; /* ← 画像の中央を表示する */
  background: #f6f5f3;
}

.buy-card figcaption {
  text-align: center;
  font-weight: 500;
  color: var(--text);
  padding: 12px 10px;
  line-height: 1.4;
}

/* 注記 */
.buy-items__note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* アクセシビリティ */
.buy-card a:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--accent) 60%, white);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ダークモード軽い対応（必要な場合） */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #f2f2f2;
    --muted: #b6b6b6;
    --border: #3a3a3a;
    --card-bg: #191919;
  }
  .buy-items {
    background: #0f0f0f;
  }
  .buy-card {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  .buy-card:hover,
  .buy-card:focus-within {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
  }
}
/* 追記：キャプションをしっかりセンターに */
.buy-card figure {
  display: flex; /* ← gridからflexにすると誤差が出にくい */
  flex-direction: column;
  height: 100%;
  margin: 0; /* 念のためリセット */
}

.buy-card figcaption {
  margin: 0; /* ブラウザ既定のマージンを打消し */
  display: flex;
  align-items: center; /* 垂直センター */
  justify-content: center; /* 水平センター */
  text-align: center;
  padding: 14px 12px;
  min-height: 52px; /* 行高差が出ても見た目を揃える */
  line-height: 1.4;
}

.buy-card .price {
  display: block;
  font-weight: bold;
  color: #c82d2d;
  font-size: 1.2em;
  margin-top: 4px;
}

.buy-card figure {
  margin: 0;
}

.buy-card figcaption {
  padding: 10px 0;
}

.item-title {
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px; /* 上段と下段の間隔 */
}

.item-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c82d2d;
}

/* 画像とキャプションの2段構造を安定させる */
.buy-card figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* キャプション帯 */
.buy-card .cap {
  display: flex;
  flex-direction: column;
  gap: 6px; /* 上段と下段の間隔 */
  padding: 12px 16px;
  background: #fff; /* 白い帯 */
}

/* 上段：商品タイトル */
.buy-card .cap-top {
  font-size: 12px;
  font-weight: 800;
  color: #222;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* タイトルが長い時に「…」 */
}

.grecaptcha-badge {
  visibility: hidden;
}

#return_top {
  display: none !important;
}

/* --------------------------------------------------
   オウンドメディア アーカイブ用カスタムCSS
   -------------------------------------------------- */

/* 2カラムレイアウトの外枠 */
.om-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* メインカラム（左） */
.om-main {
  width: 70%; /* 左側を広く */
}

/* 見出しエリア */
.om-heading-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
.om-heading-area h2 {
  font-size: 24px;
  color: #333;
  margin: 0;
  font-weight: bold;
}
.om-count {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.om-heading-line {
  border: none;
  border-top: 2px solid #ddd;
  margin-bottom: 30px;
}

/* 記事カード */
.om-card {
  display: flex; /* 横並びにする */
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.om-card-img-link {
  width: 35%; /* 画像の幅 */
  flex-shrink: 0;
  margin-right: 25px;
  display: block;
}
.om-card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.om-card-img::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  z-index: 0;
  opacity: 0;
}
.om-card-img.is-portrait::before {
  opacity: 1;
}
.om-card-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.om-card-img.is-portrait img {
  object-fit: contain;
}
.om-card-body {
  flex: 1;
}

/* メタ情報（日付・カテゴリラベル） */
.om-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-direction: row-reverse; /* 日付を右、カテゴリを左にするため */
}
.om-date {
  font-size: 14px;
  color: #666;
}
.om-cat-label {
  background: #6cbf6c; /* デフォルトの緑 */
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  font-weight: bold;
}

/* タイトルと抜粋 */
.om-card-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.5;
}
.om-card-title a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.om-card-title a:hover {
  color: #c9a063;
}
.om-card-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .om-card-excerpt {
    display: none;
  }
}
/* -------------------------------------------
   サイドバー：人気記事リスト
   ------------------------------------------- */
.om-pop-list {
  list-style: none;
  padding: 15px; /* ボックス内の余白 */
  margin: 0;
  background: #fff;
}

/* リストアイテム（カード） */
.om-pop-item {
  margin-bottom: 20px;
  border-bottom: 1px dashed #eee; /* 区切り線 */
  padding-bottom: 15px;
}
.om-pop-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* リンク全体 */
.om-pop-item a {
  display: flex;
  text-decoration: none;
  color: #333;
  gap: 15px; /* 画像とテキストの間隔 */
  align-items: flex-start;
}
.om-pop-item a:hover {
  opacity: 0.7;
}

/* サムネイル画像エリア */
.om-pop-img {
  width: 90px; /* 画像の幅 */
  flex-shrink: 0;
}
.om-pop-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* 画像比率 */
  object-fit: cover;
  border-radius: 4px;
}

/* テキスト情報エリア */
.om-pop-info {
  flex: 1;
}

/* カテゴリラベル（小さい版） */
.om-pop-cat {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  background-color: #00bfa5; /* 宝石グリーン系の色 */
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 5px;
  vertical-align: top;
}

/* タイトル */
.om-pop-title {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  font-weight: bold;
  color: #333;
}
/* サイドバー（右） */
.om-sidebar {
  width: 28%; /* 右側の幅 */
  background: #fff;
}
.om-sidebar-box {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee; /* 薄い枠線をつける場合 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.om-side-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
  color: #333;
}

/* サイドバーのカテゴリリスト */
.om-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.om-cat-item {
  margin-bottom: 5px;
}
.om-cat-item a {
  display: block;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  transition: opacity 0.3s;
}
.om-cat-item a:hover {
  opacity: 0.8;
}
/* 矢印アイコン（疑似要素） */
.om-cat-item a::after {
  content: "›"; /* または右矢印アイコン */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg); /* 必要なら回転 */
  font-family: Arial, sans-serif;
}

/* ▼ カテゴリの色分け（順番指定） */
/* お好みの色に変更してください。添付画像を参考に並べています */
.om-cat-item:nth-child(1) a {
  background-color: #cda435;
} /* 金・貴金属 */
.om-cat-item:nth-child(2) a {
  background-color: #00bfa5;
} /* 宝石 */
.om-cat-item:nth-child(3) a {
  background-color: #42a5f5;
} /* バッグ */
.om-cat-item:nth-child(4) a {
  background-color: #9ccc65;
} /* 財布 */
.om-cat-item:nth-child(5) a {
  background-color: #c62828;
} /* 服 */
.om-cat-item:nth-child(6) a {
  background-color: #4caf50;
} /* 時計 */
.om-cat-item:nth-child(7) a {
  background-color: #ff9800;
} /* 切手 */
.om-cat-item:nth-child(8) a {
  background-color: #795548;
} /* 金券 */
.om-cat-item:nth-child(9) a {
  background-color: #b388ff;
} /* コイン */
.om-cat-item:nth-child(10) a {
  background-color: #007bff;
} /* 古銭 */
.om-cat-item:nth-child(11) a {
  background-color: #e91e63;
} /* スマホ */
.om-cat-item:nth-child(12) a {
  background-color: #607d8b;
} /* その他 */

/* スマホ対応（レスポンシブ） */
@media screen and (max-width: 768px) {
  .om-container {
    flex-direction: column; /* 縦並びにする */
    gap: 30px;
  }
  .om-main,
  .om-sidebar {
    width: 100%;
  }
  .om-card-meta {
    flex-direction: row;
  }
}
/* --------------------------------------------------
   PICK UP セクション（スライダー）
   -------------------------------------------------- */
.om-pickup-section {
  background-color: #f5f5f7; /* 薄いグレー背景 */
  padding: 40px 0 60px;
  width: 100%;
}
.om-pickup-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.om-pickup-header {
  margin-bottom: 25px;
}
.om-pickup-heading {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a50; /* 濃い紺色 */
  letter-spacing: 0.05em;
  margin: 0;
}
.om-pickup-heading .sub {
  font-size: 14px;
  color: #666;
  margin-left: 15px;
  font-weight: normal;
}

/* スライダー本体（横スクロールコンテナ） */
.om-pickup-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* 横スクロールを有効に */
  padding-bottom: 20px; /* スクロールバーのための余白 */
  scroll-snap-type: x mandatory; /* スクロール位置をカードに合わせる */
  -webkit-overflow-scrolling: touch; /* iOSでの慣性スクロール */
}
/* スクロールバーを隠す（見た目を綺麗にするため） */
.om-pickup-slider::-webkit-scrollbar {
  height: 6px;
}
.om-pickup-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.om-pickup-slider::-webkit-scrollbar-track {
  background: transparent;
}

/* PICK UP カード */
.om-pickup-card {
  flex: 0 0 280px; /* カードの幅を固定 */
  background: #fff;
  border-radius: 8px; /* 角丸 */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* ふんわりした影 */
  text-decoration: none;
  color: #333;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  scroll-snap-align: start; /* スクロールのスナップ位置 */
}

.om-pickup-card:hover {
  transform: translateY(-5px); /* ホバー時に少し浮く */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 画像エリア */
.om-pickup-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.om-pickup-img-box::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  z-index: 0;
  opacity: 0;
}
.om-pickup-img-box.is-portrait::before {
  opacity: 1;
}
.om-pickup-img-box img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.om-pickup-img-box.is-portrait img {
  object-fit: contain;
}
/* カテゴリラベル（画像左上） */
.om-pickup-cat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #555; /* デフォルト色（後ほどJS等で変えるか、CSSで指定） */
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 12px;
  border-bottom-right-radius: 4px;
}

/* テキストエリア */
.om-pickup-body {
  padding: 15px;
}
.om-pickup-date {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  font-weight: bold;
}
.om-pickup-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 12px 0;
  height: 3em; /* 2行分確保 */
  overflow: hidden;
  color: #222;
}

/* ハッシュタグ */
.om-pickup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.om-tag {
  font-size: 11px;
  color: #666;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .om-pickup-card {
    flex: 0 0 85%; /* スマホでは画面の85%の幅に */
  }
  .om-pickup-heading {
    font-size: 20px;
  }
  .om-pickup-heading .sub {
    display: block;
    margin-left: 0;
    margin-top: 5px;
    font-size: 12px;
  }
} /* -------------------------------------------
   記事ヘッダー周り（タイトル・日付など）
   ------------------------------------------- */
.om-single-header {
  margin-bottom: 30px;
}
.om-single-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
}
/* カテゴリラベル */
.om-single-cat {
  background-color: #cda435; /* ゴールド色 */
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 15px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.om-single-cat:hover {
  opacity: 0.8;
}
/* 日付 */
.om-single-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
/* 記事タイトル */
.om-single-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  margin: 0 0 15px 0;
}
/* タグ（#ハッシュタグ） */
.om-single-tags {
  margin-bottom: 20px;
}
.om-tag-text {
  display: inline-block;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin-right: 15px;
}
/* タイトル下の区切り線 */
.om-single-line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0 30px;
}

/* アイキャッチ画像 */
.om-single-thumbnail {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 40px;
  background-size: cover;
  background-position: center;
}
.om-single-thumbnail::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  z-index: 0;
  opacity: 0;
}
.om-single-thumbnail.is-portrait::before {
  opacity: 1;
}
.om-single-thumbnail img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.om-single-thumbnail.is-portrait img {
  object-fit: contain;
}

/* -------------------------------------------
   監修者ボックス
   ------------------------------------------- */
.om-supervisor-box {
  display: flex;
  align-items: flex-start;
  background-color: #f9f9f9; /* 薄いグレー背景 */
  border: 1px solid #e0e0e0;
  padding: 30px;
  margin-bottom: 50px;
  gap: 25px;
  border-radius: 4px;
}
.om-supervisor-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  flex-shrink: 0;
}
.om-supervisor-img {
  width: 80px;
  height: 80px;
  margin: 0 0 10px 0;
  border-radius: 50%; /* 丸くする */
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.om-supervisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.om-supervisor-label {
  font-size: 11px;
  color: #888;
  text-align: center;
  display: block;
}
.om-supervisor-info {
  flex: 1;
}
.om-supervisor-career {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
}
.om-supervisor-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px 0;
  border-bottom: none;
  color: #222;
}
.om-supervisor-name .kana {
  font-size: 13px;
  font-weight: normal;
  margin-left: 8px;
  color: #666;
}
.om-supervisor-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* -------------------------------------------
   記事本文のスタイル (.post_content)
   ------------------------------------------- */
.post_content {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 60px;
}
/* 見出し H2（下線付きのデザイン） */
.post_content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 50px 0 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #cda435; /* ゴールドの下線 */
  color: #222;
}
/* 見出し H3（左線付きのデザイン） */
.post_content h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 5px solid #cda435;
  color: #333;
}
/* 見出し H4 */
.post_content h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 15px;
  color: #333;
}
/* 段落 */
.post_content p {
  margin-bottom: 2em;
}
/* 太字（蛍光マーカー風） */
.post_content strong,
.post_content b {
  background: linear-gradient(transparent 60%, #fff9c4 60%);
  font-weight: bold;
}

/* -------------------------------------------
   価格推移チャート（Chart.js）用
   ------------------------------------------- */
.gold-chart-container {
  background: #fff;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-family: "Hiragino Sans", sans-serif;
}
.chart-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
}
.chart-update {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
}
.chart-wrapper {
  position: relative;
  height: 350px;
  width: 100%;
}
.chart-controls {
  margin-top: 25px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.control-label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
  color: #333;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.checkbox-group label {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: 0.2s;
}
.checkbox-group label:hover {
  background: #eee;
}
.checkbox-group input[type="checkbox"] {
  transform: scale(1.1);
}

/* -------------------------------------------
   サイドバー（右側：カテゴリリスト）
   ------------------------------------------- */
.om-sidebar-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 0;
  margin-bottom: 30px;
}
.om-side-title {
  font-size: 16px;
  font-weight: bold;
  padding: 15px 20px;
  margin: 0;
  background: #f9f9f9;
  border-bottom: 1px solid #e5e5e5;
  color: #333;
}
.om-cat-list {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.om-cat-item {
  margin-bottom: 5px;
}
.om-cat-item a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  border-radius: 3px;
  position: relative;
  transition: opacity 0.3s;
}
.om-cat-item a:hover {
  opacity: 0.85;
}
/* 矢印アイコン（右側） */
.om-cat-item a::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-53%) rotate(90deg);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

/* カテゴリ色設定（上から順に） */
.om-cat-item:nth-child(1) a {
  background-color: #cda435;
} /* 金・貴金属 */
.om-cat-item:nth-child(2) a {
  background-color: #00bfa5;
} /* 宝石 */
.om-cat-item:nth-child(3) a {
  background-color: #42a5f5;
} /* バッグ */
.om-cat-item:nth-child(4) a {
  background-color: #9ccc65;
} /* 財布 */
.om-cat-item:nth-child(5) a {
  background-color: #c62828;
} /* 服 */
.om-cat-item:nth-child(6) a {
  background-color: #4caf50;
} /* 時計 */
.om-cat-item:nth-child(7) a {
  background-color: #ff9800;
} /* 切手 */
.om-cat-item:nth-child(8) a {
  background-color: #795548;
} /* 金券 */
.om-cat-item:nth-child(9) a {
  background-color: #b388ff;
} /* コイン */
.om-cat-item:nth-child(10) a {
  background-color: #007bff;
} /* 古銭 */
.om-cat-item:nth-child(11) a {
  background-color: #e91e63;
} /* スマホ */
.om-cat-item:nth-child(12) a {
  background-color: #607d8b;
} /* その他 */

/* -------------------------------------------
   レスポンシブ対応（スマホ画面）
   ------------------------------------------- */
@media screen and (max-width: 900px) {
  .om-container {
    flex-direction: column; /* 縦並びにする */
    padding: 0 15px;
    gap: 40px;
    margin: 20px auto;
  }
  .om-main,
  .om-sidebar {
    width: 100%;
  }
  /* ヘッダー周り */
  .om-single-title {
    font-size: 20px;
  }
  .om-single-meta-top {
    margin-bottom: 10px;
  }
  .om-single-cat {
    font-size: 11px;
    padding: 4px 10px;
  }
  .om-single-date {
    font-size: 12px;
  }
  /* 監修者 */
  .om-supervisor-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .om-supervisor-profile {
    width: auto;
  }
  .om-supervisor-desc {
    text-align: left; /* 説明文は読みやすく左寄せ */
  }
  /* 本文 */
  .post_content {
    font-size: 15px;
  }
  .post_content h2 {
    font-size: 20px;
  }
  /* チャート */
  .chart-wrapper {
    height: 250px;
  }
}
/* -------------------------------------------
   目次（Table of Contents）のデザイン
   ------------------------------------------- */
/* 目次全体の外枠 */
#toc_container {
  background: #fcfcfc; /* 背景色：ほぼ白 */
  border: 1px solid #ddd; /* 薄いグレーの枠線 */
  border-radius: 4px; /* 角丸 */
  padding: 20px 30px; /* 内側の余白 */
  margin: 30px 0 50px 0; /* 外側の余白 */
  display: block; /* 横幅いっぱいに広げる */
  width: 100%;
  box-sizing: border-box;
}

/* 「目次」というタイトル文字 */
.toc_title {
  text-align: center; /* 中央寄せ */
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

/* タイトルの下にゴールドの短い線を引く */
.toc_title::after {
  content: "";
  display: block;
  width: 60px; /* 線の長さ */
  height: 3px; /* 線の太さ */
  background-color: #cda435; /* ゴールド色 */
  margin: 10px auto 0; /* 中央に配置 */
}

/* リスト全体のスタイル */
#toc_container ul,
#toc_container ol {
  list-style: none !important; /* 元の・マークを消す */
  padding: 0;
  margin: 0;
}

/* 各項目のスタイル */
#toc_container ul li,
#toc_container ol li {
  margin-bottom: 0;
  padding: 0;
}

/* リンク（文字）のデザイン */
#toc_container ul li a,
#toc_container ol li a {
  display: block;
  padding: 10px 0;
  color: #333; /* 文字色は黒（赤色を上書き） */
  text-decoration: none;
  border-bottom: 1px dashed #e5e5e5; /* 下に点線 */
  transition: 0.3s;
  font-size: 15px;
}

/* 小見出し（h3以下）のインデント */
#toc_container ul ul,
#toc_container ol ol {
  margin-left: 20px;
}
#toc_container ul ul li a {
  font-size: 14px;
  color: #666;
}

/* ホバー時の動き */
#toc_container ul li a:hover {
  color: #cda435; /* カーソルを乗せるとゴールドに */
  padding-left: 5px; /* 少し右に動く */
  background-color: #fafafa;
}

/* もし番号付きリストにする場合（数字を表示） */
#toc_container ul {
  counter-reset: toc-counter;
}
#toc_container ul li a::before {
  content: counters(toc-counter, ".") ". ";
  counter-increment: toc-counter;
  color: #cda435;
  font-weight: bold;
  margin-right: 5px;
}
/* -------------------------------------------
   記事下部のタグ一覧（ボタン風デザイン）
   ------------------------------------------- */
.om-bottom-tags {
  margin: 40px 0 50px;
  padding: 30px;
  background-color: #fcfcfc; /* 全体の背景（薄いグレー） */
  border-radius: 8px;
}

/* 見出し：「タグ一覧」 */
.om-tags-label {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* タグリストの枠 */
.om-tags-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* 折り返し */
  gap: 10px; /* タグ同士の間隔 */
}

.om-tags-list li {
  margin: 0;
  padding: 0;
}

/* タグのボタン本体 */
.om-tags-list li a {
  display: inline-block;
  background-color: #fff; /* 白背景 */
  border: 1px solid #ddd; /* 薄い枠線 */
  border-radius: 4px; /* 角丸（少しだけ丸く） */
  padding: 8px 16px; /* 内側の余白 */
  font-size: 13px;
  color: #444; /* 文字色 */
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ホバー時の動き（色が反転する演出） */
.om-tags-list li a:hover {
  background-color: #1a1a50; /* 紺色背景 */
  color: #fff; /* 白文字 */
  border-color: #1a1a50;
  transform: translateY(-2px); /* ほんの少し浮く */
}
/* -------------------------------------------
   店舗・マップ表示エリア
   ------------------------------------------- */
.om-shop-container {
  margin: 50px 0;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}
.om-shop-title {
  background: #f9f9f9;
  padding: 15px 20px;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  text-align: center;
}

.om-shop-box {
  display: flex;
  flex-wrap: wrap;
}

/* 2件目以降の店舗は区切り線で分ける（複数店舗表示用） */
.om-shop-box + .om-shop-box {
  border-top: 2px solid #f0f0f0;
}

/* 左：情報エリア */
.om-shop-details {
  flex: 1;
  min-width: 250px; /* スマホで狭くなりすぎないように */
  padding: 25px;
}
.om-shop-name {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px;
  color: #cda435; /* ゴールド色 */
}
.om-shop-address {
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.om-shop-info {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  background: #fffcf0; /* 薄い黄色背景 */
  padding: 10px;
  border-radius: 4px;
}

/* 右：マップエリア */
.om-shop-map {
  flex: 1;
  min-width: 300px;
  height: 250px; /* マップの高さ */
}
.om-shop-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .om-shop-box {
    flex-direction: column;
  }
  .om-shop-map {
    height: 200px;
    min-width: 100%;
  }
}

/* =========================================
   お役立ちコラム（トップページ）
   ========================================= */
.top-column__inner { width: 90%; max-width: 1000px; margin: 0 auto; }
.top-column__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.top-column__card { background: #fff; }
.top-column__link { display: block; text-decoration: none; color: #333; }
.top-column__thumb { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background-size: cover; background-position: center; border-radius: 4px; }
.top-column__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.top-column__body { padding: 14px 2px 0; }
.top-column__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.top-column__cat { background: #6cbf6c; color: #fff; font-size: 12px; padding: 3px 10px; font-weight: bold; }
.top-column__date { font-size: 13px; color: #666; }
.top-column__title { margin: 0; font-size: 16px; line-height: 1.6; transition: 0.3s; }
.top-column__link:hover .top-column__title { color: #c9a063; }
.top-column .link_button { text-align: center; }

/* =========================================
   Responsive: Tablet
   ========================================= */
@media (max-width: 1024px) {
  .top-column__list { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   Responsive: Mobile
   ========================================= */
@media (max-width: 768px) {
  .top-column__inner { width: 88%; }
  .top-column__list { grid-template-columns: 1fr; gap: 20px; }
  .top-column__title { font-size: 15px; }
}

/* =========================================
   内部リンク（記事⇔カテゴリ 相互リンク）
   ※詳細度を上げて .post_content の見出し・リスト装飾を打ち消す
   ========================================= */
.related-genre,
.related-articles { width: 90%; max-width: 800px; margin: 40px auto; padding: 28px 30px; background: #faf7f1; border: 1px solid #e7ddc9; border-radius: 6px; }
.related-genre .related-genre__title,
.related-articles .related-articles__title { margin: 0 0 18px; padding: 2px 0 2px 14px; font-size: 18px; font-weight: bold; line-height: 1.4; color: #333; background: none; border: none; border-left: 4px solid #c9a063; }
.related-genre .related-genre__list,
.related-articles .related-articles__list { margin: 0; padding: 0; list-style: none; }
.related-genre .related-genre__item,
.related-articles .related-articles__item { position: relative; margin: 0 0 12px; padding-left: 20px; list-style: none; }
.related-genre .related-genre__item:last-child,
.related-articles .related-articles__item:last-child { margin-bottom: 0; }
.related-genre .related-genre__item::before,
.related-articles .related-articles__item::before { content: '\203A'; position: absolute; left: 2px; top: 0; color: #c9a063; font-weight: bold; }
.related-genre .related-genre__item a,
.related-articles .related-articles__item a { color: #333; text-decoration: none; transition: 0.3s; }
.related-genre .related-genre__item a:hover,
.related-articles .related-articles__item a:hover { color: #c9a063; text-decoration: underline; }

/* 買取品目ページの「関連する買取実績」最上部に置くまとめ記事 */
.related-articles .related-articles__item--summary { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px dashed #e7ddc9; }
.related-articles .related-articles__badge { margin-right: 4px; color: #c9a063; font-weight: bold; }

/* =========================================
   内部リンク（まとめ記事＝ピラー記事への導線）
   「この商品の買取はこちら」枠の直上に置くため、
   背景を白にして役割の違いが分かるようにする
   ========================================= */
.related-summary { width: 90%; max-width: 800px; margin: 40px auto 0; padding: 24px 30px; background: #fff; border: 1px solid #e7ddc9; border-radius: 6px; }
.related-summary + .related-genre { margin-top: 16px; }
.related-summary .related-summary__title { margin: 0 0 16px; padding: 2px 0 2px 14px; font-size: 18px; font-weight: bold; line-height: 1.4; color: #333; background: none; border: none; border-left: 4px solid #c9a063; }
.related-summary .related-summary__list { margin: 0; padding: 0; list-style: none; }
.related-summary .related-summary__item { position: relative; margin: 0 0 12px; padding-left: 20px; list-style: none; }
.related-summary .related-summary__item:last-child { margin-bottom: 0; }
.related-summary .related-summary__item::before { content: '\203A'; position: absolute; left: 2px; top: 0; color: #c9a063; font-weight: bold; }
.related-summary .related-summary__item a { color: #333; text-decoration: none; transition: 0.3s; }
.related-summary .related-summary__item a:hover { color: #c9a063; text-decoration: underline; }

/* =========================================
   Responsive: Mobile
   ========================================= */
@media (max-width: 768px) {
  .related-genre,
  .related-articles { width: 100%; padding: 20px; }
  .related-genre .related-genre__title,
  .related-articles .related-articles__title { font-size: 16px; }
  .related-summary { width: 100%; padding: 20px; }
  .related-summary .related-summary__title { font-size: 16px; }
}

/* =========================================
   トップページ お知らせカルーセル
   Responsive: Mobile
   スマホではカテゴリラベルがサムネイルに重なるため非表示
   ========================================= */
@media screen and (max-width: 768px) {
  .index_carousel .category {
    display: none;
  }
}
