.top-page {
  --top-blue: #0080b0;
  --top-blue-dark: #004f80;
  --top-red: #e06060;
  --top-yellow: #f0e020;
  --top-pale: #edf9fc;
  --top-ink: #111827;
  --top-muted: #52606d;
  --top-line: #d7e3ea;
  --top-width: 1200px;
  --top-header-height: 50px;
  color: var(--top-ink);
  font-family: var(--font-sans);
  font-feature-settings: "palt";
  background: #ffffff;
}

.top-page .site-header,
.top-page .site-footer {
  display: none;
}

.top-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--top-header-height);
  background: #ffffff;
  pointer-events: none;
}

.top-header__logo,
.top-header__nav,
.top-header__toggle,
.top-mv__menu {
  pointer-events: auto;
}

.top-header__logo {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: 10px;
  color: #004098;
  text-decoration: none;
}

.top-logo__mark {
  flex: 0 0 auto;
  width: auto;
  height: 27px;
}

.top-logo__text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.top-logo__ja {
  color: currentColor;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.top-logo__en {
  color: currentColor;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.top-header__nav {
  display: flex;
}

.top-header__toggle {
  display: none;
}

.top-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.top-header__link--blue {
  background: var(--top-blue-dark);
}

.top-header__link--red {
  background: var(--top-red);
}

.top-main {
  position: relative;
  overflow: clip;
  padding-top: var(--top-header-height);
}

.top-mv {
  position: relative;
  height: calc(100svh - var(--top-header-height));
  overflow: hidden;
  background: #ffffff;
  cursor: grab;
  touch-action: pan-y;
}

.top-mv.is-dragging {
  cursor: grabbing;
}

.top-mv__slides,
.top-mv__slide {
  position: absolute;
  inset: 0;
}

.top-mv__slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.top-mv__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.top-mv__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.top-mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.top-mv__content {
  position: absolute;
  bottom: clamp(86px, 12vw, 150px);
  left: clamp(24px, 7vw, 112px);
  z-index: 2;
  width: min(860px, calc(100% - 48px));
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.top-mv__category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.top-mv__lead {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.35;
}

.top-page--front .top-header {
  background: transparent;
}

.top-page--front .top-main {
  padding-top: 0;
}

.top-page--front .top-mv {
  height: 100svh;
}

.top-mv__scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
  pointer-events: none;
}

.top-mv__scroll::after {
  display: block;
  width: 1px;
  height: 72px;
  background:
    linear-gradient(#111827, #111827) 0 -22px / 100% 22px no-repeat,
    currentColor;
  content: "";
  animation: top-scroll-line 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes top-scroll-line {
  0% {
    background-position:
      0 -22px,
      0 0;
  }

  100% {
    background-position:
      0 72px,
      0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-mv__slide {
    transition: none;
  }

  .top-mv__scroll::after {
    animation: none;
  }

  .top-side-menu__overlay,
  .top-side-menu__panel {
    transition: none;
  }
}

.top-mv__menu {
  position: fixed;
  top: 94px;
  right: 0;
  z-index: 110;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 126px;
  padding: 16px 10px;
  border: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 4px;
  text-decoration: none;
  background: var(--top-blue-dark);
  cursor: pointer;
}

.top-mv__menu span {
  writing-mode: vertical-rl;
}

.top-mv__menu::before {
  display: block;
  width: 17px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: linear-gradient(currentColor, currentColor) center / 100% 1px
    no-repeat;
  content: "";
  writing-mode: horizontal-tb;
}

.top-side-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.32s;
}

.top-side-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.top-side-menu__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.28s ease;
}

.top-side-menu.is-open .top-side-menu__overlay {
  opacity: 1;
}

.top-side-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100%;
  padding: 32px 27px 44px;
  overflow-y: auto;
  color: #ffffff;
  background: linear-gradient(145deg, #0080b0 0%, #253894 100%);
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-side-menu.is-open .top-side-menu__panel {
  transform: translateX(0);
}

.top-side-menu__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
}

.top-side-menu__logo {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: min(212px, 100%);
  color: #ffffff;
  text-decoration: none;
}

.top-side-menu__logo .top-logo__mark {
  filter: brightness(0) invert(1);
}

.top-side-menu__sns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-side-menu__sns-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.top-side-menu__sns-link--instagram {
  border: 3px solid currentColor;
  border-radius: 8px;
}

.top-side-menu__sns-link--instagram::before {
  display: block;
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.top-side-menu__sns-link--instagram::after {
  position: absolute;
  width: 4px;
  height: 4px;
  margin: -13px 0 0 14px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.top-side-menu__sns-link--facebook {
  border-radius: 50%;
  background: #ffffff;
  color: var(--top-blue-dark);
}

.top-side-menu__close {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.top-side-menu__close::before,
.top-side-menu__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  content: "";
}

.top-side-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.top-side-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.top-side-menu__nav {
  display: grid;
  gap: 26px;
}

.top-side-menu__group {
  display: grid;
  gap: 11px;
}

.top-side-menu__title {
  margin: 0 0 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.top-side-menu__nav a,
.top-side-menu__text {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
}

.top-side-menu__nav a {
  transition: opacity 0.2s ease;
}

.top-side-menu__nav a:hover {
  opacity: 0.72;
}

.top-side-menu__pill,
.top-side-menu__entry,
.top-side-menu__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 36px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
}

.top-side-menu__actions {
  display: grid;
  gap: 12px;
}

.top-side-menu__entry {
  border-color: var(--top-red);
  color: #ffffff !important;
  font-weight: 700 !important;
  background: var(--top-red);
  box-shadow: 0 12px 28px rgba(224, 96, 96, 0.28);
}

.top-side-menu__entry--mobile {
  display: none;
}

.top-side-menu__login {
  color: var(--top-blue-dark) !important;
  background: #ffffff;
}

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

.site-main,
.join-main {
  padding-top: var(--top-header-height);
}

.top-lead {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.top-feature-slider {
  position: relative;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.top-feature-slider__track {
  display: flex;
  width: 300%;
  transition: transform 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  transform: translateX(calc(var(--top-feature-index, 0) * -33.3333%));
}

.top-feature-slide {
  position: relative;
  flex: 0 0 calc(100% / 3);
  min-height: 640px;
  max-height: 640px;
  overflow: hidden;
}

.top-feature-slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.top-feature-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.54));
  content: "";
}

.top-feature-slide__overlay {
  position: absolute;
  bottom: 34px;
  left: 42px;
  z-index: 1;
  width: min(70%, calc(100% - 64px));
  color: #ffffff;
}

.top-feature-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 14px;
}

.top-feature-slide__meta span {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: var(--top-blue);
}

.top-feature-slide__overlay h2 {
  margin: 0;
  font-weight: normal;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
}

.top-feature-slide__overlay p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.top-feature-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--top-blue-dark);
  border-radius: 50%;
  color: var(--top-blue-dark);
  background: #ffffff;
  transform: translateY(-50%);
}

.top-feature-slider__arrow::before {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.top-feature-slider__arrow--prev {
  left: 18px;
}

.top-feature-slider__arrow--prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.top-feature-slider__arrow--next {
  right: 18px;
}

.top-feature-slider__arrow--next::before {
  transform: translateX(-2px) rotate(135deg);
}

.top-section {
  position: relative;
  z-index: 2;
  padding: 84px 0;
  background: #ffffff;
}

.top-section__inner {
  width: min(100% - 48px, var(--top-width));
  margin-inline: auto;
}

.top-heading {
  margin-bottom: 36px;
  text-align: center;
}

.top-heading__en,
.top-heading h2 {
  margin: 0;
  color: var(--top-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.top-heading__sub {
  margin: 0 0 8px;
  color: var(--top-blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.top-heading h2 {
  color: var(--top-ink);
  font-family: var(--font-sans);
}

.top-heading .top-heading__lead {
  margin-top: 8px;
  color: var(--top-ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
}

.top-heading p:not(.top-heading__en):not(.top-heading__sub) {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--top-muted);
}

.top-slogan {
  padding: 78px 0 58px;
  background: #ffffff;
}

.top-slogan__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
  max-width: 1080px;
  margin-inline: auto;
  padding: 0 clamp(20px, 4vw, 48px) 20px;
}

.top-slogan__content {
  display: grid;
  justify-items: center;
  align-self: center;
  text-align: center;
}

.top-slogan__heading-kana,
.top-slogan__name-kana {
  margin: 0;
  color: var(--top-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}

.top-slogan__heading {
  margin: 4px 0 0;
  color: var(--top-ink);
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.top-slogan__heading--noto {
  font-family: "Noto Sans JP", var(--font-sans);
}

.top-slogan__heading--zen {
  font-family: "Zen Kaku Gothic New", var(--font-sans);
}

.top-slogan__heading--lato {
  font-family: var(--font-display);
}

.top-slogan__heading--serif {
  font-family:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    serif;
}

.top-slogan__heading--sans {
  font-family: var(--font-sans);
}

.top-slogan__subcopy {
  margin: 14px 0 0;
  color: var(--top-ink);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.top-slogan__subcopy--noto {
  font-family: "Noto Sans JP", var(--font-sans);
}

.top-slogan__subcopy--zen {
  font-family: "Zen Kaku Gothic New", var(--font-sans);
}

.top-slogan__subcopy--lato {
  font-family: var(--font-display);
}

.top-slogan__subcopy--serif {
  font-family:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    serif;
}

.top-slogan__subcopy--sans {
  font-family: var(--font-sans);
}

.top-slogan__person {
  display: grid;
  justify-items: center;
  margin-top: 24px;
}

.top-slogan__name {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: flex-end;
  justify-content: center;
  margin: 4px 0 0;
  color: var(--top-ink);
  font-weight: 500;
  line-height: 1.25;
}

.top-slogan__name-main {
  display: grid;
  justify-items: center;
}

.top-slogan__position {
  font-size: clamp(15px, 1.8vw, 22px);
  position: relative;
  top: -4px;
}

.top-slogan__name-kana {
  margin-bottom: 4px;
}

.top-slogan__name strong {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
}

.top-slogan__name--noto {
  font-family: "Noto Sans JP", var(--font-sans);
}

.top-slogan__name--zen {
  font-family: "Zen Kaku Gothic New", var(--font-sans);
}

.top-slogan__name--lato {
  font-family: var(--font-display);
}

.top-slogan__name--serif {
  font-family:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    serif;
}

.top-slogan__name--sans {
  font-family: var(--font-sans);
}

.top-slogan__image {
  align-self: end;
  margin: 0;
}

.top-slogan__image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
}

.top-yeg-about__card {
  max-width: 1110px;
  margin-inline: auto;
  padding: clamp(44px, 5.8vw, 58px) clamp(28px, 6vw, 72px);
  border-radius: 14px;
  background: #e8f0fb;
}

.top-yeg-about__card h3 {
  margin: 0;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.top-yeg-about__label {
  margin: 16px 0 34px;
  color: var(--top-ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.top-yeg-about__text {
  max-width: 760px;
  margin-inline: auto;
}

.top-yeg-about__text p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.top-yeg-about__text p + p {
  margin-top: 8px;
}

.top-yeg-way {
  display: grid;
  gap: 30px;
  margin-top: 64px;
}

.top-yeg-way h3 {
  margin: 0 0 4px;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.top-yeg-way__item {
  padding-left: 22px;
  border-left: 1px solid var(--top-blue-dark);
}

.top-yeg-way__item h4 {
  margin: 0 0 8px;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.top-yeg-way__item p {
  margin: 0;
  color: var(--top-blue-dark);
  font-weight: 700;
}

.top-yeg-vision__body {
  display: grid;
  justify-items: center;
}

.top-yeg-vision__body img {
  width: min(100%, 354px);
  height: auto;
}

.top-yeg-vision__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  width: 100%;
  margin-top: 56px;
  padding: 28px 24px;
}

.top-yeg-vision-card {
  position: relative;
  min-height: 300px;
  padding: 72px 32px 34px;
  border-radius: 6px;
  background: #ffffff;
}

.top-yeg-vision-card--01 {
  background: #fbe8ea;
}

.top-yeg-vision-card--02 {
  background: #e8f5fc;
}

.top-yeg-vision-card--03 {
  background: #fbfae8;
}

.top-yeg-vision-card__number {
  position: absolute;
  top: -52px;
  left: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}

.top-yeg-vision-card--01 .top-yeg-vision-card__number {
  color: #e60012;
}

.top-yeg-vision-card--02 .top-yeg-vision-card__number {
  color: #00a0e9;
}

.top-yeg-vision-card--03 .top-yeg-vision-card__number {
  color: #d8cc00;
}

.top-yeg-vision-card h3 {
  margin: 0 0 28px;
  color: var(--top-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.top-yeg-vision-card p:not(.top-yeg-vision-card__number) {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.top-committees-section {
  background: #f7fbfd;
}

.top-committees {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.top-committee-card {
  min-height: 220px;
  padding: 30px 28px;
  border: 1px solid var(--top-line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(0, 79, 128, 0.12);
}

.top-committee-card h3 {
  margin: 0 0 18px;
  color: var(--top-blue-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.top-committee-card p {
  margin: 0;
  color: var(--top-muted);
  font-size: 15px;
  line-height: 1.9;
}

.top-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 41px 75px;
}

.top-news-card {
  display: grid;
  min-height: 400px;
  border: 1px solid var(--top-line);
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(0, 79, 128, 0.18);
  color: inherit;
  text-decoration: none;
}

.top-news-card__image {
  width: 100%;
  aspect-ratio: 350 / 207;
  object-fit: cover;
}

.top-news-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 15px 18px;
}

.top-news-card__meta {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin: 0;
  color: var(--top-muted);
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.6;
}

.top-news-card__meta span {
  color: var(--top-blue-dark);
  font-weight: 700;
}

.top-news-card h3 {
  margin: 0;
  color: var(--top-ink);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
}

.top-news-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #808080;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-news__empty {
  margin: 0;
  color: var(--top-muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.news-archive {
  padding-top: calc(var(--top-header-height) + 72px);
}

.news-archive__grid {
  margin-top: 48px;
}

.news-archive .navigation.pagination {
  margin-top: 56px;
}

.news-archive .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.news-archive .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--top-line);
  background: #ffffff;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.news-archive .page-numbers.current {
  border-color: var(--top-blue-dark);
  background: var(--top-blue-dark);
  color: #ffffff;
}

.news-archive a.page-numbers:hover {
  border-color: var(--top-blue-dark);
}

.members-archive {
  padding-top: calc(var(--top-header-height) + 72px);
}

.members-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 48px;
}

.members-filter__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border: 1px solid var(--top-line);
  border-radius: 999px;
  color: var(--top-blue-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  background: #ffffff;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.members-filter__item:hover,
.members-filter__item.is-active {
  border-color: var(--top-blue-dark);
  color: #ffffff;
  background: var(--top-blue-dark);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.member-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--top-line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(0, 79, 128, 0.14);
}

.member-card__image {
  margin: 0;
  background: #f3f6f8;
}

.member-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.member-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.member-card__job {
  justify-self: start;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  background: var(--top-blue);
}

.member-card__name {
  margin: 0;
  color: var(--top-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.member-card__company {
  margin: -4px 0 0;
  color: var(--top-blue-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.member-card__details {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.member-card__details div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
}

.member-card__details dt {
  color: var(--top-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.member-card__details dd {
  min-width: 0;
  margin: 0;
  color: var(--top-ink);
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.member-card__details a,
.member-card__website {
  color: var(--top-blue-dark);
  font-weight: 700;
}

.member-card__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 8px;
  padding: 4px 10px;
  border: 1px solid var(--top-blue-dark);
  border-radius: 999px;
  color: var(--top-blue-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: #ffffff;
}

.member-card__map:hover {
  color: #ffffff;
  background: var(--top-blue-dark);
}

.member-card__pr {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: #808080;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.member-card__website {
  justify-self: start;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.member-card__website::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.members-empty {
  margin: 0;
  color: var(--top-muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.members-pagination {
  margin-top: 56px;
}

.members-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.members-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--top-line);
  background: #ffffff;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.members-pagination .page-numbers.current {
  border-color: var(--top-blue-dark);
  background: var(--top-blue-dark);
  color: #ffffff;
}

.members-pagination a.page-numbers:hover {
  border-color: var(--top-blue-dark);
}

.news-single {
  padding-top: calc(var(--top-header-height) + 72px);
}

.news-single__inner {
  max-width: 960px;
}

.news-single__header {
  display: grid;
  gap: 18px;
  margin-inline: auto;
  text-align: center;
}

.news-single__meta {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  color: var(--top-muted);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.6;
}

.news-single__meta span {
  color: var(--top-blue-dark);
  font-weight: 700;
}

.news-single__title {
  max-width: 820px;
  margin: 0 auto;
  color: var(--top-ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.55;
}

.news-single__image {
  margin: 48px 0 0;
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(0, 79, 128, 0.18);
}

.news-single__image img {
  width: 100%;
  aspect-ratio: 960 / 565;
  object-fit: cover;
}

.news-single__content {
  margin-top: 54px;
  color: var(--top-ink);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.025em;
}

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

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

.news-single__content p {
  margin: 0 0 1.6em;
}

.news-single__content h2,
.news-single__content h3,
.news-single__content h4 {
  margin: 2.2em 0 0.8em;
  color: var(--top-blue-dark);
  font-weight: 700;
  line-height: 1.45;
}

.news-single__content h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--top-line);
  font-size: 28px;
}

.news-single__content h3 {
  font-size: 22px;
}

.news-single__content h4 {
  font-size: 18px;
}

.news-single__content a {
  color: var(--top-blue-dark);
  font-weight: 700;
}

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

.news-single__content img {
  height: auto;
}

.news-single__page-links {
  margin-top: 40px;
  text-align: center;
}

.news-single__post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--top-line);
}

.news-single__post-nav-item {
  min-width: 0;
}

.news-single__post-nav-item--next {
  text-align: right;
}

.news-single__post-nav a {
  display: grid;
  gap: 6px;
  color: var(--top-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-decoration: none;
}

.news-single__post-nav-label {
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.news-single__post-nav-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-single__back {
  margin: 48px auto 0;
}

.top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-height: 50px;
  margin: 42px auto 0;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: normal;
  text-decoration: none;
  background: var(--top-blue-dark);
}

.top-design-capture {
  position: relative;
  z-index: 2;
  margin: 0;
  background: #ffffff;
}

.top-design-capture img {
  display: block;
  width: 100%;
  height: auto;
}

.top-business {
  padding: 58px 0 0;
  background: var(--top-pale);
}

.top-heading--business {
  margin-bottom: 40px;
}

.top-heading--business h2 {
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.25;
}

.top-heading--business .top-heading__sub {
  margin: 6px 0 0;
}

.top-heading--business p:not(.top-heading__en):not(.top-heading__sub) {
  margin-top: 22px;
  line-height: 1.9;
}

.top-business__content {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  max-width: 1150px;
  margin-inline: auto;
}

.top-business__graph {
  margin: 0;
}

.top-business__graph img {
  display: block;
  width: 100%;
  height: auto;
}

.top-business__summary {
  display: grid;
  gap: 15px;
  padding-top: 42px;
}

.top-business__summary p,
.top-business__summary ol {
  margin: 0;
}

.top-business__year {
  color: var(--top-blue-dark);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
}

.top-business__amount {
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: clamp(46px, 5.2vw, 64px);
  font-weight: 900;
  line-height: 1.1;
}

.top-business__summary h3 {
  width: fit-content;
  margin: 0;
  padding: 9px 24px;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 20px;
  background: var(--top-blue);
}

.top-business__summary ol {
  display: grid;
  gap: 9px;
  padding-left: 1.4em;
  font-size: 18px;
  line-height: 1.7;
}

.top-jobs {
  position: relative;
  z-index: 2;
  padding: 45px 0 50px;
  color: #ffffff;
  text-align: center;
  background: var(--top-blue-dark);
}

.top-jobs__inner {
  width: min(100% - 48px, var(--top-width));
  margin-inline: auto;
}

.top-jobs h2 {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.2em;
}

.top-jobs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  justify-content: center;
  max-width: 1120px;
  margin-inline: auto;
}

.top-jobs__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: transparent;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.top-jobs__list a:hover {
  color: var(--top-blue-dark);
  background: #ffffff;
}

.top-jobs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 46px;
  margin-top: 60px;
  padding: 10px 24px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.top-jobs__button:hover {
  color: var(--top-blue-dark);
  background: #ffffff;
}

.top-banners {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
  width: 100%;
  margin: 0;
  padding: 35px max(22px, calc((100% - 1142px) / 2));
  box-sizing: border-box;
  background: #ffffff;
}

.top-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  justify-content: center;
  overflow: hidden;
  padding: 42px 58px;
  color: #ffffff;
  text-decoration: none;
  background-position: center;
  background-size: cover;
}

.top-banner::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 47%;
  min-width: 258px;
  clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0 100%);
  content: "";
}

.top-banner > * {
  position: relative;
  z-index: 1;
}

.top-banner--company {
  background-image: url("../images/join/hero-01.png");
}

.top-banner--company::before {
  background: var(--top-red);
}

.top-banner--activity {
  background-image: url("../images/top/activity-banner.png");
  background-position: center 45%;
}

.top-banner--activity::before {
  background: var(--top-blue);
}

.top-banner span {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.top-banner strong {
  margin-top: 3px;
  font-weight: normal;
  font-size: 30px;
  line-height: 1.35;
}

.top-banner em {
  display: inline-flex;
  align-items: center;
  width: 128px;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 12px 0 12px;
  box-sizing: border-box;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.top-banner em span {
  flex-grow: 1;
  white-space: nowrap;
}

.top-banner em b {
  margin-left: 0px;
  font: inherit;
}

.top-activity-report {
  background: #ffffff;
}

.top-activity-report__body {
  display: grid;
  gap: 24px;
}

.top-activity-report__feeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.top-activity-report__feed {
  min-width: 0;
  min-height: 240px;
  max-height: 600px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--top-line);
  border-radius: 8px;
  background: #ffffff;
}

.top-activity-report__feed-title {
  margin: 0 0 16px;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.top-activity-report__feed #sb_instagram,
.top-activity-report__feed .sb_instagram,
.top-activity-report__feed .cff-wrapper,
.top-activity-report__feed .cff {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.top-activity-report__feed #sb_instagram {
  max-height: 520px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px !important;
}

.top-activity-report__feed--facebook .cff-wrapper {
  max-height: 520px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px !important;
}

.top-activity-report__feed #sb_instagram::-webkit-scrollbar,
.top-activity-report__feed--facebook .cff-wrapper::-webkit-scrollbar {
  width: 6px;
}

.top-activity-report__feed #sb_instagram::-webkit-scrollbar-track,
.top-activity-report__feed--facebook .cff-wrapper::-webkit-scrollbar-track {
  background: #f1f4f7;
  border-radius: 999px;
}

.top-activity-report__feed #sb_instagram::-webkit-scrollbar-thumb,
.top-activity-report__feed--facebook .cff-wrapper::-webkit-scrollbar-thumb {
  background: #b8c3cd;
  border-radius: 999px;
}

.top-activity-report__empty {
  display: grid;
  min-height: 196px;
  place-items: center;
  border: 1px dashed var(--top-line);
  border-radius: 8px;
  color: var(--top-muted);
  text-align: center;
}

.top-activity-report__empty p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.top-activity-report__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.top-activity-report__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--top-blue-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.top-sponsor {
  background: #ffffff;
}

.top-sponsor__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.top-sponsor__item {
  display: grid;
  height: 160px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--top-line);
  text-decoration: none;
  background: #ffffff;
}

.top-sponsor__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-links {
  position: relative;
  z-index: 2;
  padding: 54px 0 52px;
  background: #ffffff;
}

.top-links__inner {
  width: min(100% - 48px, var(--top-width));
  margin-inline: auto;
  text-align: center;
}

.top-links__heading h2 {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  color: var(--top-blue);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.top-links__heading h2::before,
.top-links__heading h2::after {
  display: block;
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.top-links__heading h2::before {
  transform: rotate(45deg);
}

.top-links__heading h2::after {
  transform: rotate(-45deg);
}

.top-links__heading p {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.top-links__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 12px;
  margin-top: 38px;
}

.top-links__nav a {
  color: var(--top-blue);
  font-weight: 700;
  text-decoration: none;
}

.top-links__nav span {
  margin-left: 8px;
}

.top-footer {
  position: relative;
  z-index: 2;
  padding: 36px 0 34px;
  border: 2px solid var(--top-blue);
  color: #ffffff;
  background: var(--top-blue-dark);
}

.top-footer__inner {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(380px, 1fr) minmax(
      150px,
      220px
    );
  gap: 58px;
  align-items: end;
  width: min(100% - 120px, var(--top-width));
  margin-inline: auto;
}

.top-footer__logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  color: #ffffff;
  text-decoration: none;
}

.top-footer__logo .top-logo__mark {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
}

.top-footer__logo .top-logo__ja {
  font-size: 22px;
}

.top-footer__logo .top-logo__en {
  font-size: 9px;
}

.top-footer__brand p {
  margin: 0 0 14px;
  font-weight: normal;
  line-height: 1.6;
}

.top-footer__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 28px;
  margin: -2px 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.top-footer__brand .top-footer__tel {
  margin-top: 0;
}

.top-footer__menus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-self: start;
}

.top-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  align-content: start;
  align-items: center;
}

.top-footer__nav-title {
  flex: 0 0 100%;
  margin: 0 0 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.top-footer__nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  text-decoration: none;
}

.top-footer__nav a:not(:last-child)::after {
  display: inline-block;
  margin: 0 14px;
  color: rgba(255, 255, 255, 0.56);
  content: "|";
}

.top-footer__actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 22px;
  align-items: flex-end;
  justify-items: end;
  align-self: end;
}

.top-footer__sns {
  display: flex;
  gap: 28px;
  align-items: center;
}

.top-footer__sns-link {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.top-footer__sns-link--instagram {
  border: 4px solid currentColor;
  border-radius: 12px;
}

.top-footer__sns-link--instagram::before {
  display: block;
  width: 16px;
  height: 16px;
  border: 4px solid currentColor;
  border-radius: 50%;
  content: "";
}

.top-footer__sns-link--instagram::after {
  position: absolute;
  width: 5px;
  height: 5px;
  margin: -20px 0 0 22px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.top-footer__sns-link--facebook {
  border-radius: 50%;
  background: #ffffff;
  color: var(--top-blue-dark);
}

.top-footer__latest {
  position: fixed;
  right: 24px;
  bottom: 56px;
  z-index: 130;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 220px;
  border: 2px solid var(--top-red);
  border-radius: 999px;
  color: var(--top-red);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  writing-mode: horizontal-tb;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(224, 96, 96, 0.18);
}

.top-footer__latest img {
  flex: 0 0 auto;
  width: 28px;
  height: 29px;
}

.top-footer__latest span {
  font-family: var(--font-display);
  font-size: 14px;
  writing-mode: vertical-rl;
}

.top-footer__latest--mobile-entry {
  display: none;
}

.top-footer__latest-close {
  display: none;
}

.top-footer__copy {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 8px 0 11px;
  color: var(--top-ink);
  font-family: var(--font-display);
  font-size: 13px;
  text-align: center;
  background: #ffffff;
}

@media (max-width: 980px) {
  .top-feature-slider {
    width: 92%;
  }

  .top-feature-slider__arrow {
    width: 38px;
    height: 38px;
  }

  .top-news__grid,
  .members-grid,
  .top-sponsor__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-business__content,
  .top-banners,
  .top-footer__inner {
    grid-template-columns: 1fr;
  }

  .top-links__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-slogan__body {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 28px;
  }

  .top-slogan__image img {
    max-height: 340px;
  }

  .top-footer__inner {
    width: min(100% - 48px, var(--top-width));
  }

  .top-footer__actions {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    justify-items: start;
  }

  .top-business__graph {
    max-width: 500px;
    margin-inline: auto;
  }

  .top-business__summary {
    max-width: 620px;
    margin-inline: auto;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .top-page {
    --top-header-height: 68px;
  }

  .top-header {
    position: fixed;
    align-items: center;
    height: var(--top-header-height);
    background: #ffffff;
  }

  .top-page--front .top-header {
    background: #ffffff;
  }

  .top-header__logo {
    gap: 7px;
    margin: 0 0 0 14px;
  }

  .top-header__logo .top-logo__mark {
    width: auto;
    height: 23px;
  }

  .top-header__logo .top-logo__ja {
    font-size: 16px;
  }

  .top-header__logo .top-logo__en {
    font-size: 7px;
  }

  .top-header__toggle {
    position: relative;
    z-index: 122;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-right: 8px;
    border: 0;
    border-radius: 0;
    color: var(--top-blue-dark);
    font-family: var(--font-display);
    font-size: 10px;
    line-height: 1;
    background: transparent;
    cursor: pointer;
  }

  .top-header__toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .top-header__toggle-line,
  .top-header__toggle-line::before,
  .top-header__toggle-line::after {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .top-header__toggle-line {
    position: relative;
  }

  .top-header__toggle-line::before,
  .top-header__toggle-line::after {
    position: absolute;
    left: 0;
  }

  .top-header__toggle-line::before {
    top: -7px;
  }

  .top-header__toggle-line::after {
    top: 7px;
  }

  .top-header__toggle[aria-expanded="true"] .top-header__toggle-line {
    transform: rotate(45deg);
  }

  .top-header__toggle[aria-expanded="true"] .top-header__toggle-line::before {
    opacity: 0;
  }

  .top-header__toggle[aria-expanded="true"] .top-header__toggle-line::after {
    transform: translateY(-7px) rotate(-90deg);
  }

  .top-header__nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    z-index: 121;
    display: none;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0, 79, 128, 0.22);
  }

  .top-header__nav.is-open {
    display: grid;
  }

  .top-header__link {
    min-width: 0;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .top-main {
    padding-top: var(--top-header-height);
  }

  .top-mv {
    height: calc(100svh - var(--top-header-height));
  }

  .top-page--front .top-mv {
    height: 100svh;
    min-height: 560px;
  }

  .top-mv__slide img {
    object-position: center;
  }

  .top-mv__slide--mobile-portrait img {
    object-fit: cover;
    object-position: center;
  }

  .top-mv__slide--mobile-landscape img {
    object-fit: cover;
    object-position: center;
  }

  .top-mv__slide--mobile-pc-fallback {
    background: #e5e7eb;
  }

  .top-mv__slide--mobile-pc-fallback img {
    object-fit: contain;
    object-position: center;
  }

  .top-mv__content {
    bottom: 92px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .top-mv__lead {
    font-size: 30px;
  }

  .top-mv__menu {
    display: none;
  }

  .top-side-menu__panel {
    width: min(375px, 100%);
    padding: 26px 22px 36px;
  }

  .top-side-menu__head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .top-side-menu__logo {
    width: min(204px, 100%);
  }

  .top-side-menu__sns {
    grid-column: 1 / -1;
    order: 2;
    width: 100%;
  }

  .top-side-menu__close {
    grid-column: 2;
  }

  .top-side-menu__entry--mobile {
    display: inline-flex;
    flex: 1 1 auto;
    min-height: 30px;
    margin-left: auto;
    padding: 6px 18px 7px;
    font-size: 13px !important;
  }

  .top-side-menu__actions .top-side-menu__entry {
    display: none;
  }

  .top-side-menu__title {
    font-size: 17px;
  }

  .top-side-menu__nav a,
  .top-side-menu__text {
    font-size: 14px;
  }

  .top-slogan {
    padding: 56px 0 44px;
  }

  .top-slogan__body {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding: 0 0 18px;
  }

  .top-slogan__content {
    order: 1;
  }

  .top-slogan__image {
    order: 2;
    width: min(300px, 78vw);
  }

  .top-slogan__heading {
    font-size: clamp(32px, 11vw, 44px);
  }

  .top-slogan__subcopy {
    font-size: 17px;
  }

  .top-slogan__name {
    display: grid;
    gap: 6px;
  }

  .top-yeg-about__card {
    padding: 34px 22px;
    border-radius: 12px;
  }

  .top-yeg-about__card h3 {
    font-size: 30px;
  }

  .top-yeg-about__label {
    margin-bottom: 26px;
    font-size: 22px;
  }

  .top-yeg-about__text p {
    font-size: 15px;
    line-height: 1.9;
  }

  .top-yeg-way {
    gap: 26px;
    margin-top: 34px;
  }

  .top-yeg-way h3 {
    font-size: 40px;
  }

  .top-yeg-way__item {
    padding-left: 16px;
  }

  .top-yeg-way__item h4 {
    font-size: 26px;
  }

  .top-yeg-vision__cards {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 48px;
    padding: 28px 18px;
  }

  .top-yeg-vision-card {
    min-height: 0;
    padding: 58px 22px 28px;
  }

  .top-yeg-vision-card__number {
    top: -40px;
    font-size: 56px;
  }

  .top-yeg-vision-card h3 {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .top-yeg-vision-card p:not(.top-yeg-vision-card__number) {
    font-size: 15px;
    line-height: 1.9;
  }

  .top-committees {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-committee-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .top-committee-card h3 {
    font-size: 20px;
  }

  .top-feature-slider {
    width: 100%;
  }

  .top-feature-slide,
  .top-feature-slide img {
    min-height: 320px;
  }

  .top-feature-slide__overlay {
    bottom: 24px;
    left: 20px;
    width: min(520px, calc(100% - 40px));
  }

  .top-feature-slide__overlay h2 {
    font-size: 24px;
  }

  .top-feature-slide__overlay p {
    display: none;
  }

  .top-feature-slider__arrow {
    display: none;
  }

  .top-section__inner,
  .top-jobs__list,
  .top-banners,
  .top-links__inner,
  .top-footer__inner {
    width: min(100% - 32px, var(--top-width));
  }

  .top-links {
    padding: 42px 0;
  }

  .top-links__nav {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .top-footer {
    padding: 34px 0;
  }

  .top-footer__menus {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-footer__actions {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .top-footer__sns {
    justify-content: center;
  }

  .top-footer__latest {
    display: none;
    right: 14px;
    bottom: 22px;
    width: 54px;
    min-height: 166px;
  }

  .top-footer__latest--mobile-entry {
    display: inline-flex;
    gap: 0;
    width: 44px;
    min-height: 132px;
    padding: 12px 0;
    overflow: visible;
    transition:
      min-height 0.24s ease,
      padding 0.24s ease,
      border-radius 0.24s ease,
      box-shadow 0.24s ease;
  }

  .top-footer__latest--mobile-entry img {
    display: block;
    width: 0;
    height: 0;
    opacity: 0;
    transform: scale(0.7);
    transition:
      width 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .top-footer__latest--mobile-entry span {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.16s ease,
      transform 0.2s ease;
  }

  .top-footer__latest--mobile-entry.is-collapsed {
    width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(224, 96, 96, 0.22);
  }

  .top-footer__latest--mobile-entry.is-collapsed img {
    width: 24px;
    height: auto;
    opacity: 1;
    transform: scale(1);
  }

  .top-footer__latest--mobile-entry.is-collapsed span {
    position: absolute;
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
  }

  .top-footer__latest-close {
    position: fixed;
    right: 10px;
    bottom: 140px;
    z-index: 131;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    padding: 0;
    border: 2px solid var(--top-red);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(224, 96, 96, 0.18);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease;
  }

  .top-footer__latest-close.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.72);
  }

  .top-footer__latest-close::before,
  .top-footer__latest-close::after {
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--top-red);
    content: "";
  }

  .top-footer__latest-close::before {
    transform: rotate(45deg);
  }

  .top-footer__latest-close::after {
    transform: rotate(-45deg);
  }

  .top-footer__latest span {
    font-size: 12px;
    writing-mode: vertical-rl;
  }

  .top-news__grid,
  .top-sponsor__grid {
    grid-template-columns: 1fr;
  }

  .top-activity-report__feed {
    min-height: 180px;
    max-height: 481px;
    padding: 14px;
  }

  .top-activity-report__feeds {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .top-activity-report__feed-title {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .top-activity-report__feed #sb_instagram {
    max-height: 420px;
    padding-right: 6px !important;
  }

  .top-activity-report__feed--facebook .cff-wrapper {
    max-height: 420px;
    padding-right: 6px !important;
  }

  .top-activity-report__empty {
    min-height: 152px;
  }

  .top-activity-report__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .top-activity-report__link {
    width: 100%;
    min-height: 42px;
  }

  .top-sponsor__item {
    height: 128px;
  }

  .top-section {
    padding: 56px 0;
  }

  .top-news__grid {
    gap: 22px;
  }

  .members-archive {
    padding-top: calc(var(--top-header-height) + 46px);
  }

  .members-filter {
    justify-content: flex-start;
    margin-bottom: 34px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .members-filter__item {
    flex: 0 0 auto;
  }

  .members-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .member-card__body {
    padding: 20px;
  }

  .member-card__name {
    font-size: 22px;
  }

  .member-card__details div {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .news-single {
    padding-top: calc(var(--top-header-height) + 46px);
  }

  .news-single__header {
    gap: 14px;
  }

  .news-single__meta {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 13px;
  }

  .news-single__title {
    font-size: 24px;
    line-height: 1.55;
  }

  .news-single__image {
    margin-top: 32px;
  }

  .news-single__content {
    margin-top: 36px;
    font-size: 15px;
    line-height: 2;
  }

  .news-single__content h2 {
    font-size: 22px;
  }

  .news-single__content h3 {
    font-size: 19px;
  }

  .news-single__post-nav {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 44px;
  }

  .news-single__post-nav-item--next {
    text-align: left;
  }

  .top-business {
    padding-top: 52px;
  }

  .top-business__amount {
    font-size: 38px;
  }

  .top-jobs__list {
    gap: 10px;
  }

  .top-jobs__list a {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .top-banners {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .top-banner {
    min-height: 210px;
    padding: 34px 36px;
  }

  .top-banner::before {
    width: 64%;
    min-width: 220px;
  }

  .top-banner strong {
    font-size: 28px;
  }
}
