@charset "UTF-8";
:root {
  --c-brand:        #1f79d7;
  --c-brand-2:      #257ad4;
  --c-tint:         #e9f2fb;
  --c-ink:          #111111;
  --c-white:        #ffffff;
  --c-line:         #b3b3b3;
  --c-focus:        #10365f;
  --c-focus-invert: #ffffff;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Helvetica Neue", Helvetica, Arial, var(--font-ja);
  --inner-max: 62.5rem;
  --wide-max:  81.25rem;
  --tap-min:   2.75rem;
  --space-section: clamp(3rem, 6.9vw, 6.25rem);
  --gutter:        clamp(1.25rem, 5vw, 7.5rem);
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 6rem;
}
body {
  margin: 0;
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.8;
  color: var(--c-ink);
  background: var(--c-white);
  overflow-wrap: anywhere;
}
h1, h2, h3, p, blockquote, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: 0.25rem;
}
.hero :focus-visible,
.site-footer :focus-visible { outline-color: var(--c-focus-invert); }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; top: 0; left: 0; z-index: 100;
  transform: translateY(-120%);
  display: inline-flex; align-items: center;
  min-height: var(--tap-min);
  padding: 0.5rem 1.25rem;
  background: var(--c-brand); color: var(--c-white);
  font-weight: 700; text-decoration: underline;
}
.skip-link:focus { transform: translateY(0); }
.section {
  padding-block: var(--space-section);
  padding-inline: var(--gutter);
}
.section--tint { background: var(--c-tint); }
.section__inner {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
}
.stack-80 { display: flex; flex-direction: column; gap: clamp(2.5rem, 5.5vw, 5rem); }
.stack-60 { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3.75rem); }
.stack-50 { display: flex; flex-direction: column; gap: clamp(2rem, 3.5vw, 3.125rem); }
.heading { display: flex; flex-direction: column; gap: 0.875rem; }
.heading__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-brand);
}

.heading__label::before {
  content: "";
  flex: 0 0 auto;
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  background: currentColor;
}
.heading__en {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw + 0.6rem, 4rem);
  line-height: 1.15;
  color: var(--c-brand);
}
.prose { font-size: 1rem; line-height: 1.8; }
.prose > p + p { margin-top: 1.5rem; }
.js .fade-in-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}
.js .fade-in-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .fade-in-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.js .page {
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.js .page.is-entering { display: block; }
.js .page.is-active   { display: block; opacity: 1; }
.page:focus { outline: none; }
@media (prefers-reduced-motion: reduce) {
  .js .page { transition: none; }
}

.site-header {
  position: relative;
  z-index: 50;
  background: var(--c-white);
}
@media (min-height: 34rem) {
  .site-header { position: sticky; top: 0; }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  column-gap: 0;
  row-gap: clamp(0.75rem, 2vw, 2.5rem);
  flex-wrap: wrap;
  min-height: 5rem;
  padding-block: 0.625rem;
  padding-inline: var(--gutter);
}

.site-header__logo {
  display: inline-flex; align-items: center;
  min-height: var(--tap-min);
  padding-block: 0.125rem;
}
.site-header__logo img { width: 8.75rem; height: auto; }
.global-nav { flex: 1 1 auto; min-width: 0; }
.global-nav__inner { display: flex; align-items: center; }
.global-nav__list {
  display: flex; flex-wrap: wrap; align-items: center;
  column-gap: clamp(1rem, 3.4vw, 3.125rem);
  margin-left: auto;
}
.global-nav__list a {
  display: inline-flex; align-items: center;
  min-height: var(--tap-min);
  padding-block: 0.875rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.global-nav__list a:hover { color: var(--c-brand); }
.global-nav__sns {
  display: flex; align-items: center;
  gap: clamp(1rem, 2.8vw, 2.5rem);
  margin-left: auto;
}
.global-nav__sns a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: var(--tap-min); min-height: var(--tap-min);
}
.global-nav__sns img { width: auto; height: 2.5rem; }
.site-header__actions {
  display: flex; align-items: center;
  gap: 0.5rem;
  padding-left: clamp(1rem, 2.8vw, 2.5rem);
  margin-left: auto;
}
.site-header__entry { margin: 0; }
.site-header__entry a { min-width: 0; margin-block: -0.3125rem; }
.site-header__entry .btn-pill {
  gap: clamp(0.75rem, 1.7vw, 1.5625rem);
  min-height: 3.125rem;
  padding: 0.3125rem 0.3125rem 0.3125rem clamp(0.875rem, 1.7vw, 1.5625rem);
  font-weight: 500;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: var(--tap-min);
  min-width: var(--tap-min);
  padding: 0.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-family: inherit; font-size: 0.875rem; font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}
.nav-toggle:hover { color: var(--c-brand); }
.nav-toggle__bars { display: grid; gap: 5px; width: 1.5rem; }
.nav-toggle__bars span { display: block; height: 2px; background: currentColor; }
.hero {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1440 / 825;
  background: var(--c-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg picture { display: contents; }
.hero__bg-item {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}
.hero__bg-item.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg-item { transition: none; }
}
.events-news {
  display: flex; flex-direction: column;
  gap: clamp(2rem, 4.2vw, 3.75rem);
}
.topics { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.5rem); }
.topic-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(1.5rem, 3.5vw, 3.125rem);
}
@media (min-width: 64rem) {
  .topic-cards { grid-template-columns: repeat(3, 1fr); }
}
.topic-card__link {
  display: flex; flex-direction: column;
  gap: 0.9375rem;
  height: 100%;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.topic-card__link:hover { color: #1f79d7; }

.topic-card__thumb {
  display: block;
  overflow: hidden;
  border-radius: 0.625rem;
  background: var(--c-brand);
  aspect-ratio: 4 / 3;
}
.topic-card__thumb img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.topic-card__link:hover .topic-card__thumb img { transform: scale(1.05); }
.topic-card__body {
  display: flex; flex-direction: column;
  gap: 0.625rem;
  padding-inline: 0.3125rem;
}
.topic-card__meta {
  display: flex; align-items: center;
  gap: 0.625rem;
}
.topic-card__date {
  font-size: 0.875rem;
  line-height: 1.4;
}
.topic-card__badge {
  flex: 0 0 auto;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--c-brand);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
.topic-card__text {
  border-top: 1px solid var(--c-line);
  padding-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media (prefers-reduced-motion: reduce) {
  .topic-card__thumb img { transition: none; }
  .topic-card__link:hover .topic-card__thumb img { transform: none; }
}
.news-list { display: flex; flex-direction: column; }
.news-list__item {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--c-line);
}
.news-list__item + .news-list__item { padding-top: 0.625rem; }
.news-list__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  min-height: var(--tap-min);
  padding: 1.25rem 0;
  --news-hover-x: 1.25rem;
  box-sizing: border-box;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0.625rem;
  background: transparent;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease,
              width 0.3s ease, margin-left 0.3s ease, margin-right 0.3s ease,
              padding-left 0.3s ease, padding-right 0.3s ease;
}
.news-list__link:hover,
.news-list__link:focus-visible {
  background: #ffffff;
  color: #1f79d7;
  width: calc(100% - var(--news-hover-x) * 2);
  margin-left:  var(--news-hover-x);
  margin-right: var(--news-hover-x);
}
@media (hover: none), (pointer: coarse) {
  .news-list__link:hover {
    background: transparent;
    color: #000000;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.news-list__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2.5rem;
  row-gap: 0.25rem;
  flex-grow: 1;
  min-width: 0;
}
.news-list__date {
  flex: 0 0 auto; min-width: 7.5rem;
  font-size: 1rem; line-height: 1.6;
}
.news-list__text {
  flex: 1 1 auto; min-width: 0;
  font-size: 1rem;
  line-height: 1.8;
}
.news-list__arrow {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 0.875rem;
}
.news-list__arrow svg { width: 100%; height: 100%; }
.about__body {
  display: flex; align-items: center;
  gap: clamp(2rem, 5vw, 6.25rem);
}
.about__text { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.5rem); flex: 1 1 22rem; }
.about__logo { flex: 0 0 auto; width: clamp(9rem, 23vw, 21.25rem); height: auto; }
@media (max-width: 56.25rem) {
  .about__body {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
  .about__text { display: contents; }
  .about__body > .about__text > .heading { order: 1; }
  .about__logo { order: 2; align-self: center; }
  .about__body > .about__text > .prose { order: 3; }
}
.btn-wrap { display: flex; justify-content: center; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  min-height: 3.375rem;
  padding: 0.4375rem 0.4375rem 0.4375rem clamp(1.5rem, 4vw, 3.75rem);
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transform: scale(1);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-pill:hover {
  background: #1f79d7;
  transform: scale(1.05);
}
.btn-pill__label { display: inline-block; }
.btn-pill__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  transition: color 0.3s ease-in-out;
}
.btn-pill:hover .btn-pill__icon { color: #1f79d7; }
.btn-pill__icon svg { width: 1.25rem; height: 0.875rem; }

#page-top .btn-pill {
  gap: clamp(1rem, 1.7vw, 1.5625rem);
  min-height: 3.125rem;
  padding: 0.3125rem 0.3125rem 0.3125rem clamp(1rem, 1.7vw, 1.5625rem);
  font-weight: 500;
}
.mission__intro, .comments__intro { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.5rem); }
.steps { display: flex; flex-direction: column; gap: clamp(1rem, 2.2vw, 1.875rem); }
.step {
  display: flex; flex-direction: column;
  gap: clamp(1.25rem, 2.8vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3.4vw, 3.125rem);
  border-radius: 0.625rem;
  background: var(--c-white);
}
.step__head {
  display: flex; flex-wrap: wrap; align-items: center;
  column-gap: 1.5rem; row-gap: 0.5rem;

  color: var(--c-brand);
}
.step__title {
  font-size: clamp(1.125rem, 0.7vw + 0.95rem, 1.25rem);
  font-weight: 700; line-height: 1.5;
}

#page-top .step { gap: 1.25rem; }
.step__badge {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.125rem; height: 3.125rem;
  border-radius: 50%;
  background: var(--c-brand);
  color: var(--c-white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
#page-top .step__title {
  font-size: clamp(1.125rem, 1vw + 0.85rem, 1.5rem);
  line-height: 1.4;
}
#page-top .step__list li { font-size: 1rem; }
.step__list { display: flex; flex-direction: column; gap: 1rem; }
.step__list li {
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
  line-height: 1.8;
}

.comments { padding-inline: 0; }
.comments > .section__inner {
  max-width: calc(var(--inner-max) + var(--gutter) * 2);
  padding-inline: var(--gutter);
}
.carousel { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.carousel__viewport {
  --card-w: min(25rem, calc(100vw - 2.5rem));
  --side: max(1.25rem, (100% - var(--card-w)) / 2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--side);
  scroll-padding-inline: var(--side);
  padding-block: 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__track {
  display: flex;
  gap: clamp(1.25rem, 3.5vw, 3.125rem);
  width: max-content;
  margin-inline: 0;
}
.comment-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex; flex-direction: column;
  width: var(--card-w);
}
.comment-card,
.comment-card__tag,
.comment-card__person,
.comment-card__quote {
  color: #000000;
  transition: color 0.3s ease-in-out;
}
.comment-card:hover,
.comment-card:hover .comment-card__tag,
.comment-card:hover .comment-card__person,
.comment-card:hover .comment-card__quote {
  color: #1f79d7;
}
.comment-card__thumb {
  overflow: hidden;
  border-radius: 0.625rem;
  background: var(--c-brand);
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
}
.comment-card__photo {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.comment-card:hover .comment-card__photo { transform: scale(1.05); }
.comment-card__body {
  display: flex; flex-direction: column;
  gap: 0.625rem;
  padding-inline: 0.625rem;
}
.comment-card__head {
  display: flex; flex-direction: column;
  gap: 1rem;
}
.comment-card__tag {
  display: flex; align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.comment-card__tag::before {
  content: "";
  flex: 0 0 auto;
  width: 2px;
  height: 1.25rem;
  background: currentColor;
}
.comment-card__person {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.comment-card__quote {
  border-top: 1px solid var(--c-line);
  padding-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.8;
}
.carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.carousel__controls[hidden] { display: none; }
.carousel__dots {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.carousel__dots button {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap-min); height: var(--tap-min);
  padding: 0; border: 0; background: none; cursor: pointer;
}
.carousel__dots button::before {
  content: ""; display: block;
  width: 0.875rem; height: 0.875rem;
  border-radius: 50%;
  background: var(--c-tint);
}
.carousel__dots button[aria-current="true"]::before {
  background: var(--c-brand-2);
}
@media (max-width: 30rem) {
  .carousel__dots { max-width: calc(var(--tap-min) * 5); margin-inline: auto; }
}
.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.voice-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.voice-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
}
.voice-modal__panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  width: min(56.25rem, 100%);
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  padding: 2.5rem;
  overflow: auto;
  border-radius: 0.625rem;
  background: var(--c-white);
}
.voice-modal__photo {
  flex: 0 0 auto;
  width: 13.75rem; height: 13.75rem;
  border-radius: 0.625rem;
  background: var(--c-brand);
  overflow: hidden;
}
.voice-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-modal__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.voice-modal__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 32.5rem;
}
.voice-modal__tag {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  padding-right: 2.5rem;
}
.voice-modal__person {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #000000;
}
.voice-modal__name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
.voice-modal__company {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.voice-modal__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  white-space: pre-line;
}
.voice-modal__close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-min); height: var(--tap-min);
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s ease;
}
.voice-modal__close:hover { color: var(--c-brand); }
.voice-modal__close svg { width: 1.25rem; height: 1.25rem; }
.comment-card[role="button"] { cursor: pointer; }
@media (max-width: 48rem) {
  .voice-modal__panel { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  .voice-modal__photo { width: 100%; height: auto; max-width: 13.75rem; aspect-ratio: 1; }
  .voice-modal__body { flex: 1 1 auto; }
  .voice-modal__close { top: 0.5rem; right: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .voice-modal, .voice-modal__close { transition: none; }
}
.startup { display: flex; flex-direction: column; gap: 2.5rem; }
.startup-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.startup-panel.is-swapping { opacity: 0; }
.startup-panel:focus { outline: none; }

.startup-panel__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.125rem;
  padding: 0.5rem 2rem;
  border-radius: 0.625rem;
  background: var(--c-white);
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  text-align: center;
}
.startup-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 1.5625rem;
}
@media (min-width: 64rem) {
  .startup-logos { grid-template-columns: repeat(5, 1fr); }
}
.startup-logos__item {
  aspect-ratio: 1;
  border-radius: 0.625rem;
  background: var(--c-white);
  overflow: hidden;
}
.startup-logos__item img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.25rem;
}
.startup-logos__btn {
  display: block;
  width: 100%; height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.startup-logos__btn img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.startup-logos__btn:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
  .startup-panel { transition: none; }
  .startup-logos__btn img { transition: none; }
  .startup-logos__btn:hover img { transform: none; }
}
.mentors-intro { display: flex; flex-direction: column; gap: 2.5rem; }
.mentors { display: flex; flex-direction: column; gap: 2.5rem; }

.mentor-groups { display: flex; flex-direction: column; gap: 3.75rem; }
.mentor-group { display: flex; flex-direction: column; gap: 2.5rem; }
.mentor-group__head { display: flex; flex-direction: column; gap: 1rem; }
.mentor-group__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}
.mentor-group__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
}
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.375rem, 1fr));
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  .mentor-grid { grid-template-columns: repeat(4, 1fr); }
}
.mentor-card__btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.mentor-card__photo {
  display: block;
  aspect-ratio: 1;
  border-radius: 0.625rem;
  background: var(--c-brand-2);
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.mentor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.mentor-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem 0.75rem 0 0;
}
.mentor-card__name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  transition: color 0.2s ease;
}
.mentor-card__company {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s ease;
  color: #000000;
}
.mentor-card__btn:hover .mentor-card__photo img { transform: scale(1.05); }
.mentor-card__btn:hover .mentor-card__name,
.mentor-card__btn:hover .mentor-card__company { color: #1f79d7; }
.mentor-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.mentor-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.mentor-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
}
.mentor-modal__panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  width: min(56.25rem, 100%);
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  padding: 2.5rem;
  overflow: auto;
  border-radius: 0.625rem;
  background: var(--c-white);
}
.mentor-modal__photo {
  flex: 0 0 auto;
  width: 13.75rem; height: 13.75rem;
  border-radius: 0.625rem;
  background: var(--c-brand);
  overflow: hidden;
}
.mentor-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.mentor-modal__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.mentor-modal__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 32.5rem;
}

.mentor-modal__role {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}
.mentor-modal__person {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #000000;
}
.mentor-modal__name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
.mentor-modal__company {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.mentor-modal__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;

  white-space: pre-line;
}
.mentor-modal__close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-min); height: var(--tap-min);
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s ease;
}
.mentor-modal__close:hover { color: var(--c-brand); }
.mentor-modal__close svg { width: 1.25rem; height: 1.25rem; }
@media (max-width: 48rem) {
  .mentor-modal__panel { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  .mentor-modal__photo { width: 100%; height: auto; max-width: 13.75rem; aspect-ratio: 1; }
  .mentor-modal__body { flex: 1 1 auto; }
  .mentor-modal__close { top: 0.5rem; right: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .mentor-modal, .mentor-modal__close,
  .mentor-card__photo img, .mentor-card__name, .mentor-card__company { transition: none; }
  .mentor-card__btn:hover .mentor-card__photo img { transform: none; }
}
.startup-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.startup-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.startup-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
}
.startup-modal__panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  width: min(56.25rem, 100%);
  max-height: calc(100vh - 2.5rem);
  max-height: calc(100dvh - 2.5rem);
  padding: 2.5rem;
  overflow: auto;
  border-radius: 0.625rem;
  background: var(--c-white);
}
.startup-modal__photo {
  flex: 0 0 auto;
  width: 13.75rem; height: 13.75rem;
  border-radius: 0.625rem;
  background: var(--c-brand);
  overflow: hidden;
}
.startup-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.startup-modal__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.startup-modal__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 32.5rem;
}
.startup-modal__term {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}
.startup-modal__person {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: #000000;
}
.startup-modal__name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
.startup-modal__company {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.startup-modal__detail {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-width: 0;
}
.startup-modal__lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: #000000;
}
.startup-modal__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  white-space: pre-line;
}

.startup-modal__meta {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
  color: #4a4a4a;
}
.startup-modal__close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-min); height: var(--tap-min);
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s ease;
}
.startup-modal__close:hover { color: var(--c-brand); }
.startup-modal__close svg { width: 1.25rem; height: 1.25rem; }
@media (max-width: 48rem) {
  .startup-modal__panel { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  .startup-modal__photo { width: 100%; height: auto; max-width: 13.75rem; aspect-ratio: 1; }
  .startup-modal__body { flex: 1 1 auto; }
  .startup-modal__close { top: 0.5rem; right: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .startup-modal, .startup-modal__close { transition: none; }
}
.events-page { display: flex; flex-direction: column; gap: 2.5rem; }
.event-years { display: flex; flex-direction: column; gap: 1.25rem; }
.event-year  { display: flex; flex-direction: column; }
.event-year__heading { margin: 0; }
.event-year__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 0.625rem;
  background: var(--c-brand-2);
  color: var(--c-white);
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.event-year__toggle:hover { background: var(--c-brand); }
.event-year__toggle::after {
  content: "";
  position: absolute;
  inset: -0.25rem 0;
}
.event-year__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}
.event-year__icon {
  position: relative;
  flex: 0 0 auto;
  width: 0.625rem;
  height: 0.625rem;
}
.event-year__icon::before,
.event-year__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  margin-top: -0.0625rem;
  background: var(--c-white);
  transition: transform 0.3s ease;
}
.event-year__icon::after { transform: rotate(90deg); }
.event-year__toggle[aria-expanded="true"] .event-year__icon::after { transform: none; }
.event-year__panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}
.event-year__panel > .event-year__inner {
  overflow: hidden;
  min-height: 0;
  visibility: visible;
}
.event-year__inner > .events-list { padding-block: 1.25rem 0.625rem; }
.event-year__panel[data-collapsed] { grid-template-rows: 0fr; }

.event-year__panel[data-collapsed] > .event-year__inner {
  visibility: hidden;
  transition: visibility 0s linear 0.35s;
}

.events-list .news-list__link { align-items: flex-start; gap: 2.875rem; }
.events-list .news-list__body {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  row-gap: 1.25rem;
}
.events-list .news-list__arrow { align-self: center; }
.events-list__thumb {
  flex: 0 0 9.375rem;
  aspect-ratio: 150 / 110;
  border-radius: 0.625rem;
  background: var(--c-brand-2);
}
.events-list__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
@media (max-width: 48rem) {
  .events-list .news-list__link { gap: 1.25rem; }
}
@media (max-width: 48rem) {
  .news-list__link {
    padding-left:  var(--news-hover-x);
    padding-right: var(--news-hover-x);
  }
  .news-list__link:hover,
  .news-list__link:focus-visible {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 48rem) and (hover: none), (max-width: 48rem) and (pointer: coarse) {
  .news-list__link:hover {
    padding-left:  var(--news-hover-x);
    padding-right: var(--news-hover-x);
  }
}
@media (prefers-reduced-motion: reduce) {
  .event-year__toggle, .event-year__panel,
  .event-year__icon::before, .event-year__icon::after { transition: none; }
}
.section--article {
  background: var(--c-tint);
  padding-block: var(--space-section) clamp(3rem, 12.5vw, 11.25rem);
}
.article {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-family: var(--font-ja);
  font-size: 1rem;
}
.article__head {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.article__date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
}
.article__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}
.article__hero { display: block; }

.article__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.article__section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
}

.article-heading {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000000;
}
.article-heading::before {
  content: "";
  flex: 0 0 auto;
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  background: var(--c-brand);
  transform: translateY(-0.15em);
}

.article-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
}
.article-link {
  color: #1257a0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}
.article-link:hover { color: var(--c-brand); }
.article__hero img,
.article-figure img,
.article-media__figure img {
  display: block;
  width: 100%;
  max-width: 62.5rem;
  height: auto;
  border-radius: 0.625rem;
}
.article-figure { margin: 0; }
.article-figure--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.article-list li { padding-left: 1em; text-indent: -1em; }
.article-list li::before { content: "・"; }
.article-list--note { gap: 0.75rem; }
.article-list--note li::before { content: none; }

.article-deflist { margin: 0; display: flex; flex-direction: column; }
.article-deflist__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 0;
  row-gap: 0.5rem;
  padding-block: 1.25rem 1.875rem;
  border-bottom: 1px solid var(--c-line);
}
.article-deflist__row + .article-deflist__row { padding-top: 1.875rem; }
.article-deflist__term {
  flex: 0 0 auto;
  width: 12.5rem;
  padding-right: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.article-deflist__desc {
  margin: 0;
  flex: 1 1 15rem;
  min-width: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.article-deflist__desc > p + p { margin-top: 1.8em; }
.article-table-wrap {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  color: #000000;
}
.article-table th,
.article-table td {
  padding: 1.25rem 1.5rem 1.25rem 0;
  vertical-align: top;
  border-bottom: 1px solid var(--c-line);
}
.article-table th:last-child,
.article-table td:last-child { padding-right: 0; }
.article-table thead th {
  padding-top: 0;
  font-weight: 700;
  border-bottom-color: #000000;
}
.article-table tbody th[scope="row"] { font-weight: 400; }
.article-table__head-col { width: 12.5rem; }
.article-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.875rem);
  border-radius: 0.625rem;
  background: var(--c-white);
}
.article-media {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 1.875rem);
  border-radius: 0.625rem;
  background: var(--c-white);
}
.article-media__figure {
  flex: 0 0 auto;
  width: 13.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.article-media__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.article-media__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
.article__actions {
  display: flex;
  justify-content: center;
  margin: 0;
  margin-top: clamp(1.25rem, 3vw, 3.125rem);
}
.events-list__thumb--fit img { object-fit: contain; padding: 0.5rem; }

@media (max-width: 48rem) {
  .article-media { flex-direction: column; }
  .article-media__figure { width: 100%; max-width: 13.75rem; align-self: center; }
  .article-deflist__term { width: 100%; padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .article-link { transition: none; }
}
.site-footer {
  padding-block: var(--space-section);
  padding-inline: var(--gutter);
  color: var(--c-white);
  background-color: var(--c-brand);
  background-image: url("../img/bg-gradation-1440.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 48rem) {
  .site-footer { background-image: url("../img/bg-gradation-768.webp"); }
}
.site-footer__inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%; max-width: var(--inner-max); margin-inline: auto;
}
.site-footer__text {
  display: flex; flex-direction: column; gap: clamp(1.25rem, 2.5vw, 1.875rem);
  font-size: 1rem; line-height: 1.8;
}
.site-footer__copyright { font-size: 0.875rem; }
@media (prefers-reduced-motion: reduce) {
  .global-nav, .global-nav__list a,
  .nav-toggle, .nav-toggle__bars span,
  .news-list__link,
  .btn-pill, .btn-pill__icon,
  .comment-card__photo { transition: none; }
  .btn-pill:hover,
  .comment-card:hover .comment-card__photo { transform: none; }
}
@media (max-width: 60rem) {
  .site-header { background: transparent; }
  .site-header__inner {
    flex-wrap: wrap;
    background: var(--c-white);
    border-radius: 0;
    transition: border-radius 0.3s ease;
  }
  .site-header__inner:has(.global-nav.is-open) { border-radius: 0 0 10px 10px; }
  @supports not selector(:has(*)) {
    .site-header__inner { border-radius: 0 0 10px 10px; }
  }
  .nav-toggle { display: inline-flex; }
  .site-header__actions {
    padding-left: 0;
    margin-left: 0;
    gap: clamp(0.25rem, 2vw, 0.75rem);
  }
  .global-nav {
    flex: 0 0 100%;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease, visibility 0s linear 0.3s;
  }
  .global-nav.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease, visibility 0s;
  }
  html:not(.js) .global-nav {
    grid-template-rows: 1fr; opacity: 1; visibility: visible; transition: none;
  }
  html:not(.js) .nav-toggle { display: none; }
  .global-nav__inner {
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
  }
  .global-nav__list {
    flex-direction: column; align-items: stretch;
    margin-left: 0;
  }
  .global-nav__list a { padding-inline: 0.25rem; }

  .global-nav__sns {
    margin-left: 0;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-block: 0.75rem 0.25rem;
    padding-inline: 0.25rem;
    border-top: 1px solid var(--c-line);
  }
}
@media (max-width: 48rem) {
  .site-header__logo img { width: 7.5rem; }
  .site-header__entry .btn-pill {
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.25rem 0.25rem 0.25rem 0.875rem;
    font-size: 0.875rem;
  }
  .site-header__entry .btn-pill__icon { width: 2.25rem; height: 2.25rem; }
  .site-header__entry a { margin-block: 0; }
}
@media (max-width: 26rem) {
  .site-header__logo img { width: 6.25rem; }
  .site-header__entry .btn-pill {
    gap: 0.375rem;
    padding-left: 0.75rem;
    font-size: 0.8125rem;
  }
  .site-header__entry .btn-pill__icon { width: 2rem; height: 2rem; }
}
@media (max-width: 40rem) {
  .news-list__date { min-width: 100%; }
}
@media (max-width: 24rem) {
  :root { --gutter: 1rem; }
  .carousel__track { gap: 1rem; }
}
:root {
  --c-line-2: #c8c8c8;
}
.heading { gap: 0.75rem; }
.heading__label::before {
  width: 0.5rem; height: 0.5rem;
}
.topic-card__link { gap: 1rem; }
.topic-card__thumb { border-radius: 0.5rem; }
.topic-card__body {
  gap: 0.75rem;
  padding-inline: 0.5rem;
}
.topic-card__text {
  border-top-color: var(--c-line-2);
  padding-top: 0.75rem;
}
.topic-card__badge--news {
  background: var(--c-white);
  color: var(--c-brand);
}
.step { border-radius: 0.5rem; }
.step__badge {
  width: 3rem; height: 3rem;
}
.comment-card__thumb { margin-bottom: 1rem; }
.comment-card__body {
  gap: 0.75rem;
  padding-inline: 0.5rem;
}
.comment-card__head { gap: 0.75rem; }
.comment-card__tag { gap: 0.5rem; }
.comment-card__quote {
  border-top-color: var(--c-line-2);
  padding-top: 0.75rem;
}
.carousel__dots button::before {
  width: 0.75rem; height: 0.75rem;
}
.about .prose { text-align: justify; }
.site-footer__copyright { font-size: 1rem; }
@media (min-width: 64rem) {
  .site-header__inner {
    min-height: 5rem;
    padding-left: var(--gutter);
    padding-right: 2rem;
  }
  .site-header__logo { min-height: 2.5rem; padding-block: 0; }
  .site-header__logo img { width: 8.75rem; height: 2.5rem; }
  .global-nav__list { column-gap: 3rem; }
  .global-nav__list a {
    min-height: 2.5rem;
    padding-block: 0.75rem;
    font-weight: 400;
    line-height: 1;
  }
  .global-nav__sns a { display: flex; min-width: 2.5rem; min-height: 2.5rem; }
  .site-header__entry a { margin-block: 0; }
  .site-header__entry .btn-pill {
    gap: 1.25rem;
    min-height: 2.5rem;
    padding: 0.25rem 0.25rem 0.25rem 1.25rem;
    border-radius: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
  }
  .site-header__entry .btn-pill__icon {
    width: 2rem; height: 2rem;
  }
  .site-header__entry .btn-pill__icon svg {
    width: 1rem; height: 0.75rem;
  }
  .heading__label { line-height: 1; }
  .heading__en { line-height: 1; }
  #page-top .section { padding-block: 6rem; }
  #page-top .mission { padding-block: 6.25rem; }
  #page-top .topic-cards { gap: 3rem; }
  #page-top .topic-card__thumb {
    aspect-ratio: auto;
    height: 12.5rem;
  }
  #page-top .btn-pill {
    gap: 1.5rem;
    min-height: 3rem;
    padding: 0.25rem 0.25rem 0.25rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
  }
  #page-top .btn-pill__icon { width: 2.5rem; height: 2.5rem; }
  #page-top .btn-pill__icon svg { width: 1.2rem; height: 0.84rem; }
  #page-top .about > .section__inner { gap: 3.5rem; }
  #page-top .top-blocks { gap: 6rem; }
  #page-top .about__body { gap: 4.5rem; }
  #page-top .about__logo {
    width: 20rem; height: 20rem;
  }

  #page-top .mission .steps + .btn-wrap { margin-top: 0.625rem; }
  #page-top .step {
    padding: 2.5rem 3rem;
  }
  #page-top .carousel__track { gap: 3rem; }
  #page-top .comment-card__thumb {
    aspect-ratio: auto;
    height: 16.6875rem;
  }
  #page-top .carousel__controls { margin-top: 3.5rem; }
  .site-footer { padding-block: 6.25rem; }
}

:root {
  --c-bg-page:  #f6fafe;
  --c-hover-dk: #185fa9;
  --c-line-3:   #d4d6d8;
  --c-line-4:   #e3e3e3;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.btn-arrow__icon {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-arrow__icon svg { display: block; }
.btn-arrow__label { display: inline-block; }

.btn-arrow:hover,
.btn-arrow:focus-visible { color: var(--c-brand); }
.btn-arrow:hover .btn-arrow__icon,
.btn-arrow:focus-visible .btn-arrow__icon {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: var(--c-white);
}
.btn-arrow--invert { color: var(--c-white); }
.btn-arrow--invert .btn-arrow__icon {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-brand);
}
.btn-arrow--invert:hover,
.btn-arrow--invert:focus-visible { color: var(--c-white); }
.btn-arrow--invert:hover .btn-arrow__icon,
.btn-arrow--invert:focus-visible .btn-arrow__icon {
  background: var(--c-hover-dk);
  border-color: var(--c-hover-dk);
  color: var(--c-white);
}

@media (prefers-reduced-motion: reduce) {
  .btn-arrow, .btn-arrow__icon { transition: none; }
}
.sec-head { display: flex; flex-direction: column; gap: 0.75rem; }
.sec-head__en {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-brand);
}
.sec-head__ja {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.4vw + 0.9rem, 2.5rem);
  line-height: 1;
  color: #000000;
}
.sec-head--invert .sec-head__en,
.sec-head--invert .sec-head__ja { color: var(--c-white); }

.site-header__entry { margin: 0; }
.site-footer__inner {
  display: flex;

  align-items: stretch;
  justify-content: space-between;
  gap: clamp(2.5rem, 5vw, 3.75rem);
  width: 100%;
  max-width: none;
  margin-inline: 0;
}
.site-footer__col {
  display: flex; flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}

.site-footer__col > .site-footer__actions { margin-top: auto; }
.site-footer__text {
  display: flex; flex-direction: column;
  gap: 1.875rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
.site-footer__text p { margin: 0; }
.site-footer__link { color: inherit; text-decoration: underline; }
.site-footer__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(1.5rem, 3vw, 3.75rem);
  margin: 0;

  padding-top: 0.875rem;
}
@media (min-width: 64rem) {
  .site-header__inner {
    min-height: 6rem;
    padding-left: var(--gutter);
    padding-right: 2rem;
  }
  .global-nav__list a {
    font-family: var(--font-ja);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
  }
  .site-footer {
    padding-block: 6rem;
    padding-inline: 7.5rem;
  }
  .site-footer__col--entry { flex: 0 0 auto; }
  .site-footer__col--main { flex: 1 1 auto; }

  .site-footer__col--entry .site-footer__actions { justify-content: flex-end; }
}
@media (max-width: 63.9375rem) {
  .site-footer__inner { flex-direction: column; align-items: stretch; }
  .site-footer__col > .site-footer__actions { margin-top: 0; }
}
:root {
  --c-line-5: #7f7f7f;
}
.page--program { background: var(--c-bg-page); }
.prog-hero {
  position: relative;
  padding: 6rem clamp(1rem, 5.55vw, 5rem);
  isolation: isolate;
}
.prog-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.prog-hero__bg img { display: block; width: 100%; height: 100%; object-fit: cover; }

.prog-hero__panel {
  background: var(--c-white);
  padding: 6rem clamp(1.25rem, 9.72vw, 8.75rem) 0;
}
.prog-hero__intro { display: flex; flex-direction: column; }
.sec-head--hero .sec-head__en {
  font-size: clamp(2.5rem, 5.55vw, 5rem);
  letter-spacing: 0;
}
.prog-hero__lead {
  margin: 3.5rem 0 0;
  font-size: clamp(1.25rem, 1vw + 0.85rem, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
}
.prog-hero__desc {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 2;
}
.prog-entry {
  margin-top: clamp(3rem, 13.3vw, 12rem);
  padding: clamp(2rem, 4.2vw, 3.75rem) clamp(1.25rem, 4.2vw, 3.75rem) clamp(2.5rem, 5.5vw, 5rem);
  background: var(--c-bg-page);
}

.entry-list { margin: 2rem 0 0; }
.entry-list__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-block: 1.75rem;
}
.entry-list__row + .entry-list__row { border-top: 1px solid var(--c-line-5); }
.entry-list { border-bottom: 1px solid var(--c-line-5); }
.entry-list__term {
  flex: 0 0 12.5rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
.entry-list__desc { flex: 1 1 18rem; margin: 0; min-width: 0; }
.chip {
  display: inline-block;
  padding-inline: 0.75rem;
  background: var(--c-brand);
  color: var(--c-white);
  font-size: 1rem;
  line-height: 1.8;
}
.chip-list {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin: 0; padding: 0;
}
.entry-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: clamp(1.5rem, 3vw, 3.75rem);
  margin: 3.5rem 0 0;
}
.prog-sec {
  padding-block: 6rem;
  padding-inline: var(--gutter);
}
.prog-sec__inner {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
}
.prog-rule {
  display: block;
  height: 1px;
  margin-bottom: 2.5rem;
  background: var(--c-line-3);
}
.prog-sec .sec-head + * { margin-top: 2.5rem; }
.prog-lead {
  margin: 2.5rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
}
.prog-lead + * { margin-top: 2.5rem; }
.prog-sec--ach { padding-bottom: 7rem; }
.stat-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 2.5rem 0 0;
  padding: 0;
}
.stat-card {
  display: flex; flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--c-white);
}
.stat-card__label {
  margin: 0;
  min-height: 8.25rem;
  padding: 1.25rem;
  background: var(--c-brand);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
.stat-card__value {
  margin: 0;
  min-height: 4.625rem;
  padding: 1.25rem;
  display: flex; align-items: baseline; justify-content: flex-end;
  gap: 0.5rem;
  color: var(--c-brand);
}
.stat-card__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1;
}
.stat-card__unit { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.prog-sec--reco { padding: 0; }
.prog-sec--reco > .prog-sec__inner {
  max-width: calc(var(--inner-max) + var(--gutter) * 2);
  padding-inline: var(--gutter);
}
.reco-rows { list-style: none; margin: 2.5rem 0 0; padding: 0; }

.reco-row:nth-child(odd) { background: var(--c-white); }
.reco-row__inner {
  display: flex; align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: calc(var(--inner-max) + var(--gutter) * 2);
  min-height: 5.875rem;
  margin-inline: auto;
  padding: 1rem var(--gutter);
}
.reco-row__icon {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 1.875rem; height: 1.875rem;
  border-radius: 50%;
  background: var(--c-brand);
  color: var(--c-white);
}
.reco-row__icon img { display: block; width: 0.75rem; height: 0.75rem; }
.reco-row__text { margin: 0; font-size: 1rem; font-weight: 500; line-height: 1; }

.prog-sec--points { padding-top: 7rem; }
.point-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
}
.point-card {
  display: flex; flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: 0.5rem;
  background: var(--c-white);
}
.point-card__no { margin: 0; font-size: 1rem; font-weight: 700; line-height: 1; }
.point-card__icon {
  display: flex; align-items: center; justify-content: center;
  min-height: 6rem;
  color: var(--c-brand);
}
.point-card__icon img { display: block; }
.point-card__rule { display: block; height: 1px; background: var(--c-line-4); }
.point-card__body { display: flex; flex-direction: column; gap: 0.75rem; }
.point-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.point-card__text { margin: 0; font-size: 1rem; line-height: 1.8; }
.support-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 5rem;
  margin: 2.5rem 0 0;
  padding-inline: 2.5rem;
}
.support-item { display: flex; align-items: center; gap: 7.5rem; }
.support-item__body {
  flex: 0 1 27.8125rem;
  display: flex; flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.support-item__head {
  position: relative;
  display: flex; flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0 1.5rem 1rem;
}
.support-item__head::before {
  content: "";
  position: absolute; left: 0; top: 1.5rem; bottom: 1.5rem;
  width: 4px;
  background: #000000;
}
.support-item__no { margin: 0; font-size: 1rem; font-weight: 700; line-height: 1; }
.support-item__title { margin: 0; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.support-item__text { font-size: 1rem; line-height: 1.8; }
.support-item__text p { margin: 0; }
.support-item__text p + p { margin-top: 1.8rem; }
.support-item__figure {
  flex: 0 0 22.1875rem;
  width: 22.1875rem; height: 22.1875rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.support-item__figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.prog-sec--mentors { padding-bottom: 12rem; }
.prog-sec--mentors .mentor-grid { margin-top: 2.5rem; }
.prog-panel { padding: 0.625rem 1.25rem 10rem; }
.prog-panel__inner {
  display: flex; flex-direction: column;
  gap: clamp(4rem, 13.3vw, 12rem);
  padding-block: 6rem;
  border-radius: 0.5rem;
  background: var(--c-white);
}
.prog-panel__block:first-child .sec-head__ja { line-height: 1.2; }
.prog-panel__block {
  width: 100%;
  max-width: calc(var(--inner-max) + 2.5rem);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.sched {
  margin-top: 2.5rem;
  border-bottom: 1px solid var(--c-line-5);
  padding-bottom: 1rem;
}
.sched__group + .sched__group {
  margin-top: 1rem;
  border-top: 1px solid var(--c-line-5);
  padding-top: 1rem;
}
.sched__caption {
  position: relative;
  margin: 0;
  padding: 1.5rem 0 1.5rem 1rem;
  font-size: 1rem; font-weight: 700; line-height: 1;
}
.sched__caption::before {
  content: "";
  position: absolute; left: 0; top: 1.5rem;
  width: 4px; height: 1rem;
  background: #000000;
}
.sched__list { margin: 0; }
.sched-row {
  display: flex; flex-wrap: wrap; align-items: center;
  padding-block: 0.75rem;
}
.sched-row__term {
  flex: 0 0 12.5rem;
  margin: 0; font-size: 1rem; line-height: 1.5;
}
.sched-row__date { margin: 0; min-width: 0; }
.ov-list {
  margin: 2.5rem 0 0;
  border-bottom: 1px solid var(--c-line-5);
}
.ov-list__row {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  padding-block: 2.25rem;
}
.ov-list__row:first-child { padding-top: 1.25rem; }
.ov-list__row + .ov-list__row {
  border-top: 1px solid var(--c-line-5);
  padding-top: calc(2.25rem - 1px);
}
.ov-list__term {
  flex: 0 0 12.5rem;
  margin: 0; font-size: 1rem; font-weight: 700; line-height: 1;
}
.ov-list__desc { flex: 1 1 20rem; margin: 0; min-width: 0; font-size: 1rem; line-height: 1; }
.ov-list__desc p { margin: 0; line-height: 1.8; }
.ov-list__desc p + p { margin-top: 1.8rem; }
.ov-list__lines { list-style: none; margin: 0; padding: 0; line-height: 1.8; }
.ov-list__lines li { padding-left: 1em; text-indent: -1em; }
.ov-list__lines li::before { content: "・"; }
.ov-list__link { color: inherit; }
@media (max-width: 63.9375rem) {
  .prog-sec--ach { padding-bottom: 4rem; }
  .prog-sec--points { padding-top: 4rem; }
  .support-list { padding-inline: 0; gap: 3rem; }
  .support-item { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .support-item__body { flex: 1 1 auto; }
  .support-item__figure { flex: 1 1 auto; width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .stat-cards { grid-template-columns: 1fr; }
  .stat-card__label { min-height: 0; }
  .point-cards { grid-template-columns: 1fr; }
  .point-card { padding: 1.75rem; gap: 1.75rem; }
  .prog-panel { padding: 0 1rem 4rem; }
  .prog-panel__inner { padding-block: 3rem; gap: 4rem; }
  .prog-panel__block { padding-inline: 1.25rem; }
  .entry-list__term, .sched-row__term, .ov-list__term { flex: 1 1 100%; }
  .entry-list__desc, .ov-list__desc { flex: 1 1 100%; margin-top: 0.5rem; }
  .sched-row__date { margin-top: 0.5rem; }
  .entry-actions { justify-content: flex-start; }
}
@media (min-width: 64rem) {
  .prog-entry { margin-inline: -3.75rem; }
  .prog-sec--mentors .mentor-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}
.btn-arrow__label,
.btn-pill__label { position: relative; }
.btn-arrow__label::after,
.btn-pill__label::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.125rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.btn-arrow:hover .btn-arrow__label::after,
.btn-arrow:focus-visible .btn-arrow__label::after,
.btn-pill:hover .btn-pill__label::after,
.btn-pill:focus-visible .btn-pill__label::after { transform: scaleX(1); }
.btn-pill:hover,
.btn-pill:focus-visible {
  background: #000000;
  transform: scale(1);
}
.btn-pill:hover .btn-pill__icon,
.btn-pill:focus-visible .btn-pill__icon {
  background: var(--c-brand);
  color: var(--c-white);
}

@media (prefers-reduced-motion: reduce) {
  .btn-arrow__label::after,
  .btn-pill__label::after { transition: none; }
}
.site-footer__col--entry { display: none; }
.site-footer__col--main { flex: 1 1 auto; }
.site-footer__col--main .site-footer__actions { justify-content: flex-end; }
body.is-program .site-footer__col--entry { display: flex; }
body.is-program .site-footer__col--main .site-footer__actions { justify-content: flex-start; }
#page-top .section--tint { background: var(--c-bg-page); }
.top-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: 1.5rem;
  margin: 0;
}
.top-actions--start { justify-content: flex-start; }
.top-blocks {
  display: flex; flex-direction: column;
  gap: 6rem;
}
.top-news,
.top-events {
  display: flex; flex-direction: column;
  gap: 2.5rem;
}
.top-news > .top-actions,
.top-events > .top-actions { margin-top: 1rem; }
.news-rows {
  list-style: none;
  margin: 0; padding: 0;
  border-bottom: 1px solid var(--c-line-2);
}
.news-row + .news-row { border-top: 1px solid var(--c-line-2); }
.news-row + .news-row .news-row__link { padding-top: calc(2rem - 1px); }
.news-row:last-child .news-row__link { padding-bottom: calc(2rem - 1px); }
.news-row__link {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0;
  min-height: var(--tap-min);
  padding-block: 2rem;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-row__date {
  flex: 0 0 10rem;
  font-size: 1rem;
  line-height: 1;
}
.news-row__text {
  position: relative;
  flex: 1 1 20rem;
  min-width: 0;
  font-size: 1rem;
  line-height: 1;
}
.news-row__text::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.5rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.news-row__arrow {
  flex: 0 0 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 0.875rem;
  margin-left: auto;
}
.news-row__arrow svg { display: block; }
.news-row__link:hover,
.news-row__link:focus-visible { color: var(--c-brand); }
.news-row__link:hover .news-row__text::after,
.news-row__link:focus-visible .news-row__text::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .news-row__link, .news-row__text::after { transition: none; }
}

.comment-card__tag::before {
  width: 4px;
  height: 0.875rem;
}
.carousel__controls { gap: 2rem; }
.carousel__nav {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap-min); height: var(--tap-min);
  padding: 0; border: 0; background: none;
  color: #000000;
  cursor: pointer;
}
.carousel__nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.carousel__nav-icon svg { display: block; width: 0.875rem; height: 0.625rem; }
.carousel__nav:hover .carousel__nav-icon,
.carousel__nav:focus-visible .carousel__nav-icon {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: var(--c-white);
}
.carousel__count {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (prefers-reduced-motion: reduce) {
  .carousel__nav-icon { transition: none; }
}
@media (max-width: 47.9375rem) {
  .top-blocks { gap: 3.5rem; }
  .top-news, .top-events { gap: 2rem; }
  .news-row__link { padding-block: 1.25rem; }
  .news-row__date { flex: 1 1 100%; }
  .news-row__text { flex: 1 1 calc(100% - 2.25rem); margin-top: 0.5rem; }
  .top-actions { justify-content: flex-start; }
}

#page-startup .section--tint { background: var(--c-bg-page); }
.sec-head--page { gap: 0.125rem; }
.sec-head--page .sec-head__en {
  font-size: clamp(2.5rem, 5.55vw, 5rem);
  letter-spacing: 0;
}
.sec-head--page .sec-head__ja { line-height: 1.5; }

#page-startup .startup { gap: 2.5rem; }
#page-startup .startup-panel { gap: 1.5rem; }
#page-startup .startup-panel__caption {
  min-height: 3rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  line-height: 1;
}

#page-startup .startup-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.5rem 1.25rem;
}
@media (min-width: 64rem) {

  #page-startup .startup-logos { grid-template-columns: repeat(3, 1fr); }
}
#page-startup .startup-logos__item {
  aspect-ratio: 320 / 160;
  border-radius: 0.5rem;
  background: transparent;
  overflow: hidden;
}
#page-startup .startup-logos__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%; height: 100%;
}
#page-startup .startup-logos__logo,
#page-startup .startup-logos__photo {
  display: block;
  overflow: hidden;
  min-width: 0;
}
#page-startup .startup-logos__logo { background: var(--c-white); }
#page-startup .startup-logos__photo { background: var(--c-brand); }
#page-startup .startup-logos__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.25rem;
}
#page-startup .startup-logos__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  padding: 0;
}
#page-startup .startup-logos__btn img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
#page-startup .startup-logos__btn:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
  #page-startup .startup-logos__btn img { transition: none; }
  #page-startup .startup-logos__btn:hover img { transform: none; }
}
@media (max-width: 47.9375rem) {
  #page-startup .startup-panel__caption { padding: 0.875rem 1rem; line-height: 1.6; }
  #page-startup .startup-logos { grid-template-columns: 1fr; }
}
#page-mentors .section--tint,
#page-events .section--tint { background: var(--c-bg-page); }
.sec-head--lg { gap: 0.125rem; }
.sec-head--lg .sec-head__ja { line-height: 1.5; }
#page-mentors .mentors-intro { gap: 3.5rem; }
#page-mentors .mentors { gap: 2.5rem; }
#page-mentors .mentor-groups { display: flex; flex-direction: column; gap: 7.0625rem; }
#page-mentors .mentor-group { display: flex; flex-direction: column; gap: 2.5rem; }
#page-mentors .mentor-group__head { display: flex; flex-direction: column; gap: 0; }
#page-mentors .mentor-group__title {
  position: relative;
  margin: 0;
  padding: 1.5rem 0 1.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
#page-mentors .mentor-group__title::before {
  content: "";
  position: absolute; left: 0; top: 1.5rem;
  width: 4px; height: 1rem;
  background: #000000;
}
#page-mentors .mentor-group__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
#page-mentors .mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  #page-mentors .mentor-grid { grid-template-columns: repeat(4, 1fr); }
}
#page-mentors .mentor-card__photo { border-radius: 0.5rem; }
#page-mentors .mentor-card__btn { gap: 1rem; }
#page-mentors .mentor-card__info { gap: 0.5rem; padding: 0; }
#page-mentors .mentor-card__name { font-size: 1.25rem; line-height: 1; }
#page-mentors .mentor-card__company { font-size: 0.75rem; line-height: 1.5; }
#page-events .events-page { gap: 3.5rem; }
#page-events .event-years { gap: 1.25rem; }
#page-events .event-year__toggle {
  min-height: calc(2.25rem - 2px);
  padding: 0.4375rem 1rem;
  border: 1px solid var(--c-line-5);
  border-radius: 0.25rem;
  background: var(--c-white);
  color: #000000;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
#page-events .event-year__toggle[aria-expanded="true"] {
  border-color: var(--c-brand);
  background: var(--c-brand);
  color: var(--c-white);
}

#page-events .event-year__toggle:hover,
#page-events .event-year__toggle:focus-visible {
  border-color: var(--c-brand);
  color: var(--c-brand);
  background: var(--c-white);
}
#page-events .event-year__toggle[aria-expanded="true"]:hover,
#page-events .event-year__toggle[aria-expanded="true"]:focus-visible {
  border-color: var(--c-hover-dk);
  background: var(--c-hover-dk);
  color: var(--c-white);
}
#page-events .event-year__icon::before,
#page-events .event-year__icon::after { background: currentColor; }

#page-events .events-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 64rem) {
  #page-events .events-cards { grid-template-columns: repeat(3, 1fr); }
  #page-events .topic-card__thumb { aspect-ratio: auto; height: 12.5rem; }
}
#page-events .event-year__inner > .events-cards { padding-block: 1.25rem 0.75rem; }
#page-events .topic-card__meta { min-height: 1rem; }
#page-events .topic-card__date { line-height: 1; }
#page-events .topic-card__badge { padding: 0.125rem 0.25rem; }
.voice-modal__panel,
.mentor-modal__panel,
.startup-modal__panel { border-radius: 0.5rem; }
.voice-modal__photo,
.voice-modal__photo img,
.mentor-modal__photo,
.mentor-modal__photo img,
.startup-modal__photo,
.startup-modal__photo img { border-radius: 0.5rem; }
@media (prefers-reduced-motion: reduce) {
  #page-events .event-year__toggle { transition: none; }
}
@media (max-width: 47.9375rem) {
  #page-mentors .mentor-groups { gap: 3.5rem; }
  #page-mentors .mentor-group { gap: 1.75rem; }
  #page-mentors .mentors-intro { gap: 2rem; }
  #page-events .events-page { gap: 2rem; }
  #page-events .events-cards { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 47.9375rem) {
  .prog-entry .sec-head__ja { line-height: 1.5; }
  .prog-entry .chip { padding-block: 0.5rem; }
  .prog-entry .chip-list { gap: 0.75rem; }
}

@media (max-width: 47.9375rem) {
  .news-row__text { line-height: 1.5; }
}

@media (max-width: 63.9375rem) {
  .site-footer__inner { gap: 4rem; }
  body.is-program .site-footer__inner { gap: 5rem; }
  body.is-program .site-footer__col--entry { order: -1; }
}
.article__actions { justify-content: center; }
.article__actions .btn-arrow { justify-content: center; }
.topic-card__badge { border-radius: 0; }

.prog-hero__panel { border-radius: 0.5rem; }
.prog-entry { border-radius: 0.5rem 0.5rem 0 0; }
.voice-modal__tag,
.voice-modal__person,
.voice-modal__name,
.voice-modal__company,
.mentor-modal__role,
.mentor-modal__person,
.mentor-modal__name,
.mentor-modal__company,
.startup-modal__term,
.startup-modal__person,
.startup-modal__name,
.startup-modal__company,
.startup-modal__lead,
.startup-modal__meta { font-weight: 500; }
.voice-modal__text,
.mentor-modal__text,
.startup-modal__text { font-weight: 400; }
.topic-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: var(--c-line-2);
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}
.topic-card__thumb img {
  width: auto;
  max-width: min(100%, 22.5rem);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  transform: none;
}
.topic-card__link:hover .topic-card__thumb,
.topic-card__link:focus-visible .topic-card__thumb {
  background: var(--c-brand);
}
.topic-card__link:hover .topic-card__thumb img { transform: none; }

#page-top .topic-card__thumb,
#page-events .topic-card__thumb {
  aspect-ratio: auto;
  height: 12.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .topic-card__thumb { transition: none; }
}
.site-header__entry .btn-arrow,
.site-footer .btn-arrow,
#page-top .btn-arrow,
.article__actions .btn-arrow {
  flex-direction: row-reverse;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding-inline: calc(1.5rem - 1px);
  border: 1px solid transparent;
  border-radius: 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
              color 0.3s ease-in-out;
}
.site-header__entry .btn-arrow__icon,
.site-footer .btn-arrow__icon,
#page-top .btn-arrow__icon,
.article__actions .btn-arrow__icon {
  width: 1.25rem; height: 1.25rem;
  border: 0;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
              transform 0.3s ease-in-out;
}
.site-header__entry .btn-arrow__icon svg,
.site-footer .btn-arrow__icon svg,
#page-top .btn-arrow__icon svg,
.article__actions .btn-arrow__icon svg {
  width: 0.5625rem; height: 0.5625rem;
}
.site-header__entry .btn-arrow__label::after,
.site-footer .btn-arrow__label::after,
#page-top .btn-arrow__label::after,
.article__actions .btn-arrow__label::after { content: none; }
.site-header__entry .btn-arrow {
  min-height: 3.25rem;
  border-radius: 1.625rem;
  border-color: var(--c-brand);
  background: var(--c-white);
  color: var(--c-brand);
}
.site-header__entry .btn-arrow__icon {
  background: var(--c-brand);
  color: var(--c-white);
}
#page-top .btn-arrow,
.article__actions .btn-arrow {
  background: #222222;
  color: var(--c-white);
}
#page-top .btn-arrow__icon,
.article__actions .btn-arrow__icon {
  background: var(--c-brand);
  color: var(--c-white);
}
.site-footer .btn-arrow {
  background: #222222;
  color: var(--c-white);
}
.site-footer .btn-arrow__icon {
  background: var(--c-white);
  color: #222222;
}
.site-header__entry .btn-arrow:hover,
.site-header__entry .btn-arrow:focus-visible,
.site-footer .btn-arrow:hover,
.site-footer .btn-arrow:focus-visible,
#page-top .btn-arrow:hover,
#page-top .btn-arrow:focus-visible,
.article__actions .btn-arrow:hover,
.article__actions .btn-arrow:focus-visible {
  background: var(--c-brand);
  border-color: transparent;
  color: var(--c-white);
}
.site-header__entry .btn-arrow:hover .btn-arrow__icon,
.site-header__entry .btn-arrow:focus-visible .btn-arrow__icon,
.site-footer .btn-arrow:hover .btn-arrow__icon,
.site-footer .btn-arrow:focus-visible .btn-arrow__icon,
#page-top .btn-arrow:hover .btn-arrow__icon,
#page-top .btn-arrow:focus-visible .btn-arrow__icon,
.article__actions .btn-arrow:hover .btn-arrow__icon,
.article__actions .btn-arrow:focus-visible .btn-arrow__icon {
  background: var(--c-white);
  border-color: transparent;
  color: var(--c-brand);
}
.site-header__entry .btn-arrow:hover .btn-arrow__icon svg,
.site-header__entry .btn-arrow:focus-visible .btn-arrow__icon svg {
  transform: rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .site-header__entry .btn-arrow,
  .site-footer .btn-arrow,
  #page-top .btn-arrow,
  .article__actions .btn-arrow,
  .article__actions .btn-arrow__icon,
  .site-header__entry .btn-arrow__icon,
  .site-footer .btn-arrow__icon,
  #page-top .btn-arrow__icon { transition: none; }
  .site-header__entry .btn-arrow:hover .btn-arrow__icon svg { transform: none; }
}
@media (min-width: 64rem) {
  .site-header .global-nav__sns { display: none; }
  .site-header .global-nav { flex: 0 0 auto; }
  .site-header .global-nav__list { margin-left: 0; column-gap: clamp(1.5rem, 3.33vw, 3rem); }
  .site-header .global-nav__list a { color: #222222; }
  .site-header__actions { margin-left: 0; padding-left: 0; }
  .site-header__entry a { margin-block: 0; }
}
.site-footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.site-footer__col > .site-footer__bottom { margin-top: auto; }
.site-footer__sns {
  display: flex; align-items: center;
  gap: 1.5rem;
  list-style: none; margin: 0; padding: 0;
}
.site-footer__sns li { display: flex; }
.site-footer__sns a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: var(--tap-min); min-height: var(--tap-min);
}
.site-footer__sns img { width: auto; height: 2.5rem; }
.site-footer__bottom .site-footer__actions { padding-top: 0; }
#page-top .section--tint { background: var(--c-white); }
#page-top .top-blocks { gap: 3rem; }
#page-top .top-news,
#page-top .top-events { gap: 3.25rem; }
#page-top .top-news > .top-actions,
#page-top .top-events > .top-actions { margin-top: 0.25rem; }
#page-top .news-rows {
  height: 13.625rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-bottom: 0;
  padding-right: 3.5rem;
  scrollbar-color: var(--c-brand) #f5f5f5;
}
#page-top .news-rows::-webkit-scrollbar { width: 4px; }
#page-top .news-rows::-webkit-scrollbar-track { background: #f5f5f5; }
#page-top .news-rows::-webkit-scrollbar-thumb {
  background: var(--c-brand);
  border-radius: 2px;
}
#page-top .news-row { border-top: 0; border-bottom: 1px solid #a3a3a3; }
#page-top .news-row .news-row__link { padding-block: 2rem; }
#page-top .news-row:first-child .news-row__link { padding-top: 1rem; }

#page-top .topic-card__thumb { flex: 0 0 auto; background: #f5f5f5; }
#page-top .topic-card__link { gap: 2rem; }
#page-top .topic-card__body {
  display: flex; flex-direction: column;
  gap: 0; flex: 1 1 auto;
}
#page-top .topic-card__text {
  border-top: 0;
  padding-top: 0;
  font-size: 1rem;
  line-height: 1.5;
}
#page-top .topic-card__meta {
  margin-top: auto;
  padding-top: 1.5rem;
  justify-content: flex-end;
}
#page-top .topic-card__date { font-size: 0.875rem; line-height: 1; }
#page-top .about,
#page-top .mission {
  position: relative;
  background: var(--c-brand);
  padding-inline: 0;
  isolation: isolate;
}
#page-top .about::before,
#page-top .mission::before {
  content: "";
  position: absolute;
  inset: 0 1.25rem;
  z-index: -1;
  background: var(--c-white);
}
#page-top .about::before {
  top: 6rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
#page-top .about {
  padding-top: 12rem;
  padding-bottom: 6rem;
}
#page-top .mission { padding-block: 6rem;}
#page-top .about > .section__inner,
#page-top .mission > .section__inner {
  max-width: calc(var(--inner-max) + var(--gutter) * 2);
  padding-inline: var(--gutter);
}
#page-top .about__body { gap: 4.5rem; }
#page-top .about__logo { width: 16.0625rem; }
#page-top .mission__intro { gap: 3.5rem; }
#page-top .steps { gap: 1.875rem; }
#page-top .step {
  flex-direction: row; align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  background: var(--c-tint);
}
#page-top .step__badge {
  width: 2.5rem; height: 2.5rem;
  font-size: 1.25rem;
}
#page-top .step__main {
  display: flex; flex-direction: column;
  gap: 0.625rem;
  flex: 1 1 auto; min-width: 0;
}
#page-top .step__title {
  margin: 0;
  color: var(--c-brand);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
#page-top .step__list { gap: 0; }
#page-top .step__list li { line-height: 1.8; }
#page-top .comments { background: #f5f5f5; }
#page-top .carousel { margin-top: 3.25rem; }
#page-top .carousel__controls { margin-top: 3rem; }
#page-top .carousel__track { gap: 3rem; }
#page-top .comment-card__thumb {
  aspect-ratio: 400 / 267;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
#page-top .comment-card__body { gap: 0; }
#page-top .comment-card__head { display: contents; }
#page-top .comment-card__tag {
  order: 0;
  align-self: flex-start;
  gap: 0;
  padding: 0.125rem 0.5625rem;
  border: 1px solid var(--c-brand);
  border-radius: 0.125rem;
  color: var(--c-brand);
  font-size: 0.75rem;
  line-height: 1.25;
}
#page-top .comment-card__tag::before { content: none; }
#page-top .comment-card__quote {
  order: 1;
  margin-top: 1.5rem;
  border-top: 0;
  padding-top: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
#page-top .comment-card__quote p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
#page-top .comment-card__person {
  order: 2;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

#page-top .carousel__nav-icon {
  width: 1.75rem; height: 1.75rem;
  border-color: var(--c-brand);
  background: var(--c-white);
  color: var(--c-brand);
}
#page-top .carousel__nav-icon svg { width: 0.25rem; height: 0.5rem; }
#page-top .carousel__nav:hover .carousel__nav-icon,
#page-top .carousel__nav:focus-visible .carousel__nav-icon {
  background: var(--c-brand);
  border-color: transparent;
  color: var(--c-white);
}
@media (max-width: 63.9375rem) {
  #page-top .about { padding-top: 8rem; }
  #page-top .about::before { top: 4rem; }
  #page-top .about,
  #page-top .mission { padding-inline: 0; }
}
@media (max-width: 47.9375rem) {
  #page-top .news-rows { height: auto; max-height: 21.25rem; padding-right: 1.5rem; }
  #page-top .step { flex-direction: row; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  #page-top .step__badge { width: 2.25rem; height: 2.25rem; font-size: 1.125rem; }
  #page-top .step__title { font-size: 1.25rem; }
  #page-top .about__body { gap: 2rem; }
  #page-top .comment-card__quote { font-size: 1.25rem; }
  #page-top .site-footer__bottom { padding-top: 2.5rem; }
}
#page-program.page--program { background: var(--c-white); }
#page-program .prog-rule { display: none; }
#page-program .prog-sec { padding-block: 6rem; }
#page-program .prog-sec .sec-head + * { margin-top: 3.25rem; }
#page-program .prog-lead { margin-top: 3.25rem; line-height: 1.8; }
#page-program .prog-lead + * { margin-top: 3.25rem; }
#page-program .prog-hero__lead {
  margin-top: 3.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
#page-program .prog-hero__desc {
  margin-top: 0.75rem;
  line-height: 1.8;
}
#page-program .prog-entry {
  margin-inline: -3.75rem;
  padding: 3.75rem 3.75rem 5rem;
  background: var(--c-tint);
}
#page-program .entry-list { margin-top: 2.75rem; border-bottom-color: #a3a3a3; }
#page-program .entry-list__row {
  padding-block: 1.4375rem;
  align-items: flex-start;
}
#page-program .entry-list__row + .entry-list__row { border-top-color: #a3a3a3; }
#page-program .entry-list__term { font-weight: 500; }
#page-program .entry-list__desc { line-height: 1.8; }
#page-program .entry-list__lines {
  list-style: none; margin: 0; padding: 0;
  line-height: 1.8;
}
#page-program .entry-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.btn-block {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  min-height: 4.75rem;
  padding-inline: 1.5rem;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  background: #222222;
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
              color 0.3s ease-in-out;
}
.btn-block__icon {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--c-brand);
  color: var(--c-white);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn-block__icon svg { width: 0.5625rem; height: 0.5625rem; }

.btn-block--outline {
  border-color: var(--c-brand);
  background: var(--c-white);
  color: var(--c-brand);
}
.btn-block:hover, .btn-block:focus-visible {
  background: var(--c-brand);
  border-color: transparent;
  color: var(--c-white);
}
.btn-block:hover .btn-block__icon,
.btn-block:focus-visible .btn-block__icon {
  background: var(--c-white);
  color: var(--c-brand);
}
@media (prefers-reduced-motion: reduce) {
  .btn-block, .btn-block__icon { transition: none; }
}
#page-program .prog-sec--ach { padding-bottom: 6rem; }
#page-program .prog-sec--reco { padding-block: 0; }
#page-program .stat-card {
  display: flex; flex-direction: column;
  padding: 2.5rem;
  border-radius: 0.5rem;
  background: var(--c-tint);
}
#page-program .stat-card__label {
  min-height: 0;
  padding: 0;
  background: none;
  color: #222222;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
#page-program .stat-card__value {
  min-height: 0;
  margin-top: 4.5625rem;
  padding: 0;
  justify-content: flex-start;
  gap: 0.5rem;
}
#page-program .stat-card__num {
  font-size: 6.25rem;
  line-height: 0.76;
}
#page-program .stat-card__unit { font-size: 1.5rem; line-height: 1.2; }
#page-program .stat-card__note {
  margin: 4rem 0 0;
  text-align: right;
  color: #222222;
  font-size: 0.75rem;
  line-height: 1;
}
#page-program .prog-sec--points { padding-top: 6rem; }
#page-program .reco-rows { margin-top: 3.25rem; }
#page-program .reco-row:nth-child(odd) { background: var(--c-tint); }
#page-program .reco-row:nth-child(even) { background: var(--c-white); }
#page-program .reco-row__inner {
  gap: 1.5rem;
  min-height: 6.5rem;
  padding-block: 1rem;
}
#page-program .reco-row__icon {
  width: 2.5rem; height: 2.5rem;
}
#page-program .reco-row__icon svg { display: block; width: 0.875rem; height: 0.6875rem; }
#page-program .reco-row__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
#page-program .point-cards { gap: 0.96875rem; margin-top: 3.25rem; }
#page-program .point-card {
  gap: 1.5rem;
  padding: 0;
  border-radius: 0;
  background: none;
}
#page-program .point-card__media {
  position: relative;
  aspect-ratio: 323 / 227;
}
#page-program .point-card__media::before,
#page-program .point-card__media::after {
  content: "";
  position: absolute;
  background: var(--c-tint);
}
#page-program .point-card__media::before {
  inset: 2.5rem 0 0 0;
  border-radius: 0.5rem;
}
#page-program .point-card__media::after {
  top: 0; right: 0; left: 5.75rem; height: 3rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
#page-program .point-card__no {
  position: absolute; top: 0; left: 0;
  z-index: 1;
  display: flex; align-items: center;
  width: 5.75rem; height: 2.5rem;
  padding-left: 1rem;
  color: var(--c-brand);
  font-size: 1rem;
  font-weight: 500;
}
#page-program .point-card__icon {
  position: absolute; inset: 0;
  z-index: 1;
  min-height: 0;
}
#page-program .point-card__body {
  gap: 1.5rem;
  padding-inline: 0.5rem;
}
#page-program .point-card__title {
  color: var(--c-brand);
  font-size: 1.5rem;
  line-height: 1.5;
}
#page-program .point-card__text { color: #222222; }
#page-program .prog-sec--support {
  position: relative;
  padding: 12rem 0 6rem;
  background: var(--c-brand);
  isolation: isolate;
}
#page-program .prog-sec--support::before {
  content: "";
  position: absolute;
  inset: 6rem 1.25rem 0;
  z-index: -1;
  border-radius: 0.5rem 0.5rem 0 0;
  background: var(--c-white);
}
#page-program .prog-sec--support > .prog-sec__inner {
  max-width: calc(var(--inner-max) + var(--gutter) * 2);
  padding-inline: var(--gutter);
}
#page-program .support-list {
  gap: 2.5rem;
  padding-inline: 0;
  margin-top: 3.25rem;
}
#page-program .support-item {
  align-items: center;
  gap: 0;
  padding: 2.5rem;
  border-radius: 0.5rem;
  background: var(--c-tint);
}
#page-program .support-item__body {
  flex: 0 0 27.8125rem;
  gap: 1.75rem;
}
#page-program .support-item__head {
  flex-direction: row; align-items: baseline;
  gap: 2.5rem;
  padding: 0;
}
#page-program .support-item__head::before { content: none; }
#page-program .support-item__no {
  flex: 0 0 auto;
  color: var(--c-brand);
  font-family: var(--font-en);
  font-size: 1.5rem;
  line-height: 1.2;
}
#page-program .support-item__title { line-height: 1.2; }
#page-program .support-item__text { padding-left: 4.25rem; color: #222222; }
#page-program .support-item__figure {
  flex: 0 0 auto;
  width: 22.1875rem; height: 22.1875rem;
  margin-left: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
#page-program .support-item__figure img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
#page-program .prog-sec--mentors {
  padding-block: 6rem;
  background: #f5f5f5;
}
#page-program .mentor-grid { gap: 2.5rem; margin-top: 3.25rem; }
#page-program .mentor-card__photo { border-radius: 0.5rem; }
#page-program .mentor-card__name { font-size: 1.25rem; }
#page-program .mentor-card__company { font-size: 0.875rem; line-height: 1.5; }
#page-program .prog-panel {
  padding: 0 1.25rem 0;
  background: #f5f5f5;
}
#page-program .prog-panel__inner {
  gap: 12rem;
  border-radius: 0.5rem 0.5rem 0 0;
}
#page-program .prog-panel__block .sec-head + * { margin-top: 3.25rem; }
#page-program .sched {
  margin-top: 3.25rem;
  border-bottom: 1px solid #a3a3a3;
  padding-bottom: 2rem;
}
#page-program .sched__group + .sched__group {
  margin-top: 2rem;
  border-top: 1px solid #a3a3a3;
  padding-top: 2rem;
}
#page-program .sched__caption {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}
#page-program .sched__caption::before { content: none; }
#page-program .sched__list { margin-top: 1.75rem; }
#page-program .sched-row { padding-block: 0.875rem; }
#page-program .sched-row__term { font-weight: 500; line-height: 1; }
#page-program .sched-row__date { line-height: 1; }
#page-program .ov-list {
  margin-top: 3.25rem;
  border-bottom-color: #a3a3a3;
}
#page-program .ov-list__row { padding-block: 2rem; }
#page-program .ov-list__row:first-child { padding-top: 1rem; }
#page-program .ov-list__row + .ov-list__row {
  border-top-color: #a3a3a3;
  padding-top: calc(2rem - 1px);
}
#page-program .ov-list__term { font-weight: 500; }
body.is-program .site-footer__inner { flex-direction: column; }
body.is-program .site-footer__col--entry { order: -1; flex: 1 1 auto; }
body.is-program .site-footer__col--entry .site-footer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-content: stretch;
  padding-top: 1.75rem;
}
body.is-program .site-footer__col--main { margin-top: 2.5rem; }
body.is-program .site-footer__col--main .site-footer__actions { justify-content: flex-end; }
@media (max-width: 63.9375rem) {
  #page-program .prog-entry { margin-inline: 0; padding: 2rem 1.25rem 2.5rem; }
  #page-program .entry-actions { grid-template-columns: 1fr; gap: 1rem; }
  #page-program .prog-sec--support { padding-top: 8rem; }
  #page-program .prog-sec--support::before { top: 4rem; }
  #page-program .support-item { flex-direction: column; align-items: stretch; gap: 1.5rem; padding: 1.5rem; }
  #page-program .support-item__body { flex: 1 1 auto; }
  #page-program .support-item__figure { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  #page-program .mentor-grid { gap: 1.5rem; }
  #page-program .prog-panel__inner { gap: 5rem; }
}
@media (max-width: 47.9375rem) {
  #page-program .stat-card { padding: 1.5rem; }
  #page-program .stat-card__value { margin-top: 2rem; }
  #page-program .stat-card__num { font-size: 4rem; }
  #page-program .reco-row__text { font-size: 1.125rem; }
  #page-program .reco-row__inner { min-height: 5rem; }
  #page-program .point-cards { grid-template-columns: 1fr; gap: 2.5rem; }
  #page-program .support-item__head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  #page-program .support-item__text { padding-left: 0; }
  #page-program .sched-row__term { flex: 1 1 100%; }
  #page-program .sched-row__date { flex: 1 1 100%; margin-top: 0.5rem; }
  body.is-program .site-footer__col--entry .site-footer__actions { grid-template-columns: 1fr; }
}
#page-startup .section--tint {
  background: #f5f5f5;
  padding-block: 6rem;
}
#page-startup .startup { gap: 3.25rem; }

#page-startup .sec-head--page { gap: 1.5625rem; }
#page-startup .sec-head--page .sec-head__en { line-height: 0.7125; }
#page-startup .sec-head--page .sec-head__ja { line-height: 1; }
#page-startup .startup-panel { gap: 2.5rem; }
#page-startup .startup-panel__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 1.75rem;
}
#page-startup .startup-panel__caption {
  display: block;
  min-height: 0;
  margin: 0; padding: 0;
  border-radius: 0;
  background: none;
  text-align: left;
  color: #222222;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
#page-startup .startup-logos__item { border-radius: 0.5rem; overflow: hidden; }
#page-startup .startup-logos__btn { background: var(--c-white); }
@media (max-width: 47.9375rem) {
  #page-startup .startup-panel__head { align-items: flex-start; }
  #page-startup .startup-panel__caption { font-size: 1.125rem; }
}
#page-mentors .section { background: var(--c-white); padding-block: 6rem; }
#page-mentors .section--tint { background: #f5f5f5; }
#page-mentors .sec-head--page { gap: 1.5625rem; }
#page-mentors .sec-head--page .sec-head__ja { line-height: 1; }
@media (min-width: 64rem) {
  #page-mentors .sec-head--page .sec-head__en { line-height: 0.7125; }
}
#page-mentors .mentors-intro { gap: 3.25rem; }
#page-mentors .mentors-intro .prose { line-height: 1.8; }
#page-mentors .sec-head--lg { gap: 0.75rem; }
#page-mentors .sec-head--lg .sec-head__ja { line-height: 1; }
#page-mentors .mentors { gap: 3.25rem; }
#page-mentors .mentor-group__head { gap: 0.875rem; }
#page-mentors .mentor-group__title {
  padding: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222222;
}
#page-mentors .mentor-group__title::before { content: none; }
#page-mentors .mentor-group__desc { color: #222222; }
#page-mentors .mentor-card__photo { aspect-ratio: 220 / 226; }
#page-mentors .mentor-card__btn { gap: 1rem; }
#page-mentors .mentor-card__info { gap: 0.75rem; }
#page-mentors .mentor-card__company {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 47.9375rem) {
  #page-mentors .mentor-group__title { font-size: 1.25rem; }
  #page-mentors .mentors-intro { gap: 2rem; }
  #page-mentors .mentors { gap: 2rem; }
}
#page-events .section--tint {
  background: #f5f5f5;
  padding-block: 6rem;
}
#page-events .events-page { gap: 2.5rem; }
#page-events .sec-head--page { gap: 1.5625rem; }
#page-events .sec-head--page .sec-head__ja { line-height: 1; }
@media (min-width: 64rem) {
  #page-events .sec-head--page .sec-head__en { line-height: 0.7125; }
}
#page-events .events-page__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 1.75rem;
  margin-top: 0.75rem;
}
#page-events .events-page__year {
  margin: 0;
  color: #222222;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
#page-events .event-year__heading { display: none; }
#page-events .event-years { gap: 0; }
#page-events .event-year[hidden] { display: none; }
#page-events .event-year__inner > .events-cards { padding-block: 0; }
#page-events .events-cards {
  gap: 2.5rem 3rem;
}
#page-events .topic-card__thumb { background: var(--c-white); }
#page-events .topic-card__link { gap: 2rem; }
#page-events .topic-card__body {
  display: flex; flex-direction: column;
  gap: 0; flex: 1 1 auto;
}
#page-events .topic-card__text {
  border-top: 0;
  padding-top: 0;
  font-size: 1rem;
  line-height: 1.5;
}
#page-events .topic-card__meta {
  min-height: 0;
  margin-top: auto;
  padding-top: 1.5rem;
  justify-content: flex-end;
}
#page-events .topic-card__date { font-size: 0.875rem; line-height: 1; }
#page-events .topic-card__badge { display: none; }
#page-top .topic-card__link:hover .topic-card__thumb,
#page-top .topic-card__link:focus-visible .topic-card__thumb,
#page-events .topic-card__link:hover .topic-card__thumb,
#page-events .topic-card__link:focus-visible .topic-card__thumb {
  background: var(--c-brand);
}

@media (max-width: 47.9375rem) {
  #page-events .events-page__head { align-items: flex-start; }
  #page-events .events-page__year { font-size: 1.25rem; }
}
.section--article {
  background: var(--c-tint);
  padding-block: 6rem;
}
.article {
  gap: 3.5rem;
  font-family: var(--font-ja);
  font-size: 1rem;
  line-height: 1.8;
  color: #222222;
}

.article__head { gap: 0.75rem; }
.article__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.article__date {
  text-align: right;
  line-height: 1;
}
.article__hero { margin-top: 2rem; }
.article__hero img,
.article-figure img,
.article-media__figure img { border-radius: 0.5rem; }
.article__body { gap: 1.75rem; }
.article__body,
.article-text,
.article-list,
.article-deflist,
.article-box,
.article__body p,
.article__body li,
.article__body dd,
.article__body dt {
  font-size: 1rem;
  line-height: 1.8;
}
.article-text { color: #222222; }
.article-deflist__row {
  padding-block: 1.5rem;
  border-bottom: 1px solid #a3a3a3;
}
.article-deflist__row:first-child { padding-top: 0.5rem; }
.article-deflist__row + .article-deflist__row { padding-top: 1.5rem; }
.article-deflist__term {
  width: 12.5rem;
  padding-right: 1.25rem;
  font-weight: 500;
}
.article__body table { width: 100%; }
.article-table,
.article__body table {
  min-width: 40rem;
  border-collapse: collapse;
  border-top: 1px solid #a3a3a3;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  color: #222222;
}
.article-table th,
.article-table td,
.article__body table th,
.article__body table td {
  padding: 1rem 1.5rem;
  vertical-align: top;
  border-bottom: 1px solid #a3a3a3;
  border-right: 1px solid #a3a3a3;
}
.article-table th:first-child,
.article-table td:first-child,
.article__body table th:first-child,
.article__body table td:first-child { border-left: 1px solid #a3a3a3; }

.article-table thead th,
.article__body table thead th {
  padding-top: 1rem;
  background: var(--c-white);
  font-weight: 700;
  text-align: left;
  border-bottom-color: #a3a3a3;
}
.article-table tbody th[scope="row"],
.article__body table tbody th[scope="row"] {
  background: var(--c-white);
  font-weight: 500;
}
.article-table caption,
.article__body table caption {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
.article-table__head-col { width: 12.5rem; }

.article__body table { display: table; }
.article__actions {
  justify-content: flex-end;
  margin-top: 0;
}
@media (max-width: 47.9375rem) {
  .article__title { font-size: 1.75rem; }
  .article { gap: 2.5rem; }
  .article__hero { margin-top: 1.5rem; }
  .article-deflist__term { width: 100%; padding-right: 0; }
  .article-deflist__row:first-child { padding-top: 1rem; }
  .article__actions { justify-content: flex-start; }
  .article-table th,
  .article-table td,
  .article__body table th,
  .article__body table td { padding: 0.75rem 1rem; }
}
.voice-modal__panel,
.startup-modal__panel,
.mentor-modal__panel {
  padding: 2.5rem;
  gap: 2.5rem;
  border-radius: 0.5rem;
  background: var(--c-white);
}
.voice-modal__photo,
.startup-modal__photo,
.mentor-modal__photo {
  border-radius: 0.5rem;
}
.voice-modal__body,
.startup-modal__body,
.mentor-modal__body { gap: 1.25rem; }
.voice-modal__head,
.startup-modal__head,
.mentor-modal__head { gap: 1.25rem; }
.voice-modal__person,
.startup-modal__person,
.mentor-modal__person { gap: 0.75rem; }
.voice-modal__tag,
.startup-modal__term,
.mentor-modal__role {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #525252;
}
.voice-modal__name,
.startup-modal__name,
.mentor-modal__name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #222222;
}
.voice-modal__company,
.startup-modal__company,
.mentor-modal__company {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
}
.voice-modal__text,
.startup-modal__text,
.mentor-modal__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #222222;
}
.startup-modal__detail { gap: 0.75rem; }
.startup-modal__lead {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222222;
}
.startup-modal__meta {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #525252;
}

.voice-modal__close,
.startup-modal__close,
.mentor-modal__close { color: #222222; }
@media (max-width: 47.9375rem) {
  .voice-modal__panel,
  .startup-modal__panel,
  .mentor-modal__panel { padding: 1.5rem; gap: 1.25rem; }
  .voice-modal__name,
  .startup-modal__name,
  .mentor-modal__name { font-size: 1.125rem; line-height: 1.3; }
}
.site-header .global-nav__list a:hover,
.site-header .global-nav__list a:focus-visible { color: var(--c-brand); }
.site-header .global-nav__sns { display: none; }
.site-footer__sns a {
  width: 2.5rem; height: 2.5rem;
  min-width: 0; min-height: 0;
  border-radius: 50%;
  background: #000000;
  overflow: hidden;
}
.site-footer__sns img {
  width: auto; height: auto;
  max-width: 60%; max-height: 60%;
  object-fit: contain;
}
.site-footer__sns li { position: relative; }
.site-footer__sns a::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: var(--tap-min); height: var(--tap-min);
}
.site-footer .btn-arrow:hover,
.site-footer .btn-arrow:focus-visible,
.site-footer .btn-block:hover,
.site-footer .btn-block:focus-visible {
  outline: 2px solid var(--c-white);
  outline-offset: -2px;
}
img, svg { max-width: 100%; }
img:not([style*="object-fit"]) { image-rendering: auto; }
#page-top .about__logo { width: 16.0625rem; height: auto; }

#page-top .news-rows { height: auto; max-height: 14.1875rem; }
#page-top .topic-card__date { color: #525252; }
@media (max-width: 47.9375rem) {
  #page-top .top-actions,
  #page-top .btn-wrap { justify-content: flex-end; }
  #page-top .about .top-actions,
  #page-top .mission .top-actions { justify-content: flex-end; }
  #page-top .btn-arrow { align-self: flex-end; }
  #page-top .topic-cards > .topic-card:nth-child(n+3) { display: none; }
}
#page-program .entry-list__lines--dot li {
  padding-left: 1em;
  text-indent: -1em;
}
#page-program .entry-list__lines--dot li::before { content: "・"; }
#page-program .stat-card__value {
  flex: 1 1 auto;
  margin-block: 0;
  flex-wrap: wrap;
  align-content: center;
  align-items: baseline;
  justify-content: center;
}
#page-program .stat-card__note { margin-top: 0; }
#page-program .stat-card__value--text {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
}
#page-program .stat-card__vcrow {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  width: 5em;
}
#page-program .stat-card__slash {
  font-size: 0.778em;
  transform: translateY(-0.162em);
}
#page-program .stat-card__role { white-space: nowrap; }
#page-program .stat-card { min-height: 14rem; }
@media (min-width: 64rem) {
  #page-program .stat-card { min-height: 19.9375rem; }
}
#page-program .point-card__media {
  background-image:
    radial-gradient(circle 0.5rem at 0 0,
      transparent 0 0.5rem, var(--c-tint) 0.5rem);
  background-repeat: no-repeat;
  background-position: 5.25rem 2rem;
  background-size: 0.5rem 0.5rem;
}
#page-program .point-card__media::before { border-radius: 0.5rem; }
#page-program .point-card__media::after { border-radius: 0.5rem; }
@media (max-width: 47.9375rem) {
  #page-program .prog-sec--support > .prog-sec__inner { padding-inline: 2.5rem; }
  #page-program .support-list { gap: 2rem; }
  #page-program .support-item { padding: 2rem 1.5rem; gap: 1.5rem; }
  #page-program .support-item__body { gap: 1.25rem; }
  #page-program .ov-list__desc,
  #page-program .ov-list__desc p,
  #page-program .ov-list__lines { line-height: 1.8; }
}
.site-footer__sns a { background: var(--c-white); }
.site-footer .btn-arrow,
.site-footer .btn-block {
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
              color 0.3s ease-in-out, outline-color 0.3s ease-in-out;
}
.site-footer .btn-arrow:hover,
.site-footer .btn-arrow:focus-visible,
.site-footer .btn-block:hover,
.site-footer .btn-block:focus-visible {
  outline-color: var(--c-white);
}
@media (prefers-reduced-motion: reduce) {
  .site-footer .btn-arrow,
  .site-footer .btn-block { transition: none; }
}
.comment-card__photo { object-position: center 30%; }
@media (max-width: 47.9375rem) {
  :root { --gutter: 1.25rem; }
}
@media (max-width: 60rem) {
  .site-header__inner {
    row-gap: 0;
    align-content: center;
  }
  .global-nav__list { padding-top: 0.75rem; }
}
@media (max-width: 47.9375rem) {
  #page-top .top-actions,
  #page-top .btn-wrap,
  #page-top .about .top-actions,
  #page-top .mission .top-actions { justify-content: center; }
  #page-top .btn-arrow { align-self: center; }
  .article__actions { justify-content: center; }
}
.comment-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
}
#page-top .comment-card__title {
  order: 1;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
#page-top .comment-card__quote { order: 2; margin-top: 0.75rem; font-size: 1rem; }
#page-top .comment-card__quote p { -webkit-line-clamp: 2; line-clamp: 2; }
#page-top .comment-card__person { order: 3; }
.voice-modal__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: #222222;
}

@media (max-width: 47.9375rem) {
  #page-program .sched-row__term,
  #page-program .sched-row__date,
  #page-program .ov-list__term,
  #page-program .ov-list__desc,
  #page-program .ov-list__desc p,
  #page-program .ov-list__lines { font-size: 0.875rem; }
  #page-program .prog-hero__lead { font-size: 1.125rem; }
  #page-program .prog-hero__desc,
  #page-program .entry-list__term,
  #page-program .entry-list__desc,
  #page-program .entry-list__lines,
  #page-program .entry-list__desc p { font-size: 0.875rem; }
}
#page-program .stat-card__note { color: #525252; }
.mentor-card__company { color: #525252; }
#page-events .topic-card__date,
#page-events .news-row__date { color: #525252; }
@media (max-width: 63.9375rem) {
  #page-top .about > .section__inner,
  #page-top .mission > .section__inner { padding-inline: calc(var(--gutter) * 2); }
}
@media (max-width: 47.9375rem) {
  #page-program .prog-hero { padding-inline: var(--gutter); }
  #page-program .prog-hero__panel { --panel-pad: 1.25rem; padding-inline: var(--panel-pad); }
  #page-program .prog-entry {
    margin-inline: calc(var(--panel-pad) * -1);
    padding-inline: var(--panel-pad);
  }
}
@media (max-width: 47.9375rem) {
  #page-mentors .mentor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

#page-top .comment-card__quote { display: none; }
#page-top .comment-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.5rem;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  transition: color 0.3s ease-in-out;
}
#page-top .comment-card:hover .comment-card__title,
#page-top .comment-card:focus-visible .comment-card__title { color: var(--c-brand); }
@media (prefers-reduced-motion: reduce) {
  #page-top .comment-card__title { transition: none; }
}

@media (min-width: 48rem) {
  #page-top .top-news > .top-actions,
  #page-top .top-events > .top-actions,
  #page-top .mission .top-actions { justify-content: center; }
}
@media (max-width: 47.9375rem) {
  #page-top .topic-cards {
    display: block;
    height: 20rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 1rem;
    scrollbar-color: var(--c-brand) #f5f5f5;
  }
  #page-top .topic-cards::-webkit-scrollbar { width: 4px; }
  #page-top .topic-cards::-webkit-scrollbar-track { background: #f5f5f5; }
  #page-top .topic-cards::-webkit-scrollbar-thumb {
    background: var(--c-brand);
    border-radius: 2px;
  }
  #page-top .topic-cards > .topic-card,
  #page-top .topic-cards > .topic-card:nth-child(n+3) { display: block; }
  #page-top .topic-cards > .topic-card + .topic-card { margin-top: 2rem; }
}
#page-program .point-card__title { min-height: calc(1.5em * 2); }
#page-program .sched-row__term,
#page-program .sched-row__date,
#page-program .ov-list__term,
#page-program .ov-list__desc,
#page-program .ov-list__desc p,
#page-program .ov-list__lines,
#page-program .ov-list__link,
#page-program .entry-list__term,
#page-program .entry-list__desc,
#page-program .entry-list__lines {
  color: #222222;
  font-weight: 500;
}
#page-program .sched-row { align-items: flex-start; }
#page-program .ov-list__row { align-items: flex-start; }
#page-program .ov-list__term,
#page-program .ov-list__desc { line-height: 1.8; }
#page-program .ov-list__row { padding-block: 1.6rem; }
#page-program .ov-list__row:first-child { padding-top: 0.6rem; }
#page-program .ov-list__row + .ov-list__row { padding-top: calc(1.6rem - 1px); }

@media (max-width: 63.9375rem) {
  #page-program .point-card__icon img {
    transform: none;
    width: calc(var(--pt-icon-w, 66) / 66 * clamp(2.25rem, 12.3vw, 4.125rem));
    height: auto;
  }
  #page-program .point-cards > .point-card:nth-child(1) .point-card__icon { --pt-icon-w: 66; }
  #page-program .point-cards > .point-card:nth-child(2) .point-card__icon { --pt-icon-w: 57; }
  #page-program .point-cards > .point-card:nth-child(3) .point-card__icon { --pt-icon-w: 60; }
}
@media (max-width: 47.9375rem) {
  #page-program .entry-list__row,
  #page-program .sched-row,
  #page-program .ov-list__row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    row-gap: 0.5rem;
  }
  #page-program .entry-list__row,
  #page-program .ov-list__row { padding-block: 1.5rem; }
  #page-program .entry-list__row:first-child,
  #page-program .ov-list__row:first-child { padding-top: 1rem; }
  #page-program .entry-list__row + .entry-list__row,
  #page-program .ov-list__row + .ov-list__row {
    border-top: 1px solid #a3a3a3;
    padding-top: calc(1.5rem - 1px);
  }
  #page-program .sched-row { padding-block: 0.75rem; }
  #page-program .entry-list__term,
  #page-program .sched-row__term,
  #page-program .ov-list__term {
    width: 100%;
    flex: 0 0 auto;
    padding-right: 0;
    white-space: normal;
    line-height: 1.8;
  }
  #page-program .entry-list__desc,
  #page-program .sched-row__date,
  #page-program .ov-list__desc {
    width: 100%;
    flex: 0 0 auto;
    min-width: 0;
    margin-top: 0;
    padding-left: 0;
    line-height: 1.8;
  }
}
.article__actions { justify-content: center; }
.article__actions .btn-arrow { flex-direction: row; }
@media (max-width: 47.9375rem) {
  .article__actions { justify-content: center; }
}

.site-footer__sns a { padding: 0; }
.site-footer__sns .site-footer__sns-img {
  width: auto; height: auto;
  object-fit: contain;
}
.site-footer__sns .site-footer__sns-img--fb {
  max-width: 73.4%;
  max-height: 73.4%;
}
.site-footer__sns .site-footer__sns-img--oih {
  max-width: 100%;
  max-height: 77.2%;
}
@media (max-width: 60rem) {
  .global-nav__list a { font-weight: 500; }
}
.voice-modal__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
#page-top .comment-card__title {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: calc(1.5em * 2);
}

@media (max-width: 47.9375rem) {
  #page-program .prog-entry { margin-inline: 0; }
}

#page-program .sched-row__date,
#page-program .ov-list__desc,
#page-program .ov-list__desc p,
#page-program .ov-list__lines,
#page-program .ov-list__link,
#page-program .entry-list__desc,
#page-program .entry-list__lines {
  font-weight: 400;
}
#page-top .about::before { bottom: -1px; }
@media (max-width: 47.9375rem) {
  #page-top .about { padding-top: 5rem; }
  #page-top .about::before { top: 2.5rem; }
}
@media (max-width: 63.9375rem) {
  #page-top .about .top-actions { justify-content: center; }
}

@media (max-width: 47.9375rem) {
  #page-program .prog-hero { padding-top: 2.5rem; }

  #page-program .prog-sec--support { padding-top: 5rem; padding-bottom: 2.5rem; }
  #page-program .prog-sec--support::before { top: 2.5rem; }
}
.site-header .global-nav__list a.is-current,
.site-header .global-nav__list a[aria-current="page"],
.global-nav__list a.is-current,
.global-nav__list a[aria-current="page"] {
  color: var(--c-brand);
}
@media (max-width: 47.9375rem) {
  #page-program .prog-hero__panel { padding-top: 2.5rem; }
}
@media (max-width: 47.9375rem) {
  #page-program .point-card__title { min-height: 0; }
  #page-program .point-card__body { gap: 1rem; }
}
.btn-block__icon svg {
  transition: transform 0.3s ease-in-out;
}
.btn-block:hover .btn-block__icon svg,
.btn-block:focus-visible .btn-block__icon svg {
  transform: rotate(-45deg);
}
.site-header__entry .btn-arrow__icon svg {
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn-block__icon svg,
  .site-header__entry .btn-arrow__icon svg { transition: none; }
  .btn-block:hover .btn-block__icon svg,
  .btn-block:focus-visible .btn-block__icon svg { transform: none; }
}

#page-top .news-row {
  position: relative;
  border-bottom: 0;
}
#page-top .news-row::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: #a3a3a3;
  transform: scaleX(1);
  transform-origin: left center;
}
.js #page-top .news-row.fade-in-target::after {
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.js #page-top .news-row.fade-in-target.is-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .js #page-top .news-row.fade-in-target::after {
    transform: scaleX(1);
    transition: none;
  }
}
.article__hero img,
.article-figure img,
.article-media__figure img {
  width: auto;
  max-width: min(100%, 62.5rem);
  height: auto;
  margin-inline: auto;
}
.split-text { display: inline; }
.split-text__space { display: inline-block; white-space: pre; }
.char {
  display: inline-block;
  clip-path: inset(-0.6em 0 -0.12em 0);
}
.char__inner {
  display: inline-block;
  will-change: transform;
}
.js .char__inner {
  opacity: 0;
  transform: translateY(140%);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--char-index, 0) * var(--char-step, 0.05s));
}
.js .is-visible .char__inner {
  opacity: 1;
  transform: translateY(0);
}
.js .fade-in-target.is-split-host {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .char__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
#page-top .topic-card .topic-card__thumb,
#page-events .topic-card .topic-card__thumb {
  display: block;
  padding: 0;
  background: none;
  height: auto;
  aspect-ratio: 1600 / 783;
  overflow: hidden;
  border-radius: 0.5rem;
}

#page-top .topic-card .topic-card__thumb img,
#page-events .topic-card .topic-card__thumb img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
#page-top .topic-card__link:hover .topic-card .topic-card__thumb,
#page-top .topic-card__link:hover .topic-card__thumb,
#page-top .topic-card__link:focus-visible .topic-card__thumb,
#page-events .topic-card__link:hover .topic-card__thumb,
#page-events .topic-card__link:focus-visible .topic-card__thumb {
  background: none;
}
#page-top .topic-card .topic-card__link,
#page-events .topic-card .topic-card__link { gap: 1.5rem; }
body:has(.page[id^="page-article-"].is-active) { background: #f5f5f5; }
.page[id^="page-article-"] { background: #f5f5f5; }
.page[id^="page-article-"] .section--article { background: transparent; }

.site-header__entry .btn-arrow {
  min-height: 3.5rem;
  padding-inline: 1.5rem;
  gap: 0.5rem;
  border: 0;
  border-radius: 1.75rem;
  background: #222222;
  color: var(--c-white);
  font-size: 1rem;
}
.site-header__entry .btn-arrow__icon {
  width: 1.25rem; height: 1.25rem;
  background: var(--c-brand);
  color: var(--c-white);
}
.site-header__entry .btn-arrow__icon svg {
  width: 0.5rem; height: 0.5rem;
}
.site-footer .btn-arrow--invert {
  min-height: 3.5rem;
  padding-inline: 1.5rem;
  gap: 0.5rem;
  border: 0;
  border-radius: 1.75rem;
  background: var(--c-white);
  color: var(--c-brand);
  font-size: 1rem;
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.site-footer .btn-arrow--invert .btn-arrow__icon {
  width: 1.25rem; height: 1.25rem;
  background: var(--c-brand);
  color: var(--c-white);
}
.site-footer .btn-arrow--invert .btn-arrow__icon svg {
  width: 0.5rem; height: 0.625rem;
}
.site-footer .btn-arrow--invert:hover,
.site-footer .btn-arrow--invert:focus-visible {
  background: var(--c-brand);
  color: var(--c-white);
  outline-color: var(--c-white);
}
.site-footer .btn-arrow--invert:hover .btn-arrow__icon,
.site-footer .btn-arrow--invert:focus-visible .btn-arrow__icon {
  background: var(--c-white);
  color: var(--c-brand);
}
#page-program .entry-actions { gap: 2rem; }
#page-program .entry-actions .btn-block {
  min-height: 5.75rem;
  padding-inline: 2rem;
  gap: 0.5rem;
  border-radius: 2.875rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
#page-program .entry-actions .btn-block__icon {
  width: 1.75rem; height: 1.75rem;
}
#page-program .entry-actions .btn-block__icon svg {
  width: 0.625rem; height: 0.625rem;
}
@media (max-width: 63.9375rem) {
  #page-program .entry-actions { gap: 1.25rem; }
  #page-program .entry-actions .btn-block {
    min-height: 4.5rem;
    border-radius: 2.25rem;
    font-size: 1.25rem;
    padding-inline: 1.5rem;
  }
  #page-program .entry-actions .btn-block__icon { width: 1.5rem; height: 1.5rem; }
  #page-program .entry-actions .btn-block__icon svg { width: 0.5625rem; height: 0.5625rem; }
}
@media (max-width: 47.9375rem) {
  #page-program .entry-actions .btn-block {
    min-height: 4rem;
    border-radius: 2rem;
    font-size: 1rem;
    padding-inline: 1.25rem;
  }
  #page-program .entry-actions .btn-block__icon { width: 1.25rem; height: 1.25rem; }
  #page-program .entry-actions .btn-block__icon svg { width: 0.5rem; height: 0.5rem; }
}

.site-header__entry .btn-arrow,
#page-top .btn-arrow {
  min-height: 3.5rem;
  padding-inline: calc(1.5rem - 2px);
  gap: 0.5rem;
  border: 2px solid var(--c-brand);
  border-radius: 1.75rem;
  background: var(--c-white);
  color: var(--c-brand);
  font-size: 1rem;
}
.site-header__entry .btn-arrow__icon,
#page-top .btn-arrow__icon {
  width: 1.25rem; height: 1.25rem;
  background: var(--c-brand);
  color: var(--c-white);
}
.site-header__entry .btn-arrow__icon svg,
#page-top .btn-arrow__icon svg {
  width: 0.5rem; height: 0.5rem;
}

.article__actions .btn-arrow {
  padding-inline: calc(1.5rem - 2px);
  border: 2px solid var(--c-brand);
  background: var(--c-white);
  color: var(--c-brand);
}
.article__actions .btn-arrow__icon {
  background: var(--c-brand);
  color: var(--c-white);
}
body.is-program .site-footer__col--entry .site-footer__actions { gap: 2rem; }
.site-footer .site-footer__actions .btn-block {
  min-height: 5.75rem;
  padding-inline: 2rem;
  gap: 0.5rem;
  border-radius: 2.875rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
.site-footer .site-footer__actions .btn-block__icon {
  width: 1.75rem; height: 1.75rem;
}
.site-footer .site-footer__actions .btn-block__icon svg {
  width: 0.625rem; height: 0.625rem;
}

@media (max-width: 63.9375rem) {
  body.is-program .site-footer__col--entry .site-footer__actions { gap: 1.25rem; }
  .site-footer .site-footer__actions .btn-block {
    min-height: 4.5rem;
    border-radius: 2.25rem;
    font-size: 1.25rem;
    padding-inline: 1.5rem;
  }
  .site-footer .site-footer__actions .btn-block__icon { width: 1.5rem; height: 1.5rem; }
  .site-footer .site-footer__actions .btn-block__icon svg { width: 0.5625rem; height: 0.5625rem; }
}
@media (max-width: 47.9375rem) {
  .site-footer .site-footer__actions .btn-block {
    min-height: 4rem;
    border-radius: 2rem;
    font-size: 1rem;
    padding-inline: 1.25rem;
  }
  .site-footer .site-footer__actions .btn-block__icon { width: 1.25rem; height: 1.25rem; }
  .site-footer .site-footer__actions .btn-block__icon svg { width: 0.5rem; height: 0.5rem; }
}

.site-header__entry .btn-arrow {
  background: #222222;
  border-color: transparent;
  color: var(--c-white);
}
.site-header__entry .btn-arrow__icon {
  background: var(--c-brand);
  color: var(--c-white);
}
.site-header__entry .btn-arrow:hover,
.site-header__entry .btn-arrow:focus-visible {
  background: var(--c-brand);
  border-color: transparent;
  color: var(--c-white);
}
.site-header__entry .btn-arrow:hover .btn-arrow__icon,
.site-header__entry .btn-arrow:focus-visible .btn-arrow__icon {
  background: var(--c-white);
  color: var(--c-brand);
}

.mentor-card__photo img.img-minami,
.mentor-modal__photo img[src$="mentor-hands-minami.webp"] { object-position: center 0%; }
.mentor-card__photo img.img-kudo,
.mentor-modal__photo img[src$="mentor-hands-kudo.webp"] { object-position: center 0%; }
.mentor-card__photo img.img-takiguchi,
.mentor-modal__photo img[src$="mentor-spot-takiguchi.webp"] { object-position: center 0%; }
.mentor-card__photo img.img-isoda,
.mentor-modal__photo img[src$="mentor-b-isoda.webp"] { object-position: center 0%; }
.mentor-card__photo img.img-ashitaka,
.mentor-modal__photo img[src$="mentor-a-ashitaka.webp"] { object-position: center 0%; }
.mentor-card__photo:has(img.img-takiguchi),
.mentor-modal__photo:has(img[src$="mentor-spot-takiguchi.webp"]) {
  background: linear-gradient(to right, #d9d7d5, #d0cecc);
}
.mentor-card__photo img.img-takiguchi,
.mentor-modal__photo img[src$="mentor-spot-takiguchi.webp"] {
  height: 93%;
  margin-top: 8%;
}
.mentor-card__photo img.mentor-photo--raise,
.mentor-modal__photo img[src$="mentor-hands-matsuyama.webp"],
.mentor-modal__photo img[src$="mentor-hands-ishibashi.webp"],
.mentor-modal__photo img[src$="mentor-hands-kono.webp"] {
  height: 110%;
  object-fit: cover;
}
.mentor-card__photo img[src$="mentor-hands-matsuyama.webp"],
.mentor-modal__photo img[src$="mentor-hands-matsuyama.webp"] {
  margin-top: -8.8%;
  object-position: 50% 50%;
}
.mentor-card__photo img[src$="mentor-hands-ishibashi.webp"],
.mentor-modal__photo img[src$="mentor-hands-ishibashi.webp"] {
  margin-top: -9.5%;
  object-position: 50% 50%;
}
.mentor-card__photo img[src$="mentor-hands-kono.webp"],
.mentor-modal__photo img[src$="mentor-hands-kono.webp"] {
  margin-top: -8.8%;
  object-position: 30% 50%;
}
.mentor-card__photo img[src$="mentor-a-miyamoto.webp"],
.mentor-modal__photo img[src$="mentor-a-miyamoto.webp"] { object-position: 33% 50%; }
.mentor-card__photo img[src$="mentor-a-uegaito.webp"],
.mentor-modal__photo img[src$="mentor-a-uegaito.webp"] { object-position: 23% 50%; }
.mentor-card__photo img[src$="mentor-b-itoy.webp"],
.mentor-modal__photo img[src$="mentor-b-itoy.webp"] { object-position: 0% 50%; }
.mentor-card__photo img[src$="mentor-b-mori.webp"],
.mentor-modal__photo img[src$="mentor-b-mori.webp"] { object-position: 32% 50%; }
.mentor-card__photo img[src$="mentor-b-touge.webp"],
.mentor-modal__photo img[src$="mentor-b-touge.webp"] { object-position: 36% 50%; }
.mentor-card__photo img[src$="mentor-e-sumida.webp"],
.mentor-modal__photo img[src$="mentor-e-sumida.webp"] { object-position: 66% 50%; }
.mentor-card__photo img[src$="mentor-e-yamamoto.webp"],
.mentor-modal__photo img[src$="mentor-e-yamamoto.webp"] { object-position: 93% 50%; }
.mentor-card__photo img[src$="mentor-spot-kobayashi.webp"],
.mentor-modal__photo img[src$="mentor-spot-kobayashi.webp"] { object-position: 34% 50%; }
.mentor-card__photo img[src$="mentor-spot-masuda.webp"],
.mentor-modal__photo img[src$="mentor-spot-masuda.webp"] { object-position: 50% 100%; }

@media (min-width: 64rem) {
  #page-program .point-cards { gap: 2.75rem; }
}
#page-program .point-card__media { aspect-ratio: 304 / 227; }
#page-program .point-card__icon { display: block; }
#page-program .point-card__body { gap: 0.375rem; }
#page-program .point-card__icon img {
  position: absolute;
  left: var(--pt-x); top: var(--pt-y);
  width: var(--pt-w); height: auto;
  transform: none;
}
#page-program .point-cards > .point-card:nth-child(1) .point-card__icon {
  --pt-w: 47.52%; --pt-x: 26.32%; --pt-y: 25.13%;
}
#page-program .point-cards > .point-card:nth-child(2) .point-card__icon {
  --pt-w: 48.48%; --pt-x: 25.49%; --pt-y: 25.62%;
}
#page-program .point-cards > .point-card:nth-child(3) .point-card__icon {
  --pt-w: 48.15%; --pt-x: 25.99%; --pt-y: 27.79%;
}
@media (max-width: 63.9375rem) {
  #page-program .point-card__icon img {
    width: var(--pt-w); height: auto; transform: none;
  }
}

#page-program .support-item__figure img { object-fit: cover; }
#page-program .support-item__figure img[src$="prog-support-01.webp"] { object-position: center center; }
#page-program .support-item__figure img[src$="prog-support-02.webp"] { object-position: center center; }
#page-program .support-item__figure img[src$="prog-support-03.webp"] { object-position: center center; }
.site-footer .site-footer__actions .btn-block:not(.btn-block--outline),
.site-footer .site-footer__actions .btn-block:not(.btn-block--outline):hover,
.site-footer .site-footer__actions .btn-block:not(.btn-block--outline):focus-visible {
  border: 2px solid #ffffff;
}
.site-footer .site-footer__actions .btn-block:not(.btn-block--outline):hover,
.site-footer .site-footer__actions .btn-block:not(.btn-block--outline):focus-visible {
  outline-color: transparent;
}
.site-footer__sns { gap: 2rem; }
.site-footer__sns a {
  width: 3.5rem; height: 3.5rem;
  min-width: 0; min-height: 0;
  border-radius: 0;
  background: none;
  overflow: visible;
}
.site-footer__sns .site-footer__sns-img--fb {
  width: 3.5rem; height: 3.5rem;
  max-width: none; max-height: none;
  object-fit: contain;
}
.site-footer__sns a.site-footer__sns-link--oih {
  background: var(--c-white);
  border-radius: 0.25rem;
  overflow: hidden;
}
.site-footer__sns .site-footer__sns-img--oih {
  width: auto; height: 2.5rem;
  max-width: none; max-height: none;
  object-fit: contain;
}
#page-events .topic-card .topic-card__thumb:has(img[src$="ev-noimage.webp"]) {
  background-color: #ffffff;
}
#page-top .topic-card .topic-card__link,
#page-events .topic-card .topic-card__link { gap: 1.0625rem; }
#page-top .topic-card__body,
#page-events .topic-card__body { gap: 0.625rem; }
#page-top .topic-card__meta,
#page-events .topic-card__meta {
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
  justify-content: flex-start;
}
#page-top .topic-card__date,
#page-events .topic-card__date {
  font-size: 0.875rem;
  line-height: 1;
  color: #525252;
}
#page-top .topic-card__text,
#page-events .topic-card__text {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #222222;
}
#page-top .topic-card__link:hover .topic-card__text,
#page-top .topic-card__link:focus-visible .topic-card__text,
#page-events .topic-card__link:hover .topic-card__text,
#page-events .topic-card__link:focus-visible .topic-card__text { color: #1f79d7; }
.article__head { gap: 0.8125rem; }
.article__date {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #525252;
}
.article__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222222;
}

.article__hero { margin-top: 1.9375rem; }
@media (max-width: 47.9375rem) {
  .article__head { gap: 0.625rem; }
  .article__title { font-size: 1.75rem; }
  .article__hero { margin-top: 1.375rem; }
}

.js .article__title .char__inner {
  opacity: 1;
  transform: none;
  transition: none;
}
.js .article__title .char { clip-path: none; }

.js .page {
  opacity: 1;
  transition: none;
}
.js .page.is-entering { display: block; }
.js .page.is-active   { display: block; opacity: 1; }
#page-top .topic-card .topic-card__thumb,
#page-events .topic-card .topic-card__thumb {
  overflow: hidden;
}
#page-top .topic-card .topic-card__thumb img,
#page-events .topic-card .topic-card__thumb img {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
#page-top .topic-card__link:hover .topic-card__thumb img,
#page-top .topic-card__link:focus-visible .topic-card__thumb img,
#page-events .topic-card__link:hover .topic-card__thumb img,
#page-events .topic-card__link:focus-visible .topic-card__thumb img {
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  #page-top .topic-card .topic-card__thumb img,
  #page-events .topic-card .topic-card__thumb img { transition: none; }
  #page-top .topic-card__link:hover .topic-card__thumb img,
  #page-events .topic-card__link:hover .topic-card__thumb img { transform: none; }
}
#page-top .news-rows { overscroll-behavior: auto; }
@media (max-width: 47.9375rem) {
  #page-top .topic-cards { overscroll-behavior: auto; }
}
#page-program .point-card__media { aspect-ratio: 304 / 336; }
#page-program .point-cards > .point-card:nth-child(1) .point-card__icon {
  --pt-w: 47.52%; --pt-x: 26.32%; --pt-y: 23.51%;
}
#page-program .point-cards > .point-card:nth-child(2) .point-card__icon {
  --pt-w: 48.48%; --pt-x: 25.66%; --pt-y: 25.30%;
}
#page-program .point-cards > .point-card:nth-child(3) .point-card__icon {
  --pt-w: 48.15%; --pt-x: 25.99%; --pt-y: 26.79%;
}
#page-program .point-card__title {
  position: absolute;
  top: 71.13%;
  left: 0; right: 0;
  z-index: 1;
  margin: 0;
  min-height: 0;
  padding-inline: 0.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-brand);
}
#page-program .point-card { gap: 2rem; }
#page-program .point-card__body { gap: 0; }
#page-program .point-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #222222;
}

#page-startup .startup-panel__caption,
#page-startup .startup-logos { transition: opacity 0.3s ease; }
#page-startup .startup-panel.is-swapping { opacity: 1; }
#page-startup .startup-panel.is-swapping .startup-panel__caption,
#page-startup .startup-panel.is-swapping .startup-logos { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  #page-startup .startup-panel__caption,
  #page-startup .startup-logos { transition: none; }
}
.filter-select {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  margin-left: auto;
}
.filter-select__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 6.5rem;
  min-height: 1.75rem;
  padding: 0.25rem 0.9375rem;
  border: 1px solid var(--c-brand);
  border-radius: 3.125rem;
  background: var(--c-white);
  color: var(--c-brand);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.filter-select__btn::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  height: var(--tap-min);
}
.filter-select__label { display: block; position: relative; top: -0.0586em; }
.filter-select__icon {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-brand);
  transition: transform 0.3s ease-in-out;
}
.filter-select__icon svg {
  display: block;
  width: 0.53125rem;
  height: 0.3125rem;
}
.filter-select__btn[aria-expanded="true"] .filter-select__icon { transform: rotate(180deg); }

.filter-select__btn:hover,
.filter-select__btn:focus-visible {
  background: var(--c-brand);
  color: var(--c-white);
}
.filter-select__btn:hover .filter-select__icon,
.filter-select__btn:focus-visible .filter-select__icon { color: var(--c-white); }
.filter-select__list {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 10;
  min-width: 100%;
  width: max-content;
  margin: 0;
  padding: 0.4375rem 0 0.3125rem;
  border: 1px solid var(--c-brand);
  border-radius: 0.25rem;
  background: var(--c-white);
  list-style: none;
  max-height: 20.125rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.filter-select__list[hidden] { display: none; }
.filter-select__item { margin: 0; }
.filter-select__opt {
  display: block;
  width: 100%;
  min-height: 1.9375rem;
  padding: 0.46875rem 0.9375rem;
  border: 0;
  background: none;
  color: #222222;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.filter-select__opt:hover { color: var(--c-brand); }
.filter-select__opt:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: -2px;
}
.filter-select__opt[aria-current="true"] { font-weight: 500; color: var(--c-brand); }
@media (prefers-reduced-motion: reduce) {
  .filter-select__btn, .filter-select__icon, .filter-select__opt { transition: none; }
  .filter-select__btn[aria-expanded="true"] .filter-select__icon { transform: none; }
}
#page-startup .startup-logos__item { overflow: visible; }
#page-startup .startup-logos__btn { border-radius: 0.5rem; overflow: hidden; }

#page-startup .startup-logos__btn:focus-visible {
  border-radius: 0.5rem;
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
}
#page-top .news-rows {

  padding: 0.375rem 3.5rem 0.375rem 0.375rem;
  margin-block: -0.375rem;
  margin-left: -0.375rem;
  max-height: calc(14rem + 0.75rem);
  scroll-padding-block: 0.375rem;
}
@media (max-width: 47.9375rem) {
  #page-top .news-rows {
    padding-right: 1.5rem;
    max-height: calc(14.1875rem + 0.75rem);
  }
}
#page-top .news-rows::after {
  content: "";
  display: block;
  height: 0.75rem;
}
#page-top .carousel__viewport {
  padding-block: 0.375rem;
  margin-block: -0.125rem;
  margin-inline: 0.375rem;
  --side: max(1.25rem, (100% + 0.75rem - var(--card-w)) / 2);
  padding-inline: calc(var(--side) - 0.375rem);
  scroll-padding-inline: calc(var(--side) - 0.375rem);
}
@media (max-width: 47.9375rem) {
  #page-top .topic-cards {
    height: calc(20rem + 0.75rem);
    padding: 0.375rem 1rem 0.375rem 0.375rem;
    margin-block: -0.375rem;
    margin-left: -0.375rem;
    scroll-padding-block: 0.375rem;
  }
  #page-top .topic-cards::after {
    content: "";
    display: block;
    height: 0.75rem;
  }
}
#page-events .event-year__panel:not([data-collapsed]) > .event-year__inner {
  overflow: visible;
}
.mentor-card__photo img.img-isoda,
.mentor-modal__photo img[src$="mentor-b-isoda.webp"] {
  height: 100%;
  margin-top: 0;
  object-fit: cover;
  object-position: center 0%;
}

#page-top .hero__bg-item {
  padding: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-ink);
}
@media (min-width: 60.0625rem) {
  .global-nav           { order: 2; }
  .site-header__actions { order: 3; }
}
#page-program .support-item__figure {
  flex-shrink: 1;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
#page-program .support-item__body { min-width: 0; }
.mentor-grid { grid-template-columns: repeat(auto-fill, minmax(min(9.375rem, 100%), 1fr)); }
.site-footer__sns { flex-wrap: wrap; }
@media (max-width: 47.9375rem) {
  #page-top .carousel__viewport { --card-w: min(25rem, 80vw); }
  #page-top .carousel__track { gap: 0.75rem; }
  #page-top .comment-card__title { font-size: 1.25rem; }
}
#page-startup .startup-logos__logo img[src$="su-logo-21_trass.webp"] {
  transform: scale(0.8);
}
#page-startup .startup-logos__btn:hover .startup-logos__logo img[src$="su-logo-21_trass.webp"] {
  transform: scale(0.84);
}
@media (prefers-reduced-motion: reduce) {
  #page-startup .startup-logos__btn:hover .startup-logos__logo img[src$="su-logo-21_trass.webp"] {
    transform: scale(0.8);
  }
}
@media (max-width: 47.9375rem) {
  .site-footer__col--entry .sec-head__ja { line-height: 1.5; }
}
.comment-card__photo[src$="voice-otento.webp"] { object-position: center 10%; }
#page-program .prog-hero__lead {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
}
#page-program .prog-hero__desc {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}
@media (max-width: 47.9375rem) {
  #page-program .prog-hero__lead {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
#page-program .prog-entry { margin-top: clamp(3rem, 13.3vw, 6rem); }
.site-footer__copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
}
.site-footer__policy { white-space: nowrap; }
@media (max-width: 47.9375rem) {
  .site-footer__copyright { column-gap: 1rem; }
}
@media (min-width: 48rem) {
  #page-top .news-row__text {
    line-height: 1.5;
    margin-block: -0.25rem;
  }
  #page-top .news-row__text::after { bottom: -0.25rem; }
}
#page-startup .startup-panel__head {
  flex-direction: column;
  align-items: stretch;
  gap: 3.25rem;
}

#page-startup .startup-panel__head .filter-select {
  order: -1;
  margin-left: 0;
  width: 100%;
}
#page-startup .filter-select__list,
#page-startup .filter-select__list[hidden] {
  display: grid;
  justify-content: space-between;
  gap: 1rem;
  position: static;
  z-index: auto;
  width: 100%;
  min-width: 0;
  max-height: none;
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}
#page-startup .filter-select__item { display: flex; }
#page-startup .filter-select__opt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 1.75rem;
  padding: 0 0.5rem;
  border: 1px solid var(--c-brand);
  border-radius: 0.875rem;
  background: var(--c-white);
  color: var(--c-brand);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.3s ease-in-out,
              border-color     0.3s ease-in-out,
              color            0.3s ease-in-out;
}
#page-startup .filter-select__opt::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  height: var(--tap-min);
}
#page-startup .filter-select__opt:hover,
#page-startup .filter-select__opt:focus-visible,
#page-startup .filter-select__opt[aria-current="true"] {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: var(--c-white);
  font-weight: 400;
}
#page-startup .filter-select__opt:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}
@media (min-width: 48rem) {
  #page-startup .filter-select__list,
  #page-startup .filter-select__list[hidden] {
    grid-template-columns: repeat(auto-fill, 5rem);
  }
  #page-startup .filter-select__opt:active {
    background: var(--c-hover-dk);
    border-color: var(--c-hover-dk);
    color: var(--c-white);
  }
}
@media (max-width: 47.9375rem) {

  #page-startup .startup-panel__head { gap: 2rem; }
  #page-startup .filter-select__list,
  #page-startup .filter-select__list[hidden] {
    grid-template-columns: repeat(auto-fit, minmax(4.25rem, 1fr));
    column-gap: 0.5rem;
    row-gap: 1rem;
  }
  #page-startup .filter-select__opt:active {
    background: var(--c-brand);
    border-color: var(--c-brand);
    color: var(--c-white);
  }
}
@media (prefers-reduced-motion: reduce) {
  #page-startup .filter-select__opt { transition: none; }
}
.startup-modal__company-link {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease-in-out;
}
.startup-modal__company-link[href] { cursor: pointer; }
.startup-modal__company-link[href]:hover,
.startup-modal__company-link[href]:focus-visible {
  color: var(--c-brand);
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  .startup-modal__company-link { transition: none; }
}

main a:not(.btn-arrow):not(.btn-block):not(.news-row__link):not(.topic-card__link),
main a:not(.btn-arrow):not(.btn-block):not(.news-row__link):not(.topic-card__link):hover,
main a:not(.btn-arrow):not(.btn-block):not(.news-row__link):not(.topic-card__link):focus-visible,
main a:not(.btn-arrow):not(.btn-block):not(.news-row__link):not(.topic-card__link):active,
main a:not(.btn-arrow):not(.btn-block):not(.news-row__link):not(.topic-card__link):visited,
.startup-modal__company-link[href],
.startup-modal__company-link[href]:hover,
.startup-modal__company-link[href]:focus-visible,
#page-program .ov-list__link,
#page-program .ov-list__link:hover,
#page-program .ov-list__link:focus-visible {
  color: #1f79d7;
  text-decoration-line: underline;
  text-decoration-color: #1f79d7;
}

.article-text a span,
.article-text a b,
.article-text a strong,
.article-deflist__desc a span,
.article-deflist__desc a b,
.article-deflist__desc a strong,
.article-list a span,
.article-list a b,
.article-list a strong,
.article-box a span,
.article-box a b,
.article-box a strong {
  color: inherit !important;
  font-weight: inherit !important;
}

#page-mentors .mentor-card__photo { aspect-ratio: 1 / 1; }
.mentor-modal__photo {
  height: auto;
  aspect-ratio: 1 / 1;
}
.mentor-card__photo img,
.mentor-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-program .mentor-card--soon .mentor-card__photo {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 119.531 131.484'%3E%3Ccircle cx='59.7656' cy='31.6406' r='31.6406' fill='%23D4D4D4'/%3E%3Cpath d='M0 119.531C0 92.3485 22.036 70.3125 49.2188 70.3125H70.3125C97.4953 70.3125 119.531 92.3485 119.531 119.531V127.484C119.531 129.694 117.74 131.484 115.531 131.484H4C1.79086 131.484 0 129.694 0 127.484V119.531Z' fill='%23D4D4D4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 54.3324% 59.7656%;
}
#page-program .mentor-card--soon .mentor-card__btn {
  cursor: default;
  padding-bottom: 1.9375rem;
}
#page-program .mentor-card--soon .mentor-card__btn:hover .mentor-card__photo {
  background-color: #ffffff;
}

#page-top .about    { padding-bottom: 3rem; }
#page-top .mission  { padding-block: 3rem; }
#page-top .alumni {
  position: relative;
  background: var(--c-brand);
  padding-inline: 0;
  isolation: isolate;
  padding-top: 3rem;
  padding-bottom: 6rem;
}
#page-top .alumni::before {
  content: "";
  position: absolute;
  inset: 0 1.25rem;
  z-index: -1;
  background: var(--c-white);
}
#page-top .mission::before { bottom: -1px; }
#page-top .alumni > .section__inner {
  max-width: calc(var(--inner-max) + var(--gutter) * 2);
  padding-inline: var(--gutter);
  gap: 3.5rem;
}
#page-top .alumni__intro {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
#page-top .about .sec-head__ja,
#page-top .mission .sec-head__ja,
#page-top .alumni .sec-head__ja { color: #222222; }
#page-top .about .prose,
#page-top .mission .prose,
#page-top .alumni .prose { color: #222222; }
#page-top .about .sec-head,
#page-top .mission .sec-head,
#page-top .alumni .sec-head { gap: 1rem; }
#page-top .mission > .section__inner { gap: 3.5rem; }
#page-top .steps { gap: 1.5rem; }
#page-top .step__main { gap: 0.5rem; }
#page-top .step__title { color: #222222; }
#page-top .step__list li { color: #222222; }
#page-top .step__badge {
  font-size: 1rem;
  line-height: 1.5;
}
#page-top .alumni-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#page-top .alumni-item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 1.9375rem 2.5rem;
  border-radius: 0.5rem;
  background: var(--c-tint);
}
#page-top .alumni-item__no {
  flex: 0 0 auto;
  min-width: 1.75rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.25rem;
  color: var(--c-brand);
}
#page-top .alumni-item__main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
#page-top .alumni-item__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
}
#page-top .alumni-item__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #222222;
}
@media (max-width: 63.9375rem) {
  #page-top .alumni { padding-inline: 0; }
  #page-top .alumni > .section__inner { padding-inline: calc(var(--gutter) * 2); }
}
@media (max-width: 47.9375rem) {
  #page-top .alumni-item { gap: 1rem; padding: 1.5rem; }
  #page-top .alumni-item__no { min-width: 1.5rem; font-size: 1.25rem; line-height: 1.75rem; }
  #page-top .alumni-item__title { font-size: 1.25rem; }
}
.promo-banner {
  position: fixed;
  z-index: 100;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.24);
}
.promo-banner[hidden] { display: none; }
.promo-banner__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 920 / 450;
  object-fit: cover;
}
.promo-banner__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #222222;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.promo-banner__close svg { width: 0.75rem; height: 0.75rem; }
.promo-banner__close::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: var(--tap-min); height: var(--tap-min);
}
.promo-banner__close:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
}
@media (min-width: 64rem) {
  .promo-banner {
    --promo-gap: clamp(1.25rem, 2.2222vw, 2.5rem);
    right: var(--promo-gap);
    bottom: var(--promo-gap);
    width: clamp(26rem, 32vw, 34rem);
  }
  .promo-banner__close:hover {
    background: var(--c-white);
    color: var(--c-brand);
  }
}
@media (max-width: 63.9375rem) {
  .promo-banner {
    --promo-gap: 1rem;
    left: var(--promo-gap);
    right: var(--promo-gap);
    bottom: calc(var(--promo-gap) + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: 30rem;
    margin-inline: auto;
  }
  .promo-banner__close:active {
    background: var(--c-white);
    color: var(--c-brand);
  }
}
@media (prefers-reduced-motion: reduce) {
  .promo-banner__close { transition: none; }
}
@media print {
  .site-header, .carousel__controls, .page-top, .skip-link, .promo-banner { display: none; }
}
