/* Responsive Enhancement Applied — vw-based scaling (method from contact.css) */

/* Responsive 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);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  padding-bottom: 100px;
  padding-bottom: calc(100 * var(--vw-with-scrollbar) / 1920);
  z-index: 999;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hero Title with Gradient - NEWSUSHIZM Style */
.hero-text-wrapper {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  text-align: center;
}

.hero-title {
  font-size: 211.28px;
  font-size: clamp(
    120px,
    calc(211.28 * var(--vw-with-scrollbar) / 1920),
    240px
  );
  font-weight: 900;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: var(--font-english);
  white-space: nowrap;
  display: inline-block;
}

.elecs-char {
  display: inline-block;
  background: linear-gradient(to bottom, #ffffff 0%, #00552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  transform: translateY(calc(20 * var(--vw-with-scrollbar) / 1920));
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.elecs-space {
  display: inline-block;
  width: 0.3em;
}

/* Hero Image Slider with Noise Transition */
.hero-image-slider {
  position: relative;
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding-top: 120px;
  padding-top: calc(120 * var(--vw-with-scrollbar) / 1920);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* New slide appears on top during transition */
.hero-slide.slide-in {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

/* Old slide stays visible underneath */
.hero-slide.slide-out {
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: mask-image, mask-size, mask-position;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Apply circle zoom animation only to incoming slide */
.hero-slide.slide-in img {
  animation: grungeErosionReveal 0.85s linear forwards;
  -webkit-animation: grungeErosionReveal 0.85s linear forwards;
}

/* Old slide image stays visible (no animation) */
.hero-slide.slide-out img {
  opacity: 1;
}

/* Noise overlay - positioned exactly like the image */
.hero-slide-noise {
  position: absolute;
  top: 120px;
  top: calc(120 * var(--vw-with-scrollbar) / 1920);
  left: 0;
  right: 0;
  bottom: 100px;
  bottom: calc(100 * var(--vw-with-scrollbar) / 1920);
  opacity: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  z-index: 10;
  will-change: mask-image, mask-size, mask-position;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Mobile responsive - adjust for different padding */
@media (max-width: 1024px) {
  .hero-slide-noise {
    top: calc(120 * 100vw / 400);
    bottom: calc(100 * 100vw / 400);
  }
}

/* Show noise on active slide with animation */
.hero-slide.active .hero-slide-noise {
  opacity: 0.8;
  animation: noise-grain-move 0.5s steps(4) infinite;
}

/* Disable noise on old slide */
.hero-slide.slide-out .hero-slide-noise {
  opacity: 0;
}

/* Noise on transition slide with circular mask */
.hero-slide.slide-in .hero-slide-noise {
  opacity: 0.7;
  /* Apply same circular mask as the image */
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 0%,
    black 100%,
    black 100%
  );
  mask-image: radial-gradient(
    circle at center,
    black 0%,
    black 100%,
    black 100%
  );
  animation: noise-flicker 0.85s steps(8),
    grungeErosionReveal 0.85s linear forwards,
    noise-grain-move 0.5s steps(4) infinite;
  -webkit-animation: noise-flicker 0.85s steps(8),
    grungeErosionReveal 0.85s linear forwards,
    noise-grain-move 0.5s steps(4) infinite;
}

/* Animated grain movement */
@keyframes noise-grain-move {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 50px 50px;
  }
  50% {
    background-position: 100px 0;
  }
  75% {
    background-position: 50px -50px;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes noise-flicker {
  0%,
  100% {
    opacity: 0.8;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0.7;
  }
}

/* Grunge Alpha Erosion Animations - Inside-Out Reveal with Circle Zoom */
@keyframes grungeErosionReveal {
  0% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 1%,
      transparent 1.5%
    );
    mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 1%,
      transparent 1.5%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
  }

  5% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 2.5%, transparent 3%);
    mask-image: radial-gradient(circle at center, black 0%, black 2.5%, transparent 3%);
  }
  10% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 5%, transparent 6%);
    mask-image: radial-gradient(circle at center, black 0%, black 5%, transparent 6%);
  }
  15% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 7.5%, transparent 9%);
    mask-image: radial-gradient(circle at center, black 0%, black 7.5%, transparent 9%);
  }

  20% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 10%,
      transparent 12%
    );
    mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 10%,
      transparent 12%
    );
  }

  25% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 14.5%, transparent 17%);
    mask-image: radial-gradient(circle at center, black 0%, black 14.5%, transparent 17%);
  }
  30% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 19%, transparent 22%);
    mask-image: radial-gradient(circle at center, black 0%, black 7.5%, transparent 22%);
  }
  35% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 23.5%, transparent 27%);
    mask-image: radial-gradient(circle at center, black 0%, black 23.5%, transparent 27%);
  }

  40% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 28%,
      transparent 32%
    );
    mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 28%,
      transparent 32%
    );
  }

  45% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 32.8%, transparent 37.2%);
    mask-image: radial-gradient(circle at center, black 0%, black 32.8%, transparent 37.2%);
  }
  50% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 37.6%, transparent 42.4%);
    mask-image: radial-gradient(circle at center, black 0%, black 37.6%, transparent 42.4%);
  }
  55% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 42.4%, transparent 47.6%);
    mask-image: radial-gradient(circle at center, black 0%, black 42.4%, transparent 47.6%);
  }
  60% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 47.2%, transparent 52.8%);
    mask-image: radial-gradient(circle at center, black 0%, black 47.2%, transparent 52.8%);
  }

  65% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 52%,
      transparent 58%
    );
    mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 52%,
      transparent 58%
    );
  }

  70% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 57.75%, transparent 64%);
    mask-image: radial-gradient(circle at center, black 0%, black 57.75%, transparent 64%);
  }
  75% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 63.5%, transparent 70%);
    mask-image: radial-gradient(circle at center, black 0%, black 63.5%, transparent 70%);
  }
  80% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 69.25%, transparent 76%);
    mask-image: radial-gradient(circle at center, black 0%, black 69.25%, transparent 76%);
  }

  85% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 75%,
      transparent 82%
    );
    mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 75%,
      transparent 82%
    );
  }

  90% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 83.33%, transparent 88%);
    mask-image: radial-gradient(circle at center, black 0%, black 83.33%, transparent 88%);
  }
  95% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 91.66%, transparent 94%);
    mask-image: radial-gradient(circle at center, black 0%, black 91.66%, transparent 94%);
  }
  
  100% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 100%,
      black 100%
    );
    mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 100%,
      black 100%
    );
  }
}

@-webkit-keyframes grungeErosionReveal {
  0% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 1%,
      transparent 1.5%
    );
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
  }

  5% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 2.5%, transparent 3%);
  }
  10% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 5%, transparent 6%);
  }
  15% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 7.5%, transparent 9%);
  }

  20% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 10%,
      transparent 12%
    );
  }

  25% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 14.5%, transparent 17%);
  }
  30% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 19%, transparent 22%);
  }
  35% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 23.5%, transparent 27%);
  }

  40% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 28%,
      transparent 32%
    );
  }

  45% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 32.8%, transparent 37.2%);
  }
  50% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 37.6%, transparent 42.4%);
  }
  55% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 42.4%, transparent 47.6%);
  }
  60% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 47.2%, transparent 52.8%);
  }

  65% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 52%,
      transparent 58%
    );
  }

  70% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 57.75%, transparent 64%);
  }
  75% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 63.5%, transparent 70%);
  }
  80% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 69.25%, transparent 76%);
  }

  85% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 75%,
      transparent 82%
    );
  }

  90% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 83.33%, transparent 88%);
  }
  95% {
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 91.66%, transparent 94%);
  }
  
  100% {
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 0%,
      black 100%,
      black 100%
    );
  }
}

@keyframes grungeErosionHide {
  0% {
    opacity: 1;
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 100%,
      black 100%
    );
    mask-image: radial-gradient(circle at center, black 100%, black 100%);
  }

  100% {
    opacity: 0;
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 100%,
      black 100%
    );
    mask-image: radial-gradient(circle at center, black 100%, black 100%);
  }
}

@-webkit-keyframes grungeErosionHide {
  0% {
    opacity: 1;
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 100%,
      black 100%
    );
  }

  100% {
    opacity: 0;
    -webkit-mask-image: radial-gradient(
      circle at center,
      black 100%,
      black 100%
    );
  }
}

@keyframes stripe-expand {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* Hero Japanese Text with Knockout Effect */
.hero-japanese-text {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1765px;
  max-width: calc(1765 * var(--vw-with-scrollbar) / 1920);
  width: 100%;
  z-index: 20;
  mix-blend-mode: screen;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Desktop/Mobile visibility */
.hero-japanese-text--desktop {
  display: block;
}

.hero-japanese-text--mobile {
  display: none;
}

.hero-japanese-text span {
  color: black;
  font-size: 100px;
  font-size: calc(100 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-family: var(--font-english);
  mix-blend-mode: multiply;
  position: relative;
  z-index: 21;
}

/* Line Parts Base Styles */
.hero-japanese-text .line-parts {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0;
  background: white;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

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

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

.hero-japanese-text .line-parts:before {
  transform: translateX(-100%);
  z-index: 1;
}

.hero-japanese-text .line-parts:after {
  transform: translateX(0);
  z-index: 5;
}

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

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

.hero-japanese-text .line-parts .line-txt {
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  padding: calc(4 * var(--vw-with-scrollbar) / 1920)
    calc(8 * var(--vw-with-scrollbar) / 1920);
  z-index: 2;
}

/* Hero Line Ornament */
.hero-line-ornament {
  position: absolute;
  bottom: 60px;
  bottom: calc(60 * var(--vw-with-scrollbar) / 1920);
  right: 60px;
  right: calc(60 * var(--vw-with-scrollbar) / 1920);
  width: 200px;
  width: calc(200 * var(--vw-with-scrollbar) / 1920);
  height: 300px;
  height: calc(300 * var(--vw-with-scrollbar) / 1920);
  z-index: 10;
  pointer-events: none;
}

.ornament-line {
  position: absolute;
  background: var(--yellow-accent);
  opacity: 0.8;
}

.ornament-diagonal-1 {
  width: 150px;
  width: calc(150 * var(--vw-with-scrollbar) / 1920);
  height: 2px;
  height: calc(2 * var(--vw-with-scrollbar) / 1920);
  position: absolute;
  top: 20px;
  top: calc(20 * var(--vw-with-scrollbar) / 1920);
  right: 21px;
  right: calc(21 * var(--vw-with-scrollbar) / 1920);
  transform: rotate(-45deg);
  transform-origin: right top;
  z-index: 6;
}

.ornament-vertical-1 {
  position: absolute;
  width: 2px;
  width: calc(2 * var(--vw-with-scrollbar) / 1920);
  height: calc(40vh + 40px);
  height: calc(40vh + calc(40 * var(--vw-with-scrollbar) / 1920));
  top: 127px;
  top: calc(127 * var(--vw-with-scrollbar) / 1920);
  right: 126px;
  right: calc(126 * var(--vw-with-scrollbar) / 1920);
  background: var(--yellow-accent);
  opacity: 0.8;
  z-index: 1;
}

.ornament-horizontal-1 {
  width: 40px;
  width: calc(40 * var(--vw-with-scrollbar) / 1920);
  height: 2px;
  height: calc(2 * var(--vw-with-scrollbar) / 1920);
  top: 60px;
  top: calc(60 * var(--vw-with-scrollbar) / 1920);
  left: 15px;
  left: calc(15 * var(--vw-with-scrollbar) / 1920);
}

.ornament-diagonal-2 {
  width: 128px;
  width: calc(128 * var(--vw-with-scrollbar) / 1920);
  height: 2px;
  height: calc(2 * var(--vw-with-scrollbar) / 1920);
  position: absolute;
  top: 90px;
  top: calc(90 * var(--vw-with-scrollbar) / 1920);
  right: 21px;
  right: calc(21 * var(--vw-with-scrollbar) / 1920);
  transform: rotate(-45deg);
  transform-origin: right top;
  z-index: 6;
}

.ornament-vertical-2 {
  position: absolute;
  width: 2px;
  width: calc(2 * var(--vw-with-scrollbar) / 1920);
  height: calc(30vh + 30px);
  height: calc(30vh + calc(30 * var(--vw-with-scrollbar) / 1920));
  top: 181px;
  top: calc(181 * var(--vw-with-scrollbar) / 1920);
  right: 110px;
  right: calc(110 * var(--vw-with-scrollbar) / 1920);
  background: var(--yellow-accent);
  opacity: 0.8;
  z-index: 1;
}

.ornament-vertical-3 {
  width: 2px;
  width: calc(2 * var(--vw-with-scrollbar) / 1920);
  height: 120px;
  height: calc(120 * var(--vw-with-scrollbar) / 1920);
  top: 90px;
  top: calc(90 * var(--vw-with-scrollbar) / 1920);
  right: 0;
}

.ornament-number {
  position: absolute;
  font-size: 24px;
  font-size: clamp(16px, calc(24 * var(--vw-with-scrollbar) / 1920), 24px);
  font-weight: bold;
  color: #000;
  text-shadow: -0.6px -0.6px 0 #ffd557, 0.6px -0.6px 0 #ffd557,
    -0.6px 0.6px 0 #ffd557, 0.6px 0.6px 0 #ffd557, -0.6px 0 0 #ffd557,
    0.6px 0 0 #ffd557, 0 -0.6px 0 #ffd557, 0 0.6px 0 #ffd557;
  font-family: var(--font-english);
  width: 40px;
  width: calc(40 * var(--vw-with-scrollbar) / 1920);
  height: 40px;
  height: calc(40 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ornament-01 {
  top: 40px;
  top: calc(40 * var(--vw-with-scrollbar) / 1920);
  right: -20px;
  right: calc(-20 * var(--vw-with-scrollbar) / 1920);
}

.ornament-03 {
  bottom: 40px;
  bottom: calc(40 * var(--vw-with-scrollbar) / 1920);
  right: -20px;
  right: calc(-20 * var(--vw-with-scrollbar) / 1920);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  position: relative;
  background: #000;
  color: #fff;
  min-height: 100vh;
  z-index: 10;
}

.about-container {
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  position: relative;
}

.about-container > picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container > picture .noise-canvas {
  object-fit: cover;
}

.about-container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none;
}

.about-container-bg + .noise-canvas {
  display: none;
}

@media (max-width: 1024px) {
  .about-container-bg {
    display: block;
  }

  .about-container-bg + .noise-canvas {
    display: block;
  }
}

.about-container-bg.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  z-index: 0;
  transform: none !important;
  pointer-events: none;
}

.about-content {
  display: flex;
  gap: 0px;
  gap: calc(0 * var(--vw-with-scrollbar) / 1920);
  position: relative;
}

.about-left {
  flex: 1;
  max-width: 25%;
  margin-top: auto;
  position: relative;
  z-index: 1600;
}

.about-right {
  flex: 1;
  max-width: 75%;
  position: relative;
  z-index: 1;
}

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

.elecs-line {
  font-size: 118.69px;
  font-size: calc(118.69 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  line-height: 0.8;
  font-family: "Roboto Condensed-Bold", Helvetica;
  text-transform: uppercase;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  margin-bottom: 10px;
  margin-bottom: calc(10 * var(--vw-with-scrollbar) / 1920);
}

.elecs-line-1,
.elecs-line-1 .elecs-top,
.elecs-line-1 .elecs-bottom {
  color: #fff;
}

.elecs-line-2,
.elecs-line-2 .elecs-top,
.elecs-line-2 .elecs-bottom {
  color: transparent;
  -webkit-text-stroke: 1px #ffd557;
  -webkit-text-stroke: calc(1 * var(--vw-with-scrollbar) / 1920) #ffd557;
  font-style: italic;
  font-family: "Roboto Condensed-Bold", Helvetica;
  font-weight: 900;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
  paint-order: stroke fill;
  text-rendering: geometricPrecision;
  letter-spacing: -0.02em;
}

.elecs-line-3,
.elecs-line-3 .elecs-top,
.elecs-line-3 .elecs-bottom {
  background: linear-gradient(to bottom, #ffffff 0%, #00552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ELECS Split Animation */
.elecs-line {
  position: relative;
  overflow: hidden;
  display: block;
  height: 0.8em;
}

.elecs-top,
.elecs-bottom {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0.8;
}

.elecs-top {
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  transform: translateX(-100%);
}

.elecs-bottom {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  transform: translateX(100%);
}

.elecs-top img,
.elecs-bottom img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Animation classes added via JS on scroll */
.elecs-top.animate {
  animation: slideInFromLeft 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.elecs-bottom.animate {
  animation: slideInFromRight 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Stagger animation delays for each line */
.elecs-line-1 .elecs-top.animate,
.elecs-line-1 .elecs-bottom.animate {
  animation-delay: 0s;
}

.elecs-line-2 .elecs-top.animate,
.elecs-line-2 .elecs-bottom.animate {
  animation-delay: 0.2s;
}

.elecs-line-3 .elecs-top.animate,
.elecs-line-3 .elecs-bottom.animate {
  animation-delay: 0.4s;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* About Japanese Text */
.about-japanese-text {
  margin-bottom: 0px;
}

.about-japanese-text p {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  line-height: 200%;
  margin-bottom: 8px;
  margin-bottom: calc(8 * var(--vw-with-scrollbar) / 1920);
  font-family: var(--font-japanese);
  color: #555;
  /* Initial dark color for scroll animation */
}

/* Force line breaks to display */
.about-japanese-text br {
  display: block !important;
  height: 0 !important;
  clear: both !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  line-height: 0 !important;
}

.about-japanese-text p {
  display: block !important;
}

.about-japanese-text p br {
  display: block !important;
}

.about-japanese-text p br:after {
  content: "" !important;
  display: block !important;
  margin-top: 0.5em !important;
}

.about-japanese-text p:last-child {
  margin-bottom: 0;
}

/* Handle standalone br tags between paragraphs */
.about-japanese-text > br {
  display: block;
  content: "";
  margin-top: 8px;
  margin-top: calc(8 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 8px;
  margin-bottom: calc(8 * var(--vw-with-scrollbar) / 1920);
}

/* Line Container Animation */
.line-container {
  position: relative;
  width: 100%;
  height: 200px;
  height: calc(200 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: calc(-65 * var(--vw-with-scrollbar) / 1920);
  z-index: 1500;
}

.line {
  position: absolute;
  background-color: #ffdd57;
}

/* Step 1: First vertical line */
.line-vertical-1 {
  width: 2px;
  width: calc(2 * var(--vw-with-scrollbar) / 1920);
  height: 0;
  left: 0;
  top: 0;
  transition: height 0.3s ease;
}

.line-vertical-1.animate {
  height: 100px;
  height: calc(100 * var(--vw-with-scrollbar) / 1920);
  transition-delay: 0s;
}

/* Step 2: Horizontal line */
.line-horizontal {
  width: 0;
  height: 2px;
  height: calc(2 * var(--vw-with-scrollbar) / 1920);
  left: 0;
  top: 100px;
  top: calc(100 * var(--vw-with-scrollbar) / 1920);
  transition: width 0.3s ease;
}

.line-horizontal.animate {
  width: 100px;
  width: calc(100 * var(--vw-with-scrollbar) / 1920);
  transition-delay: 0.3s;
}

/* Step 3: Second vertical line */
.line-vertical-2 {
  width: 2px;
  width: calc(2 * var(--vw-with-scrollbar) / 1920);
  height: 0;
  left: 100px;
  left: calc(100 * var(--vw-with-scrollbar) / 1920);
  top: 100px;
  top: calc(100 * var(--vw-with-scrollbar) / 1920);
  transition: height 0.3s ease;
}

.line-vertical-2.animate {
  height: 100px;
  height: calc(100 * var(--vw-with-scrollbar) / 1920);
  transition-delay: 0.6s;
}

/* Reverse animation classes for hiding */
.line-vertical-1.hide {
  height: 0;
  transition-delay: 0.4s;
}

.line-horizontal.hide {
  width: 0;
  transition-delay: 0.2s;
}

.line-vertical-2.hide {
  height: 0;
  transition-delay: 0s;
}

/* Keyframes for animations */
@keyframes draw-vertical-1 {
  from {
    height: 0;
  }

  to {
    height: 100px;
    height: calc(100 * var(--vw-with-scrollbar) / 1920);
  }
}

@keyframes draw-horizontal {
  from {
    width: 0;
  }

  to {
    width: 100px;
    width: calc(100 * var(--vw-with-scrollbar) / 1920);
  }
}

@keyframes draw-vertical-2 {
  from {
    height: 0;
  }

  to {
    height: 100px;
    height: calc(100 * var(--vw-with-scrollbar) / 1920);
  }
}

/* About Image */
.about-image {
  width: 100%;
  height: auto;
  position: relative;
  will-change: transform;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.about-image.is-fixed {
  position: fixed;
  top: 0;
  bottom: auto;
  height: auto;
  z-index: 1;
  transform: none !important;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  display: block;
}

/* About Bottom Section */
.about-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  gap: calc(80 * var(--vw-with-scrollbar) / 1920);
  position: relative;
  z-index: 999;
  background-color: #00000085;
  padding: 65px 0;
  padding: calc(65 * var(--vw-with-scrollbar) / 1920) 0;
}

.about-bottom-left {
  flex: 1;
  max-width: 800px;
  max-width: calc(800 * var(--vw-with-scrollbar) / 1920);
}

.about-bottom-right {
  flex-shrink: 0;
}

/* Yellow Blocks */
.about-yellow-blocks {
  margin-bottom: 40px;
  margin-bottom: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.yellow-block {
  background: #ffdd57;
  color: #000;
  padding: 10px 30px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(30 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 15px;
  margin-bottom: calc(15 * var(--vw-with-scrollbar) / 1920);
  font-size: 40px;
  font-size: clamp(20px, calc(40 * var(--vw-with-scrollbar) / 1920), 40px);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-japanese);
  text-align: center;
}

.yellow-block:last-child {
  margin-bottom: 0;
}

/* About Description */
.about-description {
  margin-bottom: 50px;
  margin-bottom: calc(50 * var(--vw-with-scrollbar) / 1920);
}

.about-description p {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.8;
  font-weight: bold;
  color: #555;
  /* Initial dark color for scroll animation */
  font-family: var(--font-japanese);
  margin: 0;
}

/* About CTA Button */
.about-cta {
  margin-bottom: 40px;
  margin-bottom: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  gap: calc(15 * var(--vw-with-scrollbar) / 1920);
  padding: 15px 30px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(30 * var(--vw-with-scrollbar) / 1920);
  border: 4px solid #fff;
  border: calc(4 * var(--vw-with-scrollbar) / 1920) solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--font-japanese);
  transition: all 0.3s ease;
  background-color: #000;
  opacity: 0;
  transform: translateX(-100px);
  transform: translateX(calc(-100 * var(--vw-with-scrollbar) / 1920));
}

.about-btn:hover {
  border-color: #ffdd57;
  color: #ffdd57;
}

/* About Button Animation State */
.about-cta.animate-about-btn .about-btn {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-btn .arrow {
  font-size: 20px;
  font-size: clamp(16px, calc(20 * var(--vw-with-scrollbar) / 1920), 20px);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.about-btn:hover .arrow {
  color: #ffdd57;
}

.about-btn:hover .arrow img {
  content: url("../images/arrow-up-yellow.svg");
}

/* About Title Right */
.about-title-right {
  text-align: right;
  writing-mode: horizontal-tb;
  text-orientation: initial;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
}

.about-main-title {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  color: #fff;
  font-family: var(--font-english);
  font-style: italic;
  display: inline-block;
  margin-bottom: -10px;
  margin-bottom: calc(-10 * var(--vw-with-scrollbar) / 1920);
  margin-right: 30px;
  margin-right: calc(30 * var(--vw-with-scrollbar) / 1920);
  text-decoration: underline;
  text-decoration-color: #fff;
  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);
  line-height: 1;
  position: relative;
  user-select: none;
  z-index: 3;
}

.about-sub-title {
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  color: #fff;
  font-family: var(--font-japanese);
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.2;
  margin-right: 30px;
  margin-right: calc(30 * var(--vw-with-scrollbar) / 1920);
}

/* ========================================
   BUSINESS SECTION
   ======================================== */
/* Business Text Background Animation */
@keyframes business-text-scroll {
  0% {
    transform: translateY(-50%) rotate(-15deg) translateX(0%);
  }

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

.business-section {
  position: relative;
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  min-height: 850px;
  min-height: calc(850 * var(--vw-with-scrollbar) / 1920);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
}

.business-background-image {
  position: absolute;
  top: 100px;
  top: calc(100 * var(--vw-with-scrollbar) / 1920);
  bottom: 100px;
  bottom: calc(100 * var(--vw-with-scrollbar) / 1920);
  left: 50%;
  transform: translateX(-50%);
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  height: calc(100% - 200px);
  height: calc(100% - calc(200 * var(--vw-with-scrollbar) / 1920));
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
}

.business-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.business-background-image .noise-canvas {
  object-fit: contain;
}

.business-section:has(
    .business-background-image:hover,
    .business-text:hover,
    .business-arrow:hover
  )
  .business-bg-img {
  transform: scale(1.05);
}

.business-text-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

.business-text-pattern {
  position: absolute;
  width: 400%;
  height: 100%;
  top: 40%;
  left: -120%;
  transform: translateY(-50%) rotate(-15deg);
  display: flex;
  align-items: center;
  gap: 60px;
  gap: calc(60 * var(--vw-with-scrollbar) / 1920);
  animation: business-text-scroll 20s linear infinite;
}

.business-text-background:nth-child(2) .business-text-pattern {
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  animation: business-text-scroll 20s linear infinite;
  width: 400%;
  left: -120%;
}

.business-line {
  font-size: 80px;
  font-size: clamp(40px, calc(80 * var(--vw-with-scrollbar) / 1920), 80px);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 0.8;
  font-family: var(--font-english);
  text-transform: uppercase;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  white-space: nowrap;
}

.business-line img {
  height: clamp(30px, calc(60 * var(--vw-with-scrollbar) / 1920), 60px);
  width: auto;
  display: block;
}

.business-line-1 {
  background: linear-gradient(to bottom, #ffffff 0%, #00552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-line-2 {
  color: transparent;
  -webkit-text-stroke: 1px #ffd557;
  -webkit-text-stroke: calc(1 * var(--vw-with-scrollbar) / 1920) #ffd557;
  font-style: italic;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
  paint-order: stroke fill;
  text-rendering: geometricPrecision;
}

.business-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffdd57;
  mix-blend-mode: darken;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.business-section:has(
    .business-background-image:hover,
    .business-text:hover,
    .business-arrow:hover
  )
  .business-overlay {
  opacity: 1;
}

.business-container {
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  position: relative;
  z-index: 25;
  pointer-events: none;
}

.business-content {
  position: relative;
  z-index: 4;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  cursor: default;
}

.business-text {
  pointer-events: auto;
  cursor: pointer;
}

.business-arrow {
  pointer-events: auto;
  cursor: pointer;
}

.business-content:hover,
.business-content:visited {
  text-decoration: none;
  color: inherit;
}

.business-text {
  display: inline-block;
  width: fit-content;
}

.business-title {
  margin-bottom: 40px;
  margin-bottom: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.business-title-main {
  display: inline-block;
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  color: #fff;
  line-height: 0.8;
  font-family: var(--font-english);
  text-decoration: underline;
  text-decoration-color: #fff;
  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);
  font-style: italic;
  background: #000;
  width: fit-content;
  padding-right: 18px;
  padding-right: calc(18 * var(--vw-with-scrollbar) / 1920);
}

.business-title-sub {
  display: block;
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  background: #000;
  width: fit-content;
}

.business-description {
  display: inline-block;
  background: #ffffff;
  padding: 10px 10px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(10 * var(--vw-with-scrollbar) / 1920);
  border-radius: 0;
  position: relative;
  margin-bottom: 0;
}

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

.business-description p:first-child {
  margin-bottom: 10px;
  margin-bottom: calc(10 * var(--vw-with-scrollbar) / 1920);
}

.business-arrow {
  position: absolute;
  bottom: -200px;
  bottom: calc(-200 * var(--vw-with-scrollbar) / 1920);
  right: -1000px;
  right: calc(-1000 * var(--vw-with-scrollbar) / 1920);
  width: 110px;
  width: calc(110 * var(--vw-with-scrollbar) / 1920);
  height: 85px;
  height: calc(85 * var(--vw-with-scrollbar) / 1920);
  background: #000;
  border: 4px solid #ffd557;
  border: calc(4 * var(--vw-with-scrollbar) / 1920) solid #ffd557;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 35;
  color: #ffd557;
}

.business-arrow img {
  width: 30px;
  width: calc(30 * var(--vw-with-scrollbar) / 1920);
  height: 30px;
  height: calc(30 * var(--vw-with-scrollbar) / 1920);
}

.business-section:has(
    .business-background-image:hover,
    .business-text:hover,
    .business-arrow:hover
  )
  .business-arrow {
  background: #ffd557;
  border-color: #000;
  transform: scale(1.1);
  color: #000;
}

.business-section:has(
    .business-background-image:hover,
    .business-text:hover,
    .business-arrow:hover
  )
  .business-arrow
  img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%)
    hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* ========================================
   RECRUIT SECTION
   ======================================== */
.recruit-section {
  position: relative;
  background-color: #000;
  padding: 100px 0;
  padding: calc(100 * var(--vw-with-scrollbar) / 1920) 0;
  overflow: hidden;
  z-index: 5;
}

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

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

.recruit-text-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: visible;
  z-index: 1;
  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;
  z-index: 0;
}

.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-container {
  width: 1761px;
  width: calc(1761 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.recruit-header {
  margin-bottom: 80px;
  margin-bottom: calc(80 * var(--vw-with-scrollbar) / 1920);
  position: relative;
}

.recruit-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  gap: calc(80 * var(--vw-with-scrollbar) / 1920);
  padding: 0;
  margin-top: -200px;
  margin-top: calc(-200 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: -500px;
  margin-bottom: calc(-500 * var(--vw-with-scrollbar) / 1920);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: 1400px;
  min-height: calc(1400 * var(--vw-with-scrollbar) / 1920);
}

.recruit-text {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.recruit-title-main {
  display: block;
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #fff;
  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);
}

.recruit-title-sub {
  display: block;
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  margin: -10px 0 0 0;
  margin: calc(-10 * var(--vw-with-scrollbar) / 1920) 0 0 0;
}

.recruit-description {
  margin: 0 auto 40px auto;
  margin: 0 auto calc(40 * var(--vw-with-scrollbar) / 1920) auto;
  max-width: none;
  text-align: center;
  background: #fff;
  padding: 10px 20px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(20 * var(--vw-with-scrollbar) / 1920);
  display: inline-block;
}

.recruit-description p {
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.8;
  color: #333;
  white-space: nowrap;
  font-weight: bold;
  margin: 0;
  opacity: 0.3;
  filter: blur(5px);
  filter: blur(calc(5 * var(--vw-with-scrollbar) / 1920));
  transition: opacity 0.8s ease, filter 0.8s ease;
}

/* Recruit Description Animation State */
.recruit-description.animate-blur-clear p {
  opacity: 1;
  filter: blur(0);
}

.recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  gap: calc(15 * var(--vw-with-scrollbar) / 1920);
  background: #fff;
  color: #000;
  padding: 15px 30px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(30 * var(--vw-with-scrollbar) / 1920);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  transition: all 0.3s ease;
  border: 4px solid #000;
  border: calc(4 * var(--vw-with-scrollbar) / 1920) solid #000;
  opacity: 0;
  transform: translateX(-100px);
  transform: translateX(calc(-100 * var(--vw-with-scrollbar) / 1920));
}

.recruit-btn:hover {
  background: #000;
  color: #ffdd57;
  border-color: #ffdd57;
}

/* Recruit Button Animation State */
.recruit-btn.animate-recruit-btn {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit-btn:hover .arrow {
  content: url("../images/arrow.svg");
  width: 16px;
  height: 16px;
}

.recruit-arrow {
  font-size: 18px;
  font-size: clamp(12px, calc(18 * var(--vw-with-scrollbar) / 1920), 18px);
  transition: transform 0.3s ease;
}

.recruit-btn:hover .recruit-arrow {
  transform: translateX(5px);
  transform: translateX(calc(5 * var(--vw-with-scrollbar) / 1920));
}

.recruit-image-wrapper {
  flex: 1;
  transform: skew(10deg);
}

.recruit-main-image {
  width: 100%;
  height: 400px;
  height: calc(400 * var(--vw-with-scrollbar) / 1920);
  object-fit: cover;
  border-radius: 8px;
  border-radius: calc(8 * var(--vw-with-scrollbar) / 1920);
}

/* Recruit Cards */
.recruit-cards {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--vw-with-scrollbar) / 1920);
  padding-left: 100px;
  padding-left: calc(100 * var(--vw-with-scrollbar) / 1920);
  padding-right: 100px;
  padding-right: calc(100 * var(--vw-with-scrollbar) / 1920);
}

.recruit-card {
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.recruit-card.animate-ribbon {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for each card */
.recruit-card:nth-child(1).animate-ribbon {
  transition-delay: 0s;
}

.recruit-card:nth-child(2).animate-ribbon {
  transition-delay: 0.2s;
}

.recruit-card:nth-child(3).animate-ribbon {
  transition-delay: 0.4s;
}

.recruit-card:nth-child(4).animate-ribbon {
  transition-delay: 0.6s;
}

.recruit-card:nth-child(5).animate-ribbon {
  transition-delay: 0.8s;
}

.recruit-card:nth-child(6).animate-ribbon {
  transition-delay: 1s;
}

.recruit-card-content {
  display: flex;
  align-items: stretch;
  background: #ffdd57;
  transform: none !important;
  overflow: hidden;
  min-height: 320px;
  min-height: calc(320 * var(--vw-with-scrollbar) / 1920);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.recruit-card:hover .recruit-card-content {
  transform: none !important;
}

.recruit-card-text {
  flex: 1;
  padding: 40px 50px;
  padding: calc(40 * var(--vw-with-scrollbar) / 1920)
    calc(50 * var(--vw-with-scrollbar) / 1920);
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  min-height: calc(280 * var(--vw-with-scrollbar) / 1920);
  position: relative;
}

.recruit-card-title {
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

.recruit-card-title-en {
  display: block;
  font-size: 80px;
  font-size: calc(80 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  color: #ffdd57;
  line-height: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-bottom: calc(15 * var(--vw-with-scrollbar) / 1920);
  font-family: var(--font-english);
  font-style: italic;
  white-space: nowrap;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000, 0px -1px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000,
    1px 0px 0 #000;
}

.recruit-card-title-jp {
  display: block;
  font-size: 40px;
  font-size: calc(40 * var(--vw-with-scrollbar) / 1920);
  font-weight: 600;
  color: #000;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 40px;
  margin-bottom: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.recruit-card-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  color: #fff;
  padding: 15px 20px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(20 * var(--vw-with-scrollbar) / 1920);
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  text-transform: uppercase;
  transition: all 0.15s ease;
  border: 2px solid #000;
  border: calc(2 * var(--vw-with-scrollbar) / 1920) solid #000;
  white-space: nowrap;
  text-align: left;
  width: 300px;
  width: calc(300 * var(--vw-with-scrollbar) / 1920);
  height: 49px;
  height: calc(49 * var(--vw-with-scrollbar) / 1920);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-family: var(--font-english);
  margin-bottom: 5px;
  margin-bottom: calc(5 * var(--vw-with-scrollbar) / 1920);
  z-index: 2;
}

.recruit-card-btn::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  width: calc(100 * var(--vw-with-scrollbar) / 1920);
  height: 2px;
  height: calc(2 * var(--vw-with-scrollbar) / 1920);
  background: #fff;
  transition: all 0.15s ease;
}

.recruit-card:hover .recruit-card-btn {
  background: #000;
  color: #ffdd57;
  border-color: #000;
  width: 400px;
  width: calc(400 * var(--vw-with-scrollbar) / 1920);
}

.recruit-card:hover .recruit-card-btn::after {
  background: #ffdd57;
}

.recruit-card-image-wrapper {
  flex: 0.6;
  position: relative;
  overflow: hidden;
  height: 320px;
  height: calc(320 * var(--vw-with-scrollbar) / 1920);
  transform: none !important;
  border: 3px solid #ffdd57;
  border: calc(3 * var(--vw-with-scrollbar) / 1920) solid #ffdd57;
}

.recruit-card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffdd57;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
}

.recruit-card-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

/* Animation States */
.recruit-card-image-wrapper.animate-reveal::before {
  animation: revealOverlayYellow 0.35s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.recruit-card-image-wrapper.animate-reveal::after {
  animation: revealOverlayGray 0.35s cubic-bezier(0.77, 0, 0.175, 1) 0.1s
    forwards;
}

@keyframes revealOverlayYellow {
  0% {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}

@keyframes revealOverlayGray {
  0% {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}

.recruit-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 5;
}

.recruit-card:hover .recruit-card-image {
  transform: scale(1.1);
}

.recruit-card:hover .recruit-card-image-wrapper::before {
  background: rgba(255, 221, 87, 0.3);
}

.recruit-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffdd57;
  mix-blend-mode: darken;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}

.recruit-card:hover .recruit-card-overlay {
  opacity: 1;
}

/* Recruit Card Ribbon (Pita) Animations */
.recruit-card-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.recruit-card-ribbon-yellow {
  background: #ffdd57;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit-card-ribbon-gray {
  background: #333;
  z-index: 10;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

/* Yellow ribbon animation - expand from left corner */
.recruit-card.animate-ribbon .recruit-card-text > .recruit-card-ribbon-yellow {
  transform: scaleX(1);
}

/* Gray ribbon animation - slides in then slides out */
.recruit-card.animate-ribbon
  .recruit-card-image-wrapper
  > .recruit-card-ribbon-gray {
  animation: ribbonSlideInOut 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ribbonSlideInOut {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

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

/* Title animations - appear after ribbon */
.recruit-card-title-en,
.recruit-card-title-jp {
  opacity: 0;
  transform: translateX(-30px);
  transform: translateX(calc(-30 * var(--vw-with-scrollbar) / 1920));
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  will-change: opacity, transform;
}

.recruit-card.animate-ribbon .recruit-card-title-en {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.recruit-card.animate-ribbon .recruit-card-title-jp {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* Ensure text is above ribbon */
.recruit-card-text {
  position: relative;
  overflow: hidden;
}

.recruit-card-btn-wrapper {
  position: relative;
  z-index: 2;
}

.recruit-card-image-wrapper {
  position: relative;
}

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

.recruit-card.animate-ribbon .recruit-card-image {
  opacity: 0;
  animation: imageAppear 0.6s ease 1.2s forwards;
  will-change: opacity;
}

@keyframes imageAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Desired Person Card - Special Yellow Design */
.desired-person-card .recruit-card-content {
  background: #ffdd57;
  display: flex;
  align-items: stretch;
  min-height: 320px;
  min-height: calc(320 * var(--vw-with-scrollbar) / 1920);
  transform: none !important;
}

.desired-person-card:hover .recruit-card-content {
  transform: none !important;
}

.desired-person-card .recruit-card-text-section {
  flex: 1;
  padding: 40px 50px;
  padding: calc(40 * var(--vw-with-scrollbar) / 1920)
    calc(50 * var(--vw-with-scrollbar) / 1920);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  min-height: calc(280 * var(--vw-with-scrollbar) / 1920);
  position: relative;
}

.desired-person-card .recruit-card-title {
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

.desired-person-card .recruit-card-title-en {
  display: block;
  font-size: 80px;
  font-size: clamp(40px, calc(80 * var(--vw-with-scrollbar) / 1920), 80px);
  font-weight: 900;
  color: #ffdd57;
  line-height: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-bottom: calc(15 * var(--vw-with-scrollbar) / 1920);
  font-family: var(--font-english);
  font-style: italic;
  white-space: nowrap;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000,
    2px 2px 0 #000, -2px 0 0 #000, 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000;
}

.desired-person-card .recruit-card-title-jp {
  display: block;
  font-size: 48px;
  font-size: clamp(24px, calc(48 * var(--vw-with-scrollbar) / 1920), 48px);
  font-weight: 600;
  color: #000;
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 40px;
  margin-bottom: calc(40 * var(--vw-with-scrollbar) / 1920);
}

.desired-person-card .recruit-card-btn-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 420px;
  width: calc(420 * var(--vw-with-scrollbar) / 1920);
  height: 53px;
  height: calc(53 * var(--vw-with-scrollbar) / 1920);
}

.desired-person-card .recruit-card-btn {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  color: #fff;
  padding: 15px 20px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(20 * var(--vw-with-scrollbar) / 1920);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  font-size: clamp(12px, calc(14 * var(--vw-with-scrollbar) / 1920), 14px);
  letter-spacing: 2px;
  letter-spacing: calc(2 * var(--vw-with-scrollbar) / 1920);
  text-transform: uppercase;
  transition: all 0.4s ease;
  border: 2px solid #000;
  border: calc(2 * var(--vw-with-scrollbar) / 1920) solid #000;
  white-space: nowrap;
  text-align: left;
  width: 300px;
  width: calc(300 * var(--vw-with-scrollbar) / 1920);
  height: 49px;
  height: calc(49 * var(--vw-with-scrollbar) / 1920);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.desired-person-card:hover .recruit-card-btn {
  background: #000;
  color: #ffdd57;
  border-color: #000;
  width: 400px;
  width: calc(400 * var(--vw-with-scrollbar) / 1920);
}

.desired-person-card .recruit-card-image-wrapper {
  flex: 0.6;
  position: relative;
  overflow: hidden;
  height: 320px;
  height: calc(320 * var(--vw-with-scrollbar) / 1920);
  transform: none !important;
  box-shadow: inset 0 0 0 3px #ffdd57;
  box-shadow: inset 0 0 0 calc(3 * var(--vw-with-scrollbar) / 1920) #ffdd57;
}

.desired-person-card .recruit-card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 221, 87, 0);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.desired-person-card .recruit-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.desired-person-card:hover .recruit-card-image {
  transform: scale(1.1);
}

.desired-person-card:hover .recruit-card-image-wrapper::before {
  background: rgba(255, 221, 87, 0.3);
}

/* ========================================
   NEWS CASE SECTION
   ======================================== */
.news-case {
  background: #000;
  color: #fff;
  padding: 100px 0;
  padding: calc(100 * var(--vw-with-scrollbar) / 1920) 0;
  position: relative;
  z-index: 10;
}

.news-case-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  padding: 0 calc(40 * var(--vw-with-scrollbar) / 1920);
  text-align: center;
}

.news-case-title {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  margin: 0;
  line-height: 0.9;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #fff;
  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: #fff;
}

.news-case-subtitle {
  font-size: 24px;
  font-size: calc(24 * var(--vw-with-scrollbar) / 1920);
  margin: -10px 0 40px 0;
  margin: calc(-10 * var(--vw-with-scrollbar) / 1920) 0
    calc(40 * var(--vw-with-scrollbar) / 1920) 0;
  color: #fff;
  font-weight: bold;
}

.news-case-view-all {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  gap: calc(15 * var(--vw-with-scrollbar) / 1920);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: calc(18 * var(--vw-with-scrollbar) / 1920);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--font-japanese);
  padding: 15px 30px;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920)
    calc(30 * var(--vw-with-scrollbar) / 1920);
  border: 4px solid #fff;
  border: calc(4 * var(--vw-with-scrollbar) / 1920) solid #fff;
  background-color: #000;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-100px);
  transform: translateX(calc(-100 * var(--vw-with-scrollbar) / 1920));
}

.news-case-view-all:hover {
  border-color: #ffdd57;
  color: #ffdd57;
}

/* News Case View All Button Animation State */
.news-case-view-all.animate-news-btn {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-case-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  max-width: calc(900 * var(--vw-with-scrollbar) / 1920);
  margin: 0 auto;
}

.news-case-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.news-case-post {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: calc(8 * var(--vw-with-scrollbar) / 1920);
  padding: 40px 0px 20px 0px;
  padding: calc(40 * var(--vw-with-scrollbar) / 1920) 0
    calc(20 * var(--vw-with-scrollbar) / 1920) 0;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid #ffffff !important;
  border-bottom: calc(1 * var(--vw-with-scrollbar) / 1920) solid #ffffff !important;
  opacity: 0;
  transform: translateY(30px);
  transform: translateY(calc(30 * var(--vw-with-scrollbar) / 1920));
}

.news-case-post.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.news-case-post-link:last-child .news-case-post {
  border-bottom: none;
}

.news-case-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  gap: calc(20 * var(--vw-with-scrollbar) / 1920);
  width: 100%;
}

.news-case-date {
  font-size: 26px;
  font-size: calc(26 * var(--vw-with-scrollbar) / 1920);
  color: #fff;
  font-weight: bold;
}

.news-case-category {
  color: #ffffff;
  padding: 4px 12px;
  padding: calc(4 * var(--vw-with-scrollbar) / 1920)
    calc(12 * var(--vw-with-scrollbar) / 1920);
  font-size: 16px;
  font-size: calc(16 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  border: 1px solid #ffffff;
  border: calc(1 * var(--vw-with-scrollbar) / 1920) solid #ffffff;
}

.news-case-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  gap: calc(20 * var(--vw-with-scrollbar) / 1920);
  width: 100%;
}

.news-case-post-title {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-size: calc(16 * var(--vw-with-scrollbar) / 1920);
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.news-case-arrow-wrapper {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  width: calc(40 * var(--vw-with-scrollbar) / 1920);
  height: 40px;
  height: calc(40 * var(--vw-with-scrollbar) / 1920);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.news-case-post-link:hover .news-case-arrow-wrapper {
  transform: translateX(10px);
  transform: translateX(calc(10 * var(--vw-with-scrollbar) / 1920));
}

.news-case-arrow {
  transition: all 0.3s ease;
  color: #fff;
}

.news-case-view-all:hover .news-case-arrow {
  content: url("../images/arrow-up-yellow.svg");
}

/* ========================================
   COMPANY SECTION
   ======================================== */
.company-section {
  padding: 100px 0;
  padding: calc(100 * var(--vw-with-scrollbar) / 1920) 0;
  background: #000;
  position: relative;
  overflow: hidden;
  width: 100vw;
  z-index: 5;
}

.company-container {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: 100px;
  margin-top: calc(100 * var(--vw-with-scrollbar) / 1920);
}

.company-grid {
  display: grid;
  grid-template-columns: 50vw 50vw;
  gap: 0;
  align-items: stretch;
  height: 50vh;
  min-height: 730px;
  min-height: calc(730 * var(--vw-with-scrollbar) / 1920);
  width: 100vw;
  position: relative;
  z-index: 5;
}

.company-column {
  position: relative;
}

.company-column-left {
  transform: translateY(-100px);
  transform: translateY(calc(-100 * var(--vw-with-scrollbar) / 1920));
}

.company-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  height: 100%;
  overflow: visible;
  background: #000;
  width: 100%;
}

.company-card-content {
  position: absolute;
  top: 52px;
  top: calc(52 * var(--vw-with-scrollbar) / 1920);
  left: 97px;
  left: calc(97 * var(--vw-with-scrollbar) / 1920);
  z-index: 15;
}

.company-title {
  font-size: 96px;
  font-size: clamp(48px, calc(96 * var(--vw-with-scrollbar) / 1920), 96px);
  font-weight: bold;
  line-height: 1;
  margin: 0;
  color: #fff;
  font-family: var(--font-english);
  letter-spacing: 0.02em;
  font-style: italic;
  border-bottom: 4px solid #fff;
  border-bottom: calc(4 * var(--vw-with-scrollbar) / 1920) solid #fff;
  display: inline-block;
  padding: 10px 20px;
  padding: calc(10 * var(--vw-with-scrollbar) / 1920)
    calc(20 * var(--vw-with-scrollbar) / 1920);
  padding-bottom: 10px;
  padding-bottom: calc(10 * var(--vw-with-scrollbar) / 1920);
  background: #000;
}

.company-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);
  color: #fff;
  font-weight: bold;
  text-align: left;
  background: #000;
  display: block;
  width: fit-content;
}

.company-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.company-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffdd57;
  mix-blend-mode: darken;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.company-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.company-image-wrapper .noise-canvas {
  object-fit: contain;
}

.company-card:hover .company-image-wrapper::after {
  opacity: 1;
}

.company-arrow {
  position: absolute;
  bottom: -40px;
  bottom: calc(-40 * var(--vw-with-scrollbar) / 1920);
  right: 45px;
  right: calc(45 * var(--vw-with-scrollbar) / 1920);
  width: 156px;
  width: calc(156 * var(--vw-with-scrollbar) / 1920);
  height: 122px;
  height: calc(122 * var(--vw-with-scrollbar) / 1920);
  background: #000;
  border: 4px solid #ffdd57;
  border: calc(4 * var(--vw-with-scrollbar) / 1920) solid #ffdd57;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.company-arrow img {
  width: 37.33px;
  width: calc(37.33 * var(--vw-with-scrollbar) / 1920);
  height: 42.67px;
  height: calc(42.67 * var(--vw-with-scrollbar) / 1920);
  transition: transform 0.3s ease;
}

/* Company Hover Effects */
.company-card:hover .company-image {
  transform: scale(1.1);
}

.company-card:hover .company-arrow {
  transform: scale(1.1);
  background: #ffdd57;
  border-color: #000;
}

.company-card:hover .company-arrow img {
  content: url("../images/arrow-black.svg");
  width: 37.33px;
  width: calc(37.33 * var(--vw-with-scrollbar) / 1920);
  height: 42.67px;
  height: calc(42.67 * var(--vw-with-scrollbar) / 1920);
}

/* Company Info Grid (for alternative layout) */
.company-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  padding: calc(60 * var(--vw-with-scrollbar) / 1920);
  border-radius: 8px;
  border-radius: calc(8 * var(--vw-with-scrollbar) / 1920);
  margin-bottom: 60px;
  margin-bottom: calc(60 * var(--vw-with-scrollbar) / 1920);
}

.company-info-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-columns: calc(200 * var(--vw-with-scrollbar) / 1920) 1fr;
  gap: 40px;
  gap: calc(40 * var(--vw-with-scrollbar) / 1920);
  align-items: start;
}

.company-info-row {
  display: contents;
}

.company-info-label {
  color: #ffdd57;
  font-size: 18px;
  font-size: clamp(12px, calc(18 * var(--vw-with-scrollbar) / 1920), 18px);
  font-weight: 600;
  padding: 15px 0;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: calc(1 * var(--vw-with-scrollbar) / 1920) solid
    rgba(255, 255, 255, 0.1);
}

.company-info-value {
  color: #fff;
  font-size: 16px;
  font-size: clamp(12px, calc(16 * var(--vw-with-scrollbar) / 1920), 16px);
  line-height: 1.6;
  padding: 15px 0;
  padding: calc(15 * var(--vw-with-scrollbar) / 1920) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: calc(1 * var(--vw-with-scrollbar) / 1920) solid
    rgba(255, 255, 255, 0.1);
}

.company-info-row:last-child .company-info-label,
.company-info-row:last-child .company-info-value {
  border-bottom: none;
}

.company-cta {
  text-align: center;
}

.company-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  gap: calc(15 * var(--vw-with-scrollbar) / 1920);
  padding: 18px 40px;
  padding: calc(18 * var(--vw-with-scrollbar) / 1920)
    calc(40 * var(--vw-with-scrollbar) / 1920);
  border: 2px solid #fff;
  border: calc(2 * var(--vw-with-scrollbar) / 1920) solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: clamp(12px, calc(18 * var(--vw-with-scrollbar) / 1920), 18px);
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
  border-radius: calc(4 * var(--vw-with-scrollbar) / 1920);
}

.company-btn:hover {
  border-color: #ffdd57;
  color: #ffdd57;
}

.company-btn .arrow {
  font-size: 20px;
  font-size: clamp(16px, calc(20 * var(--vw-with-scrollbar) / 1920), 20px);
  transition: all 0.3s ease;
}

.company-btn:hover .arrow {
  color: #ffdd57;
  transform: translateX(5px);
  transform: translateX(calc(5 * var(--vw-with-scrollbar) / 1920));
}

/* Alternative Company Title Styles */
.company-title-main {
  font-size: 150px;
  font-size: calc(150 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  margin: 0;
  line-height: 0.8;
  font-family: var(--font-english);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #fff;
  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: #fff;
  background-color: #000;
  display: block;
  width: fit-content;
  padding-right: 25px;
  padding-right: calc(25 * var(--vw-with-scrollbar) / 1920);
}

/* ========================================
   COMPANY ADDITIONAL STYLES
   ======================================== */
.company-title-sub {
  font-size: 18px;
  font-size: clamp(12px, calc(18 * var(--vw-with-scrollbar) / 1920), 18px);
  color: #ccc;
  margin-top: 10px;
  margin-top: calc(10 * var(--vw-with-scrollbar) / 1920);
  font-weight: 400;
}

/* Company Text Background Animation */
.company-text-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.company-text-background.visible {
  opacity: 0.5;
}

.company-text-pattern {
  position: absolute;
  width: 400%;
  height: 100%;
  top: 50%;
  left: -100%;
  transform: translateY(-50%) rotate(-15deg);
  display: flex;
  align-items: center;
  gap: 60px;
  gap: calc(60 * var(--vw-with-scrollbar) / 1920);
  animation: company-text-scroll 20s linear infinite;
}

.company-line {
  font-size: 80px;
  font-size: calc(80 * var(--vw-with-scrollbar) / 1920);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 0.8;
  font-family: var(--font-english);
  text-transform: uppercase;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  white-space: nowrap;
  opacity: 1;
  user-select: none;
}

.company-line img {
  height: clamp(30px, calc(60 * var(--vw-with-scrollbar) / 1920), 60px);
  width: auto;
  display: block;
}

.company-line-1 {
  background: linear-gradient(to bottom, #ffffff 0%, #00552e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-line-2 {
  color: transparent;
  -webkit-text-stroke: 1px #ffd557;
  -webkit-text-stroke: calc(1 * var(--vw-with-scrollbar) / 1920) #ffd557;
  font-style: italic;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
  paint-order: stroke fill;
  text-rendering: geometricPrecision;
}

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

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

/* ========================================
   GLITCH ANIMATION DEMO CONTAINER
   ======================================== */
.container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  width: calc(400 * var(--vw-with-scrollbar) / 1920);
  height: 220px;
  height: calc(220 * var(--vw-with-scrollbar) / 1920);
  background: #efefef;
  border-radius: 3px;
  border-radius: calc(3 * var(--vw-with-scrollbar) / 1920);
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 calc(2 * var(--vw-with-scrollbar) / 1920)
    calc(5 * var(--vw-with-scrollbar) / 1920) rgba(0, 0, 0, 0.5);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container:before,
.container:after {
  content: " ";
  display: block;
  opacity: 0;
  height: 2px;
  height: calc(2 * var(--vw-with-scrollbar) / 1920);
  background: #fff;
  border-bottom: 2px solid #000;
  border-bottom: calc(2 * var(--vw-with-scrollbar) / 1920) solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
}

.container:before {
  width: 40px;
  width: calc(40 * var(--vw-with-scrollbar) / 1920);
  margin-left: -90px;
  margin-left: calc(-90 * var(--vw-with-scrollbar) / 1920);
  margin-top: 20px;
  margin-top: calc(20 * var(--vw-with-scrollbar) / 1920);
}

.container:after {
  width: 100px;
  width: calc(100 * var(--vw-with-scrollbar) / 1920);
  margin-left: 90px;
  margin-left: calc(90 * var(--vw-with-scrollbar) / 1920);
  margin-top: -10px;
  margin-top: calc(-10 * var(--vw-with-scrollbar) / 1920);
}

.text {
  font-size: 80px;
  font-size: clamp(40px, calc(80 * var(--vw-with-scrollbar) / 1920), 80px);
  line-height: 220px;
  line-height: calc(220 * var(--vw-with-scrollbar) / 1920);
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  height: 100%;
  color: #222;
  z-index: 20;
}

.text:before,
.text:after {
  content: attr(data-text);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.text:before {
  color: #00ffff;
}

.text:after {
  color: #ff0000;
}

/* Container Animation Triggers */
.container:active .text,
.container:focus .text {
  animation: text 0.5s ease-in-out, forward-position 0.5s ease-in-out;
}

.container:active .text:before,
.container:focus .text:before {
  animation: reverse-position 0.5s ease-in-out;
}

.container:active .text:after,
.container:focus .text:after {
  animation: forward-position 0.5s ease-in-out;
}

.container:active:before,
.container:focus:before,
.container:active:after,
.container:focus:after {
  animation: lines 0.5s ease-in-out;
}

.container:active,
.container:focus {
  animation: background 0.5s ease-in-out;
}

/* ========================================
   LINE PARTS ANIMATION
   ======================================== */

/* About Yellow Blocks Animation */
.about-yellow-blocks .line-parts {
  width: 100%;
  padding: 4px 8px;
  padding: calc(4 * var(--vw-with-scrollbar) / 1920)
    calc(8 * var(--vw-with-scrollbar) / 1920);
  display: block;
  overflow: hidden;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  margin-bottom: 16px;
  margin-bottom: calc(16 * var(--vw-with-scrollbar) / 1920);
}

.about-yellow-blocks .line-parts.is-active {
  transform: scale(1);
}

.about-yellow-blocks .line-parts:before,
.about-yellow-blocks .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);
}

.about-yellow-blocks .line-parts.is-active:before {
  transform: translateX(0);
}

.about-yellow-blocks .line-parts.is-active:after {
  transform: translateX(100%);
  transition: transform 0.6s ease 0.4s;
}

.about-yellow-blocks .line-parts.line-bg-gold:before,
.about-yellow-blocks .line-parts.line-bg-gold:after {
  background-color: #ffdd57;
}

.about-yellow-blocks .line-parts:before {
  z-index: 1;
}

.about-yellow-blocks .line-parts:after {
  z-index: 5;
}

.about-yellow-blocks .line-parts .line-txt {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

/* Mobile */
@media (max-width: 1024px) {
  /* Line Container - Hide at mobile sizes */
  .line-container {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    height: 180vh;
    height: calc(180 * 100vw / 400);
    min-height: 70px;
    min-height: calc(700 * 100vw / 400);
    padding-bottom: 100px;
    padding-bottom: calc(100 * 100vw / 400);
    padding-top: 30px;
    padding-top: calc(30 * 100vw / 400);
  }

  .hero-slide img {
    object-fit: contain;
  }

  .hero-text-wrapper {
    top: 13%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-title {
    font-size: 78px;
    font-size: calc(78 * 100vw / 400);
    overflow: hidden;
    width: 100%;
    word-spacing: -1px;
    word-spacing: calc(-18 * 100vw / 400);
    margin-left: -4px;
    margin-left: calc(-4 * 100vw / 400);
  }

  .hero-title span:last-child {
    display: none;
  }

  /* Show mobile version, hide desktop */
  .hero-japanese-text--desktop {
    display: none;
  }

  .hero-japanese-text--mobile {
    display: block;
  }

  .hero-japanese-text {
    bottom: 10px;
    bottom: calc(10 * 100vw / 400);
    padding: 10px 0px;
    padding: calc(10 * 100vw / 400) 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    left: 46%;
  }

  .hero-japanese-text span {
    font-size: 41px;
    font-size: calc(41 * 100vw / 400);
    letter-spacing: 0.02em;
  }

  .hero-japanese-text .line-parts {
    display: block;
    width: fit-content;
  }

  .hero-japanese-text .line-parts:first-child {
    margin-left: 0;
    margin-top: 10px;
    margin-top: calc(10 * 100vw / 400);
  }

  .hero-japanese-text .line-parts:last-child {
    margin-left: 60px;
    margin-left: calc(60 * 100vw / 400);
    margin-top: 20px;
    margin-top: calc(20 * 100vw / 400);
  }

  .hero-japanese-text .line-parts .line-txt {
    padding: 0 5px;
    padding: 0 calc(5 * 100vw / 400);
  }

  .hero-image-slider {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .hero-slide[data-slide="1"] img {
    content: url("../images/hero-1-sp.webp");
  }

  .hero-slide[data-slide="2"] img {
    content: url("../images/hero-2-sp.webp");
  }

  .hero-slide[data-slide="3"] img {
    content: url("../images/hero-3-sp.webp");
  }

  .hero-slide {
    padding-top: 80px;
    padding-top: calc(80 * 100vw / 400);
  }

  /* Hero Ornament adjustments */

  .ornament-diagonal-1 {
    width: 80px;
    width: calc(80 * 100vw / 400);
    top: -97px;
    top: calc(-97 * 100vw / 400);
    right: 20px;
    right: calc(20 * 100vw / 400);
  }

  .ornament-vertical-1 {
    height: 230px;
    height: calc(230 * 100vw / 400);
    top: -40px;
    top: calc(-40 * 100vw / 400);
    right: 76px;
    right: calc(76 * 100vw / 400);
  }

  .ornament-diagonal-2 {
    width: 57px;
    width: calc(57 * 100vw / 400);
    top: -40px;
    top: calc(-40 * 100vw / 400);
    right: 20px;
    right: calc(20 * 100vw / 400);
  }

  .ornament-vertical-2 {
    height: 230px;
    height: calc(230 * 100vw / 400);
    top: 0px;
    top: calc(0 * 100vw / 400);
    right: 60px;
    right: calc(60 * 100vw / 400);
  }

  .ornament-vertical-3 {
    height: 150px;
    height: calc(150 * 100vw / 400);
    top: 0px;
    top: calc(-50 * 100vw / 400);
    right: 60px;
    right: calc(20 * 100vw / 400);
  }

  .ornament-number {
    font-size: 22px;
    font-size: calc(22 * 100vw / 400);
    width: 40px;
    height: 40px;
  }

  .ornament-01 {
    top: -85px;
    top: calc(-85 * 100vw / 400);
    right: 10px;
    right: calc(0 * 100vw / 400);
  }

  .ornament-03 {
    bottom: -75px;
    bottom: calc(-75 * 100vw / 400);
    right: 10px;
    right: calc(0 * 100vw / 400);
  }

  /* About Section */

  .about-container {
    padding: 0 0px;
    width: 100%;
    position: relative;
  }

  .about-container-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 20% top;
    z-index: 0;
  }

  .about-content {
    position: relative;
    z-index: 1;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
    gap: calc(40 * 100vw / 400);
  }

  .about-left {
    min-height: 80vh;
    padding: 40px;
    padding: calc(40 * 100vw / 400);
    max-width: 100%;
    width: 100%;
    margin-bottom: 60px;
    margin-bottom: calc(60 * 100vw / 400);
  }

  .about-bottom {
    flex-direction: column;
    gap: 40px;
    gap: calc(40 * 100vw / 400);
    align-items: flex-start;
    padding: 80px 20px 30px 20px;
    padding: calc(80 * 100vw / 400) calc(20 * 100vw / 400)
      calc(30 * 100vw / 400) calc(20 * 100vw / 400);
  }

  .about-bottom-right {
    order: -1;
    width: 100%;
  }

  .about-bottom-left {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .about-left,
  .about-right {
    max-width: 100%;
  }

  .about-right {
    display: none;
  }

  .about-right {
    display: none;
  }

  .about-left {
    margin-top: 0;
    text-align: left;
    padding: 100px 24px;
    padding: calc(100 * 100vw / 400) calc(24 * 100vw / 400);
  }

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

  .elecs-line-2,
  .elecs-line-2 .elecs-top,
  .elecs-line-2 .elecs-bottom {
    -webkit-text-stroke: calc(4 * var(--vw-with-scrollbar) / 1920) #ffd557;
  }

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

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

  .about-japanese-text p {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    line-height: 1.7;
  }

  .about-image {
    width: 100%;
    height: 500px;
    height: calc(500 * 100vw / 400);
  }

  .yellow-block {
    font-size: 30px;
    font-size: calc(30 * 100vw / 400);
    text-align: left;
    padding: 15px 20px;
    padding: calc(15 * 100vw / 400) calc(20 * 100vw / 400);
    margin-bottom: 12px;
    margin-bottom: calc(12 * 100vw / 400);
  }

  /* Line Parts Animation - Mobile */
  .about-yellow-blocks .line-parts {
    width: fit-content;
    display: inline-block;
  }

  .about-yellow-blocks .line-parts .line-txt {
    text-align: left;
  }

  .about-description {
    margin-bottom: 40px;
    margin-bottom: calc(40 * 100vw / 400);
  }

  .about-description p {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    line-height: 1.7;
  }

  .about-btn {
    padding: 12px 25px;
    padding: calc(12 * 100vw / 400) calc(50 * 100vw / 400);
    gap: 12px;
    gap: calc(12 * 100vw / 400);
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
    border: 4px solid #fff;
    border: calc(4 * 100vw / 400) solid #fff;
  }

  .about-btn .arrow {
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
  }

  .about-btn .arrow img {
    width: 24px;
    width: calc(24 * 100vw / 400);
    height: 24px;
    height: calc(24 * 100vw / 400);
  }

  .about-title-right {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-align: left;
  }

  .about-main-title {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    margin-bottom: -10px;
    margin-bottom: calc(-10 * 100vw / 400);
  }

  .about-sub-title {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
  }

  /* Business Section */
  .business-section {
    padding: 60px 16px;
    padding: calc(60 * 100vw / 400) calc(16 * 100vw / 400);
    position: relative;
    min-height: auto;
    height: 70vh;
    min-height: 600px;
    min-height: calc(600 * 100vw / 400);
  }

  .business-container {
    padding: 0 0px;
    position: relative;
    z-index: 30;
  }

  .business-background-image {
    width: 92%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 170px;
    top: calc(170 * 100vw / 400);
    bottom: auto;
    position: absolute;
    z-index: 1;
  }

  .business-content {
    position: relative;
    display: block;
  }

  .business-text {
    display: block;
  }

  /* Row 1: Title */
  .business-title {
    margin-bottom: 0;
    text-align: left;
  }

  .business-title-main {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    font-weight: 900;
    color: #fff;
    font-family: var(--font-english);
    font-style: italic;
    display: block;
    margin-bottom: 5px;
    margin-bottom: calc(5 * 100vw / 400);
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 2px;
    text-decoration-thickness: calc(2 * 100vw / 400);
    text-underline-offset: 2px;
    text-underline-offset: calc(2 * 100vw / 400);
    line-height: 0.9;
    background: transparent;
    width: auto;
    padding: 0;
    text-align: left;
  }

  .business-title-sub {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    font-weight: bold;
    color: #fff;
    font-family: var(--font-japanese);
    letter-spacing: 0.1em;
    display: block;
    line-height: 1.2;
    background: transparent;
    padding: 0;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
  }

  .business-description {
    background: transparent;
    padding: 0;
    margin-top: 200px;
    margin-top: calc(200 * 100vw / 400);
    margin-bottom: 0;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    width: fit-content;
    position: relative;
    z-index: 30;
    text-align: left;
  }

  .business-description p {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    color: #fff;
    line-height: 1.5;
    margin: 0 0 6px 0;
    margin: 0 0 calc(6 * 100vw / 400) 0;
    font-weight: bold;
    text-align: left;
  }

  .business-arrow {
    position: absolute;
    bottom: -45px;
    bottom: calc(-45 * 100vw / 400);
    width: 55px;
    width: calc(55 * 100vw / 400);
    height: 55px;
    height: calc(55 * 100vw / 400);
    z-index: 10;
    left: 300px;
    left: calc(300 * 100vw / 400);
    right: unset;
  }

  .business-arrow img {
    width: 24px;
    width: calc(24 * 100vw / 400);
    height: 24px;
    height: calc(24 * 100vw / 400);
  }

  /* Background Text Pattern */
  .business-text-background {
    top: 75%;
    transform: translateY(-50%);
  }

  .business-text-pattern {
    top: 60%;
    transform: translateY(-50%) rotate(-15deg);
    animation: business-text-scroll 5s linear infinite;
  }

  .business-line {
    font-size: 40px;
    font-size: calc(40 * 100vw / 400);
    opacity: 0.5;
  }

  /* Recruit Section */
  .recruit-section {
    padding: 60px 0;
    padding: calc(60 * 100vw / 400) 0;
  }

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

  .recruit-text-pattern {
    transform: translateY(-80%) rotate(-15deg);
  }

  .recruit-header {
    margin-bottom: 50px;
    margin-bottom: calc(50 * 100vw / 400);
  }

  .recruit-main-content {
    flex-direction: column;
    gap: 30px;
    gap: calc(30 * 100vw / 400);
    padding: 110px 20px;
    justify-content: center;
    margin-top: -50px;
    margin-top: calc(-50 * 100vw / 400);
    margin-bottom: -65px;
    margin-bottom: calc(-65 * 100vw / 400);
    min-height: auto;
    padding-top: 100px;
    padding-top: calc(100 * 100vw / 400);
    padding-bottom: 0px;
    padding-left: 24px;
    padding-left: calc(24 * 100vw / 400);
    padding-right: 24px;
    padding-right: calc(24 * 100vw / 400);
  }

  .recruit-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .recruit-title-main {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    text-align: left;
  }

  .recruit-title-sub {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    text-align: left;
  }

  .recruit-description {
    max-width: 100%;
    margin: 0 0 30px 0;
    margin: 0 0 calc(30 * 100vw / 400) 0;
    padding: 8px 15px;
    padding: calc(8 * 100vw / 400) calc(15 * 100vw / 400);
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    text-align: left;
    line-height: 1.6;
    display: block;
    width: 100%;
    background-color: #ffffffcc;
  }

  .recruit-description p {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .recruit-btn {
    padding: 12px 50px;
    padding: calc(12 * 100vw / 400) calc(50 * 100vw / 400);
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
    gap: 10px;
    gap: calc(10 * 100vw / 400);
    display: inline-flex;
    background: #fff;
    border: 4px;
    border: calc(4 * 100vw / 400) solid #000000;
    color: #000;
  }

  .recruit-btn .arrow {
    content: url("../images/arrow-black.png");
    width: 15px;
    width: calc(15 * 100vw / 400);
    height: 15px;
    height: calc(15 * 100vw / 400);
  }

  .recruit-btn:hover {
    border-color: #ffd557;
    color: #ffd557;
    background: transparent;
  }

  .recruit-btn:hover .arrow {
    content: url("../images/arrow-up-yellow.svg");
  }

  .recruit-image-wrapper {
    transform: skew(0deg);
    width: 100%;
  }

  .recruit-main-image {
    height: 250px;
    height: calc(250 * 100vw / 400);
  }

  .recruit-cards {
    gap: 30px;
    gap: calc(30 * 100vw / 400);
    padding-top: 50px;
    padding-top: calc(50 * 100vw / 400);
    padding-left: 9px;
    padding-left: calc(9 * 100vw / 400);
    padding-right: 9px;
    padding-right: calc(9 * 100vw / 400);
  }

  .recruit-card-content {
    flex-direction: row;
    min-height: auto;
  }

  .recruit-card-text {
    transform: none;
    padding: 20px 20px;
    padding: calc(20 * 100vw / 400) calc(20 * 100vw / 400);
    text-align: left;
    width: 100%;
    min-height: auto;
  }

  .recruit-card-title-en {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
      1px 1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000;
  }

  .recruit-card-btn {
    width: 250px;
    width: calc(250 * 100vw / 400);
  }

  .recruit-card-title-jp {
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
    margin-bottom: 0px;
    margin-bottom: calc(0 * 100vw / 400);
  }

  .recruit-card-btn {
    padding: 12px 25px;
    padding: calc(12 * 100vw / 400) calc(25 * 100vw / 400);
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    width: 160px;
    width: calc(160 * 100vw / 400);
    letter-spacing: 1px;
  }

  .recruit-card-btn::after {
    width: 35px;
    width: calc(35 * 100vw / 400);
  }

  .recruit-card:hover .recruit-card-btn {
    width: 200px;
    width: calc(200 * 100vw / 400);
    left: 0;
    right: auto;
  }

  .recruit-card-image-wrapper {
    height: 130px;
    height: calc(130 * 100vw / 400);
    width: 100%;
  }

  /* Desired Person Card */
  .desired-person-card .recruit-card-text-section {
    padding: 40px 30px;
    padding: calc(40 * 100vw / 400) calc(30 * 100vw / 400);
    text-align: left;
    min-height: auto;
  }

  .desired-person-card .recruit-card-title-en {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    margin-bottom: calc(10 * 100vw / 400);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
      1px 1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000;
  }

  .desired-person-card .recruit-card-title-jp {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    margin-bottom: 30px;
    margin-bottom: calc(30 * 100vw / 400);
  }

  .desired-person-card .recruit-card-btn {
    padding: 12px 25px;
    padding: calc(12 * 100vw / 400) calc(25 * 100vw / 400);
    font-size: 12px;
    font-size: calc(12 * 100vw / 400);
    letter-spacing: 1px;
  }

  .desired-person-card .recruit-card-image-wrapper {
    height: 200px;
    height: calc(200 * 100vw / 400);
  }

  /* News Case Section */
  .news-case {
    font-size: 70px;
    font-size: calc(70 * 100vw / 400);
    text-align: left;
    text-decoration: none;
    padding: 50px 0;
    padding: calc(50 * 100vw / 400) 0;
  }

  .news-case-container {
    padding-left: 24px;
    padding-left: calc(24 * 100vw / 400);
    padding-right: 12px;
    padding-right: calc(12 * 100vw / 400);
    display: flex;
    flex-direction: column;
  }

  .news-case-title {
    font-size: 80px;
    font-size: calc(80 * 100vw / 400);
    text-align: left;
    text-decoration: none;
  }

  .news-case-title .case-text {
    text-decoration: none;
    position: relative;
    color: #fff;
  }

  .news-case-title .case-text::after {
    content: "";
    position: absolute;
    bottom: 10px;
    bottom: calc(10 * 100vw / 400);
    left: 6px;
    left: calc(6 * 100vw / 400);
    right: -60px;
    right: calc(-60 * 100vw / 400);
    height: 2px;
    height: calc(2 * 100vw / 400);
    /* background-color: #fff; */
  }

  .news-case-title-wrapper {
    gap: 40px;
    gap: calc(40 * 100vw / 400);
    align-items: flex-end;
  }

  .case-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: -100px;
    right: calc(-100 * 100vw / 400);
    height: 1px;
    background-color: #fff;
  }

  .news-case-subtitle {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    text-align: left;
    margin-bottom: 40px;
    margin-bottom: calc(40 * 100vw / 400);
  }

  .news-case-view-all {
    margin-top: 50px;
    margin-top: calc(50 * 100vw / 400);
    margin-bottom: 0;
    padding: 12px 50px;
    padding: calc(12 * 100vw / 400) calc(50 * 100vw / 400);
    font-size: 18px;
    font-size: calc(18 * 100vw / 400);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    gap: calc(8 * 100vw / 400);
    text-align: left;
    width: fit-content;
    border: 4px solid #fff;
    border: calc(4 * 100vw / 400) solid #fff;
    order: 1;
  }

  .news-case-post {
    flex-direction: column;
    gap: 15px;
    gap: calc(15 * 100vw / 400);
    padding: 25px 10px;
    padding: calc(25 * 100vw / 400) calc(0 * 100vw / 400);
    align-items: flex-start;
  }

  .news-case-post-link:hover .news-case-post {
    padding-left: 10px;
    padding-left: calc(10 * 100vw / 400);
    padding-right: 10px;
    padding-right: calc(10 * 100vw / 400);
  }

  .news-case-post-meta {
    width: 100%;
    justify-content: flex-start;
    min-width: auto;
    gap: 10px;
    gap: calc(10 * 100vw / 400);
  }

  .news-case-date {
    font-size: 26px;
    font-size: calc(26 * 100vw / 400);
  }

  .news-case-category {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    padding: 3px 8px;
    padding: calc(3 * 100vw / 400) calc(8 * 100vw / 400);
  }

  .news-case-posts {
    max-width: 100%;
    order: 0;
  }

  .news-case-post-title {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    text-align: left;
    width: auto;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .news-case-arrow-wrapper {
    position: relative;
    top: auto;
    right: auto;
    width: 30px;
    width: calc(30 * 100vw / 400);
    height: 30px;
    height: calc(30 * 100vw / 400);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .news-case-arrow {
    width: 30px;
    width: calc(30 * 100vw / 400);
    height: 40px;
    height: calc(40 * 100vw / 400);
  }

  .arrow {
    width: 30px;
    width: calc(30 * 100vw / 400);
    height: 40px;
    height: calc(40 * 100vw / 400);
  }

  /* Company Section */
  .company-section {
    padding: 60px 0;
    padding: calc(60 * 100vw / 400) 0;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 52.7px;
    gap: calc(52.7 * 100vw / 400);
    height: auto;
    padding: 24px;
    padding: calc(24 * 100vw / 400);
  }

  .company-column {
    width: 100%;
    height: 100%;
    min-height: 267px;
    min-height: calc(267 * 100vw / 400);
  }

  .company-column-left {
    transform: none;
  }

  .company-title {
    font-size: 48px;
    font-size: calc(48 * 100vw / 400);
    border-bottom-width: 3px;
    border-bottom-width: calc(3 * 100vw / 400);
    padding-bottom: 10px;
    padding-bottom: calc(10 * 100vw / 400);
  }

  .company-title-main {
    font-size: 50px;
    font-size: calc(50 * 100vw / 400);
  }

  .company-subtitle {
    font-size: 24px;
    font-size: calc(24 * 100vw / 400);
    margin-top: 5px;
    margin-top: calc(5 * 100vw / 400);
  }

  .company-card-content {
    top: 5px;
    top: calc(5 * 100vw / 400);
    left: 50px;
    left: calc(50 * 100vw / 400);
  }

  .company-arrow {
    bottom: 0px;
    right: 0px;
    width: 64px;
    width: calc(64 * 100vw / 400);
    height: 50px;
    height: calc(50 * 100vw / 400);
  }

  .company-arrow svg {
    width: 25px;
    width: calc(25 * 100vw / 400);
    height: 25px;
    height: calc(25 * 100vw / 400);
  }

  .company-arrow img {
    width: 20px;
    width: calc(20 * 100vw / 400);
    height: 40px;
    height: calc(40 * 100vw / 400);
  }

  .company-image {
    object-fit: contain;
  }

  .company-text-background {
    display: none;
  }

  .company-card-content {
    left: 0px;
  }

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

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

  .company-info {
    padding: 30px 20px;
    padding: calc(30 * 100vw / 400) calc(20 * 100vw / 400);
  }

  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    gap: calc(10 * 100vw / 400);
  }

  .company-info-label {
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
    padding: 10px 0;
    padding: calc(10 * 100vw / 400) 0;
  }

  .company-info-value {
    font-size: 14px;
    font-size: calc(14 * 100vw / 400);
    padding: 5px 0 15px 0;
    padding: calc(5 * 100vw / 400) 0 calc(15 * 100vw / 400) 0;
    margin-bottom: 15px;
    margin-bottom: calc(15 * 100vw / 400);
  }

  .company-btn {
    padding: 15px 30px;
    padding: calc(15 * 100vw / 400) calc(30 * 100vw / 400);
    font-size: 16px;
    font-size: calc(16 * 100vw / 400);
  }
}

/* Responsive animation with adjusted scroll distance */
@keyframes business-text-scroll-responsive {
  0% {
    transform: translateY(-50%) rotate(-15deg) translateX(0%);
  }

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

/* Faster business animation on responsive/mobile */
@media (max-width: 1024px) {
  .business-text-pattern,
  .business-text-background .business-text-pattern,
  .business-text-background:nth-child(2) .business-text-pattern,
  .business-text-background-2 .business-text-pattern {
    animation: business-text-scroll-responsive 10s linear infinite !important;
  }

  /* Prevent flickering with hardware acceleration */
  .business-line img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
