/* FLOATED CLAIM public media frame. Tenants override only the color variables. */
@font-face {
  font-family: "FC Media Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/static/floated-claim/media-icons.woff2?v=1") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #fff;
  --page: #f6f6f4;
  --ink: #16181d;
  --ink-dim: #5c6066;
  --line: #e2e2df;
  --primary: #1a5fb4;
  --accent: #6741d9;
  --link: var(--primary);
  --header: var(--ink);
  --header-ink: #fff;
  --brand-bg: var(--accent);
  --brand-ink: #fff;
  --footer: var(--ink);
  --footer-ink: #c9ccd1;
  --footer-muted: #8a8f96;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.7;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.inner { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.band { position: relative; z-index: 20; background: var(--header); }
.band-inner {
  display: grid;
  grid-template-columns: 52px auto minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 48px;
  max-width: none;
  margin: 0;
  padding: 0 16px 0 0;
}
.media-menu-details { position: static; }
.band-menu-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 32;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: var(--brand-bg);
  color: var(--header-ink);
  cursor: pointer;
  list-style: none;
}
.band-menu-button::-webkit-details-marker { display: none; }
.band-menu-button:hover { background: var(--brand-bg); }
.band-menu-button:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
.band-menu-icon {
  display: flex;
  flex: 0 0 24px;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 19px;
}
.band-menu-icon span {
  display: block;
  flex: 0 0 3px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.band-logo {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--brand-bg);
  color: var(--brand-ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 0 18px;
  white-space: nowrap;
}
.band-logo:hover { text-decoration: none; opacity: .92; }
.band-nav {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: stretch;
  gap: 2px;
  min-width: 0;
  overflow-x: auto;
}
.band-nav a {
  display: flex;
  align-items: center;
  color: var(--header-ink);
  font-size: 14px;
  font-weight: 600;
  padding: 3px 13px 0;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.band-nav a:first-child { padding-left: 28px; }
.band-nav a:hover { text-decoration: none; border-bottom-color: currentColor; }
.band-nav a:focus-visible { outline: none; border-bottom-color: var(--accent); }
.band-nav a.on, .band-nav a.on:hover { border-bottom-color: var(--accent); }
.band-tools {
  grid-column: 4;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: 12px;
}
.band-tools .band-search { margin-left: 0; }
.fc-language-switcher { position: relative; color: var(--header-ink); }
.fc-language-switcher summary {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 8px;
  color: var(--header-ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}
.fc-language-switcher summary::-webkit-details-marker { display: none; }
.fc-language-switcher summary::after { content: "▾"; font-size: 10px; }
.fc-language-switcher[open] summary::after { content: "▴"; }
.fc-language-switcher summary:focus-visible { outline: 2px solid currentColor; outline-offset: -2px; }
.fc-language-switcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: inherit;
  font-family: "FC Media Icons";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-feature-settings: "liga";
}
.fc-language-switcher ul {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 172px;
  margin: 0;
  padding: 6px;
  border: 1px solid color-mix(in srgb, var(--header-ink) 22%, transparent);
  border-radius: 6px;
  background: var(--header);
  box-shadow: 0 10px 24px rgb(0 0 0 / 28%);
  list-style: none;
}
.fc-language-switcher a,
.fc-language-switcher__unavailable {
  display: block;
  padding: 7px 9px;
  border-radius: 4px;
  color: var(--header-ink);
  white-space: nowrap;
}
.fc-language-switcher a:hover { background: color-mix(in srgb, var(--header-ink) 14%, transparent); text-decoration: none; }
.fc-language-switcher a[aria-current="page"] { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.fc-language-switcher__unavailable { opacity: .55; }
.fc-language-switcher__unavailable small { font-size: 10px; font-weight: 400; }
.media-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgb(0 0 0 / 48%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 500ms ease, visibility 0s linear 500ms;
}
.media-menu-details > .media-menu-backdrop,
.media-menu-details > .media-menu { display: block; }
.media-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 31;
  width: min(240px, calc(100vw - 48px));
  overflow-y: auto;
  padding: 24px 22px 40px;
  background: var(--brand-bg);
  color: var(--brand-ink);
  box-shadow: 12px 0 32px rgb(0 0 0 / 24%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-100%, 0, 0);
  transition: transform 500ms ease, opacity 500ms ease, visibility 0s linear 500ms;
}
@media (min-width: 1280px) {
  .media-menu { width: min(320px, calc(100vw - 48px)); }
}
.media-menu-details[open]:not(.media-menu-closing) .media-menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.media-menu-details[open]:not(.media-menu-closing) .media-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.media-menu-open { overflow: hidden; }
.media-menu ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.media-menu-primary { padding: 16px 0 8px !important; }
.media-menu a {
  display: block;
  padding: 8px 0;
  color: var(--brand-ink);
  font-weight: 700;
}
.media-menu a:hover { color: var(--brand-ink); opacity: .8; }
.media-menu a[aria-current="page"] { color: var(--brand-ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.media-menu-section { padding: 18px 0 8px; border-top: 1px solid color-mix(in srgb, var(--brand-ink) 24%, transparent); }
.media-menu-section h2 { margin: 0 0 6px; color: color-mix(in srgb, var(--brand-ink) 72%, transparent); font-size: 14px; }
.media-menu-section a { padding: 5px 0; font-size: 14px; font-weight: 500; }
@media (prefers-reduced-motion: reduce) {
  .media-menu-backdrop,
  .media-menu { transition-duration: 0s; }
}
.main-inner { min-height: calc(100vh - 157px); padding-top: 24px; padding-bottom: 48px; }
.media-breadcrumbs {
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border-bottom: 0;
}
.media-breadcrumbs-inner { padding-top: 10px; padding-bottom: 10px; }
.media-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 600;
}
.media-breadcrumbs li { display: inline-flex; align-items: center; min-width: 0; }
.media-breadcrumbs li + li::before {
  display: inline-block;
  margin: 0 10px;
  color: var(--ink-dim);
  content: "›";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-.08em);
}
.media-breadcrumbs a { color: var(--ink-dim); }
.media-breadcrumbs a:hover { color: var(--primary); }
.media-breadcrumbs [aria-current="page"] { color: var(--ink); }
.section-title {
  font-size: 20px;
  border-left: 5px solid var(--accent);
  padding-left: 10px;
  margin: 0 0 16px;
}
.page-title { margin-top: 4px; }
.media-data-page { max-width: 880px; }
.media-data-category-nav { margin: 20px 0 34px; }
.media-data-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.media-data-category-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
}
.media-data-category-link:hover,
.media-data-category-link.is-active {
  background: var(--primary);
  color: var(--paper);
  text-decoration: none;
}
.media-data-section-title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.media-data-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.media-data-item {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.media-data-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 4px;
  color: var(--ink-dim);
  font-size: 12px;
  font-weight: 700;
}
.media-data-meta time { font-weight: 500; }
.media-data-item h3 { margin: 0; font-size: 17px; line-height: 1.5; }
.media-data-excerpt { margin: 5px 0 0; color: var(--ink-dim); font-size: 14px; }
.page-note, .empty { color: var(--ink-dim); font-size: 14px; }
.empty { padding: 32px 0; }
.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
  margin: 32px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-navigation-item {
  display: flex;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.article-navigation-item:hover { color: var(--primary); text-decoration: none; }
.article-navigation-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.article-navigation-item + .article-navigation-item {
  justify-content: flex-end;
  border-left: 1px solid var(--line);
  text-align: right;
}
.article-navigation-arrow {
  flex: 0 0 auto;
  color: var(--ink-dim);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.article-navigation-item.is-empty {
  color: var(--ink-dim);
  font-weight: 400;
}
.article-navigation-item.is-empty .article-navigation-arrow { color: var(--line); }
.jfooter { background: var(--footer); color: var(--footer-ink); padding: 28px 0 36px; font-size: 13px; }
.jfooter a { color: var(--footer-ink); }
.jfooter a:hover { color: var(--paper); }
.footnav { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.footnote, .copyright { margin: 4px 0; color: var(--footer-muted); }
@media (max-width: 600px) {
  .media-breadcrumbs-inner { padding-top: 9px; padding-bottom: 9px; }
  .media-breadcrumbs ol { font-size: 12px; line-height: 1.5; }
  .media-breadcrumbs li + li::before { margin: 0 7px; }
  .band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 48px 48px;
    background: var(--header);
    overflow: visible;
    padding: 0;
  }
  .band-menu-button { min-height: 48px; }
  .band-logo {
    grid-column: 1 / -1;
    grid-row: 1;
    z-index: 1;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    padding: 0 8px;
    background: var(--brand-bg);
    font-size: 17px;
    text-align: center;
  }
  .band-tools {
    grid-column: 2;
    grid-row: 2;
    z-index: 2;
    margin-left: 0;
    min-width: 52px;
    justify-content: flex-end;
    gap: 8px;
    padding-right: 12px;
    border-top: 1px solid color-mix(in srgb, var(--header-ink) 18%, transparent);
    background: var(--header);
  }
  .band-tools .band-search {
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 48px;
    margin: 0;
    padding: 0;
    color: var(--header-ink);
  }
  .band-tools .band-search::before {
    position: absolute;
    top: 12px;
    left: 5px;
    width: 13px;
    height: 13px;
    border: 3px solid currentColor;
    border-radius: 50%;
    content: "";
    pointer-events: none;
  }
  .band-tools .band-search::after {
    position: absolute;
    top: 27px;
    left: 20px;
    width: 10px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
    pointer-events: none;
  }
  .band-tools .band-search input {
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 1;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    caret-color: transparent;
    cursor: text;
  }
  .band-tools .band-search input::placeholder { color: transparent; }
  .band-tools .band-search input:focus {
    width: min(180px, calc(100vw - 148px));
    padding: 6px 10px;
    background: color-mix(in srgb, var(--header-ink) 14%, transparent);
    color: #fff;
    caret-color: #fff;
    outline: none;
  }
  .band-tools .band-search:focus-within::before,
  .band-tools .band-search:focus-within::after { opacity: 0; }
  .band-tools .langswitch {
    gap: 8px;
    font-size: 12px;
  }
  .band-nav {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    border-top: 1px solid color-mix(in srgb, var(--header-ink) 18%, transparent);
    background: var(--header);
    scrollbar-width: none;
  }
  .band-nav::-webkit-scrollbar { display: none; }
  .band-nav a { padding: 10px 12px; }
  .article-navigation-item {
    min-height: 96px;
    padding: 16px 14px;
    gap: 10px;
    font-size: 14px;
  }
  .article-navigation-arrow { font-size: 26px; }
}
