/* ================================================
   ギフトカード比較テーブル
   ※ Google Fonts (Noto Sans JP / Oswald) は
     プラグイン側で wp_enqueue_style により読み込み
   ================================================ */

/* ---------- ラッパー ---------- */
.giftcard-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 2em 0;
}

/* ---------- テーブル本体 ---------- */
.giftcard-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,.07),
    0 12px 32px rgba(0,0,0,.10);
  background: #fff;
  /* リセット — 他スタイルの上書きを防ぐ */
  table-layout: auto;
  border: none;
  margin: 0;
  padding: 0;
}

.giftcard-table *,
.giftcard-table *::before,
.giftcard-table *::after {
  box-sizing: border-box;
}

/* ---------- thead ---------- */
.giftcard-table thead tr {
  background: none;
  border: none;
}

.giftcard-table thead th {
  padding: 18px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  vertical-align: middle;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* サイト列ヘッダー */
.giftcard-table__head-site {
  background: #2c3e6b;
  color: #fff;
  width: 28%;
  text-align: center;
  font-size: 13px;
}

/* ブランド列ヘッダー */
.giftcard-table__head-brand {
  background: linear-gradient(135deg, #3a6fd8 0%, #2454c7 100%);
  color: #fff;
  width: 24%;
  position: relative;
}

.giftcard-table__head-brand:nth-child(3) {
  background: linear-gradient(135deg, #f09820 0%, #e07f00 100%);
}

.giftcard-table__head-brand:nth-child(4) {
  background: linear-gradient(135deg, #27b67a 0%, #1a9463 100%);
}

/* ブランドアイコン */
.giftcard-table__brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.22);
  margin-bottom: 6px;
  vertical-align: middle;
}

.giftcard-table thead th .giftcard-table__brand-icon {
  display: block;
  margin: 0 auto 6px;
}

/* ---------- tbody 行 ---------- */
.giftcard-table tbody tr {
  transition: background .2s;
  border: none;
  background: none;
}

.giftcard-table tbody tr:nth-child(even) {
  background: #f7f9ff;
}

.giftcard-table tbody tr:hover {
  background: #eef2ff;
}

/* ---------- td 共通 ---------- */
.giftcard-table tbody td {
  padding: 0;
  border: none;
  border-bottom: 1px solid #e8ecf4;
  vertical-align: middle;
  text-align: center;
  margin: 0;
  background: none;
}

.giftcard-table tbody tr:last-child td {
  border-bottom: none;
}

/* 縦の区切り線 */
.giftcard-table tbody td + td {
  border-left: 1px solid #e8ecf4;
}

.giftcard-table thead th + th {
  border-left: 1px solid rgba(255,255,255,.18);
}

/* ---------- サイトセル ---------- */
.giftcard-table__site-cell {
  background: #f2f5fb !important;
  padding: 16px 14px !important;
}

.giftcard-table__site-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.giftcard-table__site-img {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.giftcard-table__site-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像プレースホルダー（画像挿入後は不要） */
.giftcard-table__img-placeholder {
  width: 80px;
  height: 56px;
  background: linear-gradient(135deg, #dce3f5 0%, #c8d2ee 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #8898c0;
  font-weight: 500;
  letter-spacing: .05em;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

.giftcard-table__site-name {
  font-size: 13px;
  font-weight: 700;
  color: #2c3e6b;
  text-decoration: none;
  border-bottom: 1.5px solid #a0b0e0;
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.giftcard-table__site-name:hover {
  color: #3a6fd8;
  border-color: #3a6fd8;
}

/* ---------- レートセル ---------- */
.giftcard-table__rate-cell {
  padding: 16px 8px !important;
}

.giftcard-table__rate-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.giftcard-table__label {
  font-size: 11px;
  font-weight: 500;
  color: #8898c0;
  letter-spacing: .05em;
  line-height: 1;
  margin-top: 6px;
}

.giftcard-table__label:first-child {
  margin-top: 0;
}

/* レート数字 */
.giftcard-table__rate {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #4a5568;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.giftcard-table__rate small {
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  opacity: .8;
}

/* 高レート（初回） */
.giftcard-table__rate--high {
  color: #d64444;
  text-shadow: 0 1px 4px rgba(214,68,68,.18);
}

/* 中レート */
.giftcard-table__rate--mid {
  color: #2454c7;
}

/* ---------- 取扱無しセル ---------- */
.giftcard-table__rate-cell--none {
  vertical-align: middle;
}

.giftcard-table__none-badge {
  display: inline-block;
  background: #f0f2f8;
  color: #9aa5be;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
  letter-spacing: .05em;
  border: 1.5px solid #dce3f0;
}

/* ---------- 角丸 （border-radius の調整） ---------- */
.giftcard-table thead tr th:first-child {
  border-radius: 16px 0 0 0;
}
.giftcard-table thead tr th:last-child {
  border-radius: 0 16px 0 0;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 640px) {
  .giftcard-table__rate {
    font-size: 20px;
  }
  .giftcard-table__head-brand,
  .giftcard-table__head-site {
    font-size: 12px;
    padding: 14px 8px;
  }
  .giftcard-table__site-cell {
    padding: 12px 8px !important;
  }
  .giftcard-table__rate-cell {
    padding: 12px 4px !important;
  }
  .giftcard-table__site-img,
  .giftcard-table__img-placeholder {
    width: 64px;
    height: 44px;
  }
}
