/* ==========================================================================
   shizuku media — Portal Page Styles (Shop, Therapist, Hotel, Recruit)
   Shared across all portal/DB pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Layout (white / subtle alternating)
   -------------------------------------------------------------------------- */
.portal-section {
  padding: 24px 20px;
}


.portal-section--subtle {
  background: var(--color-bg-light);
}

.portal-section--flush {
  padding-bottom: 0;
}



.portal-section__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 2px;
}

.portal-section h2,
.portal-section__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 12px;
  padding-left: 14px;
  position: relative;
}

h1.portal-section__title {
  font-size: 22px;
  padding-left: 0;
  margin-bottom: 6px;
}

h1.portal-section__title::before {
  display: none;
}

.portal-section h2::before,
.portal-section__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--gradient-vertical);
}

/* Override article-body h2/h3 styles inside portal sections */
.portal-section.article-body .portal-section__title {
  margin: 0 0 4px !important;
  padding-left: 14px !important;
  font-size: 18px !important;
  display: block !important;
}

.portal-section.article-body .faq-section {
  margin-top: 0;
}

.portal-section .faq-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portal-section__sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Stats Row (shared with front-page)
   -------------------------------------------------------------------------- */
.stats-row {
  display: flex;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
}

.stats-row__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 8px;
}

.stats-row__item--bordered {
  border-right: 1px solid var(--color-border-light);
}

.stats-row__num {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-teal);
}

.stats-row__label {
  font-family: var(--font-serif);
  font-size: 10px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Portal Hero — Rich variant with gradient
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Portal Hero — Rich (sauna-ikitai inspired, shizuku tonal)
   -------------------------------------------------------------------------- */
.portal-hero--rich {
  padding: 0;
}

.portal-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Background images — multiple for fade-slide */
.portal-hero__bg {
  position: absolute;
  inset: 0;
}

.portal-hero__bg-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity, transform;
}

.portal-hero__bg-item.is-active {
  opacity: 1;
}

.portal-hero__bg-item.is-zoom {
  animation: hero-zoom 8s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.portal-hero__bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Single image fallback (pages without JS slideshow) */
.portal-hero__bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay — softer gradient with brand tint */
.portal-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(10, 15, 20, 0.82) 0%,
      rgba(10, 15, 20, 0.50) 40%,
      rgba(10, 15, 20, 0.25) 70%,
      rgba(10, 15, 20, 0.15) 100%),
    linear-gradient(135deg,
      rgba(2, 193, 212, 0.08) 0%,
      rgba(155, 95, 191, 0.06) 100%);
}

/* Content */
.portal-hero__content {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  width: 100%;
}

/* Eyebrow badge — frosted glass */
.portal-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* H1 */
.portal-hero--rich .portal-hero__h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* Lead text */
.portal-hero__lead {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Stats row — frosted card */
.portal-hero__content .stats-row {
  margin-top: 16px;
}

.portal-hero--rich .stats-row {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.portal-hero--rich .stats-row__num {
  color: var(--color-teal);
  font-family: var(--font-mono);
}

.portal-hero--rich .stats-row__label {
  color: var(--color-text-dark);
}

.portal-hero--rich .stats-row__item--bordered {
  border-right-color: rgba(0, 0, 0, 0.08);
}

/* Update badge (optional) */
.portal-hero__update {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.portal-hero__update svg {
  width: 12px;
  height: 12px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .portal-hero__bg-item {
    transition: none;
  }
  .portal-hero__bg-item.is-zoom {
    animation: none;
  }
}

/* Portal Search — integrated into hero content */
.portal-search {
  padding: 16px 20px 20px;
}

.portal-search__selects {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.portal-search__select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  min-height: 44px;
}

.portal-search__select span {
  flex: 1;
}

.portal-search__select svg:last-child {
  stroke: var(--color-text-light);
  transition: transform 0.2s ease;
}

.portal-search__select.is-open svg:last-child {
  transform: rotate(180deg);
}

.portal-search__select.is-open {
  border-color: var(--color-teal);
}

/* Dropdown */
.portal-search__select {
  position: relative;
}

.portal-search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}

.portal-search__select.is-open .portal-search__dropdown {
  display: block;
}

.portal-search__option {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-text-dark);
  cursor: pointer;
  border-bottom: 1px solid var(--color-border-light);
}

.portal-search__option:last-child {
  border-bottom: none;
}

.portal-search__option:active,
.portal-search__option.is-selected {
  background: var(--color-bg-light);
  color: var(--color-teal);
  font-weight: 600;
}

/* Area Pick Cards — 2x2 grid with images */
.area-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.area-pick__card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.area-pick__card:active {
  opacity: 0.9;
}

.area-pick__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-pick__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 12px;
}

.area-pick__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 12px;
  z-index: 1;
}

.area-pick__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.area-pick__count {
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.85);
}

/* --------------------------------------------------------------------------
   Search Filter
   -------------------------------------------------------------------------- */
.search-filter {
  padding: 16px 20px 20px;
  background: var(--color-bg-light);
}

.search-filter__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.search-filter__selects {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.search-filter__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
  min-height: 44px;
}

.search-filter__select svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Region Card — Compact horizontal card
   -------------------------------------------------------------------------- */
.region-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
}

.region-card:active {
  transform: scale(0.98);
  box-shadow: var(--shadow-sm);
}

.region-card__top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.region-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.region-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.region-card__count {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-teal);
  animation: area-pulse 2.5s ease-in-out infinite;
}

.region-card__stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-star);
}

.region-card__rating svg {
  width: 14px;
  height: 14px;
}

.region-card__price {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-body);
}

.region-card__yen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--color-bg-teal-tint);
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.region-card__prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.region-card__pref {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--color-bg-teal-tint);
  color: var(--color-teal);
}

.region-card__pref--more {
  background: var(--color-bg-light);
  color: var(--color-text-light);
}

.region-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
  background: var(--color-bg-light);
  border-radius: 6px;
}

.region-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-teal);
}

/* Region card with image */
.region-card--has-img {
  padding: 0;
  overflow: hidden;
}
.region-card__img {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.region-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.region-card--has-img .region-card__top {
  padding: 12px 16px 0;
}
.region-card--has-img .region-card__prefs {
  padding: 0 16px;
}
.region-card--has-img .region-card__cta {
  margin: 0 16px 14px;
}

/* Region card theme variations — subtle top-left gradient accent */
.region-card--snow {
  border-color: rgba(147, 197, 253, 0.3);
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.08) 0%, transparent 40%), var(--color-bg-white);
}
.region-card--snow .region-card__pref {
  background: rgba(147, 197, 253, 0.12);
  color: #3B82F6;
}

.region-card--metro {
  border-color: rgba(2, 193, 212, 0.25);
  background: linear-gradient(135deg, rgba(2, 193, 212, 0.06) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 70%), var(--color-bg-white);
}

.region-card--mountain {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.07) 0%, transparent 40%), var(--color-bg-white);
}
.region-card--mountain .region-card__pref {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.region-card--tradition {
  border-color: rgba(139, 92, 246, 0.2);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(236, 72, 153, 0.03) 50%, transparent 70%), var(--color-bg-white);
}
.region-card--tradition .region-card__pref {
  background: rgba(139, 92, 246, 0.08);
  color: #7C3AED;
}

.region-card--ocean {
  border-color: rgba(6, 182, 212, 0.25);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.07) 0%, transparent 40%), var(--color-bg-white);
}
.region-card--ocean .region-card__pref {
  background: rgba(6, 182, 212, 0.1);
  color: #0891B2;
}

.region-card--nature {
  border-color: rgba(34, 197, 94, 0.25);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.07) 0%, transparent 40%), var(--color-bg-white);
}
.region-card--nature .region-card__pref {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
}

.region-card--tropical {
  border-color: rgba(251, 146, 60, 0.2);
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.06) 0%, rgba(251, 191, 36, 0.04) 50%, transparent 70%), var(--color-bg-white);
}
.region-card--tropical .region-card__pref {
  background: rgba(251, 146, 60, 0.1);
  color: #EA580C;
}

/* --------------------------------------------------------------------------
   Card Base — shared properties across all card components
   -------------------------------------------------------------------------- */
.area-rank-card,
.shop-card,
.therapist-card,
.recruit-card,
.age-feature-card,
.experience-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

.area-rank-card:active,
.shop-card:active,
.age-feature-card:active,
.experience-card:active {
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Area Rank Card — Visual card with photo for women
   -------------------------------------------------------------------------- */
.area-rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-rank-card {
  display: flex;
  gap: 14px;
  padding: 12px;
}

.area-rank-card__img-wrap {
  position: relative;
  width: 110px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.area-rank-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-rank-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.area-rank-card__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.area-rank-card__left {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.area-rank-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.area-rank-card__sub {
  font-size: 11px;
  color: var(--color-text-light);
}

.area-rank-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.area-rank-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-star);
}

.area-rank-card__rating svg {
  width: 14px;
  height: 14px;
}

.area-rank-card__reviews {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 500;
}

.area-rank-card__reviews svg {
  stroke: var(--color-teal);
}

.area-rank-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-rank-card__price {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.area-rank-card__yen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--color-bg-teal-tint);
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.area-rank-card__shops {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-teal);
  animation: area-pulse 2.5s ease-in-out infinite;
}

@keyframes area-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --------------------------------------------------------------------------
   Shop Card (same layout pattern as area-rank-card)
   -------------------------------------------------------------------------- */
.shop-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shop-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Uses .rank-badge .rank-badge--square from base.css */
.shop-card .rank-badge { top: 10px; left: 10px; }

.shop-card__badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 4px;
}

.shop-card__badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(2, 193, 212, 0.85);
  color: #fff;
  backdrop-filter: blur(4px);
}

.shop-card__badge--certified {
  background: var(--gradient);
  color: #fff;
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 14px 12px;
}

.shop-card__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.shop-card__left {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.shop-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.shop-card__area {
  font-size: 11px;
  color: var(--color-text-light);
}

.shop-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.shop-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-star);
}

.shop-card__rating svg {
  width: 14px;
  height: 14px;
}

.shop-card__reviews {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 500;
}

.shop-card__reviews svg {
  stroke: var(--color-teal);
}

.shop-card__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-card__price {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.shop-card__yen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--color-bg-teal-tint);
  color: var(--color-teal);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.shop-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  overflow: hidden;
  max-height: 44px;
}

.shop-card__tag {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Sub Area Tabs
   -------------------------------------------------------------------------- */
.subarea-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 14px;
  padding-bottom: 2px;
}

.subarea-tabs::-webkit-scrollbar {
  display: none;
}

.subarea-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-bg-white);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.subarea-tab--active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
  font-weight: 600;
}

/* Sub Area Panel */
.subarea-panel {
  display: none;
  padding: 14px 16px;
  background: var(--color-bg-light);
  border-radius: 10px;
  margin-bottom: 8px;
}

.subarea-panel--active {
  display: block;
}

.subarea-panel__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.subarea-panel__desc {
  font-size: 12px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.subarea-panel__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.subarea-panel__meta svg {
  width: 12px;
  height: 12px;
}

/* Filter Tabs (Total / Dispatch / Cost) */
.filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.filter-tab {
  flex: 1;
  padding: 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-white);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}

.filter-tab--active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}

/* Portal Section Note */
.portal-section__note {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 10px;
}

/* scroll-table — global definition in single.css (no longer duplicated here) */

/* FAQ — global .faq-item defined in single.css (no longer duplicated here) */
.portal-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: none;
}

/* --------------------------------------------------------------------------
   Prefecture Chips (47 prefectures)
   -------------------------------------------------------------------------- */
.pref-group {
  margin-bottom: 16px;
}

.pref-group__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.pref-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.pref-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  transition: background 0.15s;
}

.pref-chip:active {
  background: #e8e8e8;
}

.pref-chip--current {
  background: var(--color-teal);
  color: #fff;
  font-weight: 600;
}

.pref-chip--active {
  background: var(--color-bg-teal-tint);
  color: var(--color-teal);
}

.pref-chip--muted {
  background: var(--color-bg-gray);
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Nearby CTA
   -------------------------------------------------------------------------- */
.nearby-cta {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-teal-tint);
}

.nearby-cta svg {
  margin-bottom: 8px;
}

.nearby-cta__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.nearby-cta__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   City Grid (Love Hotel area links)
   -------------------------------------------------------------------------- */
.city-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.city-grid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.city-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.city-cell:active {
  background: var(--color-bg-light);
}

.city-cell__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.city-cell__count {
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   More Button
   -------------------------------------------------------------------------- */
.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg-white);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-body);
  cursor: pointer;
  transition: border-color 0.2s;
}

.more-btn:active {
  border-color: var(--color-teal);
}

.more-btn--gradient {
  border: none;
  background: var(--gradient);
  color: #fff;
}

.more-btn--gradient:active {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Shop Detail — Gallery
   -------------------------------------------------------------------------- */
.shop-gallery {
  margin-bottom: 0;
}

.shop-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.shop-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-gallery__count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.shop-gallery__thumbs {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.shop-gallery__thumb {
  flex: 1;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.shop-gallery__thumb--active {
  opacity: 1;
  outline: 2px solid var(--color-teal);
  outline-offset: -2px;
}

.shop-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Shop Detail — Hero
   -------------------------------------------------------------------------- */
.shop-detail-hero {
  padding: 0 20px 20px;
}

.shop-detail-hero__badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.shop-detail-hero__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--color-teal);
  color: #fff;
}

.shop-detail-hero__badge--certified {
  background: var(--gradient);
}

.shop-detail-hero__h1 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin-bottom: 4px;
}

.shop-detail-hero__area {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.shop-detail-hero__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.shop-detail-hero__stars svg {
  width: 16px;
  height: 16px;
}

.shop-detail-hero__score {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-star);
}

.shop-detail-hero__reviews {
  font-size: 12px;
  color: var(--color-text-light);
}

.shop-detail-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.shop-detail-hero__feat {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(2,193,212,0.08);
  color: var(--color-teal);
  border: 1px solid rgba(2,193,212,0.2);
}

.shop-detail-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.shop-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  transition: opacity 0.2s;
}

.shop-cta:active {
  opacity: 0.85;
}

.shop-cta--phone {
  background: var(--gradient);
  color: #fff;
}

.shop-cta--web {
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-teal);
  color: var(--color-teal);
}

.shop-cta--zukan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-text-primary);
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Shop Detail — Editorial Review
   -------------------------------------------------------------------------- */
.editorial-summary {
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: 12px;
  margin-bottom: 16px;
}

.editorial-summary__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0;
}

.editorial-proscons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.editorial-pros,
.editorial-cons {
  padding: 14px 16px;
  border-radius: 10px;
}

.editorial-pros {
  background: #E8FAF0;
}

.editorial-cons {
  background: #FFF4F0;
}

.editorial-pros__title,
.editorial-cons__title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

.editorial-pros__title {
  color: #059669;
}

.editorial-cons__title {
  color: #DC2626;
}

.editorial-pros__list,
.editorial-cons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.editorial-pros__list li,
.editorial-cons__list li {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-body);
  padding-left: 16px;
  position: relative;
}

.editorial-pros__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
}

.editorial-cons__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #DC2626;
}

.editorial-verdict__summary {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-text-primary);
  margin: 0 0 16px;
  padding: 14px 16px;
  background: var(--color-bg-white);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
}

.editorial-verdict__recommend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(2,193,212,0.05) 0%, rgba(139,92,246,0.03) 100%);
  border-radius: 10px;
  border: 1px solid rgba(2,193,212,0.15);
  margin-bottom: 16px;
}

.editorial-verdict__recommend-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.03em;
}

.editorial-verdict__recommend-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.editorial-verdict__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Shop Detail — Concept & Personas
   -------------------------------------------------------------------------- */
.section-img {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.portal-section__lead {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.persona-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.persona-card {
  padding: 12px 14px;
  background: var(--color-bg-white);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
}

.persona-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 4px;
}

.persona-card__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Shop Detail — Usage Steps
   -------------------------------------------------------------------------- */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.usage-step {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  position: relative;
}

.usage-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-teal), rgba(2,193,212,0.1));
}

.usage-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.usage-step__num--sm {
  font-size: 10px;
}

.usage-step__body {
  flex: 1;
}

.usage-step__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.usage-step__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Shop Detail — Review Cards
   -------------------------------------------------------------------------- */
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card {
  padding: 20px;
  background: linear-gradient(135deg, #EEFBFC, #F5F0FC);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.review-card__meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.review-card__age,
.review-card__type {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.review-card__age {
  background: var(--color-teal);
  color: #fff;
}

.review-card__type {
  background: var(--color-bg-white);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
}

.review-card__text {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Shop Detail — Mid CTA
   -------------------------------------------------------------------------- */
.mid-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(2,193,212,0.06) 0%, rgba(2,193,212,0.02) 100%) !important;
  border-top: 2px solid var(--color-teal);
}

.mid-cta__text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.mid-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mid-cta__btns .shop-cta {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Shop Detail — Section Subtitle, Booking, Prohibitions
   -------------------------------------------------------------------------- */
.portal-section__subtitle {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 20px 0 10px;
  padding-bottom: 8px;
  position: relative;
}

.portal-section__subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), rgba(139,92,246,0.5), transparent);
}

.portal-section__subtitle:first-of-type {
  margin-top: 0;
}

.booking-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-method {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-teal);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
}

.booking-method svg {
  flex-shrink: 0;
}

.prohibition-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prohibition-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.prohibition-list__item:last-child {
  border-bottom: none;
}

.prohibition-list__item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FEE2E2;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* --------------------------------------------------------------------------
   Shop Detail — Feature Cards
   -------------------------------------------------------------------------- */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card {
  padding: 14px 16px;
  background: var(--color-bg-light);
  border-radius: 12px;
}

.feature-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.feature-card__icon svg {
  stroke: #fff;
}

.feature-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.feature-card__desc {
  font-size: 12px;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Shop Detail — Therapist Cards
   -------------------------------------------------------------------------- */
.therapist-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.therapist-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: box-shadow 0.15s;
}

.therapist-card:active {
  box-shadow: var(--shadow-sm);
}

.therapist-card__img-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.therapist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Uses .rank-badge .rank-badge--xs .rank-badge--gradient from base.css */

.therapist-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
}

.therapist-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.therapist-card__spec {
  font-size: 11px;
  color: var(--color-text-muted);
}

.therapist-card__area {
  font-size: 11px;
  color: var(--color-text-body);
}

.therapist-card__achievement {
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 500;
  line-height: 1.4;
}

.therapist-card__badge-new {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #EF4444;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Therapist Grid (shop_therapists shortcode) */
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.therapist-grid .therapist-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.therapist-grid .therapist-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-light) center / cover no-repeat;
}

.therapist-grid .therapist-card__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.therapist-grid .therapist-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.therapist-grid .therapist-card__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-text-muted);
}

.therapist-grid .therapist-card__spec {
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 500;
}

.therapist-grid .therapist-card__bio {
  font-size: 11px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.therapist-card__rating {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
}

.therapist-card__rating::before {
  content: "\2605 ";
}

.therapist-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.therapist-card__tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-bg-light);
  color: var(--color-text-body);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Therapist Hub — Area Count List
   -------------------------------------------------------------------------- */
.area-count-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.area-count-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-count-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.area-count-item:active {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-sm);
}

.area-count-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.area-count-item__count {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-teal);
}

.area-count-item__arrow {
  width: 12px;
  height: 12px;
  color: var(--color-text-light);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Shop Detail — Rating Bars (flat list)
   -------------------------------------------------------------------------- */
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-bar__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.rating-bar__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-body);
}

.rating-bar__score {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
}

.rating-bar__track {
  width: 100%;
  height: 8px;
  background: var(--color-bg-gray);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* --------------------------------------------------------------------------
   Shop Detail — Meta & TOC
   -------------------------------------------------------------------------- */
.shop-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.shop-meta__date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.shop-meta__author {
  font-weight: 600;
  color: var(--color-teal);
}

/* TOC uses single.css .toc-box styles directly — no portal override needed */

/* --------------------------------------------------------------------------
   Shop Detail — Editorial Score Visual
   -------------------------------------------------------------------------- */
.editorial-score {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.editorial-score__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2,193,212,0.3);
}

.editorial-score__num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.editorial-score__max {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.editorial-score__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.editorial-score__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--gradient);
  color: #fff;
  width: fit-content;
}

.editorial-score__stars {
  display: flex;
  gap: 2px;
}

.editorial-score__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-body);
}

/* --------------------------------------------------------------------------
   Shop Detail — Related Links
   -------------------------------------------------------------------------- */
/* Related content — horizontal scroll cards */
.related-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.related-scroll::-webkit-scrollbar {
  display: none;
}

.related-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.15s;
}

.related-card:active {
  box-shadow: var(--shadow-sm);
}

.related-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

.related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-card__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-teal);
}

.related-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Shop Detail — Fixed Footer CTA
   -------------------------------------------------------------------------- */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border-light);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.fixed-cta__btn--phone {
  background: var(--gradient);
  color: #fff;
}

.fixed-cta__btn--web {
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-teal);
  color: var(--color-teal);
}

/* --------------------------------------------------------------------------
   Shop Detail — Info Table
   -------------------------------------------------------------------------- */
.info-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.info-table__row {
  display: flex;
  border-bottom: 1px solid var(--color-border-row);
}

.info-table__row:last-child {
  border-bottom: none;
}

.info-table__th {
  width: 90px;
  flex-shrink: 0;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
}

.info-table__td {
  flex: 1;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--color-text-body);
}

/* Safety Checks */
.safety-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.safety-check {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-teal);
}

/* --------------------------------------------------------------------------
   Rating Disclosure (footer of rating sections)
   -------------------------------------------------------------------------- */
.rating-disclosure {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 12px;
}

.rating-disclosure a {
  color: var(--color-teal);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Other Regions
   -------------------------------------------------------------------------- */
.other-regions {
  margin-bottom: 16px;
}

.other-regions__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.other-regions__list {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ==========================================================================
   Recruit Portal — Job Cards
   ========================================================================== */
.recruit-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recruit-card {
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.recruit-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.recruit-card__header {
  margin-bottom: 12px;
  padding: 16px 20px 0;
}

.recruit-card__badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.recruit-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--color-teal);
  color: #fff;
}

.recruit-card__badge--certified {
  background: var(--gradient);
}

.recruit-card__shop-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recruit-card__shop {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.recruit-card__area {
  font-size: 12px;
  color: var(--color-text-muted);
}

.recruit-card__salary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 20px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(2,193,212,0.06) 0%, rgba(139,92,246,0.04) 100%);
  border-radius: 10px;
  margin-bottom: 12px;
}

.recruit-card__salary-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.recruit-card__salary-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-teal);
}

.recruit-card__salary-sub {
  font-size: 12px;
  color: var(--color-text-body);
}

.recruit-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 12px;
  padding: 0 20px;
}

.recruit-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  padding: 0 20px;
}

.recruit-card__feat {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(2,193,212,0.08);
  color: var(--color-teal);
  border: 1px solid rgba(2,193,212,0.2);
}

.recruit-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 20px 20px;
  padding: 12px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.recruit-card__cta:active {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Recruit Detail — Representative Interview
   -------------------------------------------------------------------------- */
.rep-interview {
  margin-top: 4px;
}

.rep-interview__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rep-interview__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-teal);
}

.rep-interview__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-interview__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rep-interview__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.rep-interview__title {
  font-size: 11px;
  color: var(--color-text-muted);
}

.rep-interview__message {
  padding: 16px;
  background: linear-gradient(135deg, #EEFBFC, #F5F0FC);
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
}

.rep-interview__message::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.rep-interview__message p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Recruit — Featured Ranking (Ad Slots)
   -------------------------------------------------------------------------- */
.recruit-featured {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit-featured__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  text-decoration: none;
  color: inherit;
}

a.recruit-featured__item:active {
  opacity: .85;
}

.recruit-featured__item:last-child {
  border-bottom: none;
}

.recruit-featured__item--empty {
  opacity: 0.55;
}

/* 検索結果の絞り込み通知 */
.recruit-filter-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 20px 14px;
  padding: 10px 14px;
  background: var(--color-bg-light);
  border-radius: 10px;
}

.recruit-filter-notice__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.recruit-filter-notice__reset {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
}

/* Uses .rank-badge .rank-badge--lg .rank-badge--static from base.css */

.recruit-featured__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recruit-featured__shop {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.recruit-featured__meta {
  font-size: 11px;
  color: var(--color-text-muted);
}

.recruit-featured__highlight {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-teal);
}

.recruit-featured__badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--gradient);
  color: #fff;
  white-space: nowrap;
}

.recruit-featured__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

/* 求人比較テーブル */
.recruit-compare th,
.recruit-compare td {
  white-space: nowrap;
}
.recruit-compare__shop {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 700;
}
.recruit-compare__tag {
  display: inline-block;
  margin-left: 4px;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  vertical-align: middle;
}
.recruit-compare__tag--certified {
  background: var(--gradient);
  color: #fff;
}

/* チェックリスト（エリア選び方ポイント等） */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-text-dark);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--color-teal);
  border-radius: 50%;
}

/* PR（広告）表記ラベル — 景表法・ステマ規制対応の透明性表示 */
.pr-label {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
}

.portal-section__eyebrow .pr-label {
  margin-left: 6px;
  vertical-align: middle;
}

.pr-label--corner {
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   Therapist Hub — Age Feature Cards
   -------------------------------------------------------------------------- */
.age-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.age-feature-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.age-feature-card__img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.age-feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.age-feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.age-feature-card__header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.age-feature-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.age-feature-card__count {
  font-size: 11px;
  color: var(--color-text-muted);
}

.age-feature-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-teal);
}

.age-feature-card__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 2px 0 0;
}

/* --------------------------------------------------------------------------
   Therapist Detail — Profile Hero
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Therapist Detail — Gallery
   -------------------------------------------------------------------------- */
.therapist-gallery {
  padding: 0;
}

.therapist-gallery__main {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.therapist-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.therapist-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
}

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

.therapist-gallery__source {
  font-size: 10px;
  color: var(--color-text-muted);
  text-align: right;
  padding: 6px 20px 0;
  margin: 0;
}

.therapist-hero {
  padding: 24px 20px 28px;
}

.therapist-hero__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-teal);
  margin-bottom: 16px;
}

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

.therapist-hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.therapist-hero__badges {
  display: flex;
  gap: 6px;
}

.therapist-hero__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.therapist-hero__badge--mbti {
  background: rgba(139, 92, 246, 0.1);
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.therapist-hero__badge--love {
  background: rgba(236, 72, 153, 0.08);
  color: #DB2777;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.therapist-hero__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}
/* h1内の店舗名（SEO「店舗名×セラピスト名」用）。視覚的には控えめに。 */
.therapist-hero__name-shop {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0;
}

/* ファーストビュー: 見出し行（名前＋評価バッジ） */
.therapist-hero__headline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.therapist-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: var(--color-bg-light);
  border-radius: 999px;
  padding: 3px 11px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  align-self: center;
}
.therapist-hero__rating svg {
  color: #F59E0B;
}
/* 店舗・エリア（ピンアイコン付きリンク） */
.therapist-hero__shop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cat-teal);
  text-decoration: none;
}
.therapist-hero__shop svg {
  flex-shrink: 0;
  color: var(--color-cat-teal);
}
/* キャッチコピー（印象の第1文） */
.therapist-hero__catch {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-dark);
  font-weight: 500;
}

.therapist-hero__shop {
  font-size: 13px;
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
}

.therapist-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.therapist-hero__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(2, 193, 212, 0.06);
  color: var(--color-teal);
  border: 1px solid rgba(2, 193, 212, 0.15);
}

.therapist-hero .stats-row {
  margin-top: 16px;
  width: 100%;
  background: var(--color-bg-light);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
}

/* --------------------------------------------------------------------------
   Therapist Detail — Self Introduction
   -------------------------------------------------------------------------- */
.therapist-intro__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-body);
}

.therapist-intro__sns {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Therapist Detail — Specialties Grid
   -------------------------------------------------------------------------- */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.specialty-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  text-align: center;
}

.specialty-grid__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.therapist-style {
  padding: 16px;
  background: linear-gradient(135deg, rgba(2,193,212,0.04) 0%, rgba(139,92,246,0.03) 100%);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
}

.therapist-style__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.therapist-style__desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Therapist Detail — Evaluation Total
   -------------------------------------------------------------------------- */
.evaluation-total {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
}

.evaluation-total__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-body);
}

.evaluation-total__score {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-teal);
}

.evaluation-total__max {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Therapist Detail — Interview
   -------------------------------------------------------------------------- */
.interview-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.interview-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.interview-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.interview-item__q {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 8px;
  padding-left: 14px;
  position: relative;
}

.interview-item__q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
}

.interview-item__a {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Therapist Detail — Review Trends
   -------------------------------------------------------------------------- */
.review-trends {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-trends__section {
  padding: 16px;
  border-radius: 10px;
  background: var(--color-bg-white);
}

.review-trends__section:has(.review-trends__heading--positive) {
  border: 1px solid rgba(10, 171, 184, 0.2);
  background: rgba(10, 171, 184, 0.03);
}

.review-trends__section:has(.review-trends__heading--caution) {
  border: 1px solid rgba(217, 119, 6, 0.2);
  background: rgba(217, 119, 6, 0.03);
}

.review-trends__heading {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  padding-left: 22px;
  position: relative;
}

.review-trends__heading--positive {
  color: var(--color-teal);
}

.review-trends__heading--positive::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.review-trends__heading--caution {
  color: #B45309;
}

.review-trends__heading--caution::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D97706;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.review-trends__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-trends__item {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-body);
  padding-left: 22px;
  position: relative;
}

.review-trends__item::before {
  position: absolute;
  left: 2px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.review-trends__item--positive::before {
  content: '';
  background: rgba(10, 171, 184, 0.15);
  border: 2px solid var(--color-teal);
}

.review-trends__item--caution::before {
  content: '';
  background: rgba(217, 119, 6, 0.15);
  border: 2px solid #D97706;
}

/* --------------------------------------------------------------------------
   Therapist Detail — Review Card Tags
   -------------------------------------------------------------------------- */
.review-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.review-card__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(2, 193, 212, 0.08);
  color: var(--color-teal);
}

/* --------------------------------------------------------------------------
   Therapist Detail — Achievements
   -------------------------------------------------------------------------- */
.therapist-hero__achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  width: 100%;
}

.therapist-hero__achievement {
  font-size: 10px;
  font-weight: 700;
  color: #92400E;
  background: linear-gradient(135deg, rgba(251,191,36,0.12) 0%, rgba(245,158,11,0.08) 100%);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Therapist Detail — SNS Links
   -------------------------------------------------------------------------- */
.sns-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.therapist-intro__sns--instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

/* --------------------------------------------------------------------------
   Therapist Detail — Review Card Footer (user/source at bottom-right)
   -------------------------------------------------------------------------- */
.review-card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 4px;
}

.review-card__user {
  font-size: 11px;
  color: var(--color-text-muted);
}

.review-card__source {
  font-size: 10px;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Therapist Detail — SNS Links (horizontal row)
   -------------------------------------------------------------------------- */
.sns-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.sns-links .therapist-intro__sns {
  flex: 1;
  justify-content: center;
  padding: 10px 12px;
  font-size: 11px;
}

/* --------------------------------------------------------------------------
   Therapist Detail — Booking CTA
   -------------------------------------------------------------------------- */
.booking-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(2,193,212,0.05) 0%, rgba(139,92,246,0.03) 100%);
  border: 1px solid rgba(2,193,212,0.15);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}

.booking-cta__header {
  margin-bottom: 18px;
}

.booking-cta__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 4px;
}

.booking-cta__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 6px;
}

.booking-cta__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.booking-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-cta__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--color-teal);
  border-radius: 10px;
  background: var(--color-bg-white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
  transition: background 0.2s;
}

.booking-cta__tel:active {
  background: rgba(2,193,212,0.05);
}

.booking-cta__note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 6px 0 0;
}

/* --------------------------------------------------------------------------
   Recruit (求人) — 応募率特化コンポーネント
   -------------------------------------------------------------------------- */
/* キャッチコピー（art-header の padding 20px の内側に置かれるため左右marginは0） */
.recruit-catch {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
}

/* キーポイント・ストリップ（同上） */
.recruit-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0 0;
}

.recruit-points__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
}

.recruit-points__item--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(2,193,212,0.08) 0%, rgba(209,167,235,0.08) 100%);
  border-color: rgba(2,193,212,0.25);
}

.recruit-points__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-text-muted);
}

.recruit-points__value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.recruit-points__item--accent .recruit-points__value {
  font-size: 18px;
  color: var(--color-teal);
}

/* 報酬訴求 */
.recruit-salary {
  margin: 12px 0 0;
}

.recruit-salary__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(2,193,212,0.07) 0%, rgba(209,167,235,0.07) 100%);
  border: 1px solid rgba(2,193,212,0.2);
  border-radius: 14px;
}

.recruit-salary__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--color-text-muted);
}

.recruit-salary__range {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-teal);
}

.recruit-salary__detail {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-text-dark);
}

.recruit-salary__cases {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.recruit-salary__case {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  padding: 12px 14px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
}

.recruit-salary__case-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.recruit-salary__case-amount {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-teal);
  text-align: right;
}

.recruit-salary__case-note {
  grid-column: 1 / -1;
  font-size: 11.5px;
  color: var(--color-text-muted);
}

.recruit-salary__disclaimer {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--color-text-muted);
}

/* 選ばれる理由 */
.recruit-appeal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 0;
}

.recruit-appeal__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
}

.recruit-appeal__num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruit-appeal__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.recruit-appeal__head {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.recruit-appeal__desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* 1日の流れ */
.recruit-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
}

.recruit-flow__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--color-bg-light);
  border-radius: 10px;
}

.recruit-flow__time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-teal);
}

.recruit-flow__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* 先輩の声 */
.recruit-voices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0;
}

.recruit-voice {
  margin: 0;
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: 12px;
}

.recruit-voice__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--color-text-dark);
}

.recruit-voice__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.recruit-voice__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.recruit-voice__exp {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* 店長・オーナーからのメッセージ */
.recruit-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0;
}

.recruit-message {
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(2,193,212,0.05) 0%, rgba(209,167,235,0.05) 100%);
  border: 1px solid rgba(2,193,212,0.18);
  border-radius: 14px;
}

.recruit-message__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.recruit-message__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--color-text-dark);
}

.recruit-message__sign {
  margin: 12px 0 0;
  text-align: right;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* 追従応募バー */
.recruit-applybar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 90;
  width: 100%;
  max-width: 430px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.recruit-applybar__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.recruit-applybar__shop {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruit-applybar__salary {
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recruit-applybar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
}

.recruit-applybar__btn:active {
  opacity: .9;
}

/* 追従バーの高さ分、フッターとの干渉を回避 */
.single-jofu_recruit .site-footer,
.single-jofu_recruit .breadcrumb--footer {
  padding-bottom: 76px;
}

/* --------------------------------------------------------------------------
   Supervisor / Ambassador Card
   -------------------------------------------------------------------------- */
.supervisor-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.supervisor-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-border-light);
}

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

.supervisor-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.supervisor-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.supervisor-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
}

.supervisor-card__affiliation {
  font-size: 11px;
  color: var(--color-text-muted);
}

.supervisor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.supervisor-card__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(2,193,212,0.08);
  color: var(--color-teal);
}

.supervisor-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-body);
  margin: 6px 0 0;
}

.supervisor-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.supervisor-card__articles {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.supervisor-card__sns {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Editor Card
   -------------------------------------------------------------------------- */
.editor-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.editor-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--color-border-light);
}

.editor-card__avatar--teal { border-color: var(--color-teal); }
.editor-card__avatar--purple { border-color: #7C3AED; }
.editor-card__avatar--rose { border-color: #DB2777; }
.editor-card__avatar--blue { border-color: #3B82F6; }

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

.editor-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.editor-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.editor-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
  margin: 0;
}

.editor-card__role {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  /* Funnel Sans の見出しは文字がボックス上方に寄るため、バッジを光学的中央へ微上げ */
  position: relative;
  top: -1px;
}

.editor-card__role--teal { background: rgba(2,193,212,0.1); color: var(--color-teal); }
.editor-card__role--purple { background: rgba(124,58,237,0.1); color: #7C3AED; }
.editor-card__role--rose { background: rgba(219,39,119,0.08); color: #DB2777; }
.editor-card__role--blue { background: rgba(59,130,246,0.1); color: #3B82F6; }

.editor-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-body);
  margin: 0;
}

.editor-card__coverage {
  margin-top: 4px;
}

.editor-card__coverage-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.editor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.editor-card__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(2,193,212,0.08);
  color: var(--color-teal);
}

.editor-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.editor-card__articles {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.editor-card__tone {
  font-size: 10px;
  color: var(--color-text-light);
  font-style: italic;
}

.editor-detail__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 14px 0 6px;
}

.editor-detail__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0;
}

.editor-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.editor-detail__list li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-body);
  padding-left: 16px;
  position: relative;
}

.editor-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
}

/* --------------------------------------------------------------------------
   Experience Hub — Cards
   -------------------------------------------------------------------------- */
.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.experience-card__img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.experience-card__cat {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--color-teal);
  color: #fff;
}

.experience-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.experience-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
}

.experience-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.experience-card__shop {
  font-size: 12px;
  color: var(--color-teal);
  font-weight: 500;
}

.experience-card__area {
  font-size: 11px;
  color: var(--color-text-muted);
}

.experience-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experience-card__author {
  font-size: 11px;
  color: var(--color-text-muted);
}

.experience-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-star);
}

/* --------------------------------------------------------------------------
   Experience Hub — List View
   -------------------------------------------------------------------------- */
.experience-list {
  display: flex;
  flex-direction: column;
}

.experience-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: inherit;
}

.experience-list__item:last-child {
  border-bottom: none;
}

.experience-list__thumb {
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.experience-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-list__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.experience-list__cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-teal);
}

.experience-list__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.5;
  margin: 0;
}

.experience-list__meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.experience-list__arrow {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Therapist Q&A (一問一答) — page-therapist-qa.php
   -------------------------------------------------------------------------- */
.qa-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.qa-meta__date {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.qa-meta__author {
  font-weight: 500;
}

.qa-section__subtitle {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  position: relative;
  line-height: 1.4;
}

.qa-section__subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple), transparent);
}

.qa-section__subtitle:first-of-type {
  margin-top: 16px;
}

/* Which One Grid (Chart Style) */
.which-one-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
}

.which-one-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--color-border-light);
}

.which-one-item:last-child {
  border-bottom: none;
}

.which-one-item__option {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 12px 14px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}

.which-one-item__option--selected {
  background: var(--color-teal);
  color: #fff;
  font-weight: 700;
}

.which-one-item__option--selected::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.which-one-item__option:first-child.which-one-item__option--selected::after {
  right: 8px;
}

.which-one-item__option:last-child.which-one-item__option--selected::after {
  left: 8px;
}

.which-one-item__vs {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 6px;
  background: var(--color-bg-light);
  line-height: 1;
}

/* Parameter Mapping (10-scale bar chart — pink↔blue gradient) */
.param-map {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
}
.param-map__image {
  width: 130px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  align-self: center;
}
.param-map__image img { width: 100%; height: auto; display: block; }
.param-map__chart {
  flex: 1;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.param-map__head {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 7px;
}
/* % は寄り方向の色（右=ティール／左=ピンク）、項目名は黒文字 */
.param-map__pct { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #02C1D4; }
.param-map__win { font-weight: 700; font-size: 15px; color: #1A1A1A; }
.param-map__bar {
  position: relative;
  height: 4px;
  background: #02C1D4;
  border-radius: 2px;
  margin: 0 7px;
}
.param-map__dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #02C1D4;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
/* 左寄り（インドア・ドM側など）はピンクで表示 */
.param-map__row--left .param-map__pct { color: #D4648A; }
.param-map__row--left .param-map__bar { background: #D4648A; }
.param-map__row--left .param-map__dot { background: #D4648A; }
.param-map__ends {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 11px;
  color: #888;
}

/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .param-map__dot {
    background: var(--color-teal);
  }
}

@media (max-width: 600px) {
  .param-map {
    flex-direction: column;
    padding: 16px;
  }
  .param-map__image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .param-map__chart {
    width: 100%;
    min-width: 0;
  }
  .param-map__label {
    width: 60px;
    font-size: 10px;
  }
  .param-map__dot {
    width: 18px;
    height: 18px;
  }
}

/* Rating Chart (shared across shop/therapist/experience) */
.rating-chart {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: 12px;
}

.rating-chart__overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.rating-chart__score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1;
}

.rating-chart__label {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.rating-chart__axes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-chart__axis {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-chart__axis-label {
  font-size: 11px;
  color: var(--color-text-muted);
  width: 100px;
  flex-shrink: 0;
}

.rating-chart__bar {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.rating-chart__bar-fill {
  height: 100%;
  background: var(--color-teal);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.rating-chart__axis-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  width: 28px;
  text-align: right;
}

@media (max-width: 480px) {
  .rating-chart {
    flex-direction: column;
    align-items: center;
  }
  .rating-chart__axis-label {
    width: 72px;
    font-size: 10px;
  }
}

/* Q&A List */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-list__item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.qa-list__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.qa-list__q {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0 0 8px;
  padding-left: 28px;
  position: relative;
}

.qa-list__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--color-teal);
  border-radius: 4px;
}

.qa-list__a {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-dark);
  margin: 0;
  padding-left: 28px;
}

/* --------------------------------------------------------------------------
   Interview (独占インタビュー) — uses balloon-l/balloon-r from single.css
   -------------------------------------------------------------------------- */
/* Blockquote in portal sections (same as article-body) */
.portal-section blockquote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  margin: 0;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #EEFBFC, #F5F0FC);
  position: relative;
  overflow: hidden;
}

.portal-section blockquote::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.portal-section blockquote p {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.portal-section blockquote cite {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  font-style: normal;
  position: relative;
  z-index: 1;
  text-align: right;
}

.portal-section .balloon-section {
  padding: 0;
  background: none;
  border-radius: 0;
}

.portal-section .balloon-l__bubble {
  max-width: 100%;
}

.portal-section .balloon-r__bubble {
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   Interview Hub (一覧ページ) — page-interview-hub.php
   -------------------------------------------------------------------------- */
.interview-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 20px 0;
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.interview-tab {
  flex-shrink: 0;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.interview-tab--active {
  background: var(--color-text-primary);
  color: #fff;
  border-color: var(--color-text-primary);
}

.interview-card {
  display: flex;
  align-items: flex-start; /* サムネ枠が本文高さに伸びて16:9が崩れるのを防ぐ */
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.interview-card:active {
  background: var(--color-bg-light);
}

.interview-card__img-wrap {
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.interview-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.interview-card__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.interview-card__badge--exclusive {
  background: var(--color-purple-tint, #f3e8ff);
  color: var(--color-purple, #7c3aed);
}

.interview-card__badge--qa {
  background: var(--color-teal-tint, #e6fcf5);
  color: var(--color-teal);
}

.interview-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.interview-card__meta {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Love Hotel Portal & Detail
   -------------------------------------------------------------------------- */

/* Region Grid (Area Search) */
.hotel-region {
  margin-bottom: 20px;
}

.hotel-region__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 10px;
  padding-bottom: 8px;
  position: relative;
  line-height: 1.4;
}

.hotel-region__name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple), transparent);
}

.hotel-region__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.hotel-region__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.hotel-region__thumb {
  width: 48px;
  height: 27px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.hotel-region__item:active {
  border-color: var(--color-teal);
}

.hotel-region__area-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  flex: 1;
  min-width: 0;
}

.hotel-region__count {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* Hotel Card (Area listing) */
.hotel-card {
  width: 100%;
}

.hotel-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

/* Uses .rank-badge .rank-badge--lg .rank-badge--square .rank-badge--teal .rank-badge--static from base.css */

.hotel-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 6px;
  line-height: 1.4;
}

.hotel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hotel-card__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
}

/* Pricing table specific — override single.css thead styles */
.scroll-table__table--pricing {
  min-width: 400px;
}

.scroll-table__table--pricing thead {
  background: var(--color-teal) !important;
}

.scroll-table__table--pricing th {
  font-size: 12px;
  font-weight: 600;
  color: #fff !important;
  padding: 10px 12px;
  white-space: nowrap;
  text-align: left;
}

.scroll-table__table--pricing td {
  font-size: 12px;
  padding: 10px 12px;
  white-space: nowrap;
}

/* Note text */
.portal-section__note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* Amenity Grid */
.amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.amenity-grid__item {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--color-bg-light);
  border-radius: 4px;
  color: var(--color-text-dark);
}

/* Hotel Gallery */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hotel-gallery__item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.hotel-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hotel Map */
.hotel-map__placeholder {
  background: var(--color-bg-light);
  border: 1px dashed var(--color-border-light);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 13px;
}

/* Card List (featured hotels on hub) */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list__item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}

.card-list__item:active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-list__img {
  flex-shrink: 0;
  width: 110px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-bg-light);
}

.card-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-list__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.card-list__area {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-teal);
}

.card-list__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
}

.card-list__top {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.card-list__score {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--color-text-primary);
}

.card-list__city {
  font-size: 10px;
  color: var(--color-text-muted);
}

.card-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 2px;
}

.card-list__station {
  font-size: 11px;
  color: var(--color-text-muted);
}

.card-list__price-info {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--color-cat-coral);
  font-weight: 600;
}

/* ラブホカードの追加情報（評価/建物/部屋数 + 設備タグ） */
.card-list__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 4px;
}
.card-list__fact {
  font-size: 10px;
  color: var(--color-text-muted);
}
.card-list__fact--rating {
  color: #F59E0B;
  font-weight: 700;
}
.card-list__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}
.card-list__amenity {
  font-size: 10px;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  border-radius: 4px;
  padding: 1px 7px;
  line-height: 1.5;
}

.card-list__price {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
}

/* Prefecture grade overview (stats-row トンマナ) */
.pref-grade-overview {
  display: flex;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
  margin: 12px 16px 0;
}

.pref-grade-overview__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border-right: 1px solid var(--color-border-light);
}

.pref-grade-overview__item:last-child {
  border-right: none;
}

.pref-grade-overview__count {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* City filter pills */
.pref-city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pref-city-filter__btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.is-hidden-city {
  display: none;
}

.pref-city-filter__btn--active {
  background: var(--color-cat-teal);
  color: #fff;
  border-color: var(--color-cat-teal);
}

.card-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.card-list__tag {
  font-size: 10px;
  padding: 1px 6px;
  background: var(--color-bg-light);
  border-radius: 3px;
  color: var(--color-text-muted);
}

.card-list__img {
  position: relative;
}

/* Uses .rank-badge .rank-badge--sm .rank-badge--square-sm .rank-badge--teal from base.css */

/* Theme Grid */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.theme-grid__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.theme-grid__item:active {
  border-color: var(--color-teal);
}

.theme-grid__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--color-bg-light);
  border-radius: 6px;
}

.theme-grid__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.theme-grid__count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-teal);
  white-space: nowrap;
}

/* Step List (How to use) */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-list__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--color-teal);
  border-radius: 50%;
}

.step-list__content {
  flex: 1;
}

.step-list__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 4px;
  line-height: 1.5;
}

.step-list__text {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Column Hub (/jofu/column/)
   ========================================================================== */

/* Byline bar */
.byline-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  background: var(--color-bg-light);
  border-radius: 10px;
}

.byline-bar__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
}

.byline-bar__role {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--color-teal);
  font-size: 11px;
}

.byline-bar__name {
  color: var(--color-text-dark);
}

/* Lead text */
.column-lead {
  background: var(--color-bg-light);
  border-radius: 10px;
  padding: 16px;
}

.column-lead p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin: 0;
}

/* --- Category grid (5 columns) --- */
/* --------------------------------------------------------------------------
   Category Grid — shared for column/goods/quiz category buttons
   -------------------------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cat-grid--5col {
  grid-template-columns: repeat(5, 1fr);
}

.cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 4px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cat-btn:active {
  background: var(--color-bg-light);
}

.cat-btn--current {
  border-color: var(--color-teal);
  background: var(--color-bg-teal-tint, #E4F7F9);
}

.cat-btn__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.cat-grid--5col .cat-btn__icon {
  width: 32px;
  height: 32px;
}

.cat-btn__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.cat-grid--5col .cat-btn__name {
  font-size: 10px;
}

.cat-btn__count {
  font-size: 9px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* --- Ranking --- */
.column-ranking {
  display: flex;
  flex-direction: column;
}

.column-ranking__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
}

.column-ranking__item:last-child {
  border-bottom: none;
}

.column-ranking__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-text-muted);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.column-ranking__num--top {
  background: var(--gradient);
  color: #fff;
}

.column-ranking__thumb {
  width: 100px;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-light);
}

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

.column-ranking__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.column-ranking__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-ranking__meta {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* --- Article card (thumb + text) --- */
.column-article-card {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
}

.column-article-card:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.column-article-card__thumb {
  width: 96px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  align-self: flex-start;
}

/* --- メディア型（goods等）: 16:9の大きな縦型カード --- */
.column-article-card--media {
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin-bottom: 16px;
  border: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.column-article-card--media:last-of-type {
  margin-bottom: 0;
}
.column-article-card--media:active {
  box-shadow: var(--shadow-sm);
}
.column-article-card--media .column-article-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  align-self: stretch;
}
.column-article-card--media .column-article-card__body {
  padding: 13px 15px 15px;
  gap: 5px;
}
.column-article-card--media .column-article-card__title {
  font-size: 15px;
}
.column-article-card--media .column-article-card__excerpt {
  -webkit-line-clamp: 3;
}

.column-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-article-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.column-article-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-article-card__excerpt {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 3px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-article-card__meta {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* --- CV section --- */
.column-cv {
  background: var(--color-bg-light);
}

.column-cv__card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}

.column-cv__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.column-cv__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-cv__body {
  flex: 1;
  min-width: 0;
}

.column-cv__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px;
}

.column-cv__desc {
  font-size: 12px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 0 6px;
}

.column-cv__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.column-cv__cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* --- Diagnosis grid --- */
.column-diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.column-diag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 10px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  text-decoration: none;
}

.column-diag-card__icon {
  margin-bottom: 8px;
}

.column-diag-card__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.column-diag-card__desc {
  font-size: 10px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.column-diag-card__btn {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gradient);
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* --- Goods scroll cards --- */
.column-goods-card {
  width: 160px;
  min-width: 160px;
  flex-shrink: 0;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-white);
  text-decoration: none;
}

.column-goods-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-light);
}

.column-goods-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.column-goods-card__body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.column-goods-card__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 2);
}

.column-goods-card__price {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.column-goods-card__rating {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* --- Cross-pillar link --- */
/* column-cross-link — replaced by .related-scroll + .related-card */

/* --- Supervisor row --- */
.column-supervisor {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

.column-supervisor:last-child {
  margin-bottom: 0;
}

.column-supervisor__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.column-supervisor__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-supervisor__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.column-supervisor__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.column-supervisor__title {
  font-size: 11px;
  color: var(--color-text-muted);
}

.column-supervisor__articles {
  font-size: 11px;
  color: var(--color-text-dark);
}

/* ==========================================================================
   Goods Hub (/jofu/goods/)
   ========================================================================== */

/* Category grid (4 columns) */
/* goods-cat-grid — replaced by .cat-grid (shared component above) */

/* --- Ranking cards --- */
.goods-ranking {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.goods-ranking__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.goods-ranking__card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--color-teal) 45%, transparent);
  box-shadow: 0 8px 22px rgba(2, 193, 212, .12);
}

.goods-ranking__card + .goods-ranking__card {
  margin-top: 10px;
}

/* Uses .rank-badge .rank-badge--sm from base.css */
.goods-ranking__card .rank-badge {
  top: 8px;
  left: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .22);
}

.goods-ranking__img {
  width: 104px;
  height: 78px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-bg-light);
}

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

.goods-ranking__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goods-ranking__cat {
  align-self: flex-start;
  display: inline-flex;
  padding: 2px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-teal) 12%, #fff);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-teal);
}

.goods-ranking__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.goods-ranking__brand {
  font-size: 11px;
  color: var(--color-text-muted);
}

.goods-ranking__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.goods-ranking__rating {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.goods-ranking__desc {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* --- #1: large 16:9 featured card --- */
.goods-ranking__card--featured {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.goods-ranking__card--featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 193, 212, .16);
}

.goods-ranking__card--featured .goods-ranking__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.goods-ranking__card--featured .rank-badge {
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  font-size: 17px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}

.goods-ranking__card--featured .goods-ranking__body {
  padding: 14px 16px 16px;
  gap: 6px;
}

.goods-ranking__card--featured .goods-ranking__name {
  font-size: 16px;
  -webkit-line-clamp: 2;
}

.goods-ranking__card--featured .goods-ranking__desc {
  font-size: 12.5px;
  -webkit-line-clamp: 3;
}

/* --- Goods Detail --- */
.goods-detail-score {
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 16px;
}

.goods-detail-score__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.goods-detail-score__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-mono);
}

.goods-detail-score__stars {
  display: flex;
  gap: 2px;
}

.goods-detail-score__count {
  font-size: 12px;
  color: var(--color-text-muted);
}

.goods-detail-score__bar {
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.goods-detail-score__bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
}

.goods-detail-score__meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.goods-detail-score__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.goods-detail-score__brand,
.goods-detail-score__cat {
  font-size: 12px;
  color: var(--color-text-muted);
}


/* CTA spacing for goods detail */
.goods-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

/* ==========================================================================
   Column Series (/jofu/column/series/)
   ========================================================================== */

.series-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.series-card {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.15s ease;
}

.series-card:active {
  background: var(--color-bg-light);
}

.series-card__color {
  width: 4px;
  flex-shrink: 0;
}

.series-card__body {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
}

.series-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.series-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
}

.series-card__badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #FF0000;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.series-card__desc {
  font-size: 12px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 0 6px;
}

.series-card__meta {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  gap: 12px;
}

.series-card__arrow {
  flex-shrink: 0;
  align-self: center;
  margin-right: 12px;
  color: var(--color-text-muted);
}

/* YouTube badge on article card thumb */
.column-article-card__yt-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: #FF0000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-article-card__thumb {
  position: relative;
}

/* ==========================================================================
   Ambassador Detail (/jofu/ambassador/{slug}/)
   ========================================================================== */

.ambassador-sns-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ambassador-sns-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  text-decoration: none;
}

.ambassador-sns-item__platform {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  min-width: 80px;
}

.ambassador-sns-item__handle {
  flex: 1;
  font-size: 13px;
  color: var(--color-teal);
}

.ambassador-sns-item svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.ambassador-message {
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 20px;
  margin: 0;
}

.ambassador-message p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin: 0 0 12px;
}

.ambassador-message cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Quiz Hub (/jofu/quiz/)
   ========================================================================== */

.quiz-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-card {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.15s ease;
  background: #fff;
}

.quiz-card:active {
  box-shadow: var(--shadow-sm);
}

.quiz-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-card__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.quiz-card__body {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
}

.quiz-card__badges {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.quiz-card__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.quiz-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px;
  line-height: 1.4;
}

.quiz-card__desc {
  font-size: 12px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 0 8px;
}

.quiz-card__meta {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  gap: 10px;
}

.quiz-card__arrow {
  flex-shrink: 0;
  align-self: center;
  margin-right: 14px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Quiz App (/jofu/quiz/{type}/)
   ========================================================================== */

.quiz-app {
  min-height: 60vh;
}

.quiz-screen {
  display: none;
}

.quiz-screen.is-active {
  display: block;
}

/* Intro */
.quiz-intro {
  text-align: center;
  padding: 40px 20px 24px;
}

.quiz-intro__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}

.quiz-intro__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-intro__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 8px;
}

.quiz-intro__badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.quiz-intro__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(2, 193, 212, 0.1);
  color: var(--color-teal);
}

.quiz-intro__desc {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin: 0 0 12px;
}

.quiz-intro__stats {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.quiz-intro__stats strong {
  color: var(--color-text-primary);
}

/* Intro detail */
.quiz-intro-detail {
  padding: 0 20px 24px;
}

.quiz-intro-detail__supervisor {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.quiz-intro-detail h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 20px 0 10px;
}

.quiz-intro-detail ul {
  padding-left: 18px;
  margin: 0 0 16px;
}

.quiz-intro-detail li {
  font-size: 13px;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Type grid (result list / intro) */
.quiz-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 12px 0 16px;
}

/* この診断でわかること: チェック付きカードリスト */
.quiz-features {
  list-style: none;
  margin: 12px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-features__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-dark);
}
.quiz-features__check {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-cat-teal);
}

.quiz-type-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border: 1px solid color-mix(in srgb, var(--chip-c, var(--color-border-light)) 35%, var(--color-border-light));
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  background: color-mix(in srgb, var(--chip-c, #ffffff) 6%, #ffffff);
}

.quiz-type-chip--current {
  border-color: var(--chip-c, var(--color-teal));
  box-shadow: 0 0 0 1px var(--chip-c, var(--color-teal)) inset;
}

.quiz-type-chip__id {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--chip-c, var(--color-teal));
  border-radius: 6px;
  padding: 2px 8px;
}

.quiz-type-chip__name {
  font-size: 10px;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.quiz-type-chip--current .quiz-type-chip__name {
  font-weight: 700;
  color: var(--color-teal);
}

/* Progress bar */
.quiz-progress {
  padding: 16px 20px;
}

.quiz-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.quiz-progress__current {
  font-weight: 700;
  color: var(--color-text-primary);
}

.quiz-progress__bar {
  width: 100%;
  height: 6px;
  background: var(--color-border-light);
  border-radius: 3px;
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

/* Question area */
.quiz-question {
  padding: 0 20px 24px;
}

.quiz-q-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-border);
  margin-bottom: 8px;
}

.quiz-q-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Option buttons */
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border-light);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
  font-family: inherit;
  font-size: inherit;
}

.quiz-option:active {
  border-color: var(--color-teal);
  background: var(--color-bg-light);
}

.quiz-option__label {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.quiz-option__text {
  font-size: 13px;
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* Slider */
.quiz-slider {
  padding: 16px 0;
}

.quiz-slider__input {
  width: 100%;
  margin: 8px 0;
  accent-color: var(--color-teal);
}

.quiz-slider__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-text-muted);
}

.quiz-slider-next {
  margin-top: 16px;
}

/* Image selection */
.quiz-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-img-option {
  border: 2px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  text-align: center;
  font-family: inherit;
  padding: 0;
}

.quiz-img-option:active {
  border-color: var(--color-teal);
}

.quiz-img-option__img {
  height: 100px;
  overflow: hidden;
}

.quiz-img-option__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-img-option__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  padding: 8px 8px 2px;
}

.quiz-img-option__sub {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
  padding: 0 8px 10px;
  line-height: 1.4;
}

/* Yes/No */
.quiz-yesno {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-yesno__btn {
  padding: 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--color-border-light);
  background: #fff;
  transition: border-color 0.2s;
  font-family: inherit;
}

.quiz-yesno__btn:active {
  border-color: var(--color-teal);
}

.quiz-yesno__btn--yes {
  color: var(--color-teal);
}

.quiz-yesno__btn--no {
  color: var(--color-text-muted);
}

/* Loading */
.quiz-loading {
  text-align: center;
  padding: 80px 24px;
}

.quiz-loading__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border-light);
  border-top: 4px solid var(--color-teal);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: quiz-spin 0.8s linear infinite;
}

@keyframes quiz-spin {
  to { transform: rotate(360deg); }
}

.quiz-loading__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px;
}

.quiz-loading__sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Result page extras */
.quiz-result-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-teal);
  margin: 0 0 4px;
}

.quiz-result-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.quiz-result-stats strong {
  color: var(--color-text-primary);
}

/* ==========================================================================
   TwitCasting (/jofu/twitcasting/)
   ========================================================================== */

.tc-category-filter {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.tc-category-filter::-webkit-scrollbar {
  display: none;
}

.tc-filter-btn {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--color-border-light);
  background: #fff;
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.tc-filter-btn--active {
  background: var(--color-text-primary);
  color: #fff;
  border-color: var(--color-text-primary);
}

.tc-ranking {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-video-card {
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.tc-video-card__thumb {
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.tc-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Uses .rank-badge .rank-badge--xs from base.css */

.tc-video-card__duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1px 5px;
  border-radius: 3px;
}

.tc-video-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-video-card__cat {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-teal);
}

.tc-video-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-video-card__meta {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Caster scroll row */
.tc-caster-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 14px;
}

.tc-caster-scroll::-webkit-scrollbar {
  display: none;
}

/* Caster card */
.tc-caster-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  width: 80px;
  text-decoration: none;
}

.tc-caster-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border-light);
}

.tc-caster-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-caster-card__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.tc-caster-card__meta {
  font-size: 10px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ==========================================================================
   Spacing utilities (replace inline margin-top)
   ========================================================================== */
.mt-8  { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }

/* Full-width rounded image inside portal-section */
.portal-img-full {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* portal-section見出し直後の画像 */
.portal-section__title + img,
.portal-section__title + .portal-img-full {
  margin-top: 12px;
  margin-bottom: 16px;
  width: 100%;
  border-radius: 10px;
}

/* portal-section body text (replaces inline font-size/line-height/color) */
.portal-body-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-dark);
}

/* Section image placeholder (replaces inline aspect-ratio) */
.section-img--16x9 {
  aspect-ratio: 16/9;
}

/* balloon-section reset (no padding/bg override) */
.balloon-section--plain {
  padding: 0;
  background: none;
}

/* balloon-section with light bg */
.balloon-section--light {
  padding: 12px 16px;
  background: var(--color-bg-light);
  border-radius: 10px;
}

/* Tag list (flex wrap) */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Detail row (bordered separator) */
.detail-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* Portal section title size variant */
.portal-section__title--lg {
  font-size: 20px;
}

/* ==========================================================================
   Love Hotel Detail — Enhanced Components
   ========================================================================== */

/* Score Card */
.hotel-score {
  padding: 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
}
.hotel-score__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hotel-score__badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.hotel-score__badge--s { background: linear-gradient(135deg, #02C1D4, #8B5CF6); }
.hotel-score__badge--a { background: linear-gradient(135deg, #22c55e, #02C1D4); }
.hotel-score__badge--b { background: linear-gradient(135deg, #f59e0b, #f97316); }
.hotel-score__badge--c { background: #9ca3af; }
.hotel-score__badge--d { background: #d1d5db; color: #6b7280; }
.hotel-score__summary {
  flex: 1;
  min-width: 0;
}
.hotel-score__total {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}
.hotel-score__total span {
  font-size: 22px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hotel-score__label {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 2px;
  line-height: 1.4;
}
.hotel-score__body {
  width: 100%;
}

/* Score Breakdown Bars */
.hotel-score-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.hotel-score-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hotel-score-bar__label {
  font-size: 10px;
  color: var(--color-text-light);
  width: 60px;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.2;
}
.hotel-score-bar__track {
  flex: 1;
  height: 5px;
  background: var(--color-bg-light);
  border-radius: 3px;
  overflow: hidden;
}
.hotel-score-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient);
  transition: width 0.6s ease;
}
.hotel-score-bar__num {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-primary);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Quick Action Bar */
.hotel-actions {
  display: flex;
  gap: 6px;
  padding: 0 16px 8px;
}
.hotel-actions__btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s;
}
.hotel-actions__btn svg {
  flex-shrink: 0;
}
.hotel-actions__btn:active { opacity: 0.8; }
.hotel-actions__btn--primary {
  background: var(--gradient);
  color: #fff;
}
.hotel-actions__btn--tel {
  background: var(--color-bg-white);
  border: 1px solid var(--color-cat-teal);
  color: var(--color-cat-teal);
}
.hotel-actions__btn--map {
  background: var(--color-bg-white);
  border: 1px solid var(--color-cat-coral);
  color: var(--color-cat-coral);
}

/* Highlight Cards */
.hotel-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}
.hotel-highlights__card {
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 12px 14px;
}
.hotel-highlights__icon {
  color: var(--color-teal);
  margin-bottom: 4px;
}
.hotel-highlights__label {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.3;
}
.hotel-highlights__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 2px;
}

/* Jofu Suitability Checklist */
.hotel-jofu-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
}
.hotel-jofu-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--color-bg-light);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-body);
}
.hotel-jofu-check svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-teal);
}

/* Tips Card */
.hotel-tips {
  background: rgba(2, 193, 212, 0.06);
  border: 1px solid rgba(2, 193, 212, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 16px;
}
.hotel-tips__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-primary);
}
.hotel-tips__list {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-body);
  padding-left: 20px;
  margin: 0;
}
.hotel-tips__list li {
  margin-bottom: 2px;
}

/* Source Links */
.hotel-sources {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hotel-sources__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  font-size: 13px;
  color: var(--color-text-body);
  text-decoration: none;
  transition: background 0.2s;
}
.hotel-sources__link:hover {
  background: var(--color-bg-light);
}
.hotel-sources__link svg {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* Area Navigation (hotel → city/pref links) */
.hotel-area-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hotel-area-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text-dark);
  transition: background 0.2s, border-color 0.2s;
}
.hotel-area-nav__link:hover {
  background: var(--color-bg-light);
  border-color: var(--color-accent);
}
.hotel-area-nav__link > svg:first-child {
  color: var(--color-accent);
  flex-shrink: 0;
}
.hotel-area-nav__link > svg:last-child {
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-left: auto;
}
.hotel-area-nav__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.hotel-area-nav__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.hotel-area-nav__count {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* Pricing Group */
.hotel-pricing-group {
  margin-bottom: 20px;
}
.hotel-pricing-group:last-child {
  margin-bottom: 0;
}

/* Tag list items (amenity tags) */
.tag-list__item {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: var(--color-bg-light);
  border-radius: 6px;
  color: var(--color-text-dark);
  line-height: 1.4;
}

/* Hotel FAQ link to schema */
.hotel-faq-schema { display: none; }

/* ---------- Hotel Access Routes ---------- */
.hotel-access-routes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hotel-access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hotel-access-list__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dark);
}
.hotel-access-list__item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-text-muted);
}

/* ---------- Lead text multi-paragraph ---------- */
.portal-body-text p {
  margin: 0 0 8px;
}
.portal-body-text p:last-child {
  margin-bottom: 0;
}

/* ---------- Portal Grid (city breakdown etc.) ---------- */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.portal-grid__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--color-border-light, #e8e8e8);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text-dark);
  transition: border-color 0.2s;
}
.portal-grid__item:hover {
  border-color: var(--color-accent, #02C1D4);
}
.portal-grid__name {
  font-weight: 500;
}
.portal-grid__count {
  font-size: 12px;
  color: var(--color-text-muted, #888);
  white-space: nowrap;
  margin-left: 8px;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  padding: 16px 0;
}
.pagination__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--color-border-light, #e8e8e8);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text-dark);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.pagination__link:hover {
  border-color: var(--color-accent, #02C1D4);
  background: var(--color-bg-subtle, #f8f8f8);
}
.pagination__link--current {
  background: var(--color-accent, #02C1D4);
  color: #fff;
  border-color: var(--color-accent, #02C1D4);
  font-weight: 600;
}

/* ---------- Hotel Region: current state ---------- */
.hotel-region__item--current {
  border-color: var(--color-accent, #02C1D4);
  background: var(--color-bg-accent-light, #f0fafb);
  font-weight: 600;
}

/* ---------- 18歳未満利用不可注意表記 ---------- */
.age-restriction-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 8px 16px;
  margin: 0;
  font-size: 12px;
  color: #b91c1c;
  line-height: 1.5;
}
.age-restriction-notice svg {
  flex-shrink: 0;
  color: #dc2626;
}
/* セラピスト詳細: ギャラリー(padding:0)直下で端〜端になるため左右に余白を付与 */
.therapist-gallery .age-restriction-notice {
  margin: 12px 20px 0;
}

/* ---------- Card list with thumbnail (horizontal layout) ---------- */
.card-list--horizontal .card-list__item {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.card-list__thumb {
  flex-shrink: 0;
  width: 90px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-subtle, #f5f5f5);
}
.card-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  .card-list__thumb {
    width: 120px;
    height: 80px;
  }
}

/* ---------- Article credit / disclaimer ---------- */
.article-credit {
  margin: 4px 12px 24px;
  padding: 14px 16px;
  background: var(--color-bg-subtle, #f9fafb);
  border: 1px solid var(--color-border-soft, #e5e7eb);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-text-muted, #6b7280);
}
.article-credit p {
  margin: 0;
}

/* ---------- Hotel Gallery (multi-angle Street View) ---------- */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.hotel-gallery__item {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hotel-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.hotel-gallery__item img:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   Hotel Internal Links Navigation (accordion)
   ========================================================================== */
.hotel-internal-links {
  margin: 32px 0 24px;
  padding: 0 12px;
}
.hotel-internal-links__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 4px;
}

.hotel-link-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-link-group {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.hotel-link-group[open] > .hotel-link-group__header {
  border-bottom: 1px solid #e5e7eb;
}
.hotel-link-group__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: #374151;
}
.hotel-link-group__header::-webkit-details-marker {
  display: none;
}
.hotel-link-group__header::after {
  content: '';
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.hotel-link-group[open] > .hotel-link-group__header::after {
  transform: rotate(-135deg);
}
.hotel-link-group__icon {
  display: flex;
  align-items: center;
  color: #6b7280;
  flex-shrink: 0;
}
.hotel-link-group__body {
  padding: 12px 16px;
}

/* Link list */
.hotel-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hotel-link-list__item {
  flex: 0 0 auto;
}
.hotel-link-list__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8125rem;
  text-decoration: none;
  color: #374151;
  background: #f3f4f6;
  transition: background 0.15s, color 0.15s;
  line-height: 1.5;
}
a.hotel-link-list__link:hover {
  background: #02C1D4;
  color: #fff;
}
.hotel-link-list__link--disabled {
  color: #9ca3af;
  background: #f9fafb;
  cursor: default;
  font-weight: 600;
}
.hotel-link-list__item--current .hotel-link-list__link--disabled {
  background: #e0f7fa;
  color: #0e7490;
  font-weight: 600;
}
.hotel-link-list__count {
  font-size: 0.6875rem;
  color: #9ca3af;
}
a.hotel-link-list__link:hover .hotel-link-list__count {
  color: rgba(255,255,255,0.8);
}

/* Region subdivision in "全国" section */
.hotel-link-region {
  margin-bottom: 12px;
}
.hotel-link-region:last-child {
  margin-bottom: 0;
}
.hotel-link-region__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 6px 2px;
  letter-spacing: 0.05em;
}
.hotel-link-list--compact .hotel-link-list__link {
  padding: 3px 8px;
  font-size: 0.75rem;
}
.hotel-link-list--compact .hotel-link-list__count {
  font-size: 0.625rem;
}

/* Tag-style links (station, IC, spots) */
.hotel-link-list__link--tag {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
}
a.hotel-link-list__link--tag:hover {
  background: #4338ca;
  color: #fff;
  border-color: #4338ca;
}
a.hotel-link-list__link--tag:hover .hotel-link-list__count {
  color: #e0e7ff;
}
.hotel-link-list__link--tag .hotel-link-list__count {
  color: #6366f1;
}
.hotel-link-list__link--spot {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
a.hotel-link-list__link--spot:hover {
  background: #92400e;
  color: #fff;
  border-color: #92400e;
}
.hotel-link-list__link--spot::before {
  content: '\1F4CD';
  font-size: 0.7rem;
  margin-right: 2px;
}

/* ==========================================================================
   MBTI / LoveType Interactive Components
   ========================================================================== */

/* --- Compatibility Checker --- */
/* ==========================================================================
   Compatibility Checker — Rich Interactive Widget
   ========================================================================== */
.compat-checker {
  background: linear-gradient(135deg, #EEFBFC, #F5F0FC);
  border-radius: 16px;
  padding: 28px 24px;
  margin: 32px 0;
  border: 1px solid rgba(2, 193, 212, 0.15);
  box-shadow: 0 2px 12px rgba(2, 193, 212, 0.06);
  position: relative;
  overflow: hidden;
}
.compat-checker::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.compat-checker__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-teal, #0D9488);
  margin-bottom: 4px;
}
.compat-checker__header svg {
  color: #EC4899;
}
.compat-checker__desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary, #6B7280);
  margin-bottom: 20px;
}
.compat-checker__selects {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.compat-checker__select-group {
  flex: 1;
}
.compat-checker__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-secondary, #6B7280);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.compat-checker__select {
  width: 100%;
  padding: 12px 36px 12px 14px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.compat-checker__select:hover {
  border-color: var(--color-teal, #0D9488);
}
.compat-checker__select:focus {
  outline: none;
  border-color: var(--color-teal, #0D9488);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.compat-checker__vs {
  flex-shrink: 0;
  padding-bottom: 8px;
  color: #EC4899;
  opacity: 0.7;
}
/* --- 結果表示 --- */
.compat-checker__result {
  margin-top: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  animation: compat-fadein 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes compat-fadein {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.compat-checker__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-display, 'Geist', sans-serif);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}
.compat-checker__rank.rank-s {
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
  animation: rank-glow 2s ease-in-out infinite alternate;
}
@keyframes rank-glow {
  from { box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35); }
  to   { box-shadow: 0 4px 24px rgba(236, 72, 153, 0.4); }
}
.compat-checker__rank.rank-a {
  background: linear-gradient(135deg, #0D9488 0%, #10B981 100%);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.compat-checker__rank.rank-b {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.compat-checker__rank.rank-c {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.compat-checker__rank.rank-d {
  background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
}
.compat-checker__rank-label {
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark, #1F2937);
  margin-bottom: 16px;
  line-height: 1.5;
}
.compat-checker__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compat-checker__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #F0FDFA 0%, #F5F3FF 100%);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-teal, #0D9488);
  text-decoration: none;
  transition: all 0.2s;
}
.compat-checker__links a::before {
  content: '\2192';
  font-size: 0.75rem;
  opacity: 0.6;
}
.compat-checker__links a:hover {
  background: #E0F2F1;
  border-color: var(--color-teal, #0D9488);
  transform: translateX(2px);
}
.compat-checker__cta-text {
  font-size: 0.75rem;
  color: var(--color-text-secondary, #6B7280);
  margin-top: 16px;
  text-align: center;
}
.compat-checker__cta-text a {
  color: var(--color-teal, #0D9488);
  font-weight: 600;
}

/* ==========================================================================
   Type Navigator Grid — Rich Interactive Widget
   ========================================================================== */
.type-nav {
  background: linear-gradient(135deg, #EEFBFC, #F5F0FC);
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.06);
  position: relative;
  overflow: hidden;
}
.type-nav::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.type-nav__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-teal, #0D9488);
  margin-bottom: 16px;
}
.type-nav__header svg {
  color: var(--color-teal, #0D9488);
  opacity: 0.7;
}
.type-nav__group {
  margin-bottom: 12px;
}
.type-nav__group:last-child {
  margin-bottom: 0;
}
.type-nav__group-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-teal, #0D9488);
  padding: 2px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  margin-bottom: 8px;
}
.type-nav__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.type-nav__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 72px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.type-nav__chip:hover {
  border-color: var(--color-teal, #0D9488);
  background: linear-gradient(135deg, #F0FDFA 0%, #E0F7FA 100%);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.12);
  transform: translateY(-2px);
}
.type-nav__chip--current {
  border-color: var(--color-teal, #0D9488);
  background: var(--gradient, linear-gradient(135deg, #02C1D4, #D1A7EB));
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.type-nav__chip--current:hover {
  background: var(--gradient, linear-gradient(135deg, #02C1D4, #D1A7EB));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
}
.type-nav__chip-id {
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  letter-spacing: 0.03em;
  color: var(--color-text-dark, #1F2937);
}
.type-nav__chip--current .type-nav__chip-id {
  color: #fff;
}
.type-nav__chip-name {
  font-size: 0.65rem;
  color: var(--color-text-secondary, #6B7280);
  margin-top: 2px;
}
.type-nav__chip--current .type-nav__chip-name {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Cluster Navigation — Rich Pill Tabs
   ========================================================================== */
.cluster-nav {
  background: linear-gradient(135deg, #EEFBFC, #F5F0FC);
  border: 1px solid rgba(2, 193, 212, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(2, 193, 212, 0.05);
  position: relative;
  overflow: hidden;
}
.cluster-nav::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(209, 167, 235, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cluster-nav__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text-dark, #1F2937);
  margin-bottom: 14px;
}
.cluster-nav__title svg {
  color: var(--color-teal, #0D9488);
  opacity: 0.7;
}
.cluster-nav__links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.cluster-nav__links::-webkit-scrollbar { display: none; }
.cluster-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: var(--color-text-primary, #1F2937);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.cluster-nav__link:not(.cluster-nav__link--current):hover {
  border-color: var(--color-teal, #0D9488);
  color: var(--color-teal, #0D9488);
  background: linear-gradient(135deg, #F0FDFA 0%, #E0F7FA 100%);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
  transform: translateY(-1px);
}
.cluster-nav__link.cluster-nav__link--current,
.cluster-nav__link.cluster-nav__link--current:hover {
  background: var(--gradient, linear-gradient(135deg, #02C1D4, #D1A7EB));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 193, 212, 0.25);
}
.cluster-nav__link.cluster-nav__link--current:hover {
  box-shadow: 0 6px 16px rgba(2, 193, 212, 0.3);
  transform: translateY(-1px);
}
.cluster-nav__icon {
  flex-shrink: 0;
  opacity: 0.6;
}
.cluster-nav__link--current .cluster-nav__icon {
  stroke: #fff;
  opacity: 1;
}
.cluster-nav__quiz {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-teal, #0D9488);
  background: #fff;
  border: 2px solid var(--color-teal, #0D9488);
  text-decoration: none;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 28px;
  font-weight: 800;
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.cluster-nav__quiz:hover {
  background: var(--color-teal, #0D9488);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
}
.cluster-nav__quiz svg {
  color: currentColor;
}

@media (max-width: 480px) {
  .compat-checker {
    padding: 20px 16px;
  }
  .compat-checker__selects {
    flex-direction: column;
  }
  .compat-checker__vs {
    padding-top: 0;
    transform: rotate(90deg);
  }
  .type-nav {
    padding: 16px;
  }
  .type-nav__chips {
    gap: 6px;
  }
  .type-nav__chip {
    min-width: 62px;
    padding: 8px 8px;
  }
  .cluster-nav {
    padding: 16px;
  }
  .cluster-nav__link {
    padding: 7px 12px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   MBTI / LoveType Article Tables
   - 横スクロール対応
   - ランクバッジカラー
   - 長いテーブルの開閉式（details/summary）
   - 視認性の向上
   ========================================================================== */

/* --- テーブルラッパー: 横スクロール対応 --- */
.article-body figure,
.article-body .table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
  border-radius: 10px;
  border: 1px solid var(--color-border-light, #E5E7EB);
}
.article-body figure.wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- ベーステーブルスタイル --- */
.article-body table.has-fixed-layout {
  table-layout: auto;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 13px;
  border: none;
}
/* 4列以上のテーブル: 内容に応じて幅を取り、収まらない時だけ横スクロール。
   MBTI相性表のような広い表は自然にスクロール、指名料等の収まる表はスクロールなし。 */
.article-body table.has-fixed-layout:has(th:nth-child(4)) {
  min-width: max-content;
}
/* 3列テーブル（総額シミュレーション等）: 内容に応じて幅を取り、収まらない時だけ横スクロール。
   max-content により、収まる場合はコンテナ幅で表示しスクロールは出さない。 */
.article-body table.has-fixed-layout:has(th:nth-child(3)):not(:has(th:nth-child(4))) {
  min-width: max-content;
}

/* 原則: 記事内テーブルの値は左寄せで統一（移行コンテンツのインライン右/中央寄せも上書き） */
.article-body table th,
.article-body table td {
  text-align: left !important;
}

/* --- ヘッダー --- */
.article-body table.has-fixed-layout thead th {
  background: var(--color-teal, #0D9488);
  color: #fff;
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  border: none;
  position: sticky;
  top: 0;
  z-index: 1;
}
/* 4列以上のテーブルのみヘッダー中央揃え＋nowrap */
.article-body table.has-fixed-layout:has(th:nth-child(4)) thead th {
  text-align: center;
  white-space: nowrap;
  font-size: 11px;
  padding: 10px 10px;
}
/* 2-3列テーブルのヘッダーは左揃え */
.article-body table.has-fixed-layout:not(:has(th:nth-child(4))) thead th {
  text-align: left;
}

/* --- セル --- */
.article-body table.has-fixed-layout td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border-light, #E5E7EB);
  vertical-align: middle;
  line-height: 1.6;
  font-size: 13px;
  color: var(--color-text-dark, #1F2937);
}
.article-body table.has-fixed-layout tbody tr:nth-child(even) td {
  background: #F9FAFB;
}
.article-body table.has-fixed-layout tbody tr:last-child td {
  border-bottom: none;
}
.article-body table.has-fixed-layout tbody tr:hover td {
  background: #EFF6FF;
}

/* --- 1列目 — 4列以上のテーブル。幅は内容なりに（固定幅は列バランスを崩すため撤廃） --- */
.article-body table.has-fixed-layout:has(th:nth-child(4)) td:first-child,
.article-body table.has-fixed-layout:has(th:nth-child(4)) th:first-child {
  font-weight: 700;
  white-space: nowrap;
}
/* --- タイプ列（2列目）— 4列以上のテーブルのみ --- */
.article-body table.has-fixed-layout:has(th:nth-child(4)) td:nth-child(2),
.article-body table.has-fixed-layout:has(th:nth-child(4)) th:nth-child(2) {
  white-space: nowrap;
}
/* --- 2-3列テーブル（店舗情報等）: 項目名列を適切な幅に --- */
.article-body table.has-fixed-layout:not(:has(th:nth-child(4))) td:first-child {
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text-primary, #1F2937);
}

/* --- ランクバッジカラー --- */
.article-body table.has-fixed-layout td:first-child strong,
.article-body .rank-badge {
  display: inline-block;
  min-width: 28px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}
/* S: ゴールド */
.article-body table.has-fixed-layout tbody tr td:first-child strong:where(:is([class])),
.article-body table.has-fixed-layout tbody tr td strong {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
}
.article-body table.has-fixed-layout tbody tr:has(td:first-child strong) td:first-child {
  font-size: 0;
}

/* ランクごとの行の左ボーダー色分け */
.article-body table.has-fixed-layout tbody tr td:first-child {
  border-left: 4px solid transparent;
}

/* --- 一言コメント列: テキスト折り返し --- */
.article-body table.has-fixed-layout td:last-child {
  min-width: 160px;
  word-break: break-word;
}

/* --- 星の表示最適化（4列以上のテーブルのみ） --- */
.article-body table.has-fixed-layout:has(th:nth-child(4)) td:nth-child(n+3):nth-last-child(n+3) {
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: -1px;
}

/* --- スクロールヒント: 横スクロールが必要なテーブルのみ --- */
@media (max-width: 768px) {
  /* min-widthを持つテーブル（4列以上）の親のみにスクロールヒント */
  .article-body figure:has(table.has-fixed-layout:has(th:nth-child(4))),
  .article-body .table-scroll-wrap:has(table.has-fixed-layout:has(th:nth-child(4))) {
    position: relative;
  }
  .article-body figure:has(table.has-fixed-layout:has(th:nth-child(4)))::before,
  .article-body .table-scroll-wrap:has(table.has-fixed-layout:has(th:nth-child(4)))::before {
    content: 'Scroll \2192';
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--color-text-secondary, #9CA3AF);
    padding: 4px 12px 0;
    font-family: var(--font-mono, monospace);
  }
  .article-body table.has-fixed-layout {
    font-size: 12px;
  }
  .article-body table.has-fixed-layout td,
  .article-body table.has-fixed-layout thead th {
    padding: 8px 8px;
  }
}

/* ==========================================================================
   開閉式テーブル（details/summary）— 長いテーブル用
   ========================================================================== */
.article-body details.compat-table-toggle {
  margin: 24px 0;
  border: 1px solid var(--color-border-light, #E5E7EB);
  border-radius: 12px;
  overflow: hidden;
}
.article-body details.compat-table-toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
  font-family: var(--font-display, 'Noto Sans JP', sans-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-dark, #1F2937);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}
.article-body details.compat-table-toggle summary::-webkit-details-marker {
  display: none;
}
.article-body details.compat-table-toggle summary::after {
  content: '\25BC';
  font-size: 10px;
  color: var(--color-teal, #0D9488);
  transition: transform 0.2s;
}
.article-body details.compat-table-toggle[open] summary::after {
  transform: rotate(180deg);
}
.article-body details.compat-table-toggle summary:hover {
  background: linear-gradient(135deg, #E0F7FA 0%, #D1FAE5 100%);
}
.article-body details.compat-table-toggle > .table-scroll-wrap {
  margin: 0;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--color-border-light, #E5E7EB);
}

/* ==========================================================================
   Series Column Archive (taxonomy-topic-series.php)
   ========================================================================== */

/* --- Partner filter chips --- */
.series-partners,
.series-formats {
  padding: 0 20px;
}

.series-partners__row,
.series-formats__row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.series-partners__row::-webkit-scrollbar,
.series-formats__row::-webkit-scrollbar {
  display: none;
}

.series-partners__chip,
.series-formats__chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg-subtle);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.series-partners__chip:hover,
.series-formats__chip:hover {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
}

.series-partners__chip.--current,
.series-formats__chip.--current {
  background: var(--color-teal);
  color: #fff;
}

.series-partners__count {
  font-size: 11px;
  opacity: 0.7;
}

/* --- Series card grid --- */
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
}

.series-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.series-card:hover {
  box-shadow: var(--shadow-md);
}

.series-card__thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  background: var(--color-bg-subtle) url('../images/noimage-rect.jpg') center / cover no-repeat;
  background-size: cover;
  background-position: center;
}

.series-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--color-teal);
}

.series-card__badge--interview { background: #6366F1; }
.series-card__badge--experience { background: #EC4899; }
.series-card__badge--guide { background: #10B981; }
.series-card__badge--video { background: #EF4444; }
.series-card__badge--infiltration { background: #F59E0B; }
.series-card__badge--article { background: var(--color-teal); }

.series-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.series-card__partner {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-teal);
  letter-spacing: 0.02em;
}

.series-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.series-card__meta {
  margin-top: auto;
  padding-top: 4px;
}

.series-card__date {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* --- Archive empty state --- */
.archive-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-secondary);
}

.archive-empty .more-btn {
  margin-top: 16px;
  display: inline-block;
}

/* --- Pagination (reuse archive-pagination if exists) --- */
.archive-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 24px 20px 40px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
  background: var(--color-bg-subtle);
  text-decoration: none;
}

.archive-pagination .page-numbers.current {
  background: var(--color-teal);
  color: #fff;
}

@media (min-width: 640px) {
  .series-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Prefecture Table — 都道府県テーブル
   -------------------------------------------------------------------------- */
.pref-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
}
.pref-table__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border-light);
}
.pref-table__row:last-child { border-bottom: none; }
.pref-table__region {
  flex: 0 0 60px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal);
  padding-top: 2px;
}
.pref-table__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.pref-table__link {
  font-size: 12px;
  color: var(--color-text-body);
  text-decoration: none;
}
.pref-table__link:hover { color: var(--color-teal); }

/* --------------------------------------------------------------------------
   Recommend Links — おすすめ店舗リスト
   -------------------------------------------------------------------------- */
.recommend-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recommend-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.recommend-link:first-child {
  border-top: 1px solid var(--color-border-light);
}
.recommend-link:hover { background: var(--color-bg-light); }
.recommend-link__name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
.recommend-link__area {
  font-size: 11px;
  color: var(--color-text-light);
  background: var(--color-bg-light);
  padding: 2px 8px;
  border-radius: 10px;
}
.recommend-link__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-star);
}

/* --------------------------------------------------------------------------
   Pager (簡易ページ送り — ?pg=N 方式)
   -------------------------------------------------------------------------- */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 4px;
}

.pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.pager__btn:active {
  background: var(--color-bg-light);
}

.pager__status {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* =========================================================================
   連載コラム一覧 (page-column-series.php) — 記事カード
   ========================================================================= */
.series-articles { display: flex; flex-direction: column; gap: 12px; }
.series-article {
  display: flex;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  background: var(--color-bg-white);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.series-article:hover, .series-article:active {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.series-article__thumb {
  position: relative;
  width: 120px;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-light);
}
.series-article__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.series-article__tag {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.series-article__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.series-article__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.series-article__meta { font-size: 11px; color: var(--color-text-muted); }
