:root {
  --gold: #c19a45;
  --gold-d: #9a7826;
  --gold-l: #e7d7a8;
  --navy: #173169;
  --ink: #2f2a22;
  --ivory: #f6f3ea;
  --line: #e3ddca;
  --muted: #8a7d63;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #efe9db;
  font-family: "Hiragino Kaku Gothic ProN",-apple-system,sans-serif;
  color: #2f2a22;
}
.serif {
  font-family: "Hiragino Mincho ProN",Georgia,serif;
}
.pop-wrap {
  max-width: 800px;
  margin: 22px auto;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}
/* header */
.hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--navy);
}
.hd .logo {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .03em;
}
.hd .logo b {
  color: var(--gold-l);
}
.hd nav {
  display: flex;
  gap: 20px;
  font-size: 12.5px;
}
.hd nav a {
  color: #e9e2d3;
  text-decoration: none;
}
/* ハンバーガー(スマホのみ表示) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .25s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* 絞り込みバー(PCのみ) */
.filterbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 24px;
  background: linear-gradient(90deg,#fbf7ec,#f6efdd);
  border-bottom: 1px solid var(--line);
}
.filterbar .flabel {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
}
.filterbar .fld {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
}
.filterbar .fld select {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  color: var(--ink);
}
.filterbar .fbtn {
  margin-left: auto;
  padding: 8px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.filterbar .fbtn:hover {
  background: #0f2350;
}
.no-hit {
  display: none;
  margin: 14px 24px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
/* 金相場バー（強調デザイン） */
.rate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg,#243a68 0%,#173169 55%,#0f2350 100%);
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.rate::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transform: rotate(18deg);
  animation: rateShine 4.5s ease-in-out infinite;
}
@keyframes rateShine {
  0%,60% { left: -40%; }
  100% { left: 130%; }
}
.rate .lbl {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  background: rgba(193,154,69,.18);
}
.rate .val {
  position: relative;
  font-family: Georgia,"Times New Roman",serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-l);
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
  letter-spacing: .01em;
}
.rate .val small {
  font-size: 14px;
  margin-left: 2px;
  color: #e9e2d3;
}
.rate .diff {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 40px;
  background: #fff;
}
.rate .diff i {
  font-style: normal;
  font-size: 12px;
}
.rate .diff.up {
  color: #c0392b;
}
.rate .diff.down {
  color: #1c6fd6;
}
/* 相場バー直下のコメント（吹き出し＋ふわふわアニメ） */
.forecast {
  padding: 20px 20px 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.forecast .fc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-d);
  margin-bottom: 12px;
}
.fc-days {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  list-style: none;
}
.fc-days li {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 4px 8px;
}
.fc-days li.is-today {
  background: linear-gradient(180deg,#fdf8ec,#f8efd8);
  border-color: var(--gold);
  box-shadow: 0 3px 10px rgba(193,154,69,.18);
}
.fc-days .fc-day {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}
.fc-days li.is-today .fc-day {
  color: var(--gold-d);
}
.fc-days .fc-date {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
}
.fc-days img {
  width: 34px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.fc-msg {
  display: inline-block;
  position: relative;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg,var(--gold) 0%,var(--gold-d) 100%);
  padding: 12px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 18px rgba(193,154,69,.4);
  animation: fcFloat 1.6s ease-in-out infinite;
}
.fc-msg::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--gold-d);
}
@keyframes fcFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
/* オファー（1位商材のキャンペーン訴求） */
.offer {
  position: relative;
  margin: 20px auto 0;
  width: 94%;
  padding: 22px 20px 20px;
  background: linear-gradient(180deg,#fffdf7,#fbf4e4);
  border: 2px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(193,154,69,.18);
  text-align: center;
}
.offer .of-title {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
  background: linear-gradient(90deg,#e7d7a8,#c19a45);
  padding: 5px 20px;
  border-radius: 2px;
}
.offer .of-banner {
  display: block;
  margin: 4px auto 0;
  max-width: 560px;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.offer .of-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.offer .of-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.offer .of-name img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.offer .of-name span {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.offer .of-cta {
  display: block;
  max-width: 420px;
  margin: 14px auto 0;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 20px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .03em;
}
.offer .of-cta:hover {
  background: var(--gold-d);
}
/* FV */
.fv {
  padding: 40px 30px;
  background: linear-gradient(135deg,#20304180 0,#1f2d3d 70%),radial-gradient(circle at 80% 20%,#c19a4533,transparent 60%);
  background-color: var(--navy);
  text-align: center;
  color: #fff;
  position: relative;
}
.fv .pr {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 10px;
  color: #cbb98a;
  background: rgba(255,255,255,.08);
  padding: 2px 8px;
  border-radius: 4px;
}
.fv .ey {
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--gold-l);
  margin-bottom: 12px;
}
.fv h1 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
}
.fv h1 .g {
  color: var(--gold-l);
}
.fv .sub {
  margin-top: 14px;
  font-size: 13.5px;
  color: #d8d0be;
}
.fv .badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  font-size: 12px;
  color: #e9e2d3;
}
.fv .badges span {
  border: 1px solid #c19a4566;
  border-radius: 4px;
  padding: 6px 12px;
}
/* section heading */
.sec {
  padding: 34px 30px 6px;
  text-align: center;
}
.sec .lbl {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-d);
}
.sec h2 {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}
.sec h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg,var(--gold),var(--gold-l));
}
/* topcol */
.topcol {
  padding: 5vw 3vw;
  background: var(--ivory);
  border: 1px solid var(--line);
  width: 94%;
  margin: 0 auto;
  margin-top: 1em;
}
.topcol h2 {
  font-size: 21px;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
}
.topcol .lead {
  margin-top: 14px;
  font-size: 1em;
  line-height: 1.7;
  color: #5c5340;
  padding: 0px 0.8em;
}
.topcol h3 {
  margin-top: 20px;
  font-size: 1.3em;
  color: var(--gold-d);
}
.topcol h3 .num {
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--gold-l);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 8px;
  font-family: Georgia,serif;
}
.topcol p {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #5c5340;
}
.topcol .mk {
  color: var(--gold-d);
  font-weight: 700;
}
/* 金価格チャート（bullion-rates ウィジェット） */
.brtchart {
  margin: 18px 0 4px;
  padding: 14px 12px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}
.brtchart-cap {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-d);
  margin-bottom: 10px;
}
.brtchart img,
.brtchart table {
  max-width: 100%;
  height: auto;
}
.brtchart-note {
  margin-top: 8px;
  font-size: 0.7em;
  color: var(--muted);
  line-height: 1.6;
}
/* ranking */
.rk {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 40px 88px 1fr 220px;
  grid-template-areas: "no img head act" "no img info act";
  column-gap: 18px;
  row-gap: 6px;
  align-items: center;
  position: relative;
  width: 94%;
  margin: 0 auto;
}
.rk .no {
  grid-area: no;
}
.rk .img {
  grid-area: img;
}
.rk-head {
  grid-area: head;
  align-self: end;
}
.rk-info {
  grid-area: info;
  align-self: start;
}
.rk-act {
  grid-area: act;
}
.rk.top {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 26px rgba(193,154,69,.18);
}
.rk .crown {
  position: absolute;
  top: -12px;
  left: 20px;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
  background: linear-gradient(90deg,#e7d7a8,#c19a45);
  padding: 4px 14px;
  border-radius: 2px;
}
.rk .no {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk .no img {
  width: 100%;
  height: auto;
  display: block;
}
.rk .img {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  background: #f2ead6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89a55;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
}
.rk .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.rk .name {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
/* スコアに応じて塗り幅が変わる星（--rate に「スコア/5」の % が入る）
   色は currentColor を継承するため、配置場所のトーンに自動追従する */
.star5 {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0;
}
.star5::before,
.star5::after {
  content: "★★★★★";
}
.star5::before {
  opacity: .26;
}
.star5::after {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: var(--rate, 0%);
}
.rk .stars {
  font-size: 13px;
  color: var(--gold);
  margin: 4px 0;
}
.rk .stars b {
  color: var(--ink);
}
.rk .amt {
  font-size: 1.1em;
  color: var(--gold-d);
  font-weight: 700;
}
.rk ul {
  list-style: none;
  margin: 8px 0 0;
  font-size: 0.9em;
  line-height: 1.7;
}
.rk ul li {
  padding-left: 16px;
  position: relative;
  color: #5c5340;
}
.rk ul li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 3px;
}
.rk .mk {
  color: var(--gold-d);
  font-weight: 700;
}
.rk .btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.rk .btn.sub {
  background: #fff;
  color: var(--gold-d);
  border: 1.5px solid var(--gold);
}
.rk .sm {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}
/* compare */
.cmp {
  overflow-x: auto;
  width: 94%;
    margin: 0 auto;
}
.cmp table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
  min-width: 560px;
}
.cmp th,
.cmp td {
  padding: 10px 8px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.cmp .rowh {
  background: var(--ivory);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  width: 92px;
  white-space: nowrap;
  border-right: 1px solid var(--line);
  font-size: 1.1em;
}
.cmp tr 
.cmp-head th {
  padding: 12px 8px;
  background: var(--ivory);
  vertical-align: bottom;
}
.cmp-head .rank {
  display: block;
  background: none;
  padding: 0;
  margin: 0 0 4px;
  line-height: 0;
}
.cmp-head .rank img {
  height: 30px;
  width: auto;
  display: inline-block;
}
.cmp-head .nm {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.cmp-head .thumb {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 6px;
  margin: 0 0 6px;
}
.cmp-head .thumb img {
  width: 100%;
  height: 30px;
  object-fit: contain;
  display: block;
}
.cmp .badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(90deg,#e7d7a8,#c19a45);
  padding: 2px 0;
  margin-bottom: 5px;
}
.cmp .tableIcon {
  display: block;
  width: 26px;
  height: auto;
  margin: 0 auto 3px;
}
.cmp .best {
  background: #fcf8ee;
  font-size: 1.1em;
  font-weight: 600;
}
.cmp-head th.best {
  background: var(--navy);
}
.cmp-head th.best .nm {
  color: #fff;
}
.cmp td.best,
.cmp th.best {
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.cmp-head th.best {
  border-top: 2px solid var(--gold);
}
.cmp .tot .st {
  display: block;
  color: var(--gold);
  font-size: 12px;
}
.cmp .tot b {
  color: var(--gold-d);
  font-size: 15px;
}
.cmp .best.tot b {
  font-size: 19px;
  color: var(--navy);
}
.cmp-cta td {
  padding: 11px 6px;
}
.cmp .cbtn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1.4em;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
}
.cmp .cbtn.sub {
  background: #fff;
  color: var(--gold-d);
  border: 1px solid var(--gold);
}
.cmp .cmp-cta td.best {
  border-bottom: 2px solid var(--gold);
}
/* 人気の理由 */
.pblock {
  background: #fff;
  border: 1px solid var(--line);
  width: 94%;
    margin: 0 auto;
}
.feat .fh {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.feat .chip {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: none;
  padding: 0;
}
.feat .chip img {
  height: 28px;
  width: auto;
  display: block;
}
.feat .fh h3 {
  font-size: 19px;
  color: var(--navy);
  font-weight: 700;
}
.feat .fb {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 22px;
}
.feat .fimg {
  background: #f2ead6;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89a55;
  font-size: 13px;
}
.feat .fimg.has-img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  padding: 10px;
}
.feat .fimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.recommendPoint {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* 選ばれる理由(投稿本文) — 元テーマのマークアップをgoldトンマナで装飾 */
.reasons {
  padding: 0 22px 20px;
}
.reasons .texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reasons .text_item {
  width: 100%;
}
.reasons .text_title>h4 {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 4px solid var(--line);
  padding-bottom: 6px;
  margin: 18px 0 10px;
}
.reasons .text_title>h4::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 15%;
  height: 4px;
  background: linear-gradient(90deg,var(--gold),var(--gold-d));
}
.reasons .text_body p {
  font-size: 1em;
  line-height: 1.65;
  color: #5c5340;
  margin: 6px 0;
}
.reasons .text_body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px auto;
  border-radius: 4px;
}
.reasons .anno_p2 p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.reasons .small {
  font-size: .8em;
}
.reasons .red {
  color: #c0392b;
  font-weight: 700;
}
.reasons .blue {
  color: var(--navy);
  font-weight: 700;
}
.reasons .marker {
  font-weight: 700;
  background: linear-gradient(transparent 62%,var(--gold-l) 0);
}
.reason {
  display: flex;
  gap: 12px;
}
.reason .rn {
  width: 28px;
  height: 28px;
  flex: none;
  background: var(--navy);
  color: var(--gold-l);
  font-family: Georgia,serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.reason p {
  font-size: 1em;
  color: #5c5340;
  line-height: 1.6;
}
.reason .mk {
  color: var(--gold-d);
  font-weight: 700;
}
/* pspec 2x3 */
.pspec {
  margin: 0 22px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(23,49,105,.07);
}
.pspec-total {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  background: linear-gradient(90deg,var(--navy),#20437f);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.pspec-total .st {
  color: var(--gold-l);
  letter-spacing: 1px;
}
.pspec-total b {
  font-size: 19px;
  color: var(--gold-l);
  font-family: Georgia,serif;
  line-height: 1;
}
.pspec-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}
.pspec-grid td {
  width: 50%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  vertical-align: middle;
  background: #fff;
}
.pspec-grid tr:nth-child(even) td {
  background: #faf6ec;
}
.pspec-grid .k {
  display: inline-block;
  position: relative;
  font-size: 1em;
  color: var(--gold-d);
  font-weight: 700;
  letter-spacing: .05em;
  padding-left: 12px;
  margin-bottom: 5px;
}
.pspec-grid .k::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(var(--gold),var(--gold-d));
  border-radius: 2px;
}
.pspec-grid .v {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.feat .fcta {
  padding: 0 22px 20px;
  text-align: center;
}
.feat .fcta a {
  display: inline-block;
  min-width: 320px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .03em;
}
/* reviews */
.reviews {
  padding: 16px 1em;
}
.rv-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-d);
  margin-bottom: 10px;
}
.rv {
  background: var(--ivory);
  padding: 11px 14px;
  margin-bottom: 9px;
  border-left: 3px solid var(--gold-l);
}
.rv-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.rv-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e7d7a8;
  overflow: hidden;
  flex: none;
}
.rv-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rv-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.rv-st {
  margin-left: auto;
  font-size: 11px;
  color: var(--gold);
}
.rv-body {
  font-size: 12px;
  line-height: 1.7;
  color: #5c5340;
}
/* summary */
.summary {
  padding: 8px 30px 24px;
}
.sum-card {
  border: 2px solid var(--gold);
  padding: 22px 20px;
  background: #fff;
  position: relative;
}
.sum-card .crown {
  position: absolute;
  top: -12px;
  left: 18px;
  font-size: 1.1em;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(90deg,#e7d7a8,#c19a45);
  padding: 4px 14px;
}
.sum-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}
.sum-head .img {
  width: 84px;
  height: 84px;
  background: #f2ead6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89a55;
  font-size: 12px;
  flex: none;
}
.sum-head .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.sum-head .stars {
  color: var(--gold);
  font-size: 13px;
}
.sum-points {
  list-style: none;
  margin: 14px 0;
  font-size: 1em;
  line-height: 1.8;
  font-weight: bold;
}
.sum-points li {
  padding-left: 18px;
  position: relative;
  color: #5c5340;
}
.sum-points li:before {
  content: "◆";
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-size: 9px;
  top: 4px;
}
.summary .btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .03em;
}
/* cols */
.cols {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  padding: 16px 30px 36px;
}
.col {
  border: 1px solid var(--line);
  background: #fff;
}
.col .ph {
  height: 96px;
  background: #f2ead6;
}
.col .cb {
  padding: 10px 12px;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
a.col {
  display: block;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}
a.col:hover {
  box-shadow: 0 6px 18px rgba(23,49,105,.12);
  transform: translateY(-2px);
}
.col .ph {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cols-more {
  text-align: center;
  padding: 0 30px 36px;
  margin-top: -18px;
}
.cols-more a {
  display: inline-block;
  color: var(--gold-d);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 26px;
}
.cols-more a:hover {
  background: var(--gold);
  color: #fff;
}
/* コラム個別ページのアイキャッチ */
.col-hero {
  padding: 0 30px;
  text-align: center;
}
.col-hero img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* 検索結果・アーカイブ */
.search-cond {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 30px 8px;
}
.search-cond b {
  color: var(--gold-d);
}
.archive-pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 30px 6px;
}
.archive-pager .page-numbers {
  display: inline-block;
  min-width: 34px;
  text-align: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
}
.archive-pager .page-numbers.current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.archive-pager a.page-numbers:hover {
  background: var(--ivory);
}
/* 固定ページ本文（運営者情報など）— トップページのトンマナに合わせる */
.pagebody {
  padding: 0 30px 34px;
}
.pagebody .tableH2 {
  display: none;
}
/* 上部の .sec 見出しと重複するため非表示 */
.pagebody .areaWrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(23,49,105,.07);
}
.pagebody dl {
  display: grid;
  grid-template-columns: 34% 1fr;
  font-size: 13px;
  margin: 0;
}
.pagebody dt {
  background: #faf6ea;
  color: var(--navy);
  font-weight: 700;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  margin: 0;
}
.pagebody dd {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  color: var(--ink);
  background: #fff;
  margin: 0;
}
.pagebody dl dt:last-of-type,
.pagebody dl dd:last-of-type {
  border-bottom: 0;
}
.pagebody p {
  font-size: 13.5px;
  line-height: 1.95;
  color: #5c5340;
  margin: 10px 0;
}
.pagebody h3 {
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin: 20px 0 8px;
  border-left: 4px solid var(--gold);
  padding-left: 11px;
}
.pagebody a {
  color: var(--gold-d);
  text-decoration: underline;
}
.ft {
  background: var(--navy);
  color: #b9b09a;
  text-align: center;
  padding: 24px;
  font-size: 11px;
  line-height: 1.9;
}
.ft-links {
  margin-bottom: 12px;
}
.ft-links a {
  color: #d8cfa8;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ft-links a:hover {
  color: #fff;
}
/* 離脱防止ポップアップ */
.leave-pop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.leave-pop.is-open {
  display: block;
}
.leave-pop .lp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,45,.62);
}
.leave-pop .lp-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(180deg,#fffdf7,#fbf4e4);
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  padding: 24px 20px 20px;
  text-align: center;
  animation: lppop .25s ease-out;
}
@keyframes lppop {
  from { opacity: 0; transform: translate(-50%,-46%); }
  to   { opacity: 1; transform: translate(-50%,-50%); }
}
.leave-pop .lp-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.leave-pop .lp-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,var(--gold),var(--gold-d));
  padding: 5px 22px;
  border-radius: 40px;
}
.leave-pop .lp-lead {
  margin: 12px 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.leave-pop .lp-lead .mk {
  color: #c0392b;
}
.leave-pop .lp-banner {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.leave-pop .lp-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.leave-pop .lp-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.leave-pop .lp-name img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.leave-pop .lp-name span {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.leave-pop .lp-cta {
  display: block;
  margin: 12px 0 0;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.leave-pop .lp-cta:hover {
  background: var(--gold-d);
}
.leave-pop .lp-dismiss {
  margin-top: 12px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
@media(max-width:820px) {
  .hd {
    flex-wrap: wrap;
  }
  .burger {
    display: flex;
  }
  .filterbar {
    display: none;
  }
  .hd nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
  }
  .hd nav.is-open {
    display: flex;
  }
  .hd nav a {
    padding: 13px 4px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 14px;
  }
  .rk {
    grid-template-columns: 34px 46px 1fr;
    grid-template-areas: "no img head" "info info info" "act act act";
    column-gap: 11px;
    row-gap: 11px;
    align-items: center;
    text-align: left;
    padding: 16px 15px;
  }
  .rk .img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    font-size: 8px;
    line-height: 1.15;
    align-self: center;
  }
  .rk-head {
    align-self: center;
  }
  .rk .no {
    width: 34px;
    height: auto;
  }
  .rk .name {
    font-size: 16.5px;
  }
  .rk .stars {
    margin: 2px 0 0;
  }
  .rk-info {
    align-self: auto;
  }
  .rk .crown {
    left: 15px;
  }
  .rk ul {
    margin-top: 6px;
  }
  .feat .fb {
    grid-template-columns: 1fr;
  }
  .reasons {
    padding: 0 16px 18px;
  }
  .offer {
    padding: 20px 14px 16px;
  }
  .offer .of-name span {
    font-size: 17px;
  }
  .offer .of-cta {
    font-size: 14px;
    padding: 14px 12px;
  }
  .pagebody {
    padding: 0 16px 26px;
  }
  .pagebody dl {
    grid-template-columns: 38% 1fr;
    font-size: 12.5px;
  }
  .pagebody dt,
  .pagebody dd {
    padding: 11px 12px;
  }
  .reasons .text_title>h4 {
    font-size: 1.3em;
    margin: 14px 0 8px;
  }
  .cols {
    grid-template-columns: 1fr 1fr;
  }
}
/* 継承(twentynineteen)の灰色h2ダッシュを除去 */
.sec h2::before,
.topcol h2::before {
  content: none !important;
  display: none !important;
}
/* FV(画像) */
.firstView {
  margin: 0;
  line-height: 0;
  text-align: center;
  background: #fbf6ea;
}
.firstView img {
  display: inline-block;
  width: 100%;
  max-width: 800px;
  height: auto;
}
/* スマホ: CTAボタンを全幅・box-safeに(崩れ防止) */
@media (max-width:820px) {
  .feat .fcta a,
  .rk .btn,
  .summary .btn,
  .rk .btn.sub {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
  }
  .fcta {
    padding-left: 16px;
    padding-right: 16px;
  }
  .rk .act {
    width: 100%;
  }
}

.pop-wrap h1:not(.site-title)::before,
.pop-wrap h2::before {
  content: none !important;
  display: none !important;
}

.topcol img,
.text_body img {
    width: 96%;
    margin: 0 auto;
    display: block;
}