@charset "UTF-8";
/* ==========================================================================
   Kisojiban Recruit LP - Figma-Faithful Stylesheet
   Design base: 1440px desktop-first
   ========================================================================== */
/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  --color-primary: #1546c5;
  --color-primary-light: #4869c1;
  --color-text-dark: #333333;
  --color-text-body: #404040;
  --color-bg: #f5f5f5;
  --color-white: #ffffff;
  --gradient-image-overlay: linear-gradient(116deg, rgba(137, 247, 254, 0.3) 1.6%, rgba(137, 247, 254, 0) 31.2%, rgba(137, 247, 254, 0.3) 82.4%);
  --gradient-card: linear-gradient(70deg, rgb(21, 70, 197) 0%, rgb(137, 247, 254) 100%);
  --gradient-card-overlay: linear-gradient(70deg, rgba(137, 247, 254, 0.4) 4%, rgba(21, 70, 197, 0.4) 99%);
  --gradient-deco-text: linear-gradient(103deg, #b1e4fb 2.7%, #1546c5 94.6%);
  --font-poppins: 'Poppins', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-antro: 'Antro Vectra', 'Satisfy', 'Dancing Script', cursive;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --container-max: 1280px;
  --container-wide: 1440px;
  --radius-sm: 2px;
  --radius-md: 8px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-noto);
  font-weight: 600;
  font-size: 16px;
  background-color: var(--color-bg);
  line-height: 2;
  color: var(--color-text-body);
  letter-spacing: 0.64px;
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s var(--ease-out-quart);
}

a:hover {
  opacity: 0.8;
}

blockquote {
  quotes: none;
}

/* --------------------------------------------------------------------------
   3. Section Title (shared)
   -------------------------------------------------------------------------- */
.section-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
  position: relative;
  margin-left: auto;
}

.section-title__en {
  font-family: var(--font-inter);
  font-weight: 600;
  font-style: italic;
  font-size: 54px;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 1.08px;
}

.section-title__ja {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-primary);
  letter-spacing: 0.64px;
  margin: 0 0 0 auto;
}

.section-title__underline {
  position: absolute;
  left: -16px;
  top: 54px;
  z-index: -1;
}

.section-title[class*=anim-] .section-title__underline {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.section-title.is-visible .section-title__underline {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

.section-title--light .section-title__en,
.section-title--light .section-title__ja {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   4. Button (shared)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 24px;
  border-radius: var(--radius-sm);
  width: 270px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.btn__text {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.72px;
  line-height: 1.5;
}

.btn__sub {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.48px;
  line-height: 1.4;
}

.btn__arrow-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn__arrow-box img {
  transform: rotate(-45deg);
}

.btn--primary .btn__arrow-box {
  background-color: var(--color-white);
}

.btn--white .btn__arrow-box {
  background-color: var(--color-primary);
}

.btn--white .btn__arrow-box img {
  filter: brightness(0) invert(1);
}

/* Arrow hover slide animation */
@keyframes arrow-slide {
  0% {
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
  }
  40% {
    transform: translate(8px, -8px) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: translate(-8px, 8px) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(-45deg);
    opacity: 1;
  }
}
.btn__arrow-box,
.project-card__arrow,
.job-card__arrow {
  overflow: hidden;
}

.btn:hover .btn__arrow-box img,
.project-card:hover .project-card__arrow img,
.job-card:hover .job-card__arrow img {
  animation: arrow-slide 0.5s ease;
}

/* --------------------------------------------------------------------------
   5. FV / HERO
   -------------------------------------------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  z-index: 5;
}

.fv__bg {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

.fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 224px;
  padding-right: 5.5555555556vw;
}

.fv__content {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fv__title-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fv__title-en {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0;
}

.fv__title-sub-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-left: -20px;
}

.fv__title-underline {
  display: block;
}

.fv__title-sub {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-dark);
  letter-spacing: 0.64px;
  white-space: nowrap;
}

.fv__tagline {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: min(48px, 4vw);
  line-height: 1.6;
  color: var(--color-text-dark);
  letter-spacing: 1.6px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.fv__entry-link {
  display: inline-flex;
  align-items: center;
  gap: 21px;
}
.fv__entry-link:hover .fv__entry-arrow img {
  animation: arrow-slide 0.5s ease;
}

.fv__entry-text {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-primary);
}

.fv__entry-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  overflow: hidden;
}

.fv__entry-arrow img {
  transform: rotate(-45deg);
}

/* Side Navigation */
.side-nav {
  position: fixed;
  right: 32px;
  top: 95px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-nav__item {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.side-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  flex-shrink: 0;
}

.side-nav__item.is-active .side-nav__dot {
  background-color: var(--color-primary);
}

.side-nav__label {
  font-family: var(--font-inter);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0.28px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   6. TOP MESSAGE
   -------------------------------------------------------------------------- */
.message {
  position: relative;
  z-index: 2;
}
.message:before {
  content: "";
  width: min(640px, 44.4444444444vw);
  height: min(640px, 44.4444444444vw);
  background-image: url(../../img/graduate/top/circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 0;
}

.message__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 80px 80px 80px;
  position: relative;
}

.message__header {
  margin-bottom: 48px;
}

.message__header .section-title {
  align-items: flex-end;
  z-index: 10;
}

.message__body {
  position: relative;
}

.message__photo {
  position: relative;
  width: min(720px, 56%);
  height: auto;
  border-radius: 4px;
  overflow: hidden;
}

.message__content {
  margin: -300px 80px 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 44%;
  max-width: 556px;
  overflow-wrap: break-word;
  word-break: break-word;
  position: relative;
  z-index: 5;
}

.message__lead {
  font-size: 18px;
}
@media (max-width: 768px) {
  .message__lead {
    font-size: 12px;
    text-align: center;
  }
}

.message__lead-en {
  font-size: min(40px, 2.7777777778vw);
}
@media (max-width: 768px) {
  .message__lead-en {
    font-size: 18px;
    text-align: center;
  }
}

.message__quote {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.6;
  color: var(--color-text-dark);
  letter-spacing: 1.6px;
}

.message__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8. OUR PROJECTS (Grid)
   -------------------------------------------------------------------------- */
.projects {
  padding: 80px 0;
  background-color: var(--color-bg);
  position: relative;
  z-index: 2;
}

.projects__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 80px;
}

.projects__header {
  margin-bottom: 40px;
}

.projects__header .section-title {
  align-items: flex-end;
}

.projects__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  letter-spacing: 0.64px;
  margin-top: 16px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 278px;
  text-decoration: none;
}

.project-card__image {
  position: absolute;
  inset: 0;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-card-overlay);
}

.project-card__overlay {
  position: absolute;
  top: 190px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 8px 12px 8px 24px;
}

.project-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-card__number {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: var(--color-primary);
  letter-spacing: 0.72px;
  line-height: 1.5;
}

.project-card__title {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-primary);
  letter-spacing: 0.48px;
  line-height: 1.4;
}

.project-card__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

.project-card__arrow img {
  filter: brightness(0) invert(1);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   9. JOB INTRODUCTION
   -------------------------------------------------------------------------- */
.jobs {
  position: relative;
  z-index: 2;
}

.jobs__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.jobs::before {
  content: "";
  position: absolute;
  top: calc(69.4vw - 50px);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1546c5;
  z-index: 0;
}

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

.jobs__wave {
  position: relative;
  margin-top: -100px;
  z-index: 3;
  height: 15vw;
  overflow: hidden;
}

.jobs__wave-img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.jobs__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 24vw 150px 200px;
}

.jobs__header {
  margin-bottom: 64px;
}

.jobs__header .section-title {
  align-items: flex-end;
}

.jobs__layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.jobs__grid-area {
  flex: 0 0 auto;
}

.jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.job-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 21px 40px;
  background: var(--color-white);
  text-decoration: none;
  color: var(--color-text-dark);
  position: relative;
  height: 200px;
  overflow: hidden;
  transition: background 0.3s;
}

.job-card:hover {
  background: rgb(255, 255, 255);
}

.job-card__number {
  font-family: var(--font-inter);
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  color: var(--color-primary-light);
  position: absolute;
  top: 12px;
  left: 12px;
  letter-spacing: 0.32px;
}

.job-card__label {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.72px;
  text-align: center;
  color: var(--color-primary-light);
}

.job-card__icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.job-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.job-card__arrow {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
}

.job-card__arrow img {
  filter: brightness(0) invert(1);
  transform: rotate(-45deg);
}

.job-card--wide {
  grid-column: span 2;
}

.jobs__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-top: 347px;
}

.jobs__desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.64px;
  color: var(--color-white);
}

.recruit-team__slider--reverse {
  display: none;
}

/* --------------------------------------------------------------------------
   12. RECRUITMENT MESSAGE
   -------------------------------------------------------------------------- */
.recruit-message {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.recruit-message__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 80px;
}

.recruit-message__card {
  position: relative;
  width: 800px;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-left: 71px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 107px 71px;
}

.recruit-message__bg {
  position: absolute;
  inset: 0;
}

.recruit-message__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70%;
}

.recruit-message__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruit-message__title {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);
}

.recruit-message__text {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.64px;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   13. GROW WITH US
   -------------------------------------------------------------------------- */
.grow {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}

.grow__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 80px;
}

.grow__card {
  position: relative;
  width: 800px;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-left: auto;
  margin-right: 71px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 107px 71px;
}

.grow__bg {
  position: absolute;
  inset: 0;
}

.grow__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 980px) {
  .grow__bg-img {
    object-position: 30%;
  }
}

.grow__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grow__title {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);
}

.grow__text {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.64px;
  color: var(--color-white);
}

.grow__buttons {
  display: flex;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   14. CAREER PLAN
   -------------------------------------------------------------------------- */
.career {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.career__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 80px;
}

.career__header {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.career__header .section-title {
  align-items: center;
  margin-left: 0;
}

.career__body {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 64px;
  background: #fff;
}

.career__person {
  position: absolute;
  top: -60px;
  z-index: 1;
}

.career__person--left {
  left: calc(50% - 564px);
}

.career__person-frame-img {
  width: 300px;
  height: auto;
}

.career__main-content {
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.career__text-area {
  width: 640px;
}

.career__content-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 1.6px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.career__content-desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.64px;
  color: var(--color-text-body);
}

.career__chart {
  width: 100%;
}

.career__chart-img {
  width: 100%;
  height: auto;
}

.career__slider-controls {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.career__slider-arrow {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.career__slider-arrow img {
  filter: brightness(0) invert(1);
}

.career__slider-arrow img.slider-btn__arrow-flip {
  transform: scaleX(-1);
}

.career__slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-top: 80px;
  margin-top: -80px;
}

.career__slider-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-left: calc((100vw - 1200px) / 2);
}

.career__slide {
  flex-shrink: 0;
  width: 1200px;
  position: relative;
}

.career__slider-dots {
  display: flex;
  align-items: center;
  gap: 16px;
}

.career__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.career__dot.is-active {
  background: var(--color-primary);
}

/* --------------------------------------------------------------------------
   15. Q&A
   -------------------------------------------------------------------------- */
.qa {
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
}

.qa__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.qa__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.qa__title {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-primary);
}

.qa__lead {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.64px;
  color: var(--color-primary);
}

.qa__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.qa__item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 4px;
  overflow: hidden;
}

.qa__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  min-height: 77px;
}

.qa__q-mark,
.qa__a-mark {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}

.qa__q-text {
  flex: 1;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.12px;
  color: var(--color-text-dark);
}

.qa__toggle {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  flex-shrink: 0;
  position: relative;
}

.qa__toggle::before,
.qa__toggle::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out-expo);
}

.qa__toggle::before {
  width: 12px;
  height: 2px;
}

.qa__toggle::after {
  width: 2px;
  height: 12px;
}

.qa__item--open .qa__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa__answer {
  display: none;
  gap: 16px;
  padding: 0 24px 24px;
  border-top: none;
  padding-top: 0;
  margin: 0 10px;
  background: url("../images/qa-divider.svg") no-repeat top center;
  background-size: 100% 1px;
  padding-top: 24px;
}

.qa__item--open .qa__answer {
  display: flex;
  align-items: center;
}

.qa__a-text {
  flex: 1;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.12px;
  color: var(--color-text-dark);
}

.qa__a-text p + p {
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   17. Decorative Curves
   -------------------------------------------------------------------------- */
main {
  position: relative;
  overflow-x: clip;
}

/* SVGを包むコンテナ（今回は固定しない） */
.svg_area {
  position: relative;
}

.svg-container {
  pointer-events: none;
  width: 120%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: absolute;
}
.svg-container svg {
  max-width: 120%;
  height: auto;
}
.svg-container_top {
  top: 34.7222222222vw;
}
@media (max-width: 768px) {
  .svg-container_top {
    top: 80vw;
  }
}
.svg-container_center {
  top: 20.8333333333vw;
  left: -20.8333333333vw;
  width: 100%;
}
@media (max-width: 768px) {
  .svg-container_center {
    top: inherit;
    bottom: -100px;
    left: -40px;
  }
}
.svg-container_bottom {
  top: 6.9444444444vw;
  width: 100%;
}
.svg-container_bottom svg {
  width: 100%;
}
@media (max-width: 768px) {
  .svg-container_bottom {
    top: 80vw;
  }
}

/* --------------------------------------------------------------------------
   16b. Hero Intro Animation
   -------------------------------------------------------------------------- */
/* Shrink tagline box to text width during intro so centering is accurate */
.fv--intro .fv__tagline {
  width: fit-content;
}

/* Tagline line mask reveal (white overlay slides left→right) */
.fv__tagline-line {
  display: block;
  position: relative;
  overflow: hidden;
}

.fv__tagline-line-inner {
  display: block;
}

.fv--intro .fv__tagline-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fv--step-1 .fv__tagline-line::after {
  transform: translateX(100%);
}

/* Hide all non-hero content during intro */
.main--intro > *:not(.fv) {
  opacity: 0;
}

/* Initial hidden states during intro */
.fv--intro .fv__bg {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fv--intro .fv__title-group {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fv--intro .fv__entry-link {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Side nav hidden during intro (controlled via JS class on .side-nav itself) */
.side-nav--hidden {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.side-nav--visible {
  opacity: 1;
}

/* Tagline move transition (only active during step-2) */
.fv--step-2 .fv__tagline {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Step 2: Show image, move tagline to position */
.fv--step-2 .fv__bg {
  opacity: 1;
}

/* Step 3: Show other elements */
.fv--step-3 .fv__title-group,
.fv--step-3 .fv__entry-link {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   17. Scroll Animations
   -------------------------------------------------------------------------- */
.anim-fade-up,
.anim-fade-in,
.anim-fade-left,
.anim-fade-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.anim-fade-up {
  transform: translateY(40px);
}

.anim-fade-in {
  transform: none;
}

.anim-fade-left {
  transform: translateX(-40px);
}

.anim-fade-right {
  transform: translateX(40px);
}

.anim-fade-up.is-visible,
.anim-fade-in.is-visible,
.anim-fade-left.is-visible,
.anim-fade-right.is-visible {
  opacity: 1;
  transform: none;
}

.anim-delay-1 {
  transition-delay: 150ms;
}

.anim-delay-2 {
  transition-delay: 300ms;
}

.anim-delay-3 {
  transition-delay: 450ms;
}

.anim-delay-4 {
  transition-delay: 600ms;
}

.anim-delay-5 {
  transition-delay: 750ms;
}

/* --------------------------------------------------------------------------
   18. SP Header (mobile only)
   -------------------------------------------------------------------------- */
.sp-header {
  display: none;
}

/* --------------------------------------------------------------------------
   19. Company Grid SP section (mobile only)
   -------------------------------------------------------------------------- */
.company-grid-sp {
  display: none;
}

/* --------------------------------------------------------------------------
   19b. Company Entry Cards SP section (mobile only)
   -------------------------------------------------------------------------- */
.company-sp {
  display: none;
}

/* --------------------------------------------------------------------------
   20. SP Footer (mobile only)
   -------------------------------------------------------------------------- */
.sp-footer {
  display: none;
}

/* --------------------------------------------------------------------------
   21. Responsive - Tablet (1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
  .fv__inner {
    padding-top: 160px;
    padding-right: 40px;
  }
  .fv__content {
    width: 360px;
    gap: 32px;
  }
  .fv__title-en {
    font-size: 48px;
  }
  .fv__title-sub-row {
    margin-left: 0;
  }
  .fv__tagline {
    font-size: 32px;
  }
  .message__inner {
    padding: 80px 40px;
  }
  .message__photo {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    overflow: hidden;
  }
  .message__photo-img {
    margin: 0 auto;
  }
  .message__content {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  .message__quote {
    font-size: 28px;
  }
  .message__buttons {
    flex-wrap: wrap;
  }
  .projects__inner {
    padding: 0 40px;
  }
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs__inner {
    padding: 24vw 40px 200px;
  }
  .jobs__layout {
    flex-direction: column;
  }
  .jobs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jobs__grid-area {
    width: 100%;
  }
  .job-card--wide {
    grid-column: span 1;
  }
  .jobs__info {
    padding-top: 24px;
  }
  .recruit-message__card {
    width: 100%;
    margin-left: 0;
  }
  .recruit-message__inner {
    padding: 0 40px;
  }
  .grow__card {
    width: 100%;
    margin-right: 0;
  }
  .grow__inner {
    padding: 0 40px;
  }
  .career__inner {
    padding: 0 40px;
  }
  .career__person--left {
    display: none;
  }
  .career__content-title {
    font-size: 32px;
  }
  .career__slider-track {
    padding-left: 40px;
  }
  .career__slide {
    width: calc(100vw - 80px);
  }
  .career__body {
    padding: 24px;
  }
  .career__main-content {
    width: 100%;
  }
  .career__text-area {
    width: 100%;
  }
  .qa__inner {
    max-width: 100%;
    padding: 0 24px;
  }
}
/* --------------------------------------------------------------------------
   22. Responsive - Mobile (768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* -- Decorative Curves -- */
  .deco-curve--top {
    top: 280px;
    left: -60px;
    width: 900px;
    height: auto;
  }
  .deco-curve--top path {
    stroke-width: 100;
  }
  .deco-curve--mid {
    top: 1000px;
  }
  .deco-curve--bottom {
    top: -100px;
    left: auto;
    right: -400px;
    width: 1000px;
    height: auto;
  }
  .deco-curve--mid path {
    stroke-width: 30;
  }
  .deco-curve--bottom path {
    stroke-width: 110;
  }
  /* -- Shared -- */
  .section-title__en {
    font-size: 24px;
    letter-spacing: 0.48px;
  }
  .section-title__ja {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
  .section-title__underline {
    top: 22px;
    left: -10px;
  }
  .section-title__underline img {
    width: 81px;
    height: auto;
  }
  .btn {
    width: 270px;
  }
  .btn__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  /* -- SP Header -- */
  .sp-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    z-index: 1000;
    background: rgba(233, 233, 233, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: space-between;
  }
  .sp-header__left {
    display: flex;
    align-items: center;
    padding-left: 15px;
  }
  .sp-header__logo {
    width: 80px;
    height: 26px;
    background: #fff;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
  }
  .sp-header__logo-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .sp-header__label {
    margin-left: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #333;
    letter-spacing: 0.48px;
  }
  .sp-header__right {
    display: flex;
    align-items: stretch;
    height: 56px;
  }
  .sp-header__entry {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background: #1546c5;
    color: #e9e9e9;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    text-decoration: none;
  }
  .sp-header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #333;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
  }
  .sp-header__hamburger-line {
    display: block;
    width: 22px;
    height: 0.7px;
    background: #fff;
  }
  /* -- FV / Hero -- */
  .fv {
    padding-top: 56px;
  }
  .fv__inner {
    padding-top: 24px;
    padding-right: 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
  }
  .fv__content {
    width: 100%;
    margin-left: 0;
    gap: 16px;
    padding: 0 20px;
  }
  .fv__title-en {
    font-size: 40px;
  }
  .fv__title-sub {
    font-size: 12px;
  }
  .fv__title-sub-row {
    margin-left: 0;
  }
  .fv__title-underline img {
    width: 140px;
  }
  .fv__tagline {
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.96px;
  }
  .fv__entry-text {
    font-size: 18px;
  }
  .fv__entry-link {
    gap: 11px;
  }
  .fv__entry-arrow {
    width: 23px;
    height: 23px;
  }
  /* -- Message -- */
  .message__inner {
    padding: 80px 32px;
  }
  .message__header {
    margin-bottom: 32px;
    text-align: right;
  }
  .message__header .section-title {
    align-items: flex-end;
  }
  .message__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 640/360;
    margin-left: 0;
    overflow: hidden;
  }
  .message__content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 16px;
  }
  .message__quote {
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.72px;
  }
  .message__buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  /* -- Projects -- */
  .projects {
    padding: 60px 0;
  }
  .projects__inner {
    padding: 0 32px;
  }
  .projects__header .section-title {
    align-items: flex-start;
    margin-left: 0;
  }
  .projects__lead {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.56px;
  }
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-card {
    height: 200px;
  }
  .project-card__number {
    font-size: 13px;
    letter-spacing: 0.52px;
  }
  .project-card__overlay {
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  /* -- Jobs -- */
  .jobs__inner {
    padding: 24vw 24px 80px;
  }
  .jobs__header {
    margin-bottom: 32px;
    padding-top: 8px;
  }
  .jobs__header .section-title {
    align-items: flex-start;
  }
  .jobs__layout {
    flex-direction: column;
  }
  .jobs__info {
    padding-top: 24px;
  }
  .jobs__info .btn {
    width: 100%;
  }
  .jobs__desc {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.56px;
  }
  .jobs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  .job-card {
    height: auto;
    aspect-ratio: 1;
    min-height: auto;
    padding: 6px 6px 0;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
  }
  .job-card__number {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 11px;
    letter-spacing: 0.24px;
    margin-bottom: 0;
    line-height: 1;
  }
  .job-card__label {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.56px;
    text-align: center;
  }
  .job-card__icon {
    width: 69%;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
  }
  .job-card__arrow {
    width: 24px;
    height: 24px;
    bottom: 0;
    right: 0;
  }
  .job-card:nth-child(even) .job-card__arrow {
    right: 1px;
  }
  .job-card--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
  .job-card--wide .job-card__icon {
    width: 35%;
  }
  .job-card--wide .job-card__arrow {
    right: 0;
  }
  .jobs__wave {
    margin-top: -20px;
    height: 25vw;
  }
  /* -- Interview -- */
  /* -- Recruit Message -- */
  .recruit-message {
    padding: 24px 0;
  }
  .recruit-message__inner {
    padding: 0;
  }
  .recruit-message__card {
    width: 360px;
    max-width: calc(100% - 15px);
    height: 469px;
    min-height: auto;
    margin-left: 0;
    margin-right: auto;
    border-radius: 0 8px 8px 0;
    padding: 76px 32px 32px;
  }
  .recruit-message__content {
    gap: 16px;
    width: 240px;
  }
  .recruit-message__title {
    font-size: 24px;
    line-height: 1.2;
  }
  .recruit-message__text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.56px;
  }
  /* -- Grow -- */
  .grow {
    padding: 0 0 24px;
  }
  .grow__inner {
    padding: 0;
  }
  .grow__card {
    width: 360px;
    max-width: calc(100% - 15px);
    height: 469px;
    min-height: auto;
    margin-left: auto;
    margin-right: 0;
    border-radius: 8px 0 0 8px;
    padding: 71px 32px 32px;
  }
  .grow__content {
    gap: 16px;
    width: 240px;
  }
  .grow__title {
    font-size: 24px;
    line-height: 1.2;
  }
  .grow__text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.56px;
  }
  .grow__buttons {
    flex-direction: column;
    gap: 8px;
  }
  /* -- Career -- */
  .career {
    padding: 80px 0;
  }
  .career__inner {
    padding: 0 15px;
  }
  .career__header {
    margin-bottom: 24px;
  }
  .career__person--left {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    transform: none;
  }
  .career__person-frame-img {
    width: 200px !important;
  }
  .career__slider {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    margin-top: 0;
    overflow: visible;
  }
  .career__slider-track {
    display: block;
    padding-left: 0;
    transform: none !important;
  }
  .career__slide {
    display: none;
    width: 100%;
  }
  .career__slide.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .career__body {
    padding: 80px 16px 40px;
    max-width: 100%;
    margin-top: -60px;
    background: #fff;
    width: 100%;
  }
  .career__main-content {
    width: 100%;
  }
  .career__text-area {
    width: 100%;
  }
  .career__content-title {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
  .career__content-desc {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.56px;
  }
  .career__slider-controls {
    margin-top: 24px;
  }
  /* -- Q&A: HIDE on mobile (not in SP design) -- */
  .qa__question {
    padding: 12px;
  }
  .qa__lead {
    font-size: 14px;
  }
  .qa__q-text,
  .qa__a-text {
    font-size: 14px;
  }
  .qa__answer {
    padding: 0 12px 12px;
  }
  /* -- Company Grid SP section -- */
  .company-grid-sp {
    display: block;
    padding: 64px 14px;
    background: #fff;
  }
  .company-grid-sp__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .company-grid-sp__title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 24px;
    color: #1546c5;
    margin: 0;
  }
  .company-grid-sp__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 7.5px;
    justify-content: center;
  }
  .company-grid-sp__tile {
    width: calc(50% - 4px);
    display: block;
    border-radius: 4.69px;
    overflow: hidden;
  }
  .company-grid-sp__tile-img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* -- Company Entry Cards SP section -- */
  .company-sp {
    display: block;
    padding: 0 24px 40px;
  }
  .company-sp__inner {
    background: #1546c5;
    border-radius: 8px;
    padding: 34px 24px;
  }
  .company-sp__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .company-sp__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 40px 24px;
    text-decoration: none;
    text-align: center;
    position: relative;
    min-height: 327px;
  }
  .company-sp__card-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .company-sp__card-icon-img {
    width: 95px;
    height: auto;
  }
  .company-sp__card-label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
    color: #1546c5;
    letter-spacing: 1.12px;
    margin-bottom: 3px;
  }
  .company-sp__card-sub {
    font-family: var(--font-antro);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #1546c5;
  }
  .company-sp__card-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 32px;
    height: 32px;
    background: #1546c5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .company-sp__card-arrow img {
    filter: brightness(0) invert(1);
    width: 15px;
    height: auto;
  }
  /* -- SP Footer -- */
  .sp-footer {
    display: block;
    background: #fff;
    overflow: hidden;
  }
  .sp-footer__inner {
    padding: 56px 40px;
  }
  .sp-footer__company {
    margin-bottom: 32px;
  }
  .sp-footer__logo {
    width: 140px;
    margin-bottom: 8px;
  }
  .sp-footer__logo-img {
    width: 100%;
    height: auto;
  }
  .sp-footer__company-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #404040;
    line-height: 1.8;
    letter-spacing: 0.48px;
    margin: 0;
  }
  .sp-footer__entries {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
  }
  .sp-footer__entry-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1546c5;
    color: #fff;
    padding: 12px 16px;
    border-radius: 2px;
    text-decoration: none;
  }
  .sp-footer__entry-btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.12px;
    line-height: 1.2;
  }
  .sp-footer__entry-btn-arrow {
    width: 18px;
    height: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sp-footer__nav {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
  }
  .sp-footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 100px;
  }
  .sp-footer__nav-col:last-child {
    gap: 12px;
  }
  .sp-footer__nav-link {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #404040;
    line-height: 1.4;
    letter-spacing: 0.56px;
    text-decoration: none;
  }
  .sp-footer__nav-link--bold {
    font-weight: 700;
  }
  .sp-footer__nav-sub {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 12px;
  }
  .sp-footer__bottom-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 56px;
  }
  .sp-footer__copyright {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #404040;
    text-align: center;
    letter-spacing: 0.4px;
    line-height: 1.8;
    margin: 0;
  }
}
/* --------------------------------------------------------------------------
   23. Responsive - Small Mobile (480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .fv__content {
    padding: 0 16px;
  }
  .fv__title-en {
    font-size: 36px;
  }
  .fv__tagline {
    font-size: 22px;
  }
  .message__inner {
    padding: 60px 20px;
  }
  .projects__inner {
    padding: 0 20px;
  }
  .jobs__inner {
    padding: 24vw 20px 60px;
  }
  .job-card {
    padding: 5px 5px 0;
  }
  .job-card__icon {
    width: 55%;
  }
  .job-card__label {
    font-size: 10px;
  }
  .job-card__arrow {
    width: 20px;
    height: 20px;
  }
  .recruit-message__bg-img {
    object-position: 65%;
  }
  .recruit-message__card {
    width: 100%;
    max-width: calc(100% - 12px);
    padding: 60px 24px 60px;
    height: auto;
  }
  .recruit-message__title {
    font-size: 22px;
  }
  .grow__card {
    width: 100%;
    max-width: calc(100% - 12px);
    padding: 60px 24px 60px;
    height: auto;
  }
  .grow__title {
    font-size: 22px;
  }
  .career__inner {
    padding: 0 20px;
  }
  .company-grid-sp {
    padding: 48px 10px;
  }
  .company-grid-sp__tile {
    width: calc(50% - 4px);
  }
  .company-sp {
    padding: 0 20px 40px;
  }
  .sp-footer__inner {
    padding: 40px 24px;
  }
}
.recruit-team__header .section-title {
  margin-left: inherit;
  width: fit-content;
}

.business {
  background-image: url(../../img/graduate/top/business_image3.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.business .image_wrap {
  display: flex;
  gap: 56px;
  margin: -120px 8.3333333333vw -240px auto;
  justify-content: right;
}
@media (max-width: 1024px) {
  .business .image_wrap {
    margin: 0 auto 80px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .business .image_wrap {
    gap: 24px;
  }
}
.business .image_wrap .image1 {
  width: 240px;
}
.business .image_wrap .image2 {
  width: 280px;
  margin-top: 180px;
}
.business_lead {
  font-size: 16px;
}
@media (max-width: 768px) {
  .business_lead {
    font-size: 14px;
  }
}
.business .business__inner {
  padding: 120px 0;
  max-width: min(1280px, 88.8888888889vw);
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .business .business__inner {
    padding: 0 0 120px 0;
  }
}
@media (max-width: 768px) {
  .business .business__inner {
    max-width: 100%;
    padding: 80px 0 80px;
  }
}
.business__header {
  display: grid;
  gap: 24px;
  width: fit-content;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .business__header {
    margin-left: 24px;
  }
}
.business__content {
  display: grid;
  gap: 24px;
  width: min(500px, 41.6666666667vw);
}
@media (max-width: 1024px) {
  .business__content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .business__content {
    padding: 0 24px;
  }
}
.business .pin_wrapper {
  margin-top: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .business .pin_wrapper {
    overflow-x: scroll;
    position: relative;
    padding: 0 24px;
  }
}
.business .pin_wrapper .pin_wrapper_inner {
  margin: 0 calc(50% - 52.5vw);
  width: 105vw;
  position: relative;
}
@media (max-width: 768px) {
  .business .pin_wrapper .pin_wrapper_inner {
    margin: 0;
    width: 100%;
    min-width: 800px;
  }
}
.business .pin_wrapper figure {
  margin: 0 calc(50% - 52.5vw);
  width: 105vw;
}
@media (max-width: 768px) {
  .business .pin_wrapper figure {
    margin: 0;
    width: 100%;
    min-width: 800px;
  }
}
.business .pin_ul {
  position: absolute;
  translate: -50% -50%;
  left: 50%;
  top: 55%;
  display: flex;
  gap: 3.75vw;
  width: 100%;
  justify-content: center;
}
.business .pin {
  background-color: #fff;
  border: 1px solid #1546c5;
  color: #1546c5;
  border-radius: 8px;
  padding: min(8px, 0.5714285714vw) min(16px, 1.1428571429vw);
  display: flex;
  align-items: center;
  gap: min(12px, 0.8571428571vw);
  min-width: min(270px, 19.2857142857vw);
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .business .pin {
    min-width: 120px;
    padding: 4px 10px;
  }
}
.business .pin:after {
  content: "+";
  background-color: #1546c5;
  color: #fff;
  font-size: min(14px, 1vw);
  padding: min(8px, 0.5714285714vw);
  line-height: 100%;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .business .pin:after {
    font-size: 12px;
    padding: 2px 4px;
  }
}
.business .pin p {
  font-size: min(18px, 1.2857142857vw);
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .business .pin p {
    font-size: 12px;
  }
}
.branch-modal__slider {
  padding: 0;
}
.branch-modal__slider img {
  width: 100%;
}

.branch-modal__inner {
  padding: 64px 80px;
  overflow: hidden;
}
.branch-modal__inner .scroll {
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 40px;
  padding-right: 24px;
}

.branch-modal__header .title {
  line-height: 1.4;
}

.branch-modal__text {
  overflow: visible;
  padding-right: 0;
}

@media (max-width: 768px) {
  .branch-modal__inner {
    padding: 40px 24px;
  }
}
@media (min-width: 981px) {
  .career-fv__nav {
    position: fixed;
    z-index: 10;
    top: 100px;
    right: 32px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    letter-spacing: 0.56px;
    font-style: italic;
    color: #1546c5;
    font-weight: 600;
  }
  .career-fv__nav::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -1;
    background: var(--color-graduate);
    filter: blur(24px);
    opacity: 0.4;
    border-radius: 10px;
  }
}
@media (max-width: 980px) {
  .career-fv__nav {
    display: none;
  }
}/*# sourceMappingURL=top.css.map */