:root {
  --yellow: #ffd91a;
  --yellow-dark: #f1c900;
  --ink: #0a0a0a;
  --muted: #666;
  --line: #e6e6e6;
  --soft: #f7f7f7;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  width: min(var(--container), calc(100% - 48px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding: 28px 0 24px;
}

.global-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: #ff8f00;
}

/* SVG icons (Unicode 記号の代替) */
.oshi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
  vertical-align: middle;
}

.oshi-icon svg {
  display: block;
}

.global-nav .nav-has-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.global-nav .oshi-icon--chevron-down {
  width: 11px;
  height: 11px;
  transform: translateY(1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button,
.menu-button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #0b0b0b;
}

.icon-button .oshi-icon {
  width: 22px;
  height: 22px;
}

.post-button {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111;
  transition: transform 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
}

.menu-button.is-open span:nth-child(1) {
  margin: 0;
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  margin: 0;
  transform: translateY(-7px) rotate(-45deg);
}

/* 全画面オーバーレイメニュー（1080px以下） */
.oshi-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.oshi-nav-open .oshi-mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.oshi-nav-open {
  overflow: hidden;
}

.oshi-mobile-nav__panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  max-width: none;
  min-height: 100dvh;
  padding: 16px 20px calc(28px + env(safe-area-inset-bottom, 0px));
}

.oshi-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  margin-bottom: 24px;
}

.oshi-mobile-nav__brand {
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.oshi-mobile-nav__close {
  display: inline-flex;
  flex-shrink: 0;
}

.oshi-mobile-nav__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 32px;
}

.oshi-mobile-nav__link {
  display: block;
  padding: 18px 8px;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 900;
  line-height: 1.35;
  border-bottom: 1px solid var(--line);
}

.oshi-mobile-nav__link.is-active {
  color: #9b8111;
}

.oshi-mobile-nav__link.is-active::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
  transform: translateY(-2px);
}

.oshi-mobile-nav__footer {
  margin-top: auto;
  padding-top: 16px;
}

.oshi-mobile-nav__cta {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
}

.hero {
  width: min(var(--container), calc(100% - 48px));
  margin: 10px auto 34px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 0;
}

.hero-copy {
  padding-left: 12px;
}

.lead-line {
  display: inline-block;
  margin: 0 0 24px;
  padding-left: 18px;
  border-left: 5px solid var(--yellow);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 8px;
  text-underline-offset: -3px;
  text-decoration-skip-ink: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.27;
}

.hero-text {
  margin: 28px 0 38px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  min-width: 230px;
  min-height: 50px;
  padding: 0 18px 0 28px;
  border: 1.6px solid #111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.outline-link .oshi-icon {
  width: 16px;
  height: 16px;
}

.hero-media {
  width: 100%;
  height: 500px;
  margin-left: auto;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.photo-column {
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.photo-track {
  display: flex;
  flex-direction: row;
  gap: 14px;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-photo {
  display: block;
  flex-shrink: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 19px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.column-up .photo-track {
  animation: hero-marquee 38s linear infinite;
}

.column-down .photo-track {
  animation: hero-marquee 38s linear infinite reverse;
}

@keyframes hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.featured-carousel {
  position: relative;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 58px;
}

.carousel-viewport {
  overflow: hidden;
  cursor: grab;
}

.carousel-viewport.dragging {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.feature-card {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 230px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--yellow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  color: #111;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow .oshi-icon {
  width: 20px;
  height: 20px;
}

.carousel-arrow.prev {
  left: -18px;
}

.carousel-arrow.next {
  right: -18px;
}

.content-section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 29px;
  font-weight: 900;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

.section-heading .oshi-icon {
  width: 14px;
  height: 14px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.article-card {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.article-card > a {
  display: block;
}

.article-card > a img,
.article-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
  color: #7b7b7b;
  font-size: 12px;
  font-weight: 700;
}

.article-meta span {
  color: #9b8111;
  background: #fff6c3;
  border-radius: 999px;
  padding: 4px 9px;
}

.article-card h3 {
  margin: 0;
  min-height: 64px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card p {
  margin: 14px 0 20px;
  color: #454545;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

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

.tags span {
  padding: 6px 11px;
  color: #666;
  background: #f1f1f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.executives {
  margin-top: 56px;
  margin-bottom: 72px;
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 42px 34px;
  padding: 0 16px;
}

.executive {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.executive img {
  width: 98px;
  height: 98px;
  margin-bottom: 9px;
  border-radius: 50%;
  object-fit: cover;
}

.executive strong {
  font-size: 14px;
  font-weight: 900;
}

.site-footer {
  background: #f6f6f6;
  padding: 46px 0 12px;
}

.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 56px 72px;
  align-items: start;
}

.footer-inner > div:not(.footer-brand) {
  justify-self: end;
  text-align: left;
}

.footer-inner h2 {
  margin: 3px 0 18px;
  font-size: 16px;
  font-weight: 900;
}

.footer-inner a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.footer-brand p {
  margin: 20px 0 0;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.copyright {
  margin: 30px 0 0;
  text-align: center;
  color: #606060;
  font-size: 11px;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .carousel-arrow {
    display: inline-flex;
  }
}

@media (max-width: 1080px) {
  .site-header {
    width: min(100% - 32px, var(--container));
  }

  .global-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 210;
  }

  .oshi-mobile-nav {
    display: flex;
  }

  body.oshi-nav-open .site-header > .menu-button {
    visibility: hidden;
    pointer-events: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100% - 32px, 760px);
    margin-top: 24px;
    position: relative;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-media {
    height: 440px;
    top: 170px;
    left: 0;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
  }

  .outline-link {
    background: #ffffff;
  }

  .featured-carousel,
  .content-section,
  .footer-inner {
    width: min(100% - 32px, 760px);
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .content-section.latest .article-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-card p {
    margin: 6px 0 12px;
    font-size: 12px;
  }

  .tags span {
    font-size: 11px;
    font-weight: 700;
  }

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

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner > div:not(.footer-brand) {
    justify-self: start;
  }

  .site-footer {
    padding: 40px 0 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
  }

  .brand {
    font-size: 27px;
  }

  .lead-line {
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.22;
  }

  .hero-text {
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .outline-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-media {
    height: 360px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .photo-track {
    gap: 10px;
  }

  .hero-photo {
    border-radius: 14px;
  }

  .featured-carousel {
    margin-bottom: 44px;
  }

  .feature-card {
    flex-basis: 76%;
    min-width: 236px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .section-heading a {
    font-size: 12px;
  }

  .article-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .content-section.latest .article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .article-grid--archive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .content-section.latest .article-card {
    flex: none;
    min-width: 0;
  }

  .article-grid--archive .article-card {
    flex: none;
    min-width: 0;
  }

  .article-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .article-card h3 {
    min-height: auto;
    font-size: 17px;
  }

  .executive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
    padding: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    padding: 32px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .footer-brand {
    padding-bottom: 28px;
  }

  .footer-brand .brand {
    font-size: 27px;
  }

  .footer-brand p {
    margin: 14px 0 16px;
    font-size: 13px;
    line-height: 1.85;
  }

  .footer-inner > div:not(.footer-brand) {
    justify-self: stretch;
    padding: 24px 0;
    border-top: 1px solid var(--line);
  }

  .footer-inner h2 {
    margin: 0 0 12px;
    font-size: 15px;
  }

  .footer-inner a:not(.brand) {
    margin: 7px 0;
  }

  .copyright {
    margin-top: 24px;
    padding: 0 16px;
    line-height: 1.65;
  }
}

/* -------------------------------------------------------------------------
   インタビュー記事（個別）
   ------------------------------------------------------------------------- */

.interview-single {
  padding: 8px 0 80px;
}

.interview-single__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.interview-single__column {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.interview-single__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: #666;
}

.interview-single__breadcrumb a:hover {
  text-decoration: underline;
}

.interview-single__breadcrumb span:last-child {
  color: var(--ink);
}

.interview-single__hero {
  width: 100%;
  margin-bottom: 28px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
}

.interview-single__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.interview-single__header {
  margin-bottom: 32px;
}

.interview-single__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #7b7b7b;
}

.interview-single__badge {
  color: #9b8111;
  background: #fff6c3;
  border-radius: 999px;
  padding: 4px 10px;
}

.interview-single__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.45;
}

.interview-single__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.interview-single__chip {
  padding: 6px 11px;
  color: #666;
  background: #f1f1f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.interview-single__chip--muted {
  background: #f7f7f7;
  color: #555;
}

.interview-single__profile {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 24px 28px;
  align-items: start;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--soft);
  border-radius: 12px;
}

.interview-single__profile-label {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  color: #9b8111;
}

.interview-single__avatar {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  object-fit: cover;
}

.interview-single__company {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
}

.interview-single__company a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.interview-single__role {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.interview-single__person {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.interview-single__profile-text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  color: #454545;
}

.interview-single__profile-text p {
  margin: 0 0 0.75em;
}

.interview-single__profile-text p:last-child {
  margin-bottom: 0;
}

.interview-single__content {
  margin: 0 0 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #333;
}

.interview-single__content > *:first-child {
  margin-top: 0;
}

.interview-single__content > *:last-child {
  margin-bottom: 0;
}

.interview-single__content h2 {
  margin: 3.2em 0 1.8em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.interview-single__content h3 {
  margin: 1.8em 0 0.7em;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.interview-single__content p {
  margin: 0 0 1.25em;
}

.interview-single__content ul,
.interview-single__content ol {
  margin: 0 0 1.25em;
  padding-left: 1.4em;
}

.interview-single__content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 10px;
}

.interview-single__content blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--yellow);
  background: #fffce8;
  font-weight: 700;
}

.interview-single__content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 記事本文：インタビュー会話（アバター＋名前＋吹き出し） */
.interview-single__content .iv-dialogue {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 32px;
}

.interview-single__content .iv-dialogue--a {
  flex-direction: row-reverse;
}

.interview-single__content .iv-dialogue__avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
}

.interview-single__content .iv-dialogue__main {
  flex: 1;
  min-width: 0;
  max-width: min(100%, 560px);
}

.interview-single__content .iv-dialogue--a .iv-dialogue__main {
  margin-left: auto;
}

.interview-single__content .iv-dialogue__name {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  color: #333;
}

.interview-single__content .iv-dialogue--a .iv-dialogue__name {
  text-align: right;
}

.interview-single__content .iv-dialogue__bubble {
  position: relative;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  color: #333;
}

.interview-single__content .iv-dialogue--q .iv-dialogue__bubble::before,
.interview-single__content .iv-dialogue--a .iv-dialogue__bubble::before {
  position: absolute;
  top: 22px;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #e3e3e3;
  content: "";
}

.interview-single__content .iv-dialogue--q .iv-dialogue__bubble::before {
  left: -6px;
  border-right: none;
  border-bottom: none;
  transform: rotate(-45deg);
}

.interview-single__content .iv-dialogue--a .iv-dialogue__bubble::before {
  right: -6px;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
}

.interview-single__content .iv-dialogue__bubble p {
  margin: 0;
}

.interview-single__content .iv-dialogue__bubble p + p {
  margin-top: 0.85em;
}

.interview-single__content .iv-dialogue__bubble--center {
  text-align: center;
}

.interview-single__gallery {
  margin: 0 0 40px;
}

.interview-single__gallery-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
}

.interview-single__gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.interview-single__gallery-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.interview-single__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.interview-single__gallery-item:hover img {
  transform: scale(1.03);
}

.interview-single__back {
  margin: 0;
  text-align: center;
}

.interview-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border: 1.6px solid #111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.oshi-section-more {
  display: none;
  margin: 28px 0 0;
  text-align: center;
}

.oshi-section-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 28px;
  border: 1.6px solid #111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
}

@media (max-width: 1080px) {
  .interview-single__inner {
    width: min(100% - 32px, 760px);
  }

  .interview-single__content h2 {
    font-size: 21px;
  }

  .oshi-section-more {
    display: block;
  }
}

@media (max-width: 640px) {
  .interview-single__profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px;
  }

  .interview-single__content .iv-dialogue {
    gap: 10px;
    margin-bottom: 24px;
  }

  .interview-single__content .iv-dialogue__avatar {
    width: 56px;
    height: 56px;
  }

  .interview-single__content .iv-dialogue__main {
    max-width: calc(100% - 66px);
  }

  .interview-single__content .iv-dialogue__bubble {
    padding: 14px 16px;
    font-size: 15px;
  }

  .interview-single__gallery-grid {
    grid-template-columns: 1fr;
  }

  .interview-single__back-link {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------
   一覧ページ（インタビュー・経営者）
   ------------------------------------------------------------------------- */

.oshi-list-page {
  padding: 24px 0 80px;
}

.oshi-list-page__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.oshi-list-page__header {
  margin-bottom: 32px;
}

.oshi-list-page__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.oshi-list-page__lead {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: #555;
}

.oshi-list-page__empty {
  margin: 48px 0;
  padding: 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #666;
  background: var(--soft);
  border-radius: 12px;
}

.article-grid--archive {
  margin-bottom: 8px;
}

.executive-grid--archive {
  margin-bottom: 8px;
}

.oshi-pagination {
  margin-top: 44px;
}

.oshi-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 4px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  background: #fff;
}

.oshi-pagination .page-numbers.current {
  border-color: var(--yellow);
  background: var(--yellow);
}

.oshi-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oshi-pagination li {
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------------
   検索ページ
   ------------------------------------------------------------------------- */

.oshi-search-form {
  margin-bottom: 36px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.oshi-search-form__fields {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr);
  gap: 16px;
}

.oshi-search-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oshi-search-form__label {
  font-size: 13px;
  font-weight: 800;
  color: #333;
}

.oshi-search-form__input,
.oshi-search-form__select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
}

.oshi-search-form__input:focus,
.oshi-search-form__select:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
}

.oshi-search-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.oshi-search-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding-inline: 22px;
  border: 0;
  cursor: pointer;
}

.oshi-search-form__reset {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.oshi-search-results__summary {
  margin: 0 0 24px;
}

.oshi-search-results__summary p {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.oshi-search-results__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oshi-search-results__filters li {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  background: #fff;
  border: 1px solid var(--line);
}

.oshi-search-results__hint {
  margin-top: 8px;
}

.icon-button.is-active {
  color: #ff8f00;
}

@media (max-width: 1080px) {
  .oshi-list-page__inner {
    width: min(100% - 32px, 760px);
  }

  .article-grid--archive {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oshi-search-form__fields {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------
   経営者詳細
   ------------------------------------------------------------------------- */

.executive-detail {
  padding: 8px 0 80px;
}

.executive-detail__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.executive-detail__column {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.executive-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  color: #7b7b7b;
}

.executive-detail__breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.executive-detail__header {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 32px;
  text-align: center;
}

.executive-detail__logo img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.executive-detail__company {
  font-weight: 800;
  color: #333;
}

.executive-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
}

.executive-detail__profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px 32px;
  align-items: center;
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--soft);
  border-radius: 12px;
}

.executive-detail__avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.executive-detail__role {
  font-weight: 700;
  color: #333;
}

.executive-detail__name {
  margin: 0;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.4;
}

.executive-detail__bio {
  margin-bottom: 40px;
}

.executive-detail__bio-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  color: #454545;
}

.executive-detail__bio-text p {
  margin: 0 0 0.75em;
}

.executive-detail__bio-text p:last-child {
  margin-bottom: 0;
}

.executive-detail__section-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 900;
}

.executive-detail__interview-link {
  margin-bottom: 40px;
}

.executive-detail__interview-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 16px;
  padding: 20px 24px;
  border: 1.6px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.executive-detail__interview-card:hover {
  border-color: var(--yellow);
  background: #fffdf0;
}

.executive-detail__interview-label {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  color: #9b8111;
  background: #fff6c3;
  border-radius: 999px;
  white-space: nowrap;
}

.executive-detail__interview-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.executive-detail__info {
  margin-bottom: 40px;
}

.executive-detail__info-list {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.executive-detail__info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.executive-detail__info-row:last-child {
  border-bottom: 0;
}

.executive-detail__info-row dt {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #555;
}

.executive-detail__info-row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: #333;
}

.executive-detail__info-row dd a {
  word-break: break-all;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.executive-detail__back {
  margin: 0;
  text-align: center;
}

.executive-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border: 1.6px solid #111;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .executive-detail__inner {
    width: min(100% - 32px, 760px);
  }
}

@media (max-width: 640px) {
  .executive-detail__profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .executive-detail__meta {
    justify-content: center;
  }

  .executive-detail__interview-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .executive-detail__info-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .executive-detail__back-link {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------
   運営会社ページ
   ------------------------------------------------------------------------- */

.company-page__inner {
  max-width: 760px;
}

.company-page__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  color: #7b7b7b;
}

.company-page__breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company-page__header {
  margin-bottom: 28px;
}

.company-page__intro {
  max-width: 640px;
}

.company-page__section-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 900;
}

.company-page__info-list {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.company-page__info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px 24px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.company-page__info-row:last-child {
  border-bottom: 0;
}

.company-page__info-row dt {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #444;
}

.company-page__info-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--ink);
}

.company-page__info-row dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .company-page__info-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }
}

/* -------------------------------------------------------------------------
   法定ページ（プライバシーポリシー等）
   ------------------------------------------------------------------------- */

.legal-page__inner {
  max-width: 760px;
}

.legal-page__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  color: #7b7b7b;
}

.legal-page__breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__header {
  margin-bottom: 32px;
}

.legal-page__intro {
  max-width: 640px;
}

.legal-page__updated {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #777;
}

.legal-page__body {
  display: grid;
  gap: 28px;
}

.legal-page__section-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.legal-page__section p {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: #333;
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__list {
  margin: 0 0 12px;
  padding-left: 1.4em;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: #333;
}

.legal-page__list li + li {
  margin-top: 6px;
}
