/* Responsive Enhancement Added — Non-destructive scaling version (vw-based) */

/* ========================================
   RECRUIT PAGE STYLES
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --vw-with-scrollbar: 100vw;
  --header-height-pc: calc(88 * var(--vw-with-scrollbar) / 1920);
  --header-height-sp: calc(64 * var(--vw-with-scrollbar) / 400);

  --container-width: 1724px;
  --recruit-primary-color: #ffdd57;
  --recruit-text-color: #fff;
  --recruit-bg-color: #000;
  --recruit-border-color: #333;
  --recruit-overlay-color: rgba(0, 0, 0, 0.6);
  --recruit-card-bg: rgba(255, 255, 255, 0.85);
  --recruit-card-text: #000;
}

/* ========================================
   COMMON TITLE STYLES
   ======================================== */
.section-title {
  font-weight: 900;
  color: var(--recruit-text-color);
  line-height: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: italic;
  font-family: var(--font-english);
  margin: 0;
  position: relative;
  display: inline-block;
}

.section-title--underline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  bottom: calc(-10 * var(--vw-with-scrollbar) / 1920);
  left: 0;
  right: 0;
  height: 4px;
  height: calc(4 * var(--vw-with-scrollbar) / 1920);
  background: var(--recruit-text-color);
}

.section-subtitle {
  color: var(--recruit-text-color);
  font-weight: 300;
  font-family: var(--font-japanese);
  margin: 15px 0 0 0;
  margin: calc(15 * var(--vw-with-scrollbar) / 1920) 0 0 0;
}

/* ========================================
   1. HERO RECRUIT SECTION
   ======================================== */
.hero-recruit {
  position: relative;
  width: 100%;
  height: 130vh;
  min-height: 1300px;
  min-height: calc(1300 * var(--vw-with-scrollbar) / 1920);
  overflow: hidden;
  margin: 0;
  padding: 0px 0 0 0;
  background-color: var(--recruit-bg-color);
}

.hero-recruit__container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-recruit__content {
  position: absolute;
  top: 100px;
  top: calc(100 * var(--vw-with-scrollbar) / 1920);
  left: 90px;
  left: calc(90 * var(--vw-with-scrollbar) / 1920);
  z-index: 3;
  max-width: 600px;
  max-width: calc(600 * var(--vw-with-scrollbar) / 1920);
}

.hero-recruit__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-recruit__image .image-wrapper {
  position: absolute;
  width: 200%;
  height: 100%;
  display: flex;
  animation: image-scroll 30s linear infinite;
}

.hero-recruit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Image Scroll Animation */
@keyframes image-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Recruit Text Scroll Animation */
@keyframes recruit-text-scroll {
  0% {
    transform: translateY(-50%) rotate(-15deg) translateX(0%);
  }

  100% {
    transform: translateY(-50%) rotate(-15deg) translateX(-25%);
  }
}

/* Recruit Text Background */
.recruit-text-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.3s ease;
}

.recruit-text-background.visible {
  opacity: 0.8;
}

.recruit-text-pattern {
  position: absolute;
  width: 400%;
  height: 100%;
  top: 0%;
  left: 0;
  transform: translateY(-80%) rotate(-15deg);
  display: flex;
  align-items: center;
  animation: recruit-text-scroll 40s linear infinite;
}

.recruit-line {
  display: flex;
  align-items: center;
  margin-right: 40px;
  margin-right: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.recruit-line img {
  height: 700px;
  height: calc(700 * var(--vw-with-scrollbar) / 1920);
  width: auto;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}

.recruit-line-1 img {
  opacity: 1;
  filter: brightness(1.2) contrast(1.1);
}

.recruit-line-2 img {
  opacity: 1;
  filter: brightness(0.9) contrast(1.2);
}

.recruit-line-3 img {
  opacity: 1;
  filter: brightness(1.1) contrast(1);
}

.hero-recruit__title-section {
  margin-bottom: 50px;
  margin-bottom: calc(50 * var(--vw-with-scrollbar) / 1920);
}

.hero-recruit__title {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 200;
}

/* Line Parts Base Styles */
.line-parts {
  display: inline-block;
  overflow: hidden;
}

.line-bg-black {
  background-color: #000;
  padding: 0;
}

/* Line Parts Animation for Title Section */
.hero-recruit__title-section .line-parts {
  width: fit-content;
  padding: 0;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  padding-top: 10px;
}

.hero-recruit__title-section .line-parts.is-active {
  transform: scale(1);
}

.hero-recruit__title-section .line-parts:before,
.hero-recruit__title-section .line-parts:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.36, 0.48, 0.02, 0.98);
}

.hero-recruit__title-section .line-parts:before {
  transform: translateX(-100%);
}

.hero-recruit__title-section .line-parts:after {
  transform: translateX(0);
}

.hero-recruit__title-section .line-parts.is-active:before {
  transform: translateX(0);
}

.hero-recruit__title-section .line-parts.is-active:after {
  transform: translateX(100%);
  transition: transform 0.6s ease 0.4s;
}

.hero-recruit__title-section .line-parts.line-bg-black:before,
.hero-recruit__title-section .line-parts.line-bg-black:after {
  background-color: #000;
}

.hero-recruit__title-section .line-parts:before {
  z-index: 1;
}

.hero-recruit__title-section .line-parts:after {
  z-index: 5;
}

.hero-recruit__title-section .line-parts .hero-recruit__title-en,
.hero-recruit__title-section .line-parts .hero-recruit__title-jp {
  position: relative;
  z-index: 2;
}

.hero-recruit__title-en {
  font-size: 240px;
  font-size: calc(240 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  margin: 0;
  line-height: 0.75;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--recruit-text-color);
  text-decoration-thickness: 2px;
  text-decoration-thickness: calc(2 * var(--vw-with-scrollbar) / 1920);
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-text-color);
  background: transparent;
  width: fit-content;
  padding-right: 50px;
  padding-right: calc(50 * var(--vw-with-scrollbar) / 1920);
}

.hero-recruit__title-jp {
  font-size: 40px;
  font-size: calc(40 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-text-color);
  font-weight: bold;
  text-align: left;
  font-family: var(--font-japanese);
  background: transparent;
  display: inline-block;
  width: fit-content;
  margin: 0;
}

.hero-recruit__main {
  display: flex;
  gap: 80px;
  gap: calc(80 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 80px;
  margin-bottom: calc(80 * var(--vw-with-scrollbar) / 1920);
  align-items: flex-start;
}

.hero-recruit__left {
  flex: 1;
  position: relative;
  max-width: 800px;
  max-width: calc(800 * var(--vw-with-scrollbar) / 1920);
}

.hero-recruit__seeking {
  font-size: 40px;
  font-size: calc(40 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-primary-color);
  margin: 0 0 30px 0;
  margin: 0 0 calc(30 * var(--vw-with-scrollbar) / 1920) 0;
  font-weight: bold;
  -webkit-text-stroke: 3px #000000;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
  paint-order: stroke fill;
  text-rendering: geometricPrecision;
  letter-spacing: -0.02em;
  opacity: 0.3;
  filter: blur(5px);
  filter: blur(calc(5 * var(--vw-with-scrollbar) / 1920));
  transition: opacity 0.8s ease, filter 0.8s ease;
  position: relative;
  z-index: 200;
}

.hero-recruit__seeking.animate-blur-clear {
  opacity: 1;
  filter: blur(0);
}

.hero-recruit__card {
  background: var(--recruit-card-bg);
  color: var(--recruit-card-text);
  padding: 40px;
  padding: calc(40 * var(--vw-with-scrollbar) / 1920);
  border-radius: 12px;
  border-radius: calc(12 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.9;
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  margin-bottom: calc(20 * var(--vw-with-scrollbar) / 1920);
  width: 100%;
}

.hero-recruit__seeking-intro {
  background: var(--recruit-card-bg);
  color: var(--recruit-card-text);
  line-height: 1.2;
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
  display: inline-block;
  position: relative;
  z-index: 200;
}

/* Desktop/Mobile visibility */
.hero-recruit__seeking-intro-wrapper--desktop {
  display: block;
  position: relative;
  z-index: 200;
}

.hero-recruit__seeking-intro-wrapper--mobile {
  display: none;
}

.hero-recruit__seeking-description {
  background: var(--recruit-card-bg);
  color: var(--recruit-card-text);
  line-height: 1.9;
  font-size: 32px;
  font-size: calc(32 * var(--vw-with-scrollbar) / 1920);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  margin-bottom: calc(20 * var(--vw-with-scrollbar) / 1920);
  width: 150%;
  width: calc(0.65 * var(--vw-with-scrollbar));
  padding: 10px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920);
  position: relative;
  z-index: 100;
}

.hero-recruit__seeking-intro p {
  white-space: nowrap;
  margin: 0;
}

.hero-recruit__seeking-intro p {
  margin: 0;
  font-size: 100px;
  font-size: calc(100 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
}

.hero-recruit__seeking-description p {
  margin: 0 0 20px 0;
  margin: 0 0 calc(20 * var(--vw-with-scrollbar) / 1920) 0;
  font-weight: bold;
}

.hero-recruit__seeking-description p:first-child {
  font-size: 32px;
  font-size: calc(32 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  color: var(--recruit-card-text);
  margin-bottom: 25px;
  margin-bottom: calc(25 * var(--vw-with-scrollbar) / 1920);
}

.hero-recruit__seeking-intro p:last-child,
.hero-recruit__seeking-description p:last-child {
  margin-bottom: 0;
}

.hero-recruit__right {
  flex: 0 0 auto;
}

.hero-recruit__highlight {
  color: #00552e;
  font-weight: bold;
}

/* Fixed Buttons */
.hero-recruit__buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-recruit__btn {
  background: var(--recruit-bg-color);
  color: var(--recruit-primary-color);
  border: none;
  padding: 25px 10px;
  padding: calc(25 * var(--vw-with-scrollbar) / 1920)
    calc(10 * var(--vw-with-scrollbar) / 1920);
  width: 154px;
  width: calc(154 * var(--vw-with-scrollbar) / 1920);
  height: 154px;
  height: calc(154 * var(--vw-with-scrollbar) / 1920);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  font-size: calc(20 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.4;
  font-family: var(--font-japanese);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.hero-recruit__btn:hover {
  background: #333;
}

.hero-recruit__btn--primary {
  background: var(--recruit-primary-color);
  color: var(--recruit-bg-color);
}

.hero-recruit__btn--primary:hover {
  background: #ffc700;
  color: var(--recruit-bg-color);
}

.hero-recruit__btn--secondary {
  background: var(--recruit-bg-color);
  color: var(--recruit-primary-color);
}

.hero-recruit__btn--secondary:hover {
  background: #333;
  color: var(--recruit-primary-color);
}

/* ========================================
   2. STAFF SECTION
   ======================================== */
.staff {
  position: relative;
  scroll-margin-top: 120px;
  scroll-margin-top: calc(120 * var(--vw-with-scrollbar) / 1920);
}

.staff__container {
  position: relative;
  max-width: 1400px;
  max-width: calc(1400 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 calc(40 * var(--vw-with-scrollbar) / 1920);
}

.staff__header {
  text-align: center;
  margin-bottom: 100px;
  margin-bottom: calc(100 * var(--vw-with-scrollbar) / 1920);
}

.staff__title {
  margin: 0;
}

.staff__title-en {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  margin-bottom: -5px;
  margin-bottom: calc(-5 * var(--vw-with-scrollbar) / 1920);
  line-height: 0.9;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--recruit-text-color);
  text-decoration-thickness: 2px;
  text-decoration-thickness: calc(2 * var(--vw-with-scrollbar) / 1920);
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-text-color);
  display: block;
}

.staff__title-jp {
  display: block;
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  color: var(--recruit-text-color);
  font-family: var(--font-japanese);
  position: relative;
  z-index: 4;
  margin-top: -10px;
  margin-top: calc(-10 * var(--vw-with-scrollbar) / 1920);
}

.staff__members {
  display: flex;
  justify-content: center;
  gap: 100px;
  gap: calc(100 * var(--vw-with-scrollbar) / 1920);
  position: relative;
  padding-bottom: 80px;
  padding-bottom: calc(80 * var(--vw-with-scrollbar) / 1920);
}

/* Yellow background that extends full width */
.staff::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 426px;
  height: calc(426 * var(--vw-with-scrollbar) / 1920);
  background: var(--recruit-primary-color);
  z-index: 4;
}

.staff__member {
  position: relative;
  z-index: 5;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.staff__member-image {
  position: relative;
  width: 478px;
  width: calc(478 * var(--vw-with-scrollbar) / 1920);
  height: 443px;
  height: calc(443 * var(--vw-with-scrollbar) / 1920);
  overflow: hidden;
}

.staff__member-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffdd57;
  opacity: 0;
  transition: opacity 0.1s ease;
  pointer-events: none;
  mix-blend-mode: darken;
  z-index: 3;
}

.staff__member-image img {
  width: 478px;
  width: calc(478 * var(--vw-with-scrollbar) / 1920);
  height: 443px;
  height: calc(443 * var(--vw-with-scrollbar) / 1920);
  object-fit: cover;
  display: block;
  transition: filter 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  z-index: 1;
}

/* Staff Member Ribbon Animation */
.staff__member-ribbon {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffdd57;
  z-index: 2;
}

.staff__member.animate-ribbon-staff .staff__member-ribbon {
  animation: staffRibbonSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes staffRibbonSlide {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

/* Image starts hidden, appears after ribbon slides out */
.staff__member:not(.animate-ribbon-staff) .staff__member-image img {
  opacity: 0;
}

.staff__member.animate-ribbon-staff .staff__member-image img {
  opacity: 0;
  animation: staffImageAppear 0.6s ease 1.2s forwards;
}

@keyframes staffImageAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.staff__member:hover .staff__member-image::after {
  opacity: 1;
}

.staff__member:hover .staff__member-image img {
  outline: 6px solid #000;
  outline-offset: -6px;
}

.staff__member-icon {
  position: absolute;
  bottom: 16px;
  bottom: calc(16 * var(--vw-with-scrollbar) / 1920);
  right: 16px;
  right: calc(16 * var(--vw-with-scrollbar) / 1920);
  width: 60px;
  width: calc(60 * var(--vw-with-scrollbar) / 1920);
  height: 60px;
  height: calc(60 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff__member-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.staff__member:hover .staff__member-icon img {
  outline: 2px solid #000;
  outline-offset: -2px;
}

.staff__member-name {
  position: absolute;
  bottom: -80px;
  bottom: calc(-80 * var(--vw-with-scrollbar) / 1920);
  left: 0;
  right: 0;
  font-size: 96px;
  font-size: calc(96 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  letter-spacing: 0.05em;
  font-style: italic;
  text-transform: uppercase;
  z-index: 6;
  font-family: var(--font-english);
}

/* ========================================
   3. STAFF DETAILS SECTION
   ======================================== */
.staff-details {
  background: transparent;
  padding: 100px 0;
  padding: calc(100 * var(--vw-with-scrollbar) / 1920) 0;
  position: relative;
  z-index: 4;
}

.staff-details__container {
  max-width: 1400px;
  max-width: calc(1400 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
}

.staff__detail {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-columns: calc(300 * var(--vw-with-scrollbar) / 1920) 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  gap: calc(40 * var(--vw-with-scrollbar) / 1920);
  max-width: 1100px;
  max-width: calc(1100 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto 200px;
  margin: 0 auto calc(200 * var(--vw-with-scrollbar) / 1920);
  padding: 0 40px;
  padding: 0 calc(40 * var(--vw-with-scrollbar) / 1920);
  align-items: start;
  scroll-margin-top: 120px;
  scroll-margin-top: calc(120 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail-image {
  display: flex;
  flex-direction: column;
}

.staff__detail-schedule {
  grid-column: 1 / -1;
  margin-top: 40px;
  margin-top: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail--reverse {
  grid-template-columns: 350px 1fr 300px;
  grid-template-columns: calc(350 * var(--vw-with-scrollbar) / 1920) 1fr calc(
      300 * var(--vw-with-scrollbar) / 1920
    );
}

.staff__detail--reverse .staff__detail-image {
  grid-column: 3;
  grid-row: 1;
}

.staff__detail--reverse .staff__detail-content {
  grid-column: 2;
  grid-row: 1;
}

.staff__detail--reverse .staff__detail-schedule {
  grid-column: 1;
  grid-row: 1;
}

.staff__detail-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.staff__detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid #000;
}

.staff__detail-content {
  background: transparent;
  color: var(--recruit-text-color);
}

.staff__detail-header {
  color: var(--recruit-bg-color);
  margin-bottom: 30px;
  margin-bottom: calc(30 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail-header .line-parts {
  padding: 10px 26px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(26 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail-header .line-parts:last-child {
  margin-bottom: 0;
}

.staff__detail-title {
  font-size: 32px;
  font-size: calc(32 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 2;
}

.staff__detail-subtitle {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 2;
}

.staff__detail-questions {
  padding: 0px;
}

.staff__detail-question {
  margin-bottom: 30px;
  margin-bottom: calc(30 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail-question h4 {
  font-size: 20px;
  font-size: calc(20 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-primary-color);
  margin: 0 0 15px 0;
  margin: 0 0 calc(15 * var(--vw-with-scrollbar) / 1920) 0;
  font-weight: bold;
  line-height: 1.6;
  display: flex;
}

.staff__detail-question h4::before {
  content: "■";
  color: var(--recruit-primary-color);
  font-size: 30px;
  font-size: calc(30 * var(--vw-with-scrollbar) / 1920);
  flex-shrink: 0;
  margin-right: 8px;
  margin-right: calc(8 * var(--vw-with-scrollbar) / 1920);
  line-height: 1;
}

.staff__detail-question h4 > * {
  background-color: #000;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 0 4px;
  padding: 0 calc(4 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail-question p {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.8;
  color: var(--recruit-text-color);
  margin: 0;
  background-color: #000;
}

.staff__detail-name {
  color: var(--recruit-text-color);
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  background-color: #000;
  margin-top: 16px;
  margin-top: calc(16 * var(--vw-with-scrollbar) / 1920);
  display: inline-block;
  width: fit-content;
}

.staff__detail-name span {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  color: #fff;
}

.staff__detail-schedule {
  overflow: hidden;
}

.staff__detail-schedule-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-columns: calc(280 * var(--vw-with-scrollbar) / 1920) 1fr;
  gap: 40px;
  gap: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.staff__detail-schedule-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.staff__detail-schedule-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.staff__detail-schedule-info {
  display: flex;
  flex-direction: column;
}

.staff__detail-schedule-title {
  font-size: 32px;
  font-size: calc(32 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  margin: 0;
  padding: 10px 26px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(26 * var(--vw-with-scrollbar) / 1920);
  background: var(--recruit-primary-color);
  color: var(--recruit-bg-color);
  position: relative;
  z-index: 2;
}

.staff__detail-schedule-list {
  list-style: none;
  margin-top: 30px;
  margin-top: calc(30 * var(--vw-with-scrollbar) / 1920);
  flex: 1;
  background-color: #000;
}

.staff__detail-schedule-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  margin-bottom: calc(15 * var(--vw-with-scrollbar) / 1920);
  font-size: 20px;
  font-size: calc(20 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.5;
  color: var(--recruit-text-color);
  opacity: 0.3;
  filter: blur(5px);
  filter: blur(calc(5 * var(--vw-with-scrollbar) / 1920));
  transition: opacity 0.8s ease, filter 0.8s ease;
}

.staff__detail-schedule-list.animate-blur-clear li {
  opacity: 1;
  filter: blur(0);
}

.staff__detail-schedule-list li:last-child {
  margin-bottom: 0;
}

.staff__detail-schedule-list li::before {
  content: "■";
  color: var(--recruit-primary-color);
  margin-right: 15px;
  margin-right: calc(15 * var(--vw-with-scrollbar) / 1920);
  flex-shrink: 0;
  font-size: 30px;
  font-size: calc(30 * var(--vw-with-scrollbar) / 1920);
  line-height: 1;
  vertical-align: middle;
}

.staff__detail-schedule-list .time {
  font-weight: bold;
  margin-right: 15px;
  margin-right: calc(15 * var(--vw-with-scrollbar) / 1920);
  min-width: 80px;
  min-width: calc(80 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-primary-color);
}

/* ========================================
   4. REQUIREMENTS SECTION
   ======================================== */
.requirements {
  position: relative;
  min-height: 690px;
  min-height: calc(690 * var(--vw-with-scrollbar) / 1920);
  padding: 80px 0;
  padding: calc(80 * var(--vw-with-scrollbar) / 1920) 0;
  display: flex;
  align-items: center;
  z-index: 4;
  scroll-margin-top: 120px;
  scroll-margin-top: calc(120 * var(--vw-with-scrollbar) / 1920);
}

.requirements__bg-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1724px;
  max-width: calc(1724 * var(--vw-with-scrollbar) / 1920);
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.requirements__bg-image .static-noise-effect {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.requirements__bg-image .static-noise-effect::before,
.requirements__bg-image .static-noise-effect::after {
  width: 100%;
  height: 100%;
}

.requirements__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 1;
}

.requirements__bg-image > div {
  width: 100%;
  height: 100%;
}

.requirements__bg-image picture {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}

.requirements__bg-image .noise-canvas {
  object-fit: contain;
  object-position: center bottom;
}

.requirements__container {
  position: relative;
  z-index: 6;
  max-width: 1724px;
  max-width: calc(1724 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.requirements__content {
  width: 100%;
}

.requirements__title {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  margin: 0 0 10px 0;
  margin: 0 0 calc(10 * var(--vw-with-scrollbar) / 1920) 0;
  line-height: 0.78;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--recruit-text-color);
  text-decoration-thickness: 2px;
  text-decoration-thickness: calc(2 * var(--vw-with-scrollbar) / 1920);
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-text-color);
  background: var(--recruit-bg-color);
  display: block;
  width: fit-content;
  padding-right: 18px;
  padding-right: calc(18 * var(--vw-with-scrollbar) / 1920);
}

.requirements__subtitle {
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  margin-top: 10px;
  margin-top: calc(10 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 30px;
  margin-bottom: calc(30 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-text-color);
  font-weight: bold;
  text-align: left;
  font-family: var(--font-japanese);
  background: var(--recruit-bg-color);
  display: block;
  width: fit-content;
}

.line-parts {
  position: relative;
  overflow: hidden;
  width: fit-content;
  display: inline-block;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.line-parts--yellow {
  width: 100%;
  display: block;
}

.hero-recruit__left .line-parts {
  margin-bottom: 20px;
  margin-bottom: calc(20 * var(--vw-with-scrollbar) / 1920);
}

.line-parts.is-active {
  transform: scaleX(1);
}

.line-parts::before,
.line-parts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.36, 0.48, 0.02, 0.98);
}

.line-parts::after {
  z-index: 5;
  transition-delay: 0.4s;
}

.line-parts.is-active::after {
  transform: translateX(100%);
}

.line-parts--white::before,
.line-parts--white::after {
  background: #ffffff;
}

.line-parts--yellow::before,
.line-parts--yellow::after {
  background: var(--recruit-primary-color);
}

.requirements__description {
  background: #ffffff;
  color: var(--recruit-card-text);
  padding: 10px 20px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(20 * var(--vw-with-scrollbar) / 1920);
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  display: inline-block;
  width: fit-content;
  position: relative;
  z-index: 2;
}

/* ========================================
   5. REQUIREMENTS DETAIL SECTION
   ======================================== */
.requirements-detail {
  color: var(--recruit-text-color);
  padding: 80px 0 100px;
  padding: calc(80 * var(--vw-with-scrollbar) / 1920) 0
    calc(100 * var(--vw-with-scrollbar) / 1920);
  position: relative;
  z-index: 4;
}

.requirements-detail__container {
  max-width: 1100px;
  max-width: calc(1100 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 calc(40 * var(--vw-with-scrollbar) / 1920);
}

.requirements-detail__table {
  margin-bottom: 60px;
  margin-bottom: calc(60 * var(--vw-with-scrollbar) / 1920);
}

.requirements-detail__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-columns: calc(200 * var(--vw-with-scrollbar) / 1920) 1fr;
  padding: 25px 0;
  padding: calc(25 * var(--vw-with-scrollbar) / 1920) 0;
  gap: 40px;
  gap: calc(40 * var(--vw-with-scrollbar) / 1920);
  align-items: start;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transform: translateY(calc(30 * var(--vw-with-scrollbar) / 1920));
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background-color: #000;
}

.requirements-detail__row.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.requirements-detail__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--recruit-primary-color) 240px,
    var(--recruit-text-color) 240px
  );
  background: linear-gradient(
    to right,
    var(--recruit-primary-color) calc(240 * var(--vw-with-scrollbar) / 1920),
    var(--recruit-text-color) calc(240 * var(--vw-with-scrollbar) / 1920)
  );
}

.requirements-detail__label {
  color: var(--recruit-primary-color);
  font-size: 23px;
  font-size: calc(23 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.5;
}

.requirements-detail__sublabel {
  font-size: 12px;
  font-size: clamp(10px, calc(12 * var(--vw-with-scrollbar) / 1920), 12px);
  font-weight: normal;
  color: var(--recruit-primary-color);
}

.requirements-detail__value {
  color: var(--recruit-text-color);
  font-size: 23px;
  font-size: calc(23 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.8;
}

.requirements-detail__action {
  text-align: left;
}

.requirements-detail__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  gap: calc(10 * var(--vw-with-scrollbar) / 1920);
  background: var(--recruit-primary-color);
  color: var(--recruit-bg-color);
  padding: 15px 40px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(40 * var(--vw-with-scrollbar) / 1920);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  opacity: 0;
  transform: translateX(-100px);
  transform: translateX(calc(-100 * var(--vw-with-scrollbar) / 1920));
  transition: background 0.3s ease, outline 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.requirements-detail__btn.animate-requirements-btn {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirements-detail__btn:hover {
  background: #ffffff;
  outline: 4px solid #000;
  outline: calc(4 * var(--vw-with-scrollbar) / 1920) solid #000;
  outline-offset: -4px;
  outline-offset: calc(-4 * var(--vw-with-scrollbar) / 1920);
}

.requirements-detail__btn img {
  width: 16px;
  width: calc(16 * var(--vw-with-scrollbar) / 1920);
  height: 16px;
  height: calc(16 * var(--vw-with-scrollbar) / 1920);
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) saturate(100%);
}

/* ========================================
   6. BENEFITS SECTION
   ======================================== */
.benefits {
  color: var(--recruit-text-color);
  padding: 80px 0;
  padding: calc(80 * var(--vw-with-scrollbar) / 1920) 0;
  text-align: center;
  position: relative;
  z-index: 4;
  scroll-margin-top: 120px;
  scroll-margin-top: calc(120 * var(--vw-with-scrollbar) / 1920);
}

.benefits__container {
  max-width: 1400px;
  max-width: calc(1400 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 calc(40 * var(--vw-with-scrollbar) / 1920);
}

.benefits__header {
  margin-bottom: 60px;
  margin-bottom: calc(60 * var(--vw-with-scrollbar) / 1920);
}

.benefits__title {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  margin-bottom: -5px;
  margin-bottom: calc(-5 * var(--vw-with-scrollbar) / 1920);
  line-height: 0.9;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--recruit-text-color);
  text-decoration-thickness: 2px;
  text-decoration-thickness: calc(2 * var(--vw-with-scrollbar) / 1920);
  text-underline-offset: 2px;
  text-underline-offset: calc(2 * var(--vw-with-scrollbar) / 1920);
  color: var(--recruit-text-color);
  display: block;
}

.benefits__subtitle {
  display: block;
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  color: var(--recruit-text-color);
  font-family: var(--font-japanese);
  margin-top: -10px;
  margin-top: calc(-10 * var(--vw-with-scrollbar) / 1920);
}

.benefits__image {
  margin-bottom: 80px;
  margin-bottom: calc(80 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  justify-content: center;
}

.benefits__image img {
  max-width: 1100px;
  max-width: calc(1100 * var(--vw-with-scrollbar) / 1920);
  width: 100%;
  height: auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 80px;
  gap: calc(16 * var(--vw-with-scrollbar) / 1920)
    calc(80 * var(--vw-with-scrollbar) / 1920);
  max-width: 1100px;
  max-width: calc(1100 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 20px;
  gap: calc(20 * var(--vw-with-scrollbar) / 1920);
  text-align: left;
  background-color: transparent;
  position: relative;
}

.benefits__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 0;
}

.benefits__item.animate-bar::before {
  animation: slideBarRight 0.6s ease-out forwards;
}

@keyframes slideBarRight {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.benefits__icon {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benefits__icon img {
  width: auto;
  height: 93px;
  height: calc(93 * var(--vw-with-scrollbar) / 1920);
  object-fit: cover;
}

.benefits__text {
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 1.5;
  color: var(--recruit-text-color);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transform: translateY(calc(20 * var(--vw-with-scrollbar) / 1920));
}

.benefits__text.animate-text {
  animation: slideUpFadeIn 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    transform: translateY(calc(20 * var(--vw-with-scrollbar) / 1920));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-break {
  display: inline;
}

.mobile-break-sp {
  display: none;
}

/* ========================================
   7. RESPONSIVE STYLES - MOBILE
   ======================================== */
@media (max-width: 1024px) {
  /* Hero Recruit */
  .hero-recruit {
    height: 110vh;
    min-height: 900px;
    min-height: calc(900 * 100vw / 400);
    max-height: 900px;
    max-height: calc(900 * 100vw / 400);
    padding-top: 30px;
    padding-top: calc(30 * 100vw / 400);
  }

  .hero-recruit__container {
    margin: 0;
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .hero-recruit__content {
    left: 24px;
    left: calc(24 * 100vw / 400);
    right: 24px;
    right: calc(24 * 100vw / 400);
    top: 50px;
    top: calc(50 * 100vw / 400);
    max-width: 250px;
    max-width: calc(250 * 100vw / 400);
  }

  .hero-recruit__title-en {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    margin: 0px;
    padding-right: 20px;
    padding-right: calc(20 * 100vw / 400);
  }

  .hero-recruit__title-jp {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    margin-top: -10px;
    margin-top: calc(-10 * 100vw / 400);
  }

  .hero-recruit__title-section {
    margin-bottom: 30px;
    margin-bottom: calc(30 * 100vw / 400);
  }

  .recruit-line img {
    height: 200px;
    height: calc(200 * 100vw / 400);
  }

  .recruit-text-pattern {
    transform: translateY(-80%) rotate(-15deg);
    animation: recruit-text-scroll 12s linear infinite;
  }

  .hero-recruit__main {
    flex-direction: column;
    gap: 40px;
    gap: calc(40 * 100vw / 400);
    margin-bottom: 50px;
    margin-bottom: calc(50 * 100vw / 400);
  }

  .hero-recruit__left {
    flex: 1;
    align-self: flex-start;
    text-align: left;
    max-width: 170%;
    width: 170%;
  }

  .hero-recruit__seeking {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    text-align: left;
    margin-bottom: 25px;
    margin-bottom: calc(25 * 100vw / 400);
  }

  .hero-recruit__card {
    padding: 20px;
    padding: calc(20 * 100vw / 400);
    line-height: 1.6;
    width: 90%;
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
  }

  .hero-recruit__seeking-intro {
    background: transparent;
    border: none;
    width: fit-content;
    display: block;
    box-shadow: none;
  }

  .hero-recruit__seeking-intro p {
    font-size: 41px;
    font-size: calc(41 * 100vw / 400);
    padding: 5px;
    padding: calc(5 * 100vw / 400);
    display: block;
  }

  .staff__title-jp {
    font-size: 22px;
    font-size: calc(22 * 100vw / 400);
  }

  .hero-recruit__seeking-intro.mobile-split .line-1,
  .hero-recruit__seeking-intro.mobile-split .line-2,
  .hero-recruit__seeking-intro.mobile-split .line-3 {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 0px 12px;
    padding: 0px calc(12 * 100vw / 400);
    display: inline-block;
  }

  .recruit-text-background {
    top: 33%;
  }

  /* Show mobile version, hide desktop */
  .hero-recruit__seeking-intro-wrapper--desktop {
    display: none;
  }

  .hero-recruit__seeking-intro-wrapper--mobile {
    display: block;
    position: relative;
    z-index: 20;
    mix-blend-mode: screen;
  }

  .hero-recruit__seeking-intro-wrapper--mobile .line-parts {
    display: block;
    margin-bottom: 12px;
    margin-bottom: calc(12 * 100vw / 400);
    width: fit-content;
    padding: 0;
    background: white;
    position: relative;
  }

  .hero-recruit__seeking-intro-wrapper--mobile .hero-recruit__seeking-intro {
    background: transparent;
    border: none;
    box-shadow: none;
    width: fit-content;
    display: block;
  }

  .hero-recruit__seeking-intro-wrapper--mobile .hero-recruit__seeking-intro p {
    padding: 5px;
    padding: calc(5 * 100vw / 400);
    display: inline-block;
    width: fit-content;
    margin: 0;
    color: #000;
    mix-blend-mode: multiply;
    position: relative;
    z-index: 1;
  }

  .hero-recruit__seeking-description {
    width: 83%;
    max-width: 100%;
    background-color: #ffffff;
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    padding: 8px;
    padding: calc(8 * 100vw / 400);
  }

  .hero-recruit__seeking-description br {
    display: none;
  }

  .hero-recruit__seeking-description p {
    margin: 0 0 0px 0;
  }

  .hero-recruit__seeking-description p:first-child {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 0px;
  }

  .hero-recruit__buttons {
    position: fixed;
    right: 0px;
    top: 85%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 0px;
    z-index: 9999 !important;
    bottom: auto;
    left: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .hero-recruit__btn {
    width: 90px;
    width: calc(90 * 100vw / 400);
    padding: 10px 5px;
    padding: calc(30 * 100vw / 400) calc(5 * 100vw / 400);
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    text-align: center;
    flex: none;
  }

  .hero-recruit__btn--primary {
    background-color: #ffdd57cc;
  }

  .hero-recruit__btn--secondary {
    background-color: #000000cc;
  }

  /* Staff */
  .staff {
    padding: 60px 0 0 0;
    padding: calc(60 * 100vw / 400) 0 0 0;
    scroll-margin-top: 80px;
    scroll-margin-top: calc(80 * 100vw / 400);
  }

  .staff__container {
    padding: 24px;
    padding: calc(24 * 100vw / 400);
    max-width: 100%;
  }

  .staff__header {
    margin-bottom: 60px;
    margin-bottom: calc(60 * 100vw / 400);
    text-align: left;
  }

  .staff__title-en {
    text-align: left;
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
  }

  .staff__members {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    gap: calc(20 * 100vw / 400);
    padding-bottom: 20px;
    padding-bottom: calc(20 * 100vw / 400);
  }

  .staff::after {
    height: 100px;
    height: calc(100 * 100vw / 400);
  }

  .staff__member-image {
    width: auto;
    height: auto;
  }

  .staff__member-image img {
    width: 100%;
    height: 100%;
  }

  .staff__member:hover .staff__member-image::after {
    opacity: 0.3;
  }

  .staff__member:hover .staff__member-image img {
    outline: 2px solid #000;
    outline-offset: -2px;
  }

  .staff__member:hover .staff__member-icon img {
    outline: 2px solid #000;
    outline-offset: -2px;
  }

  .staff__member-icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-width: 0 0 35px 35px;
    width: 20px;
    width: calc(20 * 100vw / 400);
    height: 20px;
    height: calc(20 * 100vw / 400);
  }

  .staff__member-name {
    font-size: 33.86px;
    font-size: calc(33.86 * 100vw / 400);
    bottom: -30px;
    bottom: calc(-30 * 100vw / 400);
  }

  /* Staff Details */
  .staff-details {
    padding: 60px 0;
    padding: calc(60 * 100vw / 400) 0;
  }

  .staff__detail {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 80px;
    margin-bottom: calc(80 * 100vw / 400);
    padding: 0 24px;
    padding: 0 calc(24 * 100vw / 400);
    max-width: 100%;
    scroll-margin-top: 80px;
    scroll-margin-top: calc(80 * 100vw / 400);
  }

  .staff-details__container {
    max-width: 100%;
  }

  .staff__detail--reverse {
    grid-template-columns: 1fr;
  }

  .staff__detail--reverse .staff__detail-image {
    grid-column: 1;
    grid-row: 1;
  }

  .staff__detail--reverse .staff__detail-content {
    grid-column: 1;
    grid-row: 2;
  }

  .staff__detail--reverse .staff__detail-schedule {
    grid-column: 1;
    grid-row: 3;
  }

  .staff__detail-image {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    position: relative;
  }

  .staff__detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
  }

  .staff__detail-header {
    margin-bottom: 20px;
    margin-bottom: calc(20 * 100vw / 400);
    margin-top: -5px;
    margin-top: calc(-5 * 100vw / 400);
    position: relative;
    z-index: 10;
    padding: 0px;
  }

  .staff__detail-header .line-parts {
    padding: 10px 15px;
    padding: calc(10 * 100vw / 400) calc(15 * 100vw / 400);
  }

  .staff__detail-subtitle::before {
    content: "- ";
  }

  .staff__detail-question {
    margin-bottom: 25px;
    margin-bottom: calc(25 * 100vw / 400);
    background-color: #000000cc;
  }

  .staff__detail-question h4 {
    background-color: transparent;
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-question h4 > * {
    background-color: transparent;
  }

  .staff__detail-question h4::before {
    font-size: 21px;
    font-size: calc(21 * 100vw / 400);
  }

  .staff__detail-question p {
    background-color: transparent;
    line-height: 1.7;
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-title {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-subtitle {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-name {
    position: absolute;
    top: 50%;
    left: 10px;
    left: calc(10 * 100vw / 400);
    transform: translateY(-50%);
    margin: 0;
    z-index: 15;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    padding: calc(10 * 100vw / 400) calc(15 * 100vw / 400);
    text-align: left;
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-name span {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-schedule {
    margin-top: 30px;
    margin-top: calc(30 * 100vw / 400);
    position: relative;
  }

  .staff__detail-schedule-content {
    display: block;
    position: relative;
  }

  .staff__detail-schedule-image {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }

  .staff__detail-schedule-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
  }

  .staff__detail-schedule-title {
    position: relative;
    z-index: 10;
    padding: 8px 15px;
    padding: calc(8 * 100vw / 400) calc(15 * 100vw / 400);
    display: block;
    visibility: visible;
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }

  .staff__detail-schedule-list {
    padding: 15px 0px;
    padding: calc(15 * 100vw / 400) 0px;
    background-color: #000000cc;
  }

  .staff__detail-schedule-list li {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
    align-items: flex-start;
  }

  .staff__detail-schedule-list li::before {
    font-size: 20px;
    font-size: calc(20 * 100vw / 400);
  }

  .staff__detail-schedule-list .time {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    min-width: 60px;
    min-width: calc(60 * 100vw / 400);
    margin-right: 10px;
    margin-right: calc(10 * 100vw / 400);
  }

  .staff__detail-schedule-info {
    margin-top: -10px;
    margin-top: calc(-10 * 100vw / 400);
  }

  /* Requirements */
  .requirements {
    min-height: 200px;
    min-height: calc(200 * 100vw / 400);
    padding: 24px;
    padding: calc(24 * 100vw / 400);
    position: relative;
    display: flex;
    align-items: flex-end;
    scroll-margin-top: 120px;
    scroll-margin-top: calc(120 * 100vw / 400);
  }

  .requirements__bg-image {
    width: 88%;
    height: 125%;
    aspect-ratio: 1 / 1;
    background-size: cover;
  }

  .requirements__container {
    padding: 0 0px;
    align-items: flex-end;
    display: flex;
    height: 100%;
  }

  .requirements__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .requirements__title {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
    padding-right: 10px;
    padding-right: calc(10 * 100vw / 400);
  }

  .requirements__subtitle {
    font-size: 22px;
    font-size: calc(22 * 100vw / 400);
    margin: 10px 0 20px 0;
    margin: calc(10 * 100vw / 400) 0 calc(20 * 100vw / 400) 0;
  }

  .requirements__description {
    padding: 12px 15px;
    padding: calc(12 * 100vw / 400) calc(15 * 100vw / 400);
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    line-height: 1.6;
    margin: 0;
  }

  /* Requirements Detail */
  .requirements-detail {
    padding: 30px 0 50px;
    padding: calc(30 * 100vw / 400) 0 calc(50 * 100vw / 400);
  }

  .requirements-detail__container {
    padding: 0 24px;
    padding: 0 calc(24 * 100vw / 400);
    max-width: 100%;
  }

  .requirements-detail__table {
    margin-bottom: 30px;
    margin-bottom: calc(30 * 100vw / 400);
  }

  .requirements-detail__row {
    grid-template-columns: 1fr;
    gap: 10px;
    gap: calc(10 * 100vw / 400);
    padding: 15px 0;
    padding: calc(15 * 100vw / 400) 0;
  }

  .requirements-detail__row::after {
    background: var(--recruit-text-color);
  }

  .requirements-detail__label {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    margin: 10px 10px;
    margin: calc(10 * 100vw / 400) calc(10 * 100vw / 400);
    margin-bottom: 8px;
    margin-bottom: calc(8 * 100vw / 400);
  }

  .requirements-detail__sublabel {
    font-size: 10px;
    font-size: calc(10 * 100vw / 400);
  }

  .requirements-detail__value {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    line-height: 1.6;
    margin: 10px 10px;
    margin: calc(10 * 100vw / 400) calc(10 * 100vw / 400);
  }

  .requirements-detail__action {
    text-align: center;
  }

  .requirements-detail__btn {
    padding: 8px 20px;
    padding: calc(8 * 100vw / 400) calc(20 * 100vw / 400);
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
    width: 100%;
    max-width: 250px;
    max-width: calc(250 * 100vw / 400);
    justify-content: center;
    gap: 20px;
    gap: calc(20 * 100vw / 400);
  }

  .requirements-detail__btn img {
    width: 12px;
    width: calc(12 * 100vw / 400);
    height: 12px;
    height: calc(12 * 100vw / 400);
  }

  /* Benefits */
  .benefits {
    padding: 30px 0;
    padding: calc(30 * 100vw / 400) 0;
    scroll-margin-top: 80px;
    scroll-margin-top: calc(80 * 100vw / 400);
  }

  .benefits__container {
    padding: 0 24px;
    padding: 0 calc(24 * 100vw / 400);
    max-width: 100%;
  }

  .benefits__title {
    text-align: left;
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
  }

  .benefits__subtitle {
    text-align: left;
    font-size: 22px;
    font-size: calc(22 * 100vw / 400);
  }

  .benefits__header {
    margin-bottom: 30px;
    margin-bottom: calc(30 * 100vw / 400);
  }

  .benefits__image {
    margin-bottom: 0px;
  }

  .benefits__image img {
    max-width: 100%;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    gap: calc(5 * 100vw / 400);
    max-width: 100%;
    background-color: #000000cc;
    padding: 10px;
    padding: calc(10 * 100vw / 400);
  }

  .benefits__item {
    gap: 10px;
    gap: calc(10 * 100vw / 400);
    background-color: transparent;
    text-align: center;
  }

  .benefits__item:first-child {
    grid-column: 1 / -1;
  }

  .benefits__item:first-child .benefits__text br {
    display: none;
  }

  .benefits__item::before {
    background-color: transparent;
  }

  .benefits__text {
    font-size: 15px;
    font-size: calc(15 * 100vw / 400);
    line-height: 1.4;
  }

  .benefits__icon img {
    max-width: 40px;
    max-width: calc(40 * 100vw / 400);
    max-height: 40px;
    max-height: calc(40 * 100vw / 400);
  }

  .mobile-break {
    display: none;
  }

  .mobile-break-sp {
    display: inline;
  }
}
