@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");

/* ============================================================
   Design Tokens — extracted from Figma (J47KkbnpY0N288Nfo3LSyL)
   Nodes: btn 2157:5592, FacilityCard 2157:5605, KV 2157:8597,
          Tags 2157:5754, title 2157:5743
   ============================================================ */




:root {
  /* --- Colors --- */
  --color-primary: #ff4192;
  --color-primary-surface: #fff5f9;
  --color-primary-25: #ff419240;
  --color-secondary: #4294ff;
  --color-text-link: #4294ff;
  --color-black: #333333;
  --color-body-text: #2b2b2b;
  --color-white: #ffffff;
  --color-line: #e1e1e1;
  --color-label-sale: #00bf40;
  --color-label-points: #bf0000;
  --color-label-ticket: #f1a026;

  /* Optional: grayscale (hardcode防止に効く) */
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-500: #999999;
  --color-gray-700: #666666;

  /* --- Typography --- */
  --font-family: "Noto Sans JP";

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 40px;

  /* Add: missing font sizes that often appear */
  --fs-10: 10px;
  --fs-28: 28px;

  /* Line-height (avoid literal 1.2/1.4/etc) */
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Font weight (avoid literal 400/700) */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* --- Spacing --- */
  --sp-0: 0px;
  --sp-2: 2px;
  --sp-4: 4px;
  --sp-6: 6px;
  --sp-8: 8px;
  --sp-10: 10px;
  --sp-12: 12px;
  --sp-14: 14px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-28: 28px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;

  /* --- Border width --- */
  --bw-0: 0px;
  --bw-1: 1px;
  --bw-2: 2px;

  /* --- Border radius --- */
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Add: card系で出やすい */
  --radius-xl: 12px;
  --radius-2xl: 16px;

  --radius-pill: 50px;

  /* --- Shadow --- */
  --shadow-card: 4px 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0px 4px 4px rgba(0, 0, 0, 0.1);

  /* Add: reusable shadow primitives (必要なら) */
  --shadow-0: none;
  --shadow-soft: 0px 2px 8px rgba(0, 0, 0, 0.12);

  /* --- Breakpoint --- */
  --bp-pc: 768px;
}


/* ============================================================
   Base styles
   ============================================================ */

* {
  font-family: "Noto Sans JP";
  font-weight: var(--fw-bold);
}

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

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-body-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  color: var(--color-black);
}

p {
  margin: 0;
}

a {
  color: var(--color-text-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}


.wrap {
  width: 100%;
  max-width: 1200px;
  height: auto;
}


/* iOS Safari auto-detected links (phone/address/email) — サイト全体 */
a[x-apple-data-detectors],
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:focus,
a[x-apple-data-detectors]:active {
  color: inherit !important;
  -webkit-text-fill-color: inherit;
  text-decoration: none !important;
  border-bottom: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}


@media (max-width: 767px) {
  svg {
    width: 14px;
    height: 14px;
  }
}



/* ============================================================
   Atoms
   ============================================================ */

/* --- Button ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-8);
  border-radius: var(--radius-pill);
  border: var(--bw-1) solid transparent;
  background: var(--color-secondary);
  box-shadow: var(--shadow-btn);
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.154px;
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  margin: 0 auto;
}

.btn:hover,
.btn--outline {
  background: var(--color-white);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  text-decoration: none;
}

@media (min-width: 767px) {
  .btn {
    font-size: var(--fs-base);
    letter-spacing: -0.176px;
  }
}



/* --- TagChip ---------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-8);
  border: var(--bw-1) solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.132px;
  color: var(--color-primary);
  white-space: nowrap;
}

@media (min-width: 767px) {
  .tag {
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    letter-spacing: -0.176px;
  }
}

/* --- Badge (image label) ---------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4) var(--sp-10);
  font-family: var(--font-family);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.154px;
  color: var(--color-white);
  white-space: nowrap;
}

.badge--sale {
  background: var(--color-label-sale);
  border-radius: 0 0 0 var(--radius-md);
}

.badge--sale.is-solo {
  border-top-right-radius: var(--radius-md);
}

.badge--points {
  background: var(--color-label-points);
  border-radius: 0 var(--radius-md) 0 0;
}

.badge--ticket {
  background: var(--color-label-ticket);
  border-radius: 0 var(--radius-md) 0 0;
}

@media (max-width: 550px) {

  .badge--ticket,
  .badge--sale,
  .badge--points {
    font-size: var(--fs-xs);
  }
}

@media (max-width: 375px) {
  .badge {
    padding: var(--sp-2) var(--sp-8);
  }
}

/* --- ImageGallery ----------------------------------------- */
.gallery {
  position: relative;
  width: 100%;
}

/* Main image (shared) */
.gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 336 / 200;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-line);
}

.gallery__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: opacity 0.3s;
}

/* Badge strip on main image */
.gallery__badges {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
}

/* Carousel controls */
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.gallery__dot {
  width: var(--sp-8);
  height: var(--sp-8);
  border-radius: 50%;
  background: var(--color-line);
  border: var(--bw-0);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery__dot[aria-current="true"] {
  background: var(--color-primary);
}

/* Thumbnail strip */
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.gallery__thumb {
  aspect-ratio: 150 / 100;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.gallery__thumb[aria-current="true"] {
  opacity: 1;
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

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

/* Single image: no dots/thumbs */
.gallery--single .gallery__dots,
.gallery--single .gallery__thumbs {
  display: none;
}



/* --- KeyValueList ----------------------------------------- */
.kv-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  width: 100%;
  margin: var(--sp-4) 0;
}

.kv-list__title {
  display: flex;
  align-items: center;
  padding: var(--sp-4) var(--sp-8);
  background: var(--color-primary-surface);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.132px;
  color: var(--color-primary);
  white-space: nowrap;
}

.kv-list__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  letter-spacing: -0.154px;
  color: var(--color-body-text);
  margin: 0;
}

.kv-list__row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  text-decoration: none;
}

.kv-list__row>svg {
  flex: 0 0 auto;
  /* = flex-grow:0; flex-shrink:0; flex-basis:auto */
  width: 16px;
  height: 16px;
  min-width: 16px;
  /* extra safety */
  min-height: 16px;
  /* extra safety */
  display: block;
}



@media (min-width: 767px) {
  .kv-list__title {
    font-size: var(--fs-sm);
    letter-spacing: -0.154px;
  }

  .kv-list__body {
    font-size: var(--fs-base);
    letter-spacing: -0.176px;
  }
}

/* --- FacilityCard ----------------------------------------- */
.fc {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--sp-24) var(--sp-20);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  width: 100%;
}

.fc__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.fc__catchphrase-wrap {
  width: 100%;
}

.fc__catchphrase {
  display: block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.176px;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-md);
}

.fc__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.264px;
  color: var(--color-primary);
  margin: 0;
}

.fc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.fc__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.fc__info-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
}

.fc__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-14);
}

.fc__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.fc__highlights-hd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  background: var(--color-primary-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.154px;
  color: var(--color-primary);
}

.fc__highlights-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.fc__highlights-text {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  letter-spacing: -0.176px;
  color: var(--color-primary);
  margin: 0;
}

.fc__divider {
  border: none;
  border-top: var(--bw-1) solid var(--color-line);
  margin: 0;
}

.fc__desc {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  letter-spacing: -0.154px;
  color: var(--color-black);
  margin: 0;
}

.kv-list__link {
  color: var(--color-secondary) !important;
  text-decoration: none;
}

/* 自動リンク化対策 (U+2011 NON-BREAKING HYPHEN で検出パターンを壊す) */
.kv-no-autolink {
  display: inline;
  color: inherit;
}

.kv-no-autolink--phone {
  white-space: nowrap;
}

/* iOS Safari 自動リンク化対策 -----------------------------------
   format-detection meta で防いでも Safari がリンク化した場合の保険。
   .kv-list__row 配下に限定し、通常リンクのデザインには影響しない。
---------------------------------------------------------------- */
.kv-list__row a,
.kv-list__row a:link,
.kv-list__row a:visited,
.kv-list__row a:hover,
.kv-list__row a:active,
.kv-list__row a:focus {
  color: currentColor !important;
  -webkit-text-fill-color: currentColor;
  text-decoration: none !important;
  border-bottom: 0 !important;
  background-image: none !important;
}

.kv-list__row a[href^="tel:"],
.kv-list__row a[href^="sms:"],
.kv-list__row a[href^="mailto:"],
.kv-list__row a[href^="maps:"],
.kv-list__row a[href*="maps.apple.com"] {
  color: currentColor !important;
  -webkit-text-fill-color: currentColor;
  text-decoration: none !important;
  border-bottom: 0 !important;
  background-image: none !important;
}


@media (min-width: 767px) {
  .fc__header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-16);
  }

  .fc__catchphrase-wrap {
    width: auto;
    flex-shrink: 0;
  }

  .fc__catchphrase {
    font-size: var(--fs-lg);
    letter-spacing: -0.22px;
    white-space: nowrap;
  }

  .fc__name {
    font-size: 28px;
    letter-spacing: -0.352px;
    flex-shrink: 0;
  }

  .fc__body {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp-32);
  }

  .fc__gallery-col {
    flex: 1;
    max-width: 530px;
    min-width: 0;
  }

  .fc__info-col {
    flex: 1;
    min-width: 0;
    gap: var(--sp-32);
  }

  .fc__highlights-hd {
    font-size: var(--fs-base);
    letter-spacing: -0.176px;
  }

  .fc__highlights-icon {
    width: 27px;
    height: 27px;
  }

  .fc__highlights-text {
    font-size: var(--fs-lg);
    letter-spacing: -0.22px;
  }

  .fc__desc {
    font-size: var(--fs-base);
    letter-spacing: -0.176px;
  }
}

/* --- SectionTitle (title 2157:5743) ----------------------- */
.section-title {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-8);
  padding: 0 var(--sp-20);
  position: relative;
}

.section-title::before {
  content: "";
  position: absolute;
  left: var(--sp-20);
  top: 0;
  bottom: 0;
  width: var(--sp-4);
  background: var(--color-primary);
  border-radius: var(--radius-xs);
}

.section-title__ja {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-primary);
  padding-left: var(--sp-12);
  margin: 0;
}

.section-title__en {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-primary-25);
  margin: 0;
}

.section-title--lg {
  height: 48px;
  gap: var(--sp-20);
}

.section-title--lg .section-title__ja {
  font-size: 40px;
}

.section-title--lg .section-title__en {
  font-size: 32px;
}

/* --- BodyText (text 2157:5847) ---------------------------- */
.body-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  letter-spacing: -0.154px;
  color: var(--color-black);
  margin: 0;
}

.body-text--sm {
  font-size: var(--fs-xs);
  letter-spacing: -0.132px;
}

@media (min-width: 767px) {
  .body-text {
    font-size: var(--fs-base);
    letter-spacing: -0.176px;
  }

  .body-text--sm {
    font-size: var(--fs-sm);
    letter-spacing: -0.154px;
  }
}

/* --- InternalLink (InternalLinks 2157:5759) ---------------- */
.ilink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  padding: var(--sp-12) var(--sp-14);
  background: var(--color-primary);
  border: var(--bw-1) solid var(--color-primary);
  border-radius: var(--radius-pill);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.ilink:hover {
  background: var(--color-white);
  color: var(--color-primary);
  text-decoration: none;
}

@media (min-width: 767px) {
  .ilink {
    padding: var(--sp-8) var(--sp-12);
    border-radius: var(--radius-pill);
    font-size: var(--fs-lg);
  }
}

/* --- Lead = TextAndInternalLinks (2157:5720) --------------- */
.lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-24);
  width: 100%;
}

.lead__text {
  padding: 0 var(--sp-20);
  width: 100%;
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-black);
  margin: 0;
}

.lead__links {
  background: var(--color-primary-surface);
  padding: var(--sp-24) 20px;
  width: 100%;
}

.lead__links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-12);
}

@media (min-width: 767px) {
  .lead {
    gap: var(--sp-40);
  }

  .lead__links {
    padding: var(--sp-24) var(--sp-20);
  }

  .lead__links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-12);
    max-width: 800px;
    margin: 0 auto;
  }
}

/* --- KV KeyVisual (2157:8597) ----------------------------- */
.kv img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (min-width: 767px) {
  .kv {
    aspect-ratio: 1136 / 280;
  }
}

.catalog {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.catalog-section {
  margin-bottom: 48px;
}

.catalog-section h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.catalog-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.catalog-label {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

.catalog-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.swatch {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.swatch-label {
  font-size: 10px;
  color: #666;
  text-align: center;
}

/* --- Page wrapper ----------------------------------------- */
.page-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-40) var(--sp-16);
  /* top/bottom も付ける */
  display: flex;
  flex-direction: column;
  gap: var(--sp-48);
  /* 要素間の余白 */
}


.page-wrap>* {
  margin: 0;
  /* 子のmarginは消す（衝突防止） */
}

@media (min-width:767px) {
  .page-wrap {
    gap: var(--sp-64);
  }
}

@media (max-width:767px) {
  .page-wrap {
    max-width: 550px;
    width: 100%;
  }
}


/* --- AreaSection ----------------------------------------- */
.area-section__header {
  margin-bottom: var(--sp-32);
}

.area-section__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
}

@media (max-width: 768px) {
  .area-section__header {
    margin-bottom: var(--sp-24);
  }

  .area-section__body {
    gap: var(--sp-32);
  }
}

/* ─── Dashboard: Area Section 2-column UI ─────────────────── */
.area-section-grid {
  display: flex;
  height: 100%;
  overflow: hidden;
}

.area-list-col {
  width: 180px;
  min-width: 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border, #273244);
  background: var(--surface, #111827);
}

.area-list-toolbar {
  padding: 8px;
  border-bottom: 1px solid var(--border, #273244);
  flex-shrink: 0;
}

.area-list {
  flex: 1;
  overflow-y: auto;
}

.area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text, #e5e7eb);
  border-bottom: 1px solid var(--border, #273244);
  gap: 6px;
}

.area-item:hover {
  background: var(--surface-2, #1e293b);
}

.area-item.selected {
  background: var(--accent-surf, rgba(255, 65, 146, 0.12));
  color: var(--accent, #ff4192);
  font-weight: 600;
}

.area-item-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.area-item-badge {
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 10px;
  background: var(--surface-3, #273244);
  color: var(--text-2, #9ca3af);
  flex-shrink: 0;
}

.area-editor {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--bg, #0f172a);
}

.area-editor-header {
  position: sticky;
  top: 0;
  background: var(--surface-2, #1e293b);
  border-bottom: 1px solid var(--border, #273244);
  padding: 8px 12px;
  z-index: 1;
}

.area-editor-header-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, #ff4192);
}

.area-editor-header-sub {
  font-size: 11px;
  color: var(--text-2, #9ca3af);
  margin-top: 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.area-editor-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Default: always show PC, hide SP */
.kv .kv__img--pc {
  display: block !important;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.kv .kv__img--sp {
  display: none !important;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

/* Switch only if kv has SP */
@media (max-width: 767px) {
  .kv.kv--has-sp .kv__img--pc {
    display: none !important;
  }

  .kv.kv--has-sp .kv__img--sp {
    display: block !important;
  }
}

.--fw-bold {
  font-weight: 700 !important;
}

/* Put this at the VERY END of your CSS */
a.kv-list__link,
a.kv-list__link:link,
a.kv-list__link:visited,
a.kv-list__link:hover,
a.kv-list__link:active {
  color: var(--color-secondary) !important;
  -webkit-text-fill-color: var(--color-secondary) !important;
  /* iOS safeguard */
  text-decoration: none !important;
}






.kv-list__title,
.fc__highlights-text,
.fc__highlights-hd,
.fc__name {
  font-weight: 700 !important;
}

/* Regular例外：.fc__desc / .kv-list__row / .lead__text は常に400（子孫も含む） */
.fc__desc,
.fc__desc *,
.kv-list__row,
.kv-list__row *,
.lead__text,
.lead__text * {
  font-weight: 400 !important;
}