/* ===== Foundation ===== */
:root {
  --accent: #2e59a8;
  --dark: #2d2d2d;
  --brand-blue: #30509e;
  --brand-blue-deep: #243b74;
  --surface-blue: #e8eff6;
  --accent-yellow: #fff762;
  --radius-sm: 2px;
  --radius-md: 3px;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.4;
  --lh-compact: 1.3;
  --pc-base-width: 1360;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  font-feature-settings: "palt";
}

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

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

.pc-scale-shell,
.pc-scale-root {
  width: 100%;
}

.container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

/* ===== Header / Global Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
}

.logo-link {
  position: relative;
  z-index: 40;
  width: 100px;
  flex-shrink: 0;
}

.global-nav {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--brand-blue);
  color: #fff;
  padding: 150px 20px 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-size: 14px;
  font-weight: var(--fw-bold);
  overflow: hidden;
}

.global-nav > * {
  position: relative;
  z-index: 2;
}

.global-nav.is-open {
  display: flex;
}

.global-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 1;
}

.global-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.global-nav-links a {
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
  color: #fff;
}

.global-nav-cta {
  margin-top: 42px;
  width: min(100%, 280px);
  height: 54px;
  border-radius: 4px;
  background: var(--accent-yellow);
  color: #2d2d2d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
}

.global-nav-cta::after {
  content: "";
  width: 7.71px;
  height: 7.71px;
  display: inline-block;
  margin-left: 6px;
  border-top: 1.5px solid #2d2d2d;
  border-right: 1.5px solid #2d2d2d;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.global-nav-bg {
  position: absolute;
  left: -6px;
  bottom: 30px;
  margin: 0;
  color: #5973b1;
  font-family: "Inter", sans-serif;
  font-size: 53px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  pointer-events: none;
  z-index: 0
}

.header-cta {
  display: none;
  margin-left: auto;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 40;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  display: grid;
  align-content: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #2d2d2d;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

body.nav-open {
  overflow: hidden;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  padding: 0;
}

.hero .container {
  width: min(100%, 1240px);
}

.hero-main {
  margin: 0;
  font-size: 55px;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  font-weight: var(--fw-extrabold);
  font-family: "Noto Sans JP", sans-serif;
  color: #1f4493;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.hero-line {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 55px;
}

.hero-line-top > span {
  font-family: "Inter", sans-serif;
  font-size: 65px;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
}

.hero-line-bottom {
  margin-top: -22px;
}

.hero-sub {
  margin-top: 0;
  font-size: 24px;
  font-weight: var(--fw-extrabold);
  display: inline-block;
}

.hero-media {
  position: relative;
  height: 519px;
  padding-top: 8px;
}

.hero-photo {
  border-radius: var(--radius-md);
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo--a {
  left: 10px;
  top: 20px;
  width: 166px;
  height: 110px;
}

.hero-photo--b {
  right: 10px;
  top: 20px;
  width: 181px;
  height: 110px;
}

.hero-photo--c {
  left: 46px;
  top: 138px;
  width: 100px;
  height: 123px;
  object-position: center 30%;
}

.hero-photo--d {
  right: 0;
  top: 138px;
  width: 220px;
  height: 163px;
}

.hero-photo--e {
  right: 9px;
  top: 309px;
  width: 130px;
  height: 90px;
}

.hero-copy {
  position: absolute;
  left: 20px;
  top: 338px;
  z-index: 2;
}

.hero-badges {
  position: absolute;
  left: 20px;
  top: 248px;
  z-index: 3;
  width: 185px;
  height: 90px;
}

.hero-badge {
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 50% 50%, #3B65CB 0%, var(--brand-blue-deep) 100%);
  border: none;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
}

.hero-badge:first-child {
  left: 0;
  top: 0;
}

.hero-badge:last-child {
  left: 95px;
  top: 0;
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 0.55px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  pointer-events: none;
}

.hero-badge--industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero-badge--industry p {
  margin: 0;
}

.hero-badge--industry .industry-top {
  font-size: 17px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 10px;
}

.hero-badge--industry .industry-bottom {
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-top: 1px;
}

.hero-badge--hire {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}

.hero-badge--hire p {
  margin: 0;
}

.hero-badge--hire .hire-top {
  font-size: 12px;
  font-weight: var(--fw-bold);
  line-height: 1;

}

.hero-badge--hire .hire-middle {
  display: flex;
  align-items: flex-end;
  justify-content: center;

}

.hero-badge--hire .hire-num {
  font-size: 27px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 3px;
}

.hero-badge--hire .hire-unit {
  font-size: 9px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  text-align: left;
  margin-left: 2px;
  margin-bottom: 1px;
}

.hero-badge--hire .hire-bottom {
  font-size: 15px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.hero-tags {
  margin: 20px 20px 0;
  height: 42px;
  background: #d9d9d9;
  border-radius: 10px;
  overflow: hidden;

}

.track {
  display: flex;
  width: max-content;
  padding: 9px 0;
  font-size: 14px;
  font-weight: var(--fw-bold);
  font-family: "Line Seed JP", "Noto Sans JP", sans-serif;
  letter-spacing: 0.01em;
  line-height: var(--lh-tight);
  white-space: nowrap;
  animation: track-scroll 26s linear infinite;
}

.track-row {
  display: flex;
  gap: 16px;
  padding: 0 10px;
}

.tag-hash {
  color: var(--brand-blue-deep);
}

@keyframes track-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Accessibility: Motion Preferences ===== */
@media (prefers-reduced-motion: reduce) {
  .track {
    animation: none;
  }
}

/* ===== Common Section Titles ===== */
.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 3px;
  background: var(--brand-blue);
}

h2 {
  margin: 20px 0 0;
  font-size: 45px;
  line-height: var(--lh-tight);
  color: var(--brand-blue);
}

.interview h2,
.evaluation h2,
.talk h2 {
  color: #fff;
}

/* ===== Message ===== */
.message {
  margin-top: 57px;
  padding-bottom: 0;
}

.message-intro {
  position: relative;
  padding-bottom: 120px;
  display: grid;
  gap: 24px;
}

.message-intro > :not(.message-intro-bg) {
  position: relative;
  z-index: 1;
}

.message-intro-bg {
  position: absolute;
  left: -24px;
  bottom: 18px;
  margin: 0;
  color: #eaf4ff;
  font-family: "Inter", sans-serif;
  font-size: 53px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  pointer-events: none;
  z-index: 0;
}

.message h2 {
  margin-bottom: 0;
  line-height: 1.25;
  font-size: 45px;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
}

.message h2 .message-heading-main {
  display: inline-block;
  margin-bottom: -4px;
  padding-bottom: 0;
  border-bottom: 4px solid var(--brand-blue);
  color: var(--brand-blue);
  line-height: 1.2;
}

.message h2 .message-heading-sub {
  display: block;
  margin-top: 14px;
  font-size: 30px;
  font-weight: var(--fw-extrabold);
  color: #2d2d2d;
  letter-spacing: 0;
}

.message h2 .message-heading-sub .message-highlight {
  position: relative;
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.6em;
  color: #2d2d2d;
}

.message h2 .message-heading-sub .message-highlight::before,
.message h2 .message-heading-sub .message-highlight::after {
  position: absolute;
  left: 0;
  font-size: 0.8em;
  line-height: 1;
  color: var(--brand-blue-deep);
  white-space: nowrap;
}

.message h2 .message-heading-sub .message-highlight::before {
  content: "“";
  left: 0;
  top: 0;
}

.message h2 .message-heading-sub .message-highlight::after {
  content: "”";
  right: 0;
  left: 4em;
  bottom: -0.5em;
}

.message-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: var(--fw-bold);
  color: #2d2d2d;
}

.section-blue {
  margin-top: 36px;
  padding: 60px 0 60px;
  position: relative;
  z-index: 0;
}

.section-blue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100vw / var(--pc-scale, 1));
  height: 100%;
  background: var(--brand-blue);
  z-index: -1;
}

.member-grid-top {

  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.member-grid-top article {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.member-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 15px 0 0;
  padding: 4px 10px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: var(--lh-tight);
}

.member-grid-top h3 {
  margin: 0;
  padding: 5px 0 0;
  font-size: 22px;
  font-weight: var(--fw-extrabold);
  line-height: 1.5;
  color: #fff;
}

.member-meta {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: #fff;
}

.message-title {
  margin: 0;
  grid-column: 1 / -1;
  padding: 0 0 4px;
  font-size: 30px;
  font-weight: var(--fw-extrabold);
  text-align: center;
  color: #fff;
  line-height: 1.1;
  position: relative;
}

.message-title::before,
.message-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 23px;
  height: 84px;
}

.message-title::before {
  left: 10px;
  border-left: 0.65px dashed #fff;
  transform: translateY(-50%) rotate(-15deg);
}

.message-title::after {
  right: 10px;
  border-right: 0.65px dashed #fff;
  transform: translateY(-50%) rotate(15deg);
}

.message-title strong {
  font-size: 45px;
  color: var(--accent-yellow);
  margin-left: 3px;
}

.message-title .message-title-medium {
  font-size: 36px;
  margin-left: 2.5px;
  letter-spacing: 0.03em;
}

.message-title p {
  margin-top: -2px;
  margin-bottom: 0;
}


/* ===== Shared Section Containers ===== */
.jobs,
.step,
.benefits {
  padding: 56px 0;
}

.evaluation-lead {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  line-height: 1.5;
}

/* ===== Jobs ===== */
.jobs {
  position: relative;
  z-index: 0;
  background: var(--surface-blue);
}

.jobs::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100vw / var(--pc-scale, 1));
  height: 100%;
  background: var(--surface-blue);
  z-index: -1;
}

.benefits {
  position: relative;
  z-index: 0;
  background: var(--surface-blue);
}

.benefits::before,
.interview::before,
.evaluation::before,
.talk::before,
.talk-closing-section::before,
.reserve-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100vw / var(--pc-scale, 1));
  height: 100%;
  z-index: -1;
}

.benefits::before,
.evaluation::before,
.talk::before {
  background: var(--surface-blue);
}

.interview::before,
.talk-closing-section::before {
  background: var(--brand-blue);
}

.reserve-section::before {
  background: #E8EFF6;
}

.jobs h2,
.step h2,
.benefits h2 {
  margin-top: 10px;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}

.jobs-prefix,
.step-prefix {
  color: #2d2d2d;
}

.jobs .lead {
  margin-top: 10px;
  font-size: 15px;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0;
}

.jobs-heading-row {
  display: grid;
}

.jobs-grid {
  margin-top: 5px;
  display: grid;
  gap: 10px;
}

.job-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 15px 5px 5px;
}

.job-card h3 {
  margin: 0 15px 0;
  font-size: 24px;
  color: #2d2d2d;
}

.job-card h3 span {
  font-family: "Inter", sans-serif;
  margin-right: 8px;
  font-size: 23px;
  color: var(--brand-blue);
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}

.job-card p {
  margin: 4px 15px 0 58px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-compact);
}

.job-shots {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.step-image {
  margin-top: 4px;
  border-radius: var(--radius-sm);
}

.benefits-main-wrap {
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  height: 200px;
}

.benefits-main-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.benefits-main {
  margin-top: 0;
  border-radius: 0;
  border: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== Step ===== */
.step-main {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.step-timeline {
  position: relative;
  padding: 0 53px 10px 6px;
}

.step-timeline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.step-timeline-list li {
  min-height: 45px;
  border-radius: 1.7px;
  background: var(--surface-blue);
  display: grid;
  align-items: center;
  grid-template-columns: 90px minmax(0, 1fr);
}

.step-timeline-list li:last-child {
  width: calc(100% + 59px);
  margin-left: -6px;
  padding-left: 6px;
  height: 43px;
  min-height: 43px;
  background: #396AE6;
}

.step-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 21px;
  margin-left: 12px;
  border-radius: 1px;
  background: #fff;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: 0;
}

.step-timeline-list p {
  margin: 0 0 0 -10px;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.step-timeline-list li:last-child p {
  color: #fff;
}

.step-badge {
  position: absolute;
  top: 35px;
  right: -2px;
  width: 90px;
  height: 90px;
  margin: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #3B65CB 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.13;
  text-align: center;
  display: grid;
  place-content: center;
  z-index: 1;
}

.step-badge::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 0.5px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.step-day {
  margin: 24px -20px 0;
  padding: 20px 20px 8px;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step-day-title {
  margin: 0;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  border-right: 1px solid #d1d1d1;
  margin-top:  -10px;
  margin-right: 20px;
  padding: 28px 15px 1170px;
}

.step-day-num {
  display: inline-block;
  text-combine-upright: all;
  transform: translateX(0px);
}

.step-day-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-blue);
  transform: translate(50%, 0);
}

.step-day-grid {
  margin-top: 0;
  display: grid;
  gap: 15px;
}

.step-day-card {
  display: grid;
  gap: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.step-day-card:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.step-day-card img {
  aspect-ratio: 346 / 219;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.step-day-card p {
  margin: 0;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: 0;
}

.step-day-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-day-btn {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid var(--brand-blue-deep);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.step-day-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 9px;
  height: 1px;
  background: var(--brand-blue-deep);
  transform: translateY(-50%);
}

.step-day-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14.48px;
  width: 4.95px;
  height: 4.95px;
  border-top: 1px solid var(--brand-blue-deep);
  border-right: 1px solid var(--brand-blue-deep);
  transform: translateY(-50%) rotate(45deg);
}

/* ===== Benefits ===== */
.benefit-icons {
  margin-top: 15px;
  display: grid;
  gap: 0;
  border-top: 1.5px solid var(--brand-blue);
}

.benefit-icons article {
  padding: 14px 0;
  border-bottom: 1.5px solid var(--brand-blue);
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  margin-top: 1px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-icons img {
  width: 14px;
  height: 14px;
}

.benefit-icons h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  color: var(--brand-blue);
}

.benefit-icons p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.benefit-icons p small {
  font-size: 10px;
}

/* ===== Interview / Evaluation / Talk (Shared Spacing) ===== */
.interview,
.evaluation,
.talk {
  padding: 56px 0;
  background: var(--surface-blue);
  color: #fff;
}

.interview {
  position: relative;
  z-index: 0;
  background: var(--brand-blue);
  padding-bottom: 100px;
  margin-bottom: 0;
}

.interview > .container {
  position: relative;
  z-index: 1;
}

.interview h2 {
  margin-top: 21px;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.interview h2 span {
  color: var(--accent-yellow);
}

.interview .interview-eyebrow {
  display: block;
  margin: 0 auto;
  font-size: 23px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.interview .interview-eyebrow::before {
  display: none;
}

.interview .interview-eyebrow::after {
  content: "";
  display: block;
  width: 208px;
  height: 2px;
  margin: 3px auto 0;
  background: #fff;
}

.interview-swiper-wrap {
  margin: 30px -20px 0;
  position: relative;
}

.interview-swiper {
  margin: 0 auto;
  overflow: hidden;
}

.interview-swiper .swiper-wrapper {
  align-items: stretch;
}

.interview-swiper .swiper-slide {
  width: 220px;
  height: auto;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.interview-swiper-prev, .interview-swiper-next{
  border: none;
}

.interview-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Instagram埋め込み（blockquote / 置換後のiframe）をスライド幅に合わせる */
.interview-swiper .swiper-slide .instagram-media,
.interview-swiper .swiper-slide iframe.instagram-media,
.interview-swiper .swiper-slide iframe.instagram-media-rendered {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.interview-swiper-controls {
  margin-top: 24px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
}

.interview-swiper-pagination {
  position: static !important;
  width: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.interview-swiper-line {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #efefef;
}

.interview-swiper-line.is-active {
  background: var(--accent-yellow);
}

.interview-swiper-nav {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.interview-swiper-prev,
.interview-swiper-next {
  width: 42px;
  height: 42px;
  background: #EFEFEF;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.interview-swiper-prev::before,
.interview-swiper-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2d2d2d;
  border-right: 2px solid #2d2d2d;
}

.interview-swiper-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.interview-swiper-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.interview-bg {
  position: absolute;
  bottom: -165px;
  left: -25px;
  font-family: "Inter", sans-serif;
  font-size: 82px;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  pointer-events: none;
  z-index: 0;
}

/* ===== Evaluation ===== */
.evaluation {
  position: relative;
  z-index: 0;
  background: var(--surface-blue);
  color: #2d2d2d;
  padding-top: 48px;
  padding-bottom: 0px;
}

.evaluation h2 {
  color: var(--brand-blue);
  font-size: 40px;
  letter-spacing: -0.03em;
  margin-top: 15px;
}

.evaluation-lead-main {
  margin-top: 20px;
  font-size: 23px;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-compact);
}

.evaluation-chart {
  margin-top: 24px;
  padding: 20px 18px 15px;
  background: #fff;
  border-radius: var(--radius-sm);
}

.evaluation-chart-title {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: 17px;
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.evaluation-chart-bars {
  margin-top: -20px;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 1px;
  border-bottom: 1px solid #b7b7b7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.evaluation-stage {
  text-align: center;
}

.evaluation-stage-bar {
  position: relative;
  height: var(--bar-h-sp);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--surface-blue);
}

.evaluation-stage-bar img {
  height: var(--icon-h-sp);
  width: auto;
  margin: 0 0 var(--icon-mb-sp);
}

.evaluation-stage-income {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: 0;
  color: var(--brand-blue-deep);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  font-size: 10px;
  letter-spacing: -0.02em;
}

.evaluation-stage-income span {
  display: block;
  font-size: 8px;
}

.evaluation-chart-roles {
  margin-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.evaluation-chart-roles p {
  margin: 0;
  text-align: center;
  color: #2d2d2d;
  font-size: 9px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-compact);
}

.salary-block {
  margin-top: 45px;
}

.salary-heading h3 {
  margin: 15px 0 0;
  color: var(--brand-blue);
  font-size: 40px;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
}

.salary-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  border-top: 1px solid #9badcf;
  border-bottom: 1px solid #9badcf;
}

.salary-table th,
.salary-table td {
  border-top: 1px solid #A4B2C1;
  padding: 14px 0;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-compact);
  text-align: left;
}

.salary-table th {
  width: 34%;
  color: #2d2d2d;
}

/* ===== Talk ===== */
.talk {
  position: relative;
  z-index: 0;
  padding-top: 40px;
}

.talk-inner {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
}

.talk-side {
  position: relative;
  writing-mode: vertical-rl;
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: #fff;
  background: var(--brand-blue);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  line-height: 1;

  padding: 40px 10px 0;
}

.talk-side-dot {
  position: absolute;
  top: 20px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.talk-main {
  display: grid;
  gap: 25px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 0 30px;
}

.talk-card {
  border-top: 1px solid #d1d1d1;
  padding: 18px 20px 0;
  margin-left: 0;
  margin-right: 0;
}

.talk-card-lead {
  border-top: 0;
  padding-top: 0;
}

.talk-card-lead img {
  display: block;
  width: 257px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.talk-card-lead h2 {
  margin-top: 16px;
  font-weight: var(--fw-extrabold);
  font-size: 30px;
  line-height: var(--lh-compact);
  letter-spacing: -0.03em;
  color: var(--brand-blue);
}

.talk-card p,
.talk-card li {
  margin: 0;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 1.58;
  color: #2d2d2d;
}

.talk-card li {
  font-weight: var(--fw-extrabold);
}

.talk-card-lead p {
  margin-top: 10px;
}

.talk-card h3 {
  margin: 7px 0 0;
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-compact);
  letter-spacing: -0.03em;
  color: var(--brand-blue);
}

.talk-card-note p {
  margin-top: 10px;
}

.talk-card-note strong {
  color: var(--brand-blue-deep);
  font-weight: var(--fw-bold);
}

.talk-card-faq ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}

.talk-card-faq li {
  padding-left: 19px;
  position: relative;
}

.talk-card-faq li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-extrabold);
  line-height: 1;
}

.talk-card-faq p {
  margin-top: 10px;
}

.talk-closing-section {
  position: relative;
  z-index: 0;
  background: var(--brand-blue);
  color: #fff;
  padding: 60px 0 0;
}

.talk-closing-inner {
  padding-top: 0;
}

.talk-closing {
  padding-top: 0;
}

.talk-closing h3 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-compact);
  text-align: center;
}

.talk-closing p {
  margin: 15px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 1.58;
  text-align: center;
}

.talk-media {
  margin: 0;
  height: 289px;
  position: relative;
  z-index: 0;
}

.talk-media img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.talk-media-img--a {
  top: 20px;
  left: 98px;
  width: 127px;
  height: 69px;
}

.talk-media-img--b {
  top: 64px;
  left: 0px;
  width: 88px;
  height: 105px;
}

.talk-media-img--c {
  top: 99px;
  right: -23px;
  width: 260px;
  height: 130px;
}

.talk-media-img--d {
  top: -19px;
  right: -7px;
  width: 106px;
  height: 108px;
}

.talk-cta {
  position:relative;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  border: 0;
  border-radius: 0;
  padding: 15px 14px 15px 30px;
  background: #fff;
  color: var(--brand-blue-deep);
  text-align: center;
  font-size: 17px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: 0.02em;
  z-index: 1;
}

.talk-cta:after {
  content: "";
  position: absolute;
  top: 21px;
  left: 27px;
  width: 10px;
  height: 10px;
  rotate: 45deg;
  border-top: 2px solid var(--brand-blue-deep);
  border-right: 2px solid var(--brand-blue-deep);
}

/* ===== Reserve（カジュアル面談ご予約） ===== */
.reserve-section {
  position: relative;
  z-index: 0;
  background: #E8EFF6;
  padding: 60px 0;
}

.reserve-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reserve-label {
  margin: 0;
  text-align: center;
}

.reserve-label span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid #2D2D2D;
  color: #2D2D2D;
  font-family: "Inter", sans-serif;
  font-weight: var(--fw-extrabold);
  font-size: 23px;
  line-height: 1;
}

.reserve-title {
  margin: 24px 0 0;
  color: var(--brand-blue);
  font-size: 40px;
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.reserve-box {
  width: 100%;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.reserve-box iframe {
  display: block;
  border-radius: 12px;
}

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  color: #000;
  padding: 40px 0 30px;
  text-align: center;
}

.site-footer img {
  width: 120px;
  margin: 0 auto 10px;
}

.site-footer p {
  margin: 0;
  font-size: 10px;
}

/* ===== Schedule Modal ===== */
.schedule-modal {
  width: min(352px, calc(100% - 22px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 30px 20px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--brand-blue);
  color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-sizing: border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.schedule-modal::backdrop {
  background: rgba(232, 239, 246, 0.8);
}

.schedule-modal__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.schedule-modal__profile,
.schedule-modal__schedule {
  display: flex;
  flex-direction: column;
}

.schedule-modal__photo {
  width: 100%;
  aspect-ratio: 312 / 218;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  margin-bottom: 18px;
}

.schedule-modal__label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}

.schedule-modal__label-bar {
  display: inline-block;
  width: 12px;
  height: 3px;
  background: #fff;
}

.schedule-modal__profile-text {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.schedule-modal__schedule {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 22px;
}

.schedule-modal__title {
  margin: 6px 0 18px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}

.schedule-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.schedule-modal__list::before {
  content: "";
  position: absolute;
  left: 53.5px;
  top: 8px;
  bottom: 8px;
  width: 0;
  border-left: 1px dashed rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.schedule-modal__item {
  display: grid;
  grid-template-columns: 41px 6px 1fr;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.schedule-modal__time {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
}

.schedule-modal__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFF762;
  display: block;
}

.schedule-modal__activity {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
}

.schedule-modal__divider {
  margin: 22px 0 18px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-modal__close {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  gap: 9px;
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.schedule-modal:focus,
.schedule-modal:focus-visible,
.schedule-modal__close:focus,
.schedule-modal__close:focus-visible {
  outline: none;
}

.schedule-modal__close-icon {
  position: relative;
  width: 11px;
  height: 11px;
  display: inline-block;
}

.schedule-modal__close-icon::before,
.schedule-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

.schedule-modal__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.schedule-modal__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 899px) {
  .container {
    width: 335px;
  }

  .hero .container {
    width: 375px;
  }

  .interview > .container {
    width: 335px;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

/* ===== Responsive: Desktop ===== */
@media (min-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .pc-scale-shell {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .pc-scale-root {
    width: calc(var(--pc-base-width) * 1px);
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform-origin: top center;
    transform: translateX(-50%) scale(var(--pc-scale, 1));
  }

  .sp-only {
    display: none;
  }
  .pc-only {
    display: inline;
  }

  .container {
    width: min(100% - 80px, 1240px);
  }

  main > section:not(.hero) > .container {
    width: min(100% - 160px, 1200px);
  }

  .site-header .container {
    width: min(100% - 80px, 1360px);
  }

  .site-header {
    background: #fff;
    border-bottom: 0;
  }

  .site-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100vw / var(--pc-scale, 1));
    border-bottom: 1px solid var(--brand-blue-deep);
  }

  .header-inner {
    min-height: 100px;
    gap: 0;
  }

  .logo-link {
    width: 128px;
  }

  .menu-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    color: #2d2d2d;
    padding: 0;
    margin-left: 99px;
    flex: 1;
    gap: 0;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    justify-content: space-between;
  }

  .global-nav::before,
  .global-nav-cta,
  .global-nav-bg {
    display: none;
  }

  .global-nav-links {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 752px;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .global-nav-links a {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0;
    color: #2d2d2d;
    font-weight: 500;
    white-space: nowrap;
  }

  .header-cta {
    margin-left: 0;
    width: 271px;
    height: 50px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    letter-spacing: 0.02em;
    color: #fff;
    background: var(--brand-blue-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .header-cta::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }

  .hero-inner {
    display: block;
  }

  .hero .container {
    width: min(100% - 80px, 1240px);
  }

  .hero-main {
    font-size: 140px;
  }

  .hero-line {
    font-size: 100px;
  }

  .hero-line-top > span {
    font-size: 120px;
  }

  .hero-line-bottom {
    margin-top: -36px;
  }

  .hero-sub {
    font-size: 40px;
    padding: 0;
    margin-top: -10px;
    background: transparent;
  }

  .hero-tags {
    margin: 38px 0 0;
    height: 54px;
    width: min(100%, 1200px);
  }

  .track {
    padding: 16px 0;
    font-size: 16px;
  }

  .track-row {
    gap: 24px;
    padding: 0 24px;
  }

  .hero-media {
    height: 670px;
    padding-top: 22px;
  }

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

  .hero-photo--a {
    left: 290px;
    top: 34px;
    width: 293px;
    height: 308px;
  }

  .hero-photo--b {
    right: 290px;
    top: 424px;
    width: 272px;
    height: 245px;
  }

  .hero-photo--c {
    left: 24px;
    top: 34px;
    width: 240px;
    height: 214px;
  }

  .hero-photo--d {
    right: -87px;
    top: 34px;
    width: 719px;
    height: 365px;
  }

  .hero-photo--e {
    right: -20px;
    top: 424px;
    width: 286px;
    height: 171px;
  }

  .hero-copy {
    left: 0;
    top: 350px;
  }

  .hero-badges {
    right: 0;
    left: auto;
    top: 537px;
    width: 304px;
    height: 147px;
  }

  .hero-badge {
    width: 147px;
    height: 147px;
  }

  .hero-badge:last-child {
    left: 157px;
  }

  .hero-badge--industry .industry-top {
    font-size: 27px;
    margin-top: 12px;
  }

  .hero-badge--industry .industry-bottom {
    font-size: 26px;
    margin-top: 4px;
  }

  .hero-badge--hire .hire-top {
    font-size: 19px;
  }

  .hero-badge--hire .hire-num {
    font-size: 44px;
    line-height: 1;
  }

  .hero-badge--hire .hire-unit {
    font-size: 15px;
    margin-left: 4px;
    margin-bottom: 4px;
  }

  .hero-badge--hire .hire-bottom {
    font-size: 24px;
  }

  .header-cta {
    display: inline-flex;
  }

  .eyebrow {
    font-size: 20px;
  }

  h2 {
    font-size: 98px;
  }

  .message {
    margin-top: 120px;
  }

  .message-visual {
    padding: 0 110px 30px 88px;
  }

  .message-intro {
    grid-template-columns: minmax(0, 547px) minmax(0, 402px);
    justify-content: space-between;
    align-items: start;
    gap: 73px;
  }

  .message h2 {
    font-size: 80px;
    font-weight: var(--fw-extrabold);
  }

  .message h2 .message-heading-main {
    border-bottom: 10px solid var(--brand-blue);
    white-space: nowrap;
    line-height: var(--lh-tight);
  }

  .message h2 .message-heading-sub {
    font-size: 50px;
    line-height: var(--lh-tight);
    margin-top: 26px;
  }

  .message-text {
    margin-top: 34px;
    font-size: 20px;
    line-height: 1.9;
  }

  .message-intro-bg {
    font-size: 136px;
    line-height: 1.9;
    white-space: nowrap;
    left: -180px;
    bottom: -10px;
  }

  .lead,
  .evaluation-lead {
    font-size: 18px;
  }

  .message-text {
    font-size: 20px;
  }

  .member-grid-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 25px;
  }

  .section-blue {
    padding: 120px 0 120px;
  }

  .member-grid-top article {
    display: flex;
    flex-direction: column;
  }

  .member-grid-top article:nth-of-type(3n - 1) {
    margin-top: 49px;
  }

  .message-title {
    padding-bottom: 27px;
    font-size: 70px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: -47px;
  }

  .message-title::before,
  .message-title::after {
    top: 40%;
    width: 71px;
    height: 180px;
  }

  .message-title::before {
    left: 140px;
    border-left-width: 2px;
    rotate: -10deg;
  }

  .message-title::after {
    right: 140px;
    border-right-width: 2px;
    rotate: 10deg;
  }

  .message-title strong {
    font-size: 100px;
  }

  .message-title .message-title-medium {
    font-size: 80px;
  }

  .message-title p {
    margin-top: 19px;
  }


  .member-grid-top h3 {
    padding-top: 8px;
    font-size: 24px;
  }

  .member-tag {
    margin-top: 16px;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
  }

  .member-meta {
    margin-top: 8px;
    font-size: 14px;
  }

  .jobs,
  .step,
  .benefits,
  .interview,
  .talk {
    padding: 120px 0;
  }

  .jobs h2,
  .step h2,
  .benefits h2 {
    font-size: 70px
  }

  .jobs-grid {
    margin-top: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 30px;
  }

  .jobs .lead {
    margin-top: 0;
    max-width: none;
    font-size: 18px;
    line-height: 1.5;
  }

  .jobs-heading-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    column-gap: 108px;
  }

  .jobs-heading-row h2 {
    margin-top: 0;
    white-space: nowrap;
  }

  .job-card {
    border-radius: 4px;
    padding: 30px 10px 10px;
  }

  .job-card h3 {
    margin: 0 0 0 25px;
    font-size: 40px;
    line-height: 1.1;
  }

  .job-card h3 span {
    margin-right: 41px;
    font-size: 40px;
  }

  .job-card p {
    margin: 4px 25px 0 124px;
    font-size: 16px;
    line-height: 1.5;
    min-height: 48px;
  }

  .job-shots {
    margin-top: 20px;
    gap: 6px;
  }

  .benefits-main-wrap {
    margin-top: 30px;
    height: 410px;
  }

  .benefit-icons p {
    font-size: 16px;
  }

  .benefit-icons p small {
    font-size: 12px;
  }

  .benefit-icons h3 {
    font-size: 30px;
    font-weight: var(--fw-extrabold);
    line-height: var(--lh-tight);
  }

  .benefit-icons {
    margin-top: 50px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
    gap: 30px 40px;
  }

  .benefit-icons article {
    min-height: 130px;
    padding: 25px 20px 0 0;
    border-bottom: 0;
    grid-template-columns: 45px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 8px;
    align-content: start;
  }

  .benefit-icons article:nth-child(-n + 3) {
    border-top: 2px solid var(--brand-blue);
  }

  .benefit-icons article:nth-child(n + 4) {
    border-top: 2px solid var(--brand-blue);

  }

  .benefit-icon {
    margin-top: 0;
    width: 45px;
    height: 45px;
  }

  .benefit-icons img {
    width: 22px;
    height: 22px
  }

  .step-main {
    margin-top: 30px;
    grid-template-columns: 585px 585px;
    align-items: start;
    justify-content: center;
    gap: 30px;
  }

  .step-image {
    margin-top: 0;
  }

  .step-timeline {
    min-height: 364px;
    padding: 0 92px 0 0;
  }

  .step-badge {
    top: 60px;
    right: -10px;
    width: 147px;
    height: 147px;
    font-size: 26px;
    line-height: 1.13;
  }

  .step-badge::before {
    border-width: 1px;
  }

  .step-timeline-list {
    gap: 20px;
  }

  .step-timeline-list li {
    min-height: 76px;
    border-radius: var(--radius-md);
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .step-timeline-list li:last-child {
    height: 76px;
    width: calc(100% + 92px);
    margin-left: -10px;
    padding-left: 10px;
  }

  .step-time {
    width: 101px;
    height: 33px;
    border-radius: 1px;
    margin-left: 20px;
    font-size: 16px;
  }

  .step-timeline-list p {
    font-size: 26px;
    line-height: var(--lh-tight);
  }

  .step-day {
    margin: 60px 0 0;
    padding-top: 28px;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }

  .step-day-title {
    writing-mode: vertical-rl;
    letter-spacing: 0.08em;
    font-size: 26px;
    line-height: 1;
    padding: 48px 20px 110px 0;
    margin: -20px 0 0;
    border-right: 1px solid #d1d1d1;
  }

  .step-day-title:before {
    top: 30px;
    left: 10px;
  }

  .step-day-grid {
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 35px;
  }

  .step-day-card p {
    font-size: 15px;
    line-height: var(--lh-tight);
  }

  .step-day-btn {
    width: 38px;
    height: 38px;
    border-radius: 5px;
  }

  .step-day-btn::before {
    left: 13px;
    width: 9px;
    height: 1px;
  }

  .step-day-btn::after {
    left: 16px;
    width: 5px;
    height: 5px;
    border-top-width: 1px;
    border-right-width: 1px;
  }

  .interview {
    margin-bottom: 0;
  }

  .interview h2 {
    font-size: 80px;
    margin-top: 20px;
  }

  .interview .interview-eyebrow {
    font-size: 28px;
  }

  .interview .interview-eyebrow::after {
    width: 253px;
    height: 2px;
    margin-top: 8px;
  }

  .interview-swiper-wrap {
    margin-top: 52px;
  }

  .interview-swiper .swiper-slide {
    height: auto;
    min-height: 500px;
  }

  .interview-swiper-controls {
    display: flex;
    margin-top: 28px;
    margin-left: 0;
    justify-content: space-between;
    gap: 24px;
  }

  .interview-swiper-pagination {
    gap: 12px;
  }

  .interview-swiper-line {
    width: 72px;
  }

  .interview-swiper-nav {
    gap: 10px;
  }

  .interview-swiper-prev,
  .interview-swiper-next {
    width: 46px;
    height: 46px;
  }

  .interview-bg {
    bottom: -240px;
    left: -130px;
    font-size: 162px;
    white-space: nowrap;
  }

  .evaluation {
    padding: 120px 0 0;
  }

  .evaluation > .container {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    grid-template-areas:
      "intro chart"
      "salary salary";
    column-gap: 80px;
    row-gap: 0;
    align-items: start;
  }

  .evaluation-intro {
    grid-area: intro;
  }

  .evaluation h2 {
    font-size: 70px;
    margin-top: 10px;
  }

  .evaluation-lead-main {
    margin-top: 30px;
    font-size: 28px;
  }

  .evaluation .evaluation-lead:not(.evaluation-lead-main) {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.8;
  }

  .evaluation-chart {
    grid-area: chart;
    margin-top: 46px;
    padding: 40px 40px 30px;
    display: grid;
    border-radius: var(--radius-md);
  }

  .evaluation-chart-title {
    font-size: 40px;
  }

  .evaluation-chart-bars {
    margin-top: -40px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 31px;
    width: 100%;
  }

  .evaluation-stage-bar {
    height: var(--bar-h-pc);
  }

  .evaluation-stage-bar img {
    height: var(--icon-h-pc);
    margin: 0 0 var(--icon-mb-pc);
  }

  .evaluation-stage-income {
    bottom: 20px;
    font-size: 22px;
  }

  .evaluation-stage-income span {
    font-size: 18px;
  }

  .evaluation-chart-roles {
    margin-top: 10px;
    padding-left: 14px;
    padding-right: 14px;
    gap: 0px;
    width: 100%;
  }

  .evaluation-chart-roles p {
    margin: 0;
    font-size: 22px;
  }

  .salary-block {
    grid-area: salary;
    margin-top: 120px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    justify-content: space-between;
    gap: 135px;
    align-items: start;
  }

  .salary-heading h3 {
    font-size: 70px;
    margin-top: 10px;
  }

  .salary-table {
    margin-top: 52px;
  }

  .salary-table th,
  .salary-table td {
    padding: 30px 0;
    font-size: 20px;
  }

  .salary-table th {
    width: 205px;
  }

  .talk-inner {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
    row-gap: 0;
  }

  .talk-side {
    font-size: 26px;
    row-gap: 0;
    justify-content: start;
    padding: 77px 0 0;
    align-items: center;
  }

  .talk-side-dot {
    width: 11px;
    height: 11px;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
  }

  .talk-main {
    gap: 0;
    padding: 30px 30px 30px 50px;
    min-height: 0;
    align-content: start;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .talk-card {
    padding: 0;
    border-top: 0;
  }

  .talk-card-lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 480px minmax(0, 1fr);
    column-gap: 44px;

    align-items: start;
    padding: 0 30px 32px 50px;
    margin: 0 -30px 0 -50px;
    border-bottom: 1px solid #d1d1d1;
  }

  .talk-card-lead img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 487px;
    height: auto;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .talk-card-lead h2 {
    grid-column: 1;
    margin-top: 20px;
    font-size: 50px;
  }

  .talk-card p,
  .talk-card li {
    font-size: 18px;
  }

  .talk-card-lead p {
    grid-column: 1;
    margin-top: 19px;
  }

  .talk-card h3 {
    margin-top: 0;
    font-size: 26px;
  }

  .talk-card-note {
    grid-column: 1;
    padding-top: 40px;
    padding-right: 60px;
  }

  .talk-card-note p {
    margin-top: 13px;
    margin-bottom: 23px;
    font-size: 16px;
  }

  .talk-card-faq {
    grid-column: 2;
    padding: 40px 0 30px 38px;
    margin-bottom: -30px;
    border-left: 1px solid #d1d1d1;
  }

  .talk-card-faq ul {
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 26px;
  }

  .talk-card-faq ul li:nth-child(1) {
    order: 1;
  }

  .talk-card-faq ul li:nth-child(3) {
    order: 2;
  }

  .talk-card-faq ul li:nth-child(2) {
    order: 3;
  }

  .talk-card-faq ul li:nth-child(4) {
    order: 4;
  }

  .talk-card-faq li::before {
    width: 16px;
    height: 16px;
    top: 7px
  }

  .talk-card-faq p {
    margin-top: 18px;
    font-size: 16px;
  }

  .talk-closing-section {
    padding: 100px 0;
  }

  .talk-closing-inner {
    width: min(100% - 160px, 1200px);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
    align-items: start;
    gap: 0px;
  }

  .talk-closing {
    padding-top: 0;
  }

  .talk-closing h3 {
    font-size: 70px;
    line-height: 1.2;
    text-align: left;
  }

  .talk-closing p {
    margin-top: 26px;
    font-size: 18px;
    text-align: left;
  }

  .talk-media {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .talk-media-img--a {
    top: 9px;
    left: 55px;
    width: 196px;
    height: 175px;
  }

  .talk-media-img--b {
    top: 200px;
    left: -80px;
    width: 197px;
    height: 206px;
  }

  .talk-media-img--c {
    top: 200px;
    right: -166px;
    width: 581px;
    height: 293px;
  }

  .talk-media-img--d {
    top: -70px;
    right: -40px;
    width: 324px;
    height: 254px;
  }

  .talk-cta {
    margin-top: 26px;
    padding: 25px 0 25px 10px;
    font-size: 22px;
    width: 438px;
    height: 82px;
  }

  .talk-cta:after {
    width: 11px;
    height: 11px;
    top: 33px;
    left: 37px;
    border-top: 2.5px solid var(--brand-blue-deep);
    border-right: 2.5px solid var(--brand-blue-deep)
  }

  .reserve-section {
    padding: 100px 0;
  }

  .reserve-label span {
    padding-bottom: 6px;
    font-size: 28px;
  }

  .reserve-title {
    margin-top: 30px;
    font-size: 70px;
  }

  .reserve-box {
    margin-top: 48px;
    min-height: 872px;
  }

  .site-footer {
    padding: 28px 0;
  }

  .site-footer img {
    width: 141px;
    margin: 0 auto 20px;
  }

  .site-footer p {
    font-size: 12px;
  }

  /* ===== Schedule Modal (PC) ===== */
  .schedule-modal {
    width: 840px;
    max-width: calc(100vw - 40px);
    max-height: calc(100dvh - 40px);
    padding: 45px 45px 25px;
  }

  .schedule-modal__inner {
    display: grid;
    grid-template-columns: 314px 1fr;
    column-gap: 70px;
    row-gap: 0;
    position: relative;
  }

  .schedule-modal__inner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(314px + 35px);
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
  }

  .schedule-modal__photo {
    aspect-ratio: 314 / 219;
    margin-bottom: 22px;
  }

  .schedule-modal__profile-text {
    margin-top: 12px;
    font-size: 15px;
  }

  .schedule-modal__schedule {
    border-top: 0;
    padding-top: 0;
  }

  .schedule-modal__title {
    margin: 6px 0 22px;
    font-size: 22px;
  }

  .schedule-modal__list {
    gap: 12px;
  }

  .schedule-modal__list::before {
    top: 9px;
    bottom: 9px;
  }

  .schedule-modal__divider {
    margin: 28px 0 18px;
  }
}
