@charset "UTF-8";

:root {
  --color-bg: #f9f4f2;
  --color-white: #fff;
  --color-text: #4d4d4d;
  --color-blue: #3689ce;
  --color-blue-dark: #3181c5;
  --color-teal: #00c4c0;
  --color-teal-dark: #04b4ac;
  --color-orange: #ff8400;
  --color-red: #c63131;
  --color-light-blue: #81bcf7;
  --color-line: #202020;
  --color-video-red: #e42f32;
  --asset-content-width: 1040px;
  --asset-text-size: 18px;
  --shadow-card: 0 4px 20px rgb(0 0 0 / 10%);
  --content-width: 1111px;
  --article-width: 1040px;
  --inner-narrow: 860px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.u-pc-only {
  display: inline;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
  Utility
========================================================= */
.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/* Global navigation */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgb(77 77 77 / 12%);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 4px 20px rgb(0 0 0 / 5%);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 48px), 1480px);
  min-height: 84px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.site-header__logo {
  width: 122px;
  flex: 0 0 auto;
}

.site-header__toggle {
  display: none;
}

.site-header__nav {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-link {
  position: relative;
  display: flex;
  min-height: 84px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(14px, 1.7vw, 26px);
  border-left: 1px solid rgb(77 77 77 / 12%);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.site-header__nav li:last-child .site-header__nav-link {
  border-right: 1px solid rgb(77 77 77 / 12%);
}

.site-header__nav-link b {
  color: var(--color-teal-dark);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.site-header__nav-link span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.site-header__nav-link:is(:hover, :focus-visible),
.site-header__nav-link[aria-current="page"] {
  background: var(--color-teal);
  color: var(--color-white);
}

.site-header__nav-link:is(:hover, :focus-visible) b,
.site-header__nav-link[aria-current="page"] b {
  color: inherit;
}

.site-header__cta {
  display: none;
}

/* TOP */
.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 24px 78px;
  background:
    radial-gradient(circle at 12% 22%, rgb(0 196 192 / 17%) 0 9%, transparent 30%),
    radial-gradient(circle at 88% 76%, rgb(255 132 0 / 13%) 0 8%, transparent 29%),
    linear-gradient(135deg, #eaf9f8 0%, #f9f4f2 52%, #fff0df 100%);
}

.hero__inner {
  width: min(100%, 1022px);
  margin-inline: auto;
  text-align: center;
}

.hero__logo {
  width: min(100%, 1022px);
  margin-inline: auto;
}

.hero__edition {
  margin-top: 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.introduction {
  padding: 44px 24px;
}

.introduction__inner {
  width: min(100%, 1271px);
  margin-inline: auto;
  text-align: center;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.introduction__inner p + p {
  margin-top: 1.8em;
}

.intro-video {
  padding: 8px 24px 80px;
}

.intro-video--top {
  padding-bottom: 112px;
}

.intro-video--detail {
  padding-top: 64px;
  background: var(--color-white);
}

.intro-video__inner {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.intro-video__lead {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.intro-video__frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid var(--color-teal);
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow-card);
}

.intro-video__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.survey {
  padding: 0 24px 136px;
}

.survey__inner {
  width: min(80%, var(--content-width));
  margin-inline: auto;
  background: var(--color-white);
}
@media (max-width: 767px) {
  .survey__inner {
    width: min(100%, var(--content-width));
  }
}

.survey__title {
  position: relative;
  padding: 20px 32px;
  background: var(--color-blue);
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
}

.survey__title::-webkit-details-marker {
  display: none;
}

.survey__title::after {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 15px;
  height: 15px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

.survey-accordion[open] .survey__title::after {
  transform: translateY(-30%) rotate(225deg);
}

.survey__title:focus-visible {
  outline: 4px solid rgb(54 137 206 / 28%);
  outline-offset: 4px;
}

.survey__content {
  border: 1px solid rgb(54 137 206 / 18%);
  border-top: 0;
}

.survey__official-name {
  display: grid;
  padding: 42px 45px 0;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.survey__official-name span {
  text-align: right;
}

.survey__list {
  padding: 28px 45px 52px;
}

.survey__row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.survey__row + .survey__row {
  margin-top: 24px;
}

.survey__row dt {
  text-align: right;
}

.survey__row dd p:nth-child(6) {
  margin-top: 18px;
}

.report-nav {
  padding: 60px 20px 130px 20px;
}

.report-nav__inner {
  width: min(100%, 1278px);
  margin-inline: auto;
}

.report-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 38px 28px;
}

.report-card {
  width: 30%;
  min-width: 0;
  background: var(--color-white);
  border: 6px solid var(--color-teal);
  box-shadow: var(--shadow-card);
}

.report-card__link {
  display: flex;
  min-height: 452px;
  height: 100%;
  flex-direction: column;
  padding: 26px 10px 10px;
  text-align: center;
}

.report-card__chapter {
  align-self: center;
  margin-bottom: 12px;
  padding: 5px 18px;
  border-radius: 999px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.report-card__title {
  display: grid;
  min-height: 92px;
  place-items: center;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.report-card__metric {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 0 18px;
  border-top: 1px solid #eeeeee;
  margin-top: 6px;
}

.report-card__number {
  color: var(--color-teal);
  font-family: Roboto, sans-serif;
  font-size: clamp(68px, 7vw, 100px);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.report-card__average {
  margin-bottom: -10px !important;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.report-card__number small {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.4em;
  font-weight: 700;
}

.report-card__note {
  margin-top: 16px;
  color: var(--color-text);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.45;
}

/* 平均ラベル追加後も、同じ段のカードで数値と補足の基準線を揃える */
@media (min-width: 768px) {
  .report-card__metric {
    display: grid;
    grid-template-rows: 24px 112px minmax(64px, 1fr);
    align-content: stretch;
    justify-items: center;
    padding: 4px 0 8px;
  }

  .report-card__average {
    grid-row: 1;
    align-self: end;
    margin-bottom: 0;
  }

  .report-card__number {
    grid-row: 2;
    align-self: center;
  }

  .report-card__note {
    grid-row: 3;
    align-self: start;
    margin-top: 0;
  }
}

.report-card__description {
  display: grid;
  min-height: 62px;
  padding: 12px 4px;
  place-items: center;
  border-top: 1px solid var(--color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.report-card__button {
  display: grid;
  min-height: 47px;
  margin-top: 0;
  place-items: center;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
}

.report-card__button {
  position: relative;
  padding-inline: 42px;
}

.report-card__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.25s ease;
}

/* PCでホバーしたときだけ矢印を少し動かす */
@media (hover: hover) {
  .report-card__link:hover .report-card__button::after {
    right: 15px;
  }
}

.experts {
  padding: 0 24px 64px;
}

.experts__inner {
  display: grid;
  width: min(100%, 967px);
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px;
}

.expert-card {
  min-height: 571px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--color-white);
}

.expert-card__title {
  padding: 14px;
  background: var(--color-blue-dark);
  color: var(--color-white);
  text-align: center;
  font-size: 40px;
  line-height: 2;
}

.expert-card--doctor .expert-card__title {
  background: var(--color-red);
}

.expert-card__body {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.expert-card__portrait {
  width: 280px;
  height: 280px;
}

.expert-card__name {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.expert-card__name span {
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}

.expert-card__pending {
  color: #999;
  font-size: 18px;
}

.service-links {
  padding: 0 24px 220px;
}

.service-links__inner {
  display: grid;
  width: min(100%, 967px);
  margin-inline: auto;
  gap: 45px;
}

.service-banner {
  --banner-color: var(--color-teal);
  position: relative;
  display: grid;
  min-height: 334px;
  overflow: hidden;
  grid-template-columns: 1fr 300px;
  align-items: center;
  border: 5px solid var(--banner-color);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  color: var(--banner-color);
}

.service-banner--blue {
  --banner-color: var(--color-blue);
}

.service-banner--light-blue {
  --banner-color: var(--color-light-blue);
}

.service-banner__copy {
  padding: 34px;
  text-align: center;
}

.service-banner__copy small,
.service-banner__copy strong {
  display: block;
  font-weight: 700;
  line-height: 1.35;
}

.service-banner__copy small {
  font-size: 30px;
}

.service-banner__copy strong {
  margin-top: 10px;
  font-size: 48px;
}

.service-banner > img {
  width: 280px;
  height: 245px;
  object-fit: contain;
}

.service-banner__button {
  grid-column: 1 / -1;
  padding: 7px 24px;
  background: var(--banner-color);
  color: var(--color-white);
  text-align: right;
  font-size: 20px;
  font-weight: 500;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-dark);
  color: var(--color-white);
  margin-top: 120px;
  padding: 60px 0 30px 0;
}

.site-footer__logo {
  width: 200px;
}

.site-footer__copyright {
  margin-top: 70px;
  font-size: 14px;
}

/* Detail pages */
.detail-header {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 38px;
  background:
    radial-gradient(circle at 12% 22%, rgb(0 196 192 / 17%) 0 9%, transparent 30%),
    radial-gradient(circle at 88% 76%, rgb(255 132 0 / 13%) 0 8%, transparent 29%),
    linear-gradient(135deg, #eaf9f8 0%, #f9f4f2 52%, #fff0df 100%);
  text-align: center;
}

.detail-header__logo {
  display: block;
  margin-inline: auto;
  width: min(78vw, 760px);
  margin: 0 auto 18px;
}

.detail-header__chapter {
  width: fit-content;
  margin: 40px auto 10px auto;
  padding: 7px 24px;
  border-radius: 999px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.detail-header__title {
  margin: 0 0 clamp(20px, 3vw, 34px);
  color: var(--color-teal);
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.detail-header__lead {
  margin: 0 0 60px 0;
  color: var(--color-text);
  font-size: clamp(16px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.detail-section {
  padding: 0px 0 30px 0;
}

.detail-section__inner {
  width: min(90%, var(--inner-narrow));
  margin: 40px auto;
}

.detail-section__title {
  width: 100%;
  margin: 0 0 54px;
  padding: 24px;
  background: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.35;
}

.data-panel {
  margin: 0;
}

.data-panel + .data-panel {
  margin-top: 70px;
}

.data-panel__image {
  width: 100%;
}

.data-graph__note {
  margin-top: 16px;
  text-align: center;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 500;
  line-height: 1.6;
}

.expert-comment {
  display: grid;
  width: min(calc(100% - 48px), var(--article-width));
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.expert-comment__portrait {
  width: 150px;
  height: 150px;
  border: 5px solid var(--color-blue);
  border-radius: 50%;
  object-fit: cover;
}

.expert-comment__body {
  position: relative;
  padding: 30px 36px;
  background: var(--color-white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
}

.expert-comment__body::before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 18px solid var(--color-white);
  border-bottom: 14px solid transparent;
  content: "";
  transform: translateY(-50%);
}

.expert-comment__name {
  display: block;
  margin-top: 12px;
  color: var(--color-blue);
  font-size: 15px;
}

.detail-links {
  padding: 0px 24px 10px;
}

.detail-links__inner {
  display: grid;
  width: min(100%, var(--article-width));
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-links__item {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 4px solid var(--color-teal);
  background: var(--color-white);
  color: var(--color-teal);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  transition: 0.2s ease;
}

.detail-links__item:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.banner-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.banner-list img {
  width: 100%;
  height: auto;
  display: block;
}

.top-links__inner {
  text-align: center;
}

.top-links__item {
  display: grid;
  min-height: 66px;
  place-items: center;
  border: 2px solid var(--color-teal);
  background: var(--color-white);
  color: var(--color-teal);
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  transition: 0.2s ease;
  max-width: 360px;
  margin: auto;
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 767px) {
  /* -----------------------------------------
    Utility
  ----------------------------------------- */
  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .site-header__inner {
    width: calc(100% - 32px);
    min-height: 66px;
  }

  .site-header__logo {
    width: 96px;
  }

  .site-header__toggle {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--color-teal);
    cursor: pointer;
    place-content: center;
    gap: 5px;
  }

  .site-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header__panel {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 66px);
    height: calc(100dvh - 66px);
    overflow-y: auto;
    padding: 22px 20px 48px;
    background: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s;
    visibility: hidden;
  }

  .is-menu-open .site-header__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header__nav {
    display: grid;
    overflow: hidden;
    border: 1px solid rgb(0 196 192 / 25%);
    border-radius: 12px;
    background: var(--color-white);
  }

  .site-header__nav-link {
    min-height: 62px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 18px;
    border: 0;
    border-bottom: 1px solid rgb(77 77 77 / 10%);
    gap: 18px;
  }

  .site-header__nav li:last-child .site-header__nav-link {
    border: 0;
  }

  .site-header__nav-link b {
    width: 96px;
    font-size: 13px;
  }

  .site-header__nav-link span {
    margin: 0;
    font-size: 14px;
  }

  .site-header__cta {
    display: block;
    margin-top: 32px;
  }

  .site-header__cta-title {
    margin-bottom: 14px;
    color: var(--color-teal-dark);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
  }

  .site-header__cta .banner-list {
    width: min(100%, 520px);
    gap: 10px;
  }

  /* -----------------------------------------
    FV
  ----------------------------------------- */
  .fv {
    padding-top: 20vh;
  }

  .fv__inner {
    width: min(90%, 520px);
  }

  .fv__logo {
    width: min(88vw, 420px);
    margin-bottom: 34px;
  }

  .fv__title {
    font-size: clamp(26px, 6vw, 42px);
  }

  .fv__lead {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.9;
    margin: 0 0 10vh 0;
  }

  /* -----------------------------------------
    Section Title
  ----------------------------------------- */
  .section-block {
    margin-top: 48px;
  }

  .section-title {
    padding: 22px 12px;
    font-size: clamp(20px, 5.5vw, 34px);
  }

  /* -----------------------------------------
    Data Section
  ----------------------------------------- */
  .data-section__inner {
    width: min(90%, 520px);
    padding: 36px 0 48px;
  }

  /* -----------------------------------------
    Topic
  ----------------------------------------- */
  .topic-block {
    margin-top: 48px;
  }

  .topic-block__head {
    width: 100%;
    margin-bottom: 22px;
  }

  .topic-block__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .topic-block__graph {
    margin-top: 28px;
  }

  .u-pc-only {
    display: none;
  }

  .hero {
    padding: 64px 24px 52px;
  }

  .hero__logo {
    width: min(100%, 520px);
  }

  .hero__edition {
    font-size: 11px;
  }

  .introduction {
    padding-top: 20px;
  }

  .introduction__inner {
    font-size: 15px;
    line-height: 1.9;
  }

  .intro-video {
    padding: 4px 16px 48px;
  }

  .intro-video--top {
    padding-bottom: 64px;
  }

  .intro-video--detail {
    padding-top: 40px;
  }

  .intro-video__lead {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .intro-video__frame {
    border-width: 3px;
    border-radius: 4px;
  }

  .survey {
    padding: 0 16px 80px;
  }

  .survey__title {
    padding: 17px 52px 17px 24px;
    font-size: 24px;
  }

  .survey__title::after {
    right: 22px;
    width: 12px;
    height: 12px;
  }

  .survey__official-name {
    padding: 28px 24px 0;
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 14px;
  }

  .survey__official-name span {
    color: var(--color-blue);
    text-align: left;
  }

  .survey__list {
    padding: 28px 24px 34px;
  }

  .survey__row {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 14px;
  }

  .survey__row dt {
    color: var(--color-blue);
    text-align: left;
  }

  .report-nav {
    padding: 0px 30px 100px 30px;
  }

  .report-nav__list {
    gap: 24px;
  }

  .report-card {
    width: 100%;
    max-width: 520px;
  }

  .report-card__link {
    min-height: 425px;
    padding: 22px 10px 10px;
  }

  .report-card__chapter {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .report-card__title {
    min-height: 76px;
    font-size: 24px;
  }

  .report-card__number {
    font-size: 78px;
  }

  .report-card__note {
    margin-top: 12px;
    font-size: 17px;
  }

  .report-card__description {
    min-height: 58px;
    font-size: 15px;
  }

  .report-card__button {
    min-height: 44px;
    font-size: 14px;
  }

  .site-footer {
    min-height: 260px;
    padding: 40px 20px;
  }

  .site-footer__logo {
    width: 220px;
  }

  .site-footer__copyright {
    margin-top: 42px;
    font-size: 13px;
  }

  .detail-header {
    padding-top: 54px;
  }

  .detail-header__logo {
    margin-bottom: 14px;
  }

  .detail-header__chapter {
    margin-bottom: 28px;
    padding: 6px 20px;
    font-size: 13px;
  }

  .detail-header__title {
    font-size: 29px;
  }

  .detail-header__lead {
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 20px 0;
  }

  .detail-section__title {
    width: 100%;
    margin: 0 0 24px;
    padding: 18px 14px;
    font-size: 23px;
  }

  .data-panel + .data-panel {
    margin-top: 24px;
  }

  .expert-comment {
    margin: 34px 16px 0;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .expert-comment__portrait {
    width: 72px;
    height: 72px;
    border-width: 3px;
  }

  .expert-comment__body {
    padding: 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .detail-links {
    padding: 48px 16px 70px;
  }

  .detail-links__inner {
    grid-template-columns: 1fr;
  }

  .experts__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =========================================================
  Asset catalog / reusable content components
  - asset.css merged into the common stylesheet
========================================================= */

/* =========================================================
  Catalog only
========================================================= */
.asset-catalog {
  width: min(calc(100% - 40px), 1240px);
  margin-inline: auto;
  padding: 72px 0 120px;
}

.asset-catalog__header {
  width: min(100%, var(--asset-content-width));
  margin-inline: auto;
  text-align: center;
}

.asset-catalog__eyebrow {
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.asset-catalog__title {
  margin-top: 10px;
  color: var(--color-teal);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.3;
}

.asset-catalog__lead {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.asset-section {
  margin-top: 112px;
}

.asset-section__head {
  width: min(100%, var(--asset-content-width));
  margin: 0 auto 34px;
}

.asset-section__number {
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.asset-section__title {
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.4;
}

.asset-section__note {
  margin-top: 8px;
  color: #737373;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

/* =========================================================
  Utility
========================================================= */
.u-text-orange {
  color: var(--color-orange);
}

.u-text-teal {
  color: var(--color-teal);
}

/* =========================================================
  PART：解説者コメント
========================================================= */
.insight-comment {
  display: grid;
  width: min(100%, 980px);
  margin-inline: auto;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

.insight-comment__portrait-wrap {
  width: 190px;
  aspect-ratio: 1;
}

.insight-comment__portrait {
  width: 100%;
  height: 100%;
  border: 5px solid var(--color-blue);
  border-radius: 50%;
  object-fit: cover;
}

.insight-comment__bubble {
  position: relative;
  padding: 34px 40px;
  background: var(--color-white);
  font-size: var(--asset-text-size);
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.insight-comment__bubble::before {
  position: absolute;
  top: 50%;
  left: -24px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-right: 24px solid var(--color-white);
  border-bottom: 22px solid transparent;
  content: "";
  transform: translateY(-50%);
}

.insight-comment__bubble p + p {
  margin-top: 1.5em;
}

.comment-with-media {
  width: min(100%, 980px);
  margin-inline: auto;
}

.comment-with-media .video-cta {
  margin-top: 62px;
}

/* =========================================================
  PART：動画CTA
========================================================= */
.video-cta {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 188px minmax(0, 1fr) 52px;
  border: 2px solid var(--color-line);
  background: var(--color-white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.video-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}

.video-cta:focus-visible {
  outline: 4px solid rgb(0 196 192 / 30%);
  outline-offset: 4px;
}

.video-cta__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--color-video-red);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
}

.video-cta__icon {
  width: 25px;
  flex: 0 0 auto;
  fill: currentcolor;
}

.video-cta__title {
  display: flex;
  align-items: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.video-cta__arrow {
  position: relative;
}

.video-cta__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #000;
  content: "";
  transform: translate(-50%, -50%);
}

/* =========================================================
  PART：監修カード
========================================================= */
.expert-panel {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 36px 34px 38px;
  border: 2px solid var(--color-line);
  background: var(--color-white);
}

.expert-panel .data-graph {
  margin-top: 32px;
}

.expert-panel__topic {
  display: grid;
  overflow: hidden;
  min-height: 76px;
  grid-template-columns: 220px minmax(0, 1fr);
  border: 5px solid var(--color-teal);
  border-radius: 999px;
  background-color: var(--color-teal);
}

.expert-panel__topic-label,
.expert-panel__topic-title {
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}

.expert-panel__topic-label {
  background: var(--color-teal);
  color: var(--color-white);
  font-size: clamp(25px, 3vw, 36px);
}

.expert-panel__topic-title {
  padding: 10px 24px;
  color: var(--color-teal);
  font-size: clamp(22px, 2.8vw, 34px);
  border-radius: 100px;
  background-color: #ffffff;
}

.expert-profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.expert-panel .expert-panel__topic {
  margin-bottom: 30px;
}

.expert-panel--compact .expert-profile {
  margin-top: 0;
}

.expert-profile__portrait {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.expert-profile__role {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.55;
}

.expert-profile__name {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.expert-profile__name small {
  font-size: 0.58em;
}

.expert-panel__body {
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--color-text);
  font-size: var(--asset-text-size);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.expert-panel__body p + p {
  margin-top: 1.55em;
}

.expert-panel__body .video-cta {
  margin-top: 38px;
}

/* =========================================================
  Comment Area
========================================================= */

/* 人アイコン + 吹き出し */
.data-comment {
  display: grid;
  grid-template-columns: minmax(90px, 160px) 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin: clamp(32px, 5vw, 56px);
  margin-left: 0;
  margin-right: 0;
}

/* 人アイコン */
.data-comment__person {
  width: 100%;
}

/* 吹き出し */
.data-comment__bubble {
  position: relative;

  padding: clamp(22px, 3vw, 34px) clamp(24px, 4vw, 42px);

  background: #fff;
}

/* 吹き出しの三角 */
.data-comment__bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 18px solid #fff;
  border-bottom: 14px solid transparent;
  transform: translateY(-50%);
}

/* 吹き出しテキスト */
.data-comment__bubble p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* 強調カラー */
.orange {
  color: #ff7a2f;
}

.teal {
  color: var(--color-teal);
}

/* 文中テキスト */

.normal-text {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 767px) {
  :root {
    --asset-text-size: 14px;
  }

  .asset-catalog {
    width: min(calc(100% - 32px), 680px);
    padding: 52px 0 84px;
  }

  .asset-section {
    margin-top: 78px;
  }

  .asset-section__head {
    margin-bottom: 24px;
  }

  .insight-comment {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
  }

  .insight-comment__portrait-wrap {
    width: 78px;
  }

  .insight-comment__portrait {
    border-width: 3px;
  }

  .insight-comment__bubble {
    padding: 20px;
    line-height: 1.8;
  }

  .insight-comment__bubble::before {
    left: -13px;
    border-top-width: 12px;
    border-right-width: 13px;
    border-bottom-width: 12px;
  }

  .comment-with-media .video-cta {
    margin-top: 34px;
  }

  .video-cta {
    min-height: 64px;
    grid-template-columns: 118px minmax(0, 1fr) 34px;
  }

  .video-cta__label {
    gap: 7px;
    padding: 10px 8px;
    font-size: 13px;
  }

  .video-cta__icon {
    width: 20px;
  }

  .video-cta__title {
    padding: 10px 12px;
    font-size: 12px;
  }

  .video-cta__arrow::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }

  .expert-panel {
    padding: 22px 18px 24px;
  }

  .expert-panel__topic {
    min-height: 58px;
    grid-template-columns: 112px minmax(0, 1fr);
    border-width: 4px;
  }

  .expert-panel__topic-label {
    font-size: 19px;
  }

  .expert-panel__topic-title {
    padding: 8px 10px;
    font-size: 17px;
  }

  .expert-profile {
    margin-top: 26px;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
  }

  .expert-profile__portrait {
    width: 100px;
  }

  .expert-profile__role {
    font-size: 14px;
  }

  .expert-profile__name {
    margin-top: 5px;
    font-size: 25px;
  }

  .expert-panel__body {
    margin-top: 24px;
    padding-top: 22px;
    line-height: 1.85;
  }

  .expert-panel__body .video-cta {
    margin-top: 28px;
  }

  /* -----------------------------------------
    Comment Area
  ----------------------------------------- */
  .data-comment {
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
  }

  .data-comment__bubble {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .asset-catalog {
    width: min(calc(100% - 24px), 460px);
  }

  .insight-comment {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .insight-comment__portrait-wrap {
    width: 62px;
  }

  .insight-comment__bubble {
    padding: 16px;
    font-size: 13px;
  }

  .video-cta {
    grid-template-columns: 110px minmax(0, 1fr) 28px;
  }

  .video-cta__label {
    font-size: 12px;
  }

  .video-cta__title {
    font-size: 11px;
  }

  .expert-panel__topic {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .expert-panel__topic-label {
    font-size: 17px;
  }

  .expert-panel__topic-title {
    font-size: 18px;
  }

  .expert-profile {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .expert-profile__portrait {
    width: 82px;
  }

  .expert-profile__role {
    font-size: 12px;
  }

  .expert-profile__name {
    font-size: 21px;
  }
}

/* =========================================================
  少数派データ
========================================================= */
.minority-data {
  padding: clamp(24px, 4vw, 48px);
  background: var(--color-bg, #f9f4f2);
}

.minority-data__inner {
  width: 100%;
  margin-inline: auto;
  padding: clamp(34px, 4vw, 54px) clamp(28px, 4vw, 52px);
  background: var(--color-white, #fff);
  margin-left: 0;
  margin-right: 0;
}

.minority-data__title {
  margin: 0 0 clamp(30px, 4vw, 48px);
  color: var(--color-teal, #00c4c0);
  text-align: center;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
}

.minority-data__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.minority-data__item {
  position: relative;
  padding-left: 1.05em;
  color: var(--color-teal, #00c4c0);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.minority-data__item::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.72em;
  height: 0.72em;
  border-radius: 50%;
  background: currentcolor;
  content: "";
  transform: translateY(-50%);
}

/* 2段目を左から自然に並べる */
.minority-data__item:nth-child(5) {
  grid-column: 1;
}

#report-nav {
  scroll-margin-top: -100px;
}

@media (max-width: 767px) {
  #report-nav {
    scroll-margin-top: 0px;
  }

  .minority-data {
    padding: 20px 16px;
  }

  .minority-data__inner {
    padding: 30px 22px;
  }

  .minority-data__title {
    margin-bottom: 26px;
    font-size: 20px;
  }

  .minority-data__list {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 14px;
  }

  .minority-data__item {
    font-size: 13px;
    white-space: normal;
  }

  /* top */
  .expert-card__portrait {
    width: 200px;
    height: 200px;
  }

  .expert-card__title {
    padding: 12px;
    font-size: 28px;
    line-height: 1.5;
  }

  .expert-card__name span {
    font-size: 15px;
  }

  .expert-card__body {
    min-height: 350px;
  }

  .expert-card {
    min-height: 380px;
  }
}

/* ボタン矢印 */
.top-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-links__item::before,
.top-links__item::after {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transition: transform 0.25s ease;
}
.top-links__item--back::before {
  content: "";
  transform: rotate(-135deg);
}
.top-links__item--next::after {
  content: "";
  transform: rotate(45deg);
}
@media (hover: hover) {
  .top-links__item--back:hover::before {
    transform: translateX(-4px) rotate(-135deg);
  }

  .top-links__item--next:hover::after {
    transform: translateX(4px) rotate(45deg);
  }
}
