.single-post,
.single {
  background: var(--color-paper);
}
.single-post-main {
  padding-top: 190px;
  background: var(--color-paper);
}
.single-post::after {
  content: none;
}
.travel-article__eyecatch {
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 16px; /* トップページのサムネ角丸(--radius-thumb)と統一 */
}
.travel-article__eyecatch img {
  width: 100%;
  aspect-ratio: 1190 / 700;
  object-fit: cover;
}

/* ---------------------------------------------------------------------------
 * アイキャッチ(電子レンジ枠): トップページのヒーロー(front-page.css .hero-slide)と
 * 同じ画像・同じ実測座標(%)を流用。記事ページ自身なので「読む」リンクは持たせず、
 * カテゴリ/タグだけをリンクにする(扉が開く演出も無し)。
 * .mw-eyecatch は .travel-article__eyecatch と併記されるクラスで、上の汎用ルール
 * (aspect-ratio: 1190/700 等)をクラス2つ分の詳細度で上書きする
 * ------------------------------------------------------------------------- */
.travel-article__eyecatch.mw-eyecatch {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  aspect-ratio: 600 / 394;
}
.mw-eyecatch .mw-eyecatch__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.mw-eyecatch__screen {
  position: absolute;
  top: 17.01%;
  left: 15.83%;
  width: 46.33%;
  height: 56.85%;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-gold-light);
}
.mw-eyecatch .mw-eyecatch__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  pointer-events: none; /* サムネイル本体はリンクにしないため、クリックは何にも渡さない */
}
.mw-eyecatch__clock {
  position: absolute;
  left: 76.83%;
  top: 10.15%;
  width: 16.17%;
  height: 24.37%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15em;
  pointer-events: none;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  color: var(--color-gold);
}
.mw-eyecatch__clock-md {
  font-size: clamp(.85rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
}
.mw-eyecatch__clock-year {
  font-size: clamp(.6rem, 1.2vw, .85rem);
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.1;
  opacity: .85;
}
.mw-eyecatch__category,
.mw-eyecatch__tag {
  position: absolute;
  left: 76.83%;
  width: 16.17%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  text-decoration: none;
  color: var(--color-gold-light);
  font-size: clamp(.62rem, 1.3vw, .8rem);
  font-weight: 600;
  letter-spacing: .02em;
}
.mw-eyecatch__category { top: 34.52%; height: 5.84%; }
.mw-eyecatch__tag { top: 40.36%; height: 6.85%; }
.mw-eyecatch__category:hover,
.mw-eyecatch__category:focus-visible,
.mw-eyecatch__tag:hover,
.mw-eyecatch__tag:focus-visible {
  color: var(--color-gold);
}
.mw-eyecatch__tag2,
.mw-eyecatch__tag3 {
  position: absolute;
  top: 66.16%;
  height: 10%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  text-decoration: none;
  color: var(--color-gold-light);
  font-size: clamp(.55rem, 1vw, .68rem);
  font-weight: 600;
  letter-spacing: .01em;
}
.mw-eyecatch__tag2 { left: 77.43%; width: 6.49%; }
.mw-eyecatch__tag3 { left: 85.25%; width: 6.66%; }
.mw-eyecatch__tag2:hover, .mw-eyecatch__tag2:focus-visible,
.mw-eyecatch__tag3:hover, .mw-eyecatch__tag3:focus-visible {
  color: var(--color-gold);
}
.travel-article__header {
  margin: 52px 0 42px;
}
.entry-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.entry-cats a {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.entry-title {
  margin: 0;
  max-width: 760px;
  color: #050505;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}
/* パンくずリストの見た目は全ページ共通化したため main.css に移動しました
   (assets/css/main.css の「パンくずリスト」セクションを参照) */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: #4b4b4b;
  font-size: 0.95rem;
}
.entry-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #161616;
  font-size: clamp(1.18rem, 2.4vw, 1.45rem);
  line-height: 1.62;
}
.entry-content {
  color: #161616;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.66;
}
.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.35em;
}
.entry-content > *:last-child {
  margin-bottom: 0;
}
.entry-content h2,
.entry-content h3 {
  margin-top: 2.3em;
  line-height: 1.08;
}
.entry-content h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #050505;
  font-size: clamp(1.75rem, 4.8vw, 3rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
/* 黄金色の中黒。電子レンジのインジケーターランプのイメージ */
.entry-content h2::before {
  content: "";
  width: .34em;
  height: .34em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-gold-band);
}
.entry-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 0;
  border-bottom: 0;
  color: #050505;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 950;
  text-transform: uppercase;
}
/* スプーン+フォークのシンプルなアイコン */
.entry-content h3::before {
  content: "";
  width: 1.1em;
  height: .85em;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24'%3E%3Crect x='2' y='2' width='1.5' height='8.5' fill='%23050505'/%3E%3Crect x='6.2' y='2' width='1.5' height='8.5' fill='%23050505'/%3E%3Crect x='10.4' y='2' width='1.5' height='8.5' fill='%23050505'/%3E%3Crect x='1' y='10' width='11' height='1.5' fill='%23050505'/%3E%3Crect x='6' y='11' width='2' height='11' fill='%23050505'/%3E%3Cellipse cx='28' cy='7' rx='4.6' ry='7.5' fill='%23050505'/%3E%3Crect x='27' y='13.5' width='2' height='8.5' fill='%23050505'/%3E%3C/svg%3E") no-repeat center / contain;
}
.entry-content h4 {
  margin-top: 2em;
  color: var(--color-ink);
  font-size: 1.12rem;
}
.entry-content p {
  line-height: 1.66;
}
.entry-content a {
  color: #050505;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.25em;
}
.entry-content li {
  margin-bottom: 0.5em;
  padding-left: 0.1em;
}
.entry-content ul li::marker {
  color: #050505;
}
.entry-content ol li::marker {
  color: #050505;
  font-weight: 950;
}
.entry-content blockquote,
.entry-content .wp-block-quote {
  position: relative;
  margin: 2em 0;
  padding: 0 0 0 28px;
  border: 0;
  border-left: 5px solid #050505;
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  box-shadow: none;
}
.entry-content blockquote p,
.entry-content .wp-block-quote p {
  margin-bottom: 0.65em;
}
.entry-content cite {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-style: normal;
}
.entry-content .wp-block-pullquote {
  margin: 2.4em 0;
  padding: 30px 24px;
  border-top: 3px solid var(--color-jade);
  border-bottom: 3px solid var(--color-jade);
  color: var(--color-ink);
}
.entry-content .wp-block-pullquote p {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.55;
}
.entry-content .wp-block-table {
  overflow-x: auto;
  margin: 2em 0;
}
.entry-content table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-cream);
}
.entry-content th,
.entry-content td {
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}
.entry-content th {
  background: #050505;
  color: #fff;
  font-weight: 950;
}
.entry-content .wp-block-table figcaption,
.entry-content .wp-block-image figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.86rem;
  text-align: center;
}
.entry-content img {
  border-radius: 0;
}
.entry-content .wp-block-image,
.entry-content .wp-block-gallery,
.entry-content .wp-block-cover,
.entry-content .wp-block-media-text {
  margin: 2em 0;
}
.entry-content .wp-block-image img,
.entry-content .wp-block-cover,
.entry-content .wp-block-media-text {
  box-shadow: none;
}
.entry-content .wp-block-cover,
.entry-content .wp-block-media-text {
  overflow: hidden;
  border-radius: 0;
}
.entry-content .wp-block-media-text {
  border: 0;
  background: var(--color-cream);
}
.entry-content .wp-block-media-text__content {
  padding: clamp(22px, 4vw, 36px);
}
.entry-content .wp-block-separator {
  width: min(220px, 60%);
  margin: 3em auto;
  border: 0;
  border-top: 2px solid var(--color-line);
}
.entry-content .wp-block-button__link {
  border-radius: var(--radius-pill);
  background: #050505;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.entry-content .wp-block-button__link:hover {
  background: #333;
  transform: translateY(-2px);
}
.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  border: 2px solid #050505;
  background: transparent;
  color: #050505;
}
.entry-content .wp-block-group {
  margin: 2em 0;
}
.entry-content .wp-block-group.is-style-travel-note,
.entry-content .wp-block-group.is-style-travel-tip,
.entry-content .wp-block-group.is-style-travel-warning,
.entry-content .wp-block-group.is-style-travel-route,
.entry-content .travel-box {
  position: relative;
  padding: clamp(22px, 4vw, 32px);
  border: 0;
  border-top: 3px solid #050505;
  border-bottom: 1px solid #050505;
  border-radius: 0;
  background: var(--color-cream);
  box-shadow: none;
}
.entry-content .wp-block-group.is-style-travel-note {
  border-left: 0;
}
.entry-content .wp-block-group.is-style-travel-tip {
  border-left: 0;
  background: var(--color-cream);
}
.entry-content .wp-block-group.is-style-travel-warning {
  border-left: 0;
  background: var(--color-cream);
}
.entry-content .wp-block-group.is-style-travel-route {
  border-left: 0;
  background: var(--color-cream);
}
.entry-content .wp-block-group.is-style-travel-note > :first-child,
.entry-content .wp-block-group.is-style-travel-tip > :first-child,
.entry-content .wp-block-group.is-style-travel-warning > :first-child,
.entry-content .wp-block-group.is-style-travel-route > :first-child {
  margin-top: 0;
}
.entry-content .wp-block-group.is-style-travel-note > :last-child,
.entry-content .wp-block-group.is-style-travel-tip > :last-child,
.entry-content .wp-block-group.is-style-travel-warning > :last-child,
.entry-content .wp-block-group.is-style-travel-route > :last-child {
  margin-bottom: 0;
}
.entry-content .wp-block-group.is-style-travel-route ol {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  counter-reset: route-step;
}
.entry-content .wp-block-group.is-style-travel-route li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 54px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 0;
  background: transparent;
  counter-increment: route-step;
}
.entry-content .wp-block-group.is-style-travel-route li::before {
  position: absolute;
  top: 10px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  content: counter(route-step);
}
.entry-content .wp-block-details {
  margin: 1.5em 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #050505;
  border-bottom: 1px solid #050505;
  border-radius: 0;
  background: transparent;
}
.entry-content .wp-block-details summary {
  color: #050505;
  font-weight: 950;
  cursor: pointer;
  text-transform: uppercase;
}
.entry-content .wp-block-embed {
  margin: 2em 0;
}
.entry-content .wp-block-embed iframe {
  width: 100%;
  border-radius: var(--radius-card);
}
.entry-content .alignwide {
  width: min(100vw - 32px, 1040px);
  max-width: none;
  margin-left: calc((100% - min(100vw - 32px, 1040px)) / 2);
}
.related-posts,
.post-navigation {
  margin-top: var(--space-section);
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.post-navigation a {
  display: block;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-cream);
}
.nav-subtitle {
  display: block;
  color: var(--color-muted);
  font-size: .82rem;
  font-weight: 850;
}
.nav-title {
  display: block;
  margin-top: 4px;
  font-weight: 850;
}
/* ヘッダーが画面下部固定に切り替わる幅(main.cssの.site-header切り替えと合わせる)。
   上部に固定ヘッダーが無くなるため、天面の余白は最小限でよい */
@media (max-width: 900px) {
  .single-post-main { padding-top: 24px; }
}
@media (max-width: 700px) {
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .entry-content h2 {
    padding: 0;
  }
  .entry-content blockquote,
  .entry-content .wp-block-quote {
    padding: 22px 20px;
  }
  .entry-content blockquote::before,
  .entry-content .wp-block-quote::before {
    display: none;
  }
  .entry-content .alignwide {
    width: 100%;
    margin-left: 0;
  }
}

/* ---------------------------------------------------------------------------
 * レビューボックス(記事上部に自動挿入 / inc/review.php)
 * ------------------------------------------------------------------------- */
.review-box {
  margin: 0 0 32px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 185, 106, .12), rgba(255, 255, 255, 0));
}
.review-box__kicker {
  margin: 0 0 10px;
  color: var(--color-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: lowercase;
}
.review-box__overall {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-box__overall .hw-stars { font-size: 1.6rem; }
.review-box__score {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.review-box__axes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.review-box__axes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
}
.review-box__axis-label {
  min-width: 7em;
  font-weight: 600;
}
.review-box__axis-score { color: var(--color-muted); }

/* 星(部分点は塗り幅で表現) */
.hw-stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  letter-spacing: 2px;
}
.hw-stars__base { color: var(--color-line); }
.hw-stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-gold);
}

/* スペック表 */
.review-spec {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: .9rem;
}
.review-spec th,
.review-spec td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}
.review-spec th {
  width: 8em;
  color: var(--color-muted);
  font-weight: 600;
}
.review-spec tr:last-child th,
.review-spec tr:last-child td { border-bottom: 0; }

@media (max-width: 640px) {
  .review-box__axes { grid-template-columns: 1fr; }
}
