/* =============================================
   TOP PAGE STYLES — Figma Accurate
   ============================================= */

/* --- Scroll Fade In --- */
.js-scroll-fade {
  opacity: 0;
  transform: var(--scroll-fade-base, none) translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-scroll-fade.is-visible {
  opacity: 1;
  transform: var(--scroll-fade-base, none) translateY(0);
}
/* タイピング後に連動してフェイドする要素 */
.js-scroll-fade-deferred {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-scroll-fade-deferred.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* スタガー（順番にフェイド）の子要素 */
.js-scroll-stagger > .js-scroll-fade {
  transition-delay: var(--stagger-delay, 0ms);
}
/* タイピング連動グループの子要素 */
.js-type-then-group > .js-scroll-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-type-then-group > .js-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll Typing --- */
.js-scroll-type {
  color: transparent;
}
.js-scroll-type.is-ready {
  color: inherit;
}
.js-scroll-type .top-mv__char {
  opacity: 0;
}
.js-scroll-type .top-mv__char.is-visible {
  opacity: 1;
}

/* --- Empty Message --- */
.top-empty-message {
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-size: 15px;
}

/* --- Reset & Base --- */
.top-page {
  font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic Antique", sans-serif;
  color: #2b2325;
  line-height: 1.75;
  overflow-x: hidden;
}
.top-page *,
.top-page *::before,
.top-page *::after {
  box-sizing: border-box;
}
.top-page h1,
.top-page h2,
.top-page h3,
.top-page h4,
.top-page h5,
.top-page h6,
.top-page p {
  margin: 0;
}
.top-page img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/* Override height:auto for images inside sized containers */
.top-page .top-mv__bg-img,
.top-page .top-service__jinzai-img img,
.top-page .top-service__edu-icon img,
.top-page .top-seminar__card-img img,
.top-page .top-magazine__card-img img {
  height: 100%;
}
.top-page .top-service__center-arrow {
  height: 96px;
}
.top-page a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.top-page a:hover {
  opacity: 0.8;
}

/* --- Common H2 (Horizontal — About / Solution) --- */
.top-section-h2 {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-section-h2__title {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.top-section-h2__en {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3.28px;
  color: #2d82bc;
  margin-bottom: 0;
}
.top-section-h2__ja {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2d82bc;
  letter-spacing: -0.96px;
  margin-bottom: 0;
}
.top-section-h2__bar {
  width: 6px;
  align-self: stretch;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #ffe9dc, #fff7df);
  border-radius: 6px;
}
.top-section-h2__desc {
  flex-shrink: 0;
}
.top-section-h2__desc p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 1.28px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-section-h2__desc-inline {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 1.28px;
  margin-top: 24px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Common Button --- */
.top-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 32px;
  background: linear-gradient(to left, #0a65b2, #009ce6);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 900;
  border-radius: 40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.top-btn-primary:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* =============================================
   MV Section
   ============================================= */
.top-mv {
  position: relative;
  height: 90svh;
  display: flex;
  align-items: flex-end;
  padding: 64px 40px;
  justify-content: center;
}
.top-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.top-mv__bg-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.5s ease;
  will-change: opacity, transform;
}
.top-mv__bg-img[data-active] {
  opacity: 1;
  animation: mvZoom 5s linear forwards;
}
@keyframes mvZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
.top-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.top-mv__inner {
  position: relative;
  z-index: 1;
  width: 1280px;
  max-width: 100%;
}
.top-mv__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-mv__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Blue highlight strips behind copy text */
.top-mv__copy-bg {
  position: absolute;
  background: #2d82bc;
  height: 82px;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.top-mv__copy-bg.is-visible {
  transform: scaleX(1);
}
.top-mv__copy-bg--1 {
  left: -10px;
  top: 8px;
  width: 312px;
}
.top-mv__copy-bg--2 {
  left: 226px;
  top: 98px;
  width: 689px;
}
.top-mv__copy-text {
  position: relative;
  z-index: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 4.32px;
  white-space: nowrap;
}
.top-mv__copy-yellow {
  color: #fcf000;
}
/* タイピングアニメーション */
.top-mv__copy-text,
.top-mv__copy-text .top-mv__copy-yellow {
  color: transparent;
}
.top-mv__copy-text.is-ready {
  color: #fff;
}
.top-mv__copy-text.is-ready .top-mv__copy-yellow {
  color: #fcf000;
}
.top-mv__char {
  opacity: 0;
}
.top-mv__char.is-visible {
  opacity: 1;
}
/* タイピング後にフェイドインする要素 */
.top-mv__sub,
.top-mv__buttons {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.top-mv__sub.is-visible,
.top-mv__buttons.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.top-mv__sub {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.top-mv__sub-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: rgba(45, 130, 188, 0.8);
  background: #fff;
  display: inline;
  padding: 0 10px;
  line-height: 1.75;
  letter-spacing: 0.8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.top-mv__buttons {
  display: flex;
  gap: 16px;
}
.top-mv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.top-mv__btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.top-mv__btn--contact,
.top-mv__btn--contact:link,
.top-mv__btn--contact:visited,
.top-mv__btn--contact:hover,
.top-mv__btn--contact:active {
  background: linear-gradient(to left, #0a65b2, #009ce6);
  color: #fff;
}
.top-mv__btn-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 900;
  background: #fff;
  color: #0a65b2;
}
.top-mv__btn--service,
.top-mv__btn--service:link,
.top-mv__btn--service:visited,
.top-mv__btn--service:hover,
.top-mv__btn--service:active {
  background: #fcf000;
  color: #2d82bc;
}
.top-mv__btn--service svg {
  flex-shrink: 0;
  fill: #2d82bc;
}
.top-mv__br-sp {
  display: none;
}
.top-mv__btn-text-sp {
  display: none;
}

/* =============================================
   Logo Marquee
   ============================================= */
.top-logos {
  padding: 64px 40px;
  background: #fff;
  overflow: hidden;
}
.top-logos__track {
  display: flex;
  width: max-content;
  animation: marquee 120s linear infinite;
  align-items: center;
  gap: 64px;
}
.top-logos__slide {
  display: flex;
  align-items: center;
  gap: 64px;
}
.top-page .top-logos__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   About Us
   ============================================= */
.top-about {
  padding: 64px 16px;
  background: #f8f9fa;
}
.top-about__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.top-about__header {
  margin-bottom: 40px;
}

/* Value Chain Box */
.top-about__valuechain {
  padding-bottom: 64px;
}
.top-about__vc-box {
  background: #fff;
  border-radius: 0 0 120px 0;
  padding: 40px;
  box-shadow: 16px 16px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.top-about__vc-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
/* Decorative bracket arcs */
.top-about__vc-bracket {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
}
.top-about__vc-bracket-img {
  display: block;
  width: 40px;
  height: auto;
}
.top-about__vc-bracket--close {
  transform: scaleX(-1);
}
.top-about__vc-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1.28px;
  line-height: 1.75;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.top-about__vc-content {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.top-about__vc-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.top-about__vc-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.56px;
  line-height: 1.75;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.top-about__vc-arrows {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 16px;
}
.top-about__vc-arrows picture {
  display: block;
  width: 100%;
}
.top-about__vc-arrows-img {
  display: block;
  width: 100%;
  height: auto;
}
.top-about__vc-arrow {
  flex: 1;
  height: 112px;
  position: relative;
  padding: 24px 16px 24px 24px;
  background: linear-gradient(to right, #009ce6, #0a65b2);
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.64px;
  line-height: 1.5;
  white-space: nowrap;
  border-right: 8px solid #fff;
  border-radius: 0 80px 80px 0;
  margin-right: -30px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-about__vc-arrow:nth-child(2) {
  z-index: 3;
  padding-left: 40px;
}
.top-about__vc-arrow:nth-child(3) {
  z-index: 2;
  padding-left: 44px;
}
.top-about__vc-arrow:nth-child(4) {
  z-index: 1;
  padding-left: 44px;
  border-right: none;
  margin-right: 0;
}
/* Support items - styled bars */
.top-about__vc-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 898px;
  max-width: 100%;
}
.top-about__vc-item {
  background: #f0f6fa;
  padding: 10px 40px;
  border-radius: 0 100px 100px 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.72px;
  line-height: 1.75;
  color: #0a65b2;
  position: relative;
}
.top-about__vc-badge {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-about__vc-badge p {
  background: linear-gradient(135deg, #fed761, #fd9050);
  border-radius: 180px;
  width: 240px;
  height: 100%;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1.12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* About Cards */
.top-about__cards {
  display: flex;
  gap: 40px;
  padding: 24px 0;
}
.top-about__card {
  flex: 1;
  background: #fff;
  border-radius: 240px 240px 0 0;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.top-about__card.js-scroll-fade {
  transform: translateY(80px);
}
.top-about__card.js-scroll-fade.is-visible {
  transform: translateY(0);
}
.top-about__card-num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2.56px;
  background: linear-gradient(to left, #fd9050, #fed761);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-about__card-dot {
  display: flex;
  justify-content: center;
}
.top-about__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.8px;
  color: #2d82bc;
}
.top-about__card-img {
  overflow: hidden;
  border-radius: 12px;
}
.top-about__card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.top-about__card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.64px;
  text-align: left;
  color: #2b2325;
}

/* =============================================
   Service Lineup
   ============================================= */
.top-service {
  background: #fff;
  padding-top: 128px;
}
.top-service.js-scroll-fade {
  transform: translateY(80px);
}
.top-service.js-scroll-fade.is-visible {
  transform: translateY(0);
}
.top-service__body {
  position: relative;
  background: #2d82bc;
  border-radius: 200px 0 120px 0;
  padding: 94px 40px 64px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
/* Heading — absolutely positioned white card overlapping top of blue box */
.top-service__heading {
  position: absolute;
  top: -73px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #fff;
  border-top: 2px solid #0a65b2;
  border-radius: 80px 0 80px 0;
  padding: 6px 64px 10px;
  text-align: center;
  white-space: nowrap;
}
.top-service__heading-en {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -3.28px;
  color: #2d82bc;
}
.top-service__heading-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2d82bc;
  letter-spacing: 0.96px;
  line-height: 1.35;
}
.top-service__desc {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.88px;
  line-height: 1.75;
  width: 1280px;
  max-width: 100%;
}
.top-service__grid {
  display: flex;
  align-items: center;
  width: 1280px;
  max-width: 100%;
}
.top-service__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.top-service__col-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fcf000;
  text-align: center;
  letter-spacing: 1.28px;
  line-height: 1.75;
  padding: 4px 16px;
  border-bottom: 4px solid #fcf000;
}

/* 人材ソリューション Grid */
.top-service__jinzai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  height: 588px;
}
.top-service__jinzai-card {
  background: #fff;
  border: 1px solid #0a65b2;
  overflow: hidden;
  color: #2b2325;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.top-service__jinzai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.top-service__jinzai-card--disabled {
  cursor: default;
  pointer-events: none;
}
.top-service__jinzai-img {
  height: 136px;
  overflow: hidden;
  flex-shrink: 0;
}
.top-service__jinzai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-service__jinzai-info {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top-service__jinzai-info:not(:has(.top-service__link-text)) {
  justify-content: flex-start;
}
.top-service__jinzai-cat {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.56px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-service__jinzai-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.88px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* .top-service__jinzai-name + * {
  margin-top: 10px;
} */
.top-service__link-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.48px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-service__arrow {
  font-size: 16px;
}

/* Center Arrows */
.top-service__center {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 260px;
}
.top-service__center-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fcf000;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 1.28px;
}
.top-service__center-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-service__center-arrow {
  width: 96px;
  height: 96px;
  display: block;
}
.top-service__center-arrow--reverse {
  transform: scaleX(-1);
}

/* 教育ソリューション Grid */
.top-service__edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px 24px;
  width: 100%;
  padding: 24px 0;
  height: 588px;
}
.top-service__edu-card {
  background: #fff;
  border: 1px solid #0a65b2;
  color: #2b2325;
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.top-service__edu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.top-service__edu-card--disabled {
  cursor: default;
  pointer-events: none;
}
.top-service__edu-icon {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6f8;
  position: relative;
  overflow: hidden;
}
.top-service__edu-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-service__edu-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: linear-gradient(to right, #ffe9dc, #fff7df);
  color: #2d82bc;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.top-service__edu-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  padding: 8px 0;
}
.top-service__edu-cat {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  line-height: normal;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-service__edu-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.72px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-service__edu-name.top-service__edu-name--japany {
  font-size: 14px;
}

/* =============================================
   Solution
   ============================================= */
.top-solution {
  padding: 104px 16px;
  background: #fff;
}
.top-solution__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.top-solution__header {
  margin-bottom: 48px;
}
.top-solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.top-solution__card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: #f0f6fa;
  border: 1px solid #0a65b2;
  cursor: pointer;
  color: #2d82bc;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.96px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s,
    color 0.3s;
}
.top-solution__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 101, 178, 0.15);
  background: #0a65b2;
  color: #fff;
}

/* =============================================
   Seminar
   ============================================= */
.top-seminar {
  padding: 64px 16px;
  background: #2d82bc;
  color: #2b2325;
}
.top-seminar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  background: #fff;
  padding: 24px 16px;
}
.top-seminar__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.top-seminar__h2-main {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 1.28px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-seminar__h2-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-seminar__h2-line {
  display: block;
  width: 18px;
  height: 2px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
}
.top-seminar__h2-sub span:last-child {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.64px;
  color: #0a65b2;
}
.top-seminar__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.64px;
  text-align: center;
}
.top-seminar__content {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  text-align: left;
}
.top-seminar__latest {
  background: #f0f6fa;
  padding: 16px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.top-seminar__latest .top-seminar__card {
  width: 330px;
  flex: 1;
}
.top-seminar__popular {
  flex: 1;
  min-width: 0;
  padding: 16px;
}
.top-seminar__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.top-seminar__label-bar {
  display: block;
  width: 2px;
  height: 24px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
}
.top-seminar__label span:last-child {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.72px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-seminar__card {
  display: flex;
  flex-direction: column;
  background: #f3f6f8;
  overflow: hidden;
  color: #2b2325;
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.top-seminar__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.top-seminar__card-img {
  width: 100%;
  aspect-ratio: 330 / 186;
  overflow: hidden;
  flex-shrink: 0;
}
.top-seminar__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-seminar__card-body {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  border-radius: 6px;
}
.top-seminar__card-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.64px;
  color: #004ea2;
}
.top-seminar__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.72px;
  color: #2b2325;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.top-seminar__card-archive {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.56px;
  color: #2b2325;
}
.top-seminar__card-status {
  position: absolute;
  top: -2px;
  right: 0;
  background: #53c3f2;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.64px;
  padding: 10px;
  border-radius: 0 0 0 0;
  border-top-right-radius: 6px;
}
.top-seminar__card-status--open {
  background: #53c3f2;
}
.top-seminar__card-status--closed {
  background: #666666;
}
.top-seminar__popular-list {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
}
.top-seminar__popular-list .top-seminar__card {
  width: 330px;
  flex-shrink: 0;
}
.top-seminar .top-btn-primary,
.top-magazine .top-btn-primary,
.top-news .top-btn-primary {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0;
  color: #fff;
}

/* =============================================
   Magazine
   ============================================= */
.top-magazine {
  padding: 64px 16px;
  background: #fff;
}
.top-magazine__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.top-magazine__h2 {
  margin-bottom: 40px;
}
.top-magazine__h2-main {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 1.28px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-magazine__h2-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}
.top-magazine__h2-line {
  display: block;
  width: 18px;
  height: 2px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
}
.top-magazine__h2-sub span:last-child {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #0a65b2;
  letter-spacing: 0.64px;
}
.top-magazine__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}
.top-magazine__card {
  display: block;
  width: 400px;
  background: #f3f6f8;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.top-magazine__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.top-magazine__card-img {
  aspect-ratio: 400 / 225;
  overflow: hidden;
  background: #c4c4c4;
}
.top-magazine__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-magazine__card-noimg {
  width: 100%;
  height: 100%;
  background: #c4c4c4;
}
.top-magazine__card-body {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-magazine__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-magazine__card-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: linear-gradient(to left, #8ecbff, #67c2ee);
  border-radius: 6px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
}
.top-magazine__card-date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #004ea2;
  letter-spacing: 0.64px;
}
.top-magazine__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.72px;
  color: #2b2325;
}

/* =============================================
   News
   ============================================= */
.top-news {
  padding: 64px 16px;
  background: #f0f6fa;
}
.top-news__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.top-news__box {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-news__h2 {
  margin-bottom: 32px;
  text-align: center;
}
.top-news__h2-main {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 1.28px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-news__h2-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}
.top-news__h2-line {
  display: block;
  width: 18px;
  height: 2px;
  background: linear-gradient(to left, #009ce6, #0a65b2);
}
.top-news__h2-sub span:last-child {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #0a65b2;
  letter-spacing: 0.64px;
}
.top-news__list {
  width: 1060px;
  max-width: 100%;
  margin-bottom: 40px;
}
.top-news__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  border-bottom: 1px solid #f0f6fa;
  transition: background 0.3s;
}
.top-news__item:hover {
  background: #f8fbfd;
  opacity: 1;
}
.top-news__item-date {
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2b2325;
  letter-spacing: 0.64px;
  line-height: 1.75;
}
.top-news__item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.top-news__item-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #fd9050;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.64px;
  width: fit-content;
}
.top-news__item-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.64px;
  color: #2b2325;
}

/* =============================================
   Modals
   ============================================= */
.top-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.top-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.top-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.top-modal__content {
  position: relative;
  width: 90%;
  max-width: 1024px;
  max-height: 80vh;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic Antique", sans-serif;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.top-modal.is-open .top-modal__content {
  transform: translateY(0);
}
.top-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #f0f6fa;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: #2b2325;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-modal__close:hover {
  background: #e0ebf2;
}
.top-modal__title {
  font-size: 28px;
  font-weight: 700;
  color: #2d82bc;
  margin-bottom: 32px;
  padding: 0 48px;
  text-align: center;
}
.top-modal__body {
  font-size: 15px;
  line-height: 1.8;
}
.top-modal__section {
  margin-bottom: 32px;
}
.top-modal__section:last-child {
  margin-bottom: 0;
}
.top-modal__section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2d82bc;
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 4px solid #2d82bc;
}
.top-modal__section p {
  color: #444;
  margin: 0;
}
.top-modal__photos {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.top-modal__photos img {
  border-radius: 8px;
  width: calc(50% - 8px);
  height: auto;
  object-fit: cover;
}
.top-modal__section--flow {
  background: #f0f6fa;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.top-modal__flow {
  display: flex;
  align-items: stretch;
  background: linear-gradient(to left, #0a65b2, #009ce6);
  border-radius: 12px;
  padding: 24px;
  gap: 4px;
  width: 100%;
}
.top-modal__flow-step {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-modal__section .top-modal__flow-step-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #0a65b2;
  text-align: center;
  line-height: 1.75;
}
.top-modal__flow-step-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.48px;
  color: #2b2325;
}
.top-modal__flow-step-text small {
  font-size: 10px;
  letter-spacing: 0.4px;
}
.top-modal__flow-arrow {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-modal__flow-arrow::after {
  content: "";
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #fff;
}
.top-modal__flow-down-arrow {
  width: 42px;
  height: 24px;
  position: relative;
}
.top-modal__flow-down-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 24px solid #2d82bc;
}
.top-modal__flow-result {
  background: linear-gradient(to left, #009ce6, #0a65b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.96px;
  text-align: center;
}

/* =============================================
   SP Responsive (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  .top-section-h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .top-section-h2__title {
    gap: 0;
  }
  .top-section-h2__en {
    font-size: 82px;
    line-height: 1.1;
    letter-spacing: -3.28px;
  }
  .top-section-h2__ja {
    font-size: 24px;
    letter-spacing: -0.96px;
  }
  .top-section-h2__bar {
    width: 180px;
    height: 4px;
    align-self: auto;
  }
  .top-section-h2__desc p {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .top-section-h2__desc-inline {
    font-size: 16px;
  }

  .top-mv {
    height: auto;
    min-height: 80svh;
    padding: 40px 16px;
    align-items: flex-end;
  }
  .top-mv__content {
    gap: 32px;
  }
  .top-mv__copy-text {
    font-size: 26px;
    letter-spacing: 0.04em;
    line-height: 1.45;
    white-space: normal;
    text-align: center;
    width: 100%;
  }
  .top-mv__br-pc {
    display: none;
  }
  .top-mv__br-sp {
    display: block;
  }
  .top-mv__copy-bg {
    height: 38px;
    left: 50%;
    transform-origin: center;
  }
  .top-mv__copy-bg--1 {
    /* 「戦略的な」の背景 — 1行目 */
    width: 112px;
    top: 0;
    transform: translateX(-52%) scaleX(0);
  }
  .top-mv__copy-bg--1.is-visible {
    transform: translateX(-52%) scaleX(1);
  }
  .top-mv__copy-bg--2 {
    /* 「人材不足を解決」の背景 — 3行目 */
    width: 244px;
    top: 76px;
    transform: translateX(-34%) scaleX(0);
  }
  .top-mv__copy-bg--2.is-visible {
    transform: translateX(-34%) scaleX(1);
  }
  .top-mv__sub {
    margin-bottom: 0;
  }
  .top-mv__sub-text {
    font-size: 14px;
    letter-spacing: 0.56px;
    text-align: center;
    display: block;
    padding: 0 10px;
  }
  .top-mv__buttons {
    flex-direction: row;
    gap: 4px;
  }
  .top-mv__btn {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    padding: 10px;
    flex-direction: column;
    gap: 0;
    line-height: 28px;
  }
  .top-mv__btn-badge {
    font-size: 12px;
    padding: 4px 10px;
    height: 24px;
  }
  .top-mv__btn-text-pc {
    display: none;
  }
  .top-mv__btn-text-sp {
    display: inline;
  }

  .top-logos {
    padding: 20px 0;
  }
  .top-logos__track {
    gap: 40px;
  }
  .top-logos__slide {
    gap: 40px;
  }
  .top-page .top-logos__img {
    max-height: 40px;
    max-width: 100px;
  }

  .top-about {
    padding: 64px 16px;
    background: #f8f9fa;
  }
  .top-about__vc-box {
    padding: 24px 10px 64px;
    border-radius: 0 0 60px 0;
    box-shadow: 16px 16px 6px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
  }
  .top-about__vc-title {
    font-size: 20px;
    letter-spacing: 0.8px;
    line-height: 1.35;
  }
  .top-about__vc-bracket-img {
    width: 40px;
    height: 40px;
  }
  .top-about__vc-content {
    flex-direction: column;
    gap: 24px;
  }
  .top-about__vc-arrows {
    flex-direction: row;
    width: 100%;
  }
  .top-about__vc-items {
    width: 100%;
  }
  .top-about__vc-item {
    font-size: 14px;
    padding: 10px;
    border-radius: 0 100px 100px 0;
  }
  .top-about__vc-badge {
    width: 100%;
    border-radius: 200px;
  }
  .top-about__vc-badge p {
    font-size: 24px;
    padding: 10px;
    letter-spacing: 0.96px;
    width: 100%;
  }
  .top-about__vc-badge-br {
    display: none;
  }
  .top-about__cards {
    flex-direction: column;
    gap: 40px;
    padding-top: 24px;
  }
  .top-about__card {
    border-radius: 240px 240px 0 0;
    padding: 40px 16px;
  }
  .top-about__card-num {
    font-size: 64px;
    letter-spacing: 2.56px;
  }
  .top-about__card-title {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
  .top-about__card-text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  .top-service {
    padding-top: 104px;
  }
  .top-service__heading {
    position: relative;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 80px 0 80px 0;
    padding: 6px 10px 10px 10px;
    margin: 0 auto 0;
    width: calc(100% + 32px);
    white-space: normal;
  }
  .top-service__heading-en {
    font-size: 82px;
    letter-spacing: -3.28px;
    line-height: 0.8;
    margin-bottom: 10px !important;
  }
  .top-service__heading-ja {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .top-service__body {
    border-radius: 60px 0 40px 0;
    padding: 24px 16px 32px;
    gap: 16px;
  }
  .top-service__desc {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
  .top-service__grid {
    flex-direction: column;
    gap: 24px;
  }
  .top-service__col {
    align-items: stretch;
    width: 100%;
  }
  .top-service__col-title {
    font-size: 32px;
  }
  .top-service__jinzai-grid {
    grid-template-rows: auto;
    height: auto;
    gap: 24px;
    padding: 12px 0;
  }
  .top-service__jinzai-card {
    height: auto;
  }
  .top-service__jinzai-img {
    height: 90px;
  }
  .top-service__jinzai-info {
    flex: 0 0 auto;
    padding: 12px 10px;
  }
  .top-service__jinzai-name {
    font-size: 16px;
  }
  .top-service__center {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
  }
  .top-service__center-text {
    font-size: 18px;
  }
  .top-service__center-arrows {
    flex-direction: row;
  }
  .top-page .top-service__center-arrow {
    width: 48px;
    height: 48px;
    transform: rotate(90deg);
  }
  .top-page .top-service__center-arrow--reverse {
    transform: rotate(-90deg);
  }
  .top-service__edu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    height: auto;
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 12px 0;
  }
  .top-service__edu-card {
    flex-direction: column;
    min-height: 150px;
    gap: 0;
  }
  .top-service__edu-icon {
    width: 100%;
    height: 72px;
  }
  .top-service__edu-info {
    width: 100%;
    padding: 4px 10px;
    text-align: center;
    align-items: center;
  }
  .top-service__edu-name {
    font-size: 15px;
  }
  .top-service__edu-cat {
    font-size: 12px;
  }
  .top-service__edu-name-japany-main {
    font-size: 10px;
    white-space: nowrap;
  }
  .top-service__edu-name-japany-break {
    display: none;
  }
  .top-service__edu-name-japany-brand {
    font-size: 16px;
    line-height: 1.2;
  }

  .top-solution {
    padding: 40px 16px;
  }
  .top-solution__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .top-solution__card {
    height: 120px;
    font-size: 18px;
  }

  .top-seminar {
    padding: 40px 16px;
  }
  .top-seminar__h2-main {
    font-size: 24px;
  }
  .top-seminar__content {
    flex-direction: column;
    gap: 24px;
  }
  .top-seminar__latest {
    width: 100%;
  }
  .top-seminar__latest .top-seminar__card {
    width: 100%;
  }
  .top-seminar__popular {
    width: 100%;
    padding: 0;
  }
  .top-seminar__popular-list {
    flex-direction: column;
    gap: 16px;
  }
  .top-seminar__popular-list .top-seminar__card {
    width: 100%;
  }
  .top-seminar__card-meta {
    font-size: 14px;
  }
  .top-seminar__card-title {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .top-seminar__card-status {
    font-size: 14px;
    padding: 6px 8px;
  }

  .top-magazine {
    padding: 40px 16px;
  }
  .top-magazine__h2-main {
    font-size: 24px;
  }
  .top-magazine__list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .top-magazine__card {
    width: 100%;
    max-width: 400px;
  }

  .top-news {
    padding: 40px 16px;
  }
  .top-news__box {
    padding: 24px 16px;
  }
  .top-news__h2-main {
    font-size: 24px;
  }
  .top-news__list {
    width: 100%;
  }
  .top-news__item {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }

  .top-modal__content {
    width: 95%;
    padding: 32px 20px;
    max-height: 85vh;
  }
  .top-modal__title {
    font-size: 22px;
  }
  .top-modal__section h3 {
    font-size: 16px;
  }
  .top-modal__section--flow {
    padding: 16px;
  }
  .top-modal__flow {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }
  .top-modal__flow-arrow {
    width: auto;
    height: 24px;
  }
  .top-modal__flow-arrow::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #fff;
    border-bottom: none;
  }
}
