﻿@charset "utf-8";
/* =========================================
   SOZO Construction - Base
========================================= */
:root {
  --black: #080808;
  --white: #fff;
  --yellow: #f5b400;
  --yellow-deep: #d79600;
  --blue: #12314f;
  --gray: #e8e2d7;
  --font-en: "Arial", "Helvetica Neue", sans-serif;
  --font-ja: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-ja);
  color: var(--white);
  background: var(--black);
}
html, body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
/* =========================================
   Header
========================================= */
.site-header {
  position: fixed;
  top: 24px;
  left: clamp(18px, 2.2vw, 40px);
  right: clamp(18px, 2.2vw, 40px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
}
.site-header__logo {
  flex: 0 0 auto;
  width: clamp(220px, 19vw, 340px);
  display: block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .9);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__nav a {
  position: relative;
  display: block;
  padding: 12px 18px;
  font-family: var(--font-en);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: skewX(-16deg);
  transition:
    transform .28s ease, color .28s ease;
}
.site-header__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  transition:
    background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.site-header__nav a:hover {
  color: var(--black);
  transform: skewX(0deg) translateY(-3px);
}
.site-header__nav a:hover::before {
  background: var(--yellow);
  border-color: rgba(255, 255, 255, .75);
  box-shadow: 0 0 24px rgba(245, 180, 0, .42);
}
/* =========================================
   Hamburger
========================================= */
.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  background: var(--yellow);
  cursor: pointer;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--black);
  transition:
    transform .25s ease, opacity .25s ease;
}
body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(35deg);
}
body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-35deg);
}
/* =========================================
   SP Nav
========================================= */
.sp-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.sp-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .82);
  backdrop-filter: blur(10px);
}
.sp-nav__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(420px, 88vw);
  padding: 120px 28px 40px;
  background: var(--yellow);
  color: var(--black);
  transform: translateX(100%) skewX(-6deg);
  transform-origin: right center;
  transition: transform .4s ease;
}
.sp-nav__links {
  display: grid;
  gap: 14px;
  transform: skewX(6deg);
}
.sp-nav__links a {
  padding: 18px 16px;
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 8vw, 3.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: .9;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 0, 0, .25);
}
body.is-nav-open .sp-nav {
  pointer-events: auto;
  opacity: 1;
}
body.is-nav-open .sp-nav__panel {
  transform: translateX(0) skewX(-6deg);
}
/* =========================================
   Opening Animation
========================================= */
.opening {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #000;
  pointer-events: none;
  animation: openingOut .8s ease forwards;
  animation-delay: 1.8s;
}
.opening__motto {
  margin: 0;
  width: min(80vw, 1400px);
  font-size: clamp(2.4rem, 6.2vw, 7.8rem);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  opacity: 0;
  transform: scale(.92);
  animation: openingMotto 1.45s ease forwards;
}
@keyframes openingMotto {
  0% {
    opacity: 0;
    transform: scale(.92);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes openingOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* =========================================
   Hero
========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  isolation: isolate;
  background: var(--black);
  z-index: 2;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  width: 118%;
  height: 118%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: brightness(.68) contrast(1.08) saturate(.95);
  opacity: 0;
  transform: translate(-6%, 4%) scale(1.02);
  animation:
    heroBgIntro 1.2s ease forwards 1.85s, heroBgMove 50s ease-in-out infinite alternate 3.1s;
}
@keyframes heroBgIntro {
  0% {
    opacity: 0;
    transform: translate(-6%, 4%) scale(1.02);
    filter: brightness(.2) contrast(1.08) saturate(.8) blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate(-6%, 4%) scale(1.08);
    filter: brightness(.68) contrast(1.08) saturate(.95) blur(0);
  }
}
@keyframes heroBgMove {
  0% {
    transform: translate(-6%, 4%) scale(1.08);
  }
  100% {
    transform: translate(2%, -2%) scale(1.12);
  }
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .36) 48%, rgba(0, 0, 0, .62));
  mix-blend-mode: normal;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .30) 18%, transparent 34%, rgba(255, 255, 255, .12) 50%, transparent 66%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .28), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(100deg, rgba(184, 120, 0, .84) 0%, rgba(242, 172, 0, .82) 24%, rgba(255, 212, 90, .76) 46%, rgba(229, 161, 0, .82) 68%, rgba(159, 103, 0, .86) 100%);
  background-blend-mode: screen, screen, screen, normal;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    inset 0 18px 38px rgba(255, 255, 255, .12),
    inset 0 -20px 46px rgba(88, 55, 0, .25);
  backdrop-filter: blur(1.5px) saturate(1.15);
  opacity: 0;
}
.hero::before {
  top: 0;
  height: clamp(150px, 18vw, 310px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: translateX(-100%);
  animation: heroYellowTopIn .75s ease forwards 3s;
}
.hero::after {
  bottom: clamp(-360px, -21vw, -230px);
  height: clamp(390px, 36vw, 620px);
  clip-path: polygon(0 42%, 100% 5%, 100% 43%, 0 80%);
  transform: translateX(100%);
  animation: heroYellowBottomIn .75s ease forwards 3.08s;
}
.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(170px, 16vh, 220px) 10vw 90px;
}
.hero__eyebrow {
  display: inline-block;
  width: fit-content;
  margin: 0 0 6px;
  position: relative;
  top: -34px;
  font-family: var(--font-en);
  font-size: clamp(.8rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: .32em;
  color: var(--white);
  -webkit-text-stroke: 1px rgba(0, 0, 0, .58);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .72), 0 0 16px rgba(245, 180, 0, .42);
}
.hero__title {
  margin: -24px 0 18px;
  font-family: var(--font-en);
  font-size: clamp(4.4rem, 12vw, 12.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: .76;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.hero__title span {
  display: block;
  transform: skewX(-10deg);
  text-shadow: 0 12px 34px rgba(0, 0, 0, .42);
}
.hero__copy {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: .08em;
}
.hero__company {
  margin-top: 12px;
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .88);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 16px 24px;
  font-weight: 900;
  text-decoration: none;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.hero__btn--primary {
  color: var(--black);
  background: var(--yellow);
}
.hero__btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
}
.hero__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.hero__btn:hover::after {
  transform: translateX(120%);
}
.hero__scroll {
  position: absolute;
  right: 36px;
  bottom: 34px;
  z-index: 4;
  margin: 0;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, .86);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .75);
}
.site-header, .hero__actions, .hero__scroll {
  opacity: 0;
  animation: heroFadeIn .75s ease forwards;
  animation-delay: 5.8s;
}
.hero__eyebrow, .hero__title, .hero__copy, .hero__company {
  opacity: 0;
  transform: translateX(-70px);
}
.hero__eyebrow {
  animation: heroTextSlide .7s ease forwards;
  animation-delay: 3.7s;
}
.hero__title {
  animation: heroTextSlide .8s ease forwards;
  animation-delay: 4.15s;
}
.hero__copy {
  animation: heroTextSlide .7s ease forwards;
  animation-delay: 4.8s;
}
.hero__company {
  animation: heroTextSlide .7s ease forwards;
  animation-delay: 5.15s;
}
@keyframes heroYellowTopIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroYellowBottomIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroTextSlide {
  0% {
    opacity: 0;
    transform: translateX(-70px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   Background Stage
========================================= */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--black);
}
.bg-stage__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity .85s ease, transform 1.25s ease;
  background-size: cover;
  background-position: center;
  filter: brightness(.48) contrast(1.08) saturate(.92);
}

.bg-stage__item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}


.bg-stage__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .36) 48%, rgba(0, 0, 0, .72)),
    linear-gradient(165deg, rgba(245, 180, 0, .22) 0 18%, transparent 18.2%);
}
.bg-stage__item--about {
  background-image: url("../img/about/about-02.webp");
}
.bg-stage__item--message {
  background-image: url("../img/message/message-01.webp");
}
.bg-stage__item--philosophy {
  background-image: url("../img/philosophy/philosophy-01.webp");
}
.bg-stage__item--service {
  background-image: url("../img/service/service-all-team.webp");
}
.bg-stage__item--people {
  background-image: url("../img/people/people-bg-01.webp");
}
.bg-stage__item--recruit {
  background-image: url("../img/recruit/recruit-01.webp");
}
.bg-stage__item--contact {
  background-image: url("../img/contact/contact-01.webp");
}
body[data-bg="about"] .bg-stage__item--about,
body[data-bg="message"] .bg-stage__item--message,
body[data-bg="philosophy"] .bg-stage__item--philosophy,
body[data-bg="service"] .bg-stage__item--service,
body[data-bg="people"] .bg-stage__item--people,
body[data-bg="recruit"] .bg-stage__item--recruit,
body[data-bg="contact"] .bg-stage__item--contact {
  opacity: 1;
  transform: scale(1);
}
/* =========================================
   Section Base
========================================= */
.section {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  display: grid;
  align-items: start;
  padding: clamp(150px, 18vh, 210px) 10vw 120px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}
.section__inner {
  position: relative;
  z-index: 6;
  max-width: 980px;
}
.section__label {
  display: inline-block;
  width: fit-content;
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(.8rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: .32em;
  color: var(--white);
  -webkit-text-stroke: 1px rgba(0, 0, 0, .58);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .72), 0 0 16px rgba(245, 180, 0, .42);
}
.section__title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 900;
  font-style: italic;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.about,
.message,
.philosophy,
.service,
.people,
.section--recruit > .section__inner,
.section--recruit > .recruit__hero,
.section--recruit > .recruit__message,
.section--recruit > .recruit__numbers,
.section--recruit > .recruit__qualities,
.section--recruit > .recruit__jobs-block,
.section--recruit > .recruit__cta,
.section--contact > .contact__head,
.section--contact > .contact {
  width: min(1280px, 100%);
  max-width: 1280px;
  margin-inline: auto;
}
/* =========================================
   ABOUT
========================================= */
.section--about {
  padding-top: clamp(150px, 16vh, 210px);
  padding-bottom: clamp(120px, 14vh, 180px);
}
.about__head {
  margin-bottom: clamp(46px, 6vw, 82px);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
}
.about__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(.78rem, 1vw, .95rem);
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.about__catch {
  margin: 0 0 30px;
}
.about__catch span {
  display: block;
}
.about__lead, .about__body {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
.about__body {
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
}
.about__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}
.about__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .32);
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .24), transparent 46%, rgba(0, 0, 0, .34));
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) contrast(1.08) saturate(.9);
  transform: scale(1.04);
}
.about__photo--main {
  aspect-ratio: 16 / 10;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.about__numbers {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(54px, 7vw, 94px) 0;
  background: rgba(255, 255, 255, .22);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  overflow: hidden;
}
.about__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(26px, 3vw, 42px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(245, 180, 0, .94), rgba(195, 126, 0, .88)), rgba(255, 255, 255, .08);
  color: var(--black);
}
.about__number-value {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: .78;
  letter-spacing: -.08em;
}
.about__number-label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .25em;
}
.about__bottom {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 62px);
  /* 親の形で、写真・黄色帯・ガラスをまとめてカット */
  clip-path: polygon(0 0, 100% 0, 95% 100%, 8% 100%);
  overflow: hidden;
}
/* 下層：全体ガラス面 */
.about__bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .48);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
/* 上層：黄色帯 */
.about__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: 5;
  background: var(--yellow);
  clip-path: polygon(15% 100%, 100% 20%, 100% 100%, 0 100%);
  opacity: .94;
  pointer-events: none;
}
.about__photo--sub {
  position: relative;
  z-index: 3;
  aspect-ratio: 16 / 9;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.about__photo--sub img {
  object-position: 0% center;
}
.about__message {
  position: relative;
  z-index: 6;
  display: grid;
  align-content: center;
  padding: clamp(32px, 4vw, 62px);
  background: transparent;
  border: 0;
  backdrop-filter: none;
  overflow: visible;
}
/* message側の疑似要素は完全停止 */
.about__message::before,
.about__message::after {
  content: none;
}
.about__message-label,
.about__message-text {
  position: relative;
  z-index: 6;
}
.about__message-label {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(2.6rem, 6vw, 7.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: .76;
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .96);
}
.about__message-text {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 900;
  line-height: 1.9;
  letter-spacing: .08em;
}

/* =========================================
   MESSAGE
========================================= */
.section--message {
  padding-top: clamp(150px, 18vh, 220px);
}

.message__head {
  margin-bottom: clamp(54px, 7vw, 96px);
}

.message__hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  gap: 0;
  background: rgba(8, 8, 8, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}

.message__hero::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 30%;
  z-index: 1;
  background: var(--yellow);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.message__photo {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
}

.message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88) contrast(1.08) saturate(.94);
  transform: scale(1.04);
}

.message__photo--main {
  min-height: 460px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.message__text {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 78px);
}

.message__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}

.message__catch {
  margin: 0 0 clamp(18px, 2vw, 24px);
  font-size: clamp(2.1rem, 3.6vw, 4.3rem);
  font-weight: 900;
  font-style: italic;
  line-height: .95;
  letter-spacing: -.06em;
}

.message__lead,
.message__body p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 800;
  line-height: 2;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
}

.message__bottom {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(24px, 4vw, 58px);
  margin-top: clamp(34px, 4vw, 58px);
  padding: clamp(34px, 4vw, 58px);
  background: rgba(8, 8, 8, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}

.message__bottom::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 28%;
  z-index: 1;
  background: var(--yellow);
  clip-path: polygon(34% 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.message__body {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 20px;
}

.message__name {
  margin-top: 10px !important;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem) !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
}

.message__photo--sub {
  position: relative;
  z-index: 3;
  min-height: 320px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}


/* =========================================
   PHILOSOPHY
========================================= */
.section--philosophy {
  padding-top: clamp(150px, 18vh, 220px);
}
.philosophy__head {
  margin-bottom: clamp(54px, 7vw, 96px);
}
.philosophy__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
}
.philosophy__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(.78rem, 1vw, .95rem);
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.philosophy__catch {
  margin: 0 0 30px;
}
.philosophy__lead,
.philosophy__body {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
.philosophy__body {
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
}
.philosophy__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}
.philosophy__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .32);
  pointer-events: none;
}
.philosophy__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .28), transparent 48%, rgba(0, 0, 0, .35));
  pointer-events: none;
}
.philosophy__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) contrast(1.08) saturate(.9);
  transform: scale(1.04);
}
.philosophy__cards {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 7vw, 94px);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  overflow: hidden;
}
/* 下層：カード全体のガラス */
.philosophy__cards::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 8, 8, .58);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
/* 中層：黄色帯 */
.philosophy__cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  z-index: 3;
  background: var(--yellow);
  clip-path: polygon(8% 100%, 100% 0, 100% 100%, 0 100%);
  opacity: .92;
  pointer-events: none;
}
.philosophy__card {
  position: relative;
  z-index: 4;
  min-height: 230px;
  padding: clamp(28px, 3vw, 48px);
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, .12);
  overflow: visible;
  transition-delay: 0s;
}
.philosophy__card:last-child {
  border-right: 0;
}
.philosophy__card::before {
  content: none;
}
.philosophy__card-number,
.philosophy__card-title,
.philosophy__card-text {
  position: relative;
  z-index: 5;
}
.philosophy__card-number {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.philosophy__card-title {
  margin: 0 0 16px;
  font-family: var(--font-en);
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.06em;
}
.philosophy__card-text {
  margin: 0;
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: .06em;
}
.philosophy__card.reveal {
  transform: translateX(-140px);
}
.philosophy__card.reveal.is-visible {
  transform: translateX(0);
}
/* =========================================
   SERVICE
========================================= */
.section--service {
  padding-top: clamp(150px, 18vh, 220px);
}
.service__head {
  margin-bottom: clamp(54px, 7vw, 96px);
}
.service__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
}
.service__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(.78rem, 1vw, .95rem);
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.service__catch {
  margin: 0 0 30px;
}
.service__lead {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
.service__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}
.service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) contrast(1.08) saturate(.9);
  transform: scale(1.04);
}
.service__cards {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 7vw, 94px);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  overflow: hidden;
}
/* 横断黄色帯 */
.service__cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  z-index: 3;
  background: var(--yellow);
  clip-path: polygon(8% 100%, 100% 0, 100% 100%, 0 100%);
  opacity: .92;
  pointer-events: none;
}
.service__card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.service__card:last-child {
  border-right: 0;
}
.service__card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) contrast(1.08) saturate(.9);
  transform: scale(1.06);
}
/* 各カードの暗幕 */
.service__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(8, 8, 8, .36);
  backdrop-filter: blur(2px);
}
/* 個別黄色帯は停止 */
.service__card::after {
  content: none;
}
.service__card-body {
  position: relative;
  z-index: 6;
  min-height: 320px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service__card-body span,
.service__card-body h3,
.service__card-body p {
  position: relative;
  z-index: 5;
}
.service__card-body span {
  margin-bottom: 18px;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.service__card-body h3 {
  margin: 0 0 16px;
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.06em;
}
.service__card-body p {
  margin: 0;
  font-weight: 900;
  letter-spacing: .06em;
}
.service__card.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
/* =========================================
   RECRUIT
========================================= */
.section--recruit {
  display: block;
  padding-inline: 10vw;
}
/* Hero */
.recruit__hero {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: stretch;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(30px, 3.4vw, 52px);
  padding: clamp(30px, 3.2vw, 52px);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}
.recruit__hero-text,
.recruit__hero-photo {
  position: relative;
  z-index: 2;
}
.recruit__copy {
  font-family: var(--font-en);
  font-size: clamp(3.8rem, 6.2vw, 7.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: .76;
  letter-spacing: -.08em;
}
.recruit__copy span {
  display: block;
}
.recruit__lead {
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: .08em;
}
.recruit__hero-photo {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.recruit__hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.92) contrast(1.08) saturate(.94);
  transform: scale(1.04);
}
/* Numbers */
.recruit__numbers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 4vw, 58px);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}
.recruit__number {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 18px;
  text-align: center;
  color: var(--black);
  background: var(--yellow);
}
.recruit__number strong {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 4.6vw, 5.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: .8;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.recruit__number span {
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .22em;
  white-space: nowrap;
}
/* Qualities */
.recruit__qualities {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  min-height: 460px;
  margin-top: clamp(34px, 4vw, 58px);
  overflow: hidden;
  background: rgba(8, 8, 8, .68);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}
.recruit__qualities::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 42%;
  z-index: 1;
  background: rgba(245, 180, 0, .88);
  clip-path: polygon(0 0, 80% 100%, 0 100%);
  pointer-events: none;
}
.recruit__qualities-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  min-height: 460px;
  overflow: hidden;
}
.recruit__qualities-photo img {
  width: 90%;
  height: 90%;
  margin: 3% 0 0 3%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  filter: brightness(.82) contrast(1.08) saturate(.95);
}
.recruit__qualities-body {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(34px, 4vw, 70px);
  background: transparent;
}
.recruit__quality {
  position: relative;
  z-index: 5;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.recruit__quality h3 {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: clamp(3rem, 4vw, 5.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: .84;
  letter-spacing: -.07em;
  white-space: nowrap;
}
.recruit__quality p {
  margin: 0;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: .06em;
}
/* Recruit Slide Motion */
.recruit__hero.reveal,
.recruit__message.reveal,
.recruit__qualities.reveal,
.recruit__jobs-block.reveal,
.recruit__cta.reveal {
  opacity: 0;
  filter: blur(8px);
}
.recruit__hero.reveal,
.recruit__qualities.reveal,
.recruit__cta.reveal {
  transform: translateX(-140px);
}
.recruit__message.reveal,
.recruit__jobs-block.reveal {
  transform: translateX(140px);
}
.recruit__hero.reveal.is-visible,
.recruit__message.reveal.is-visible,
.recruit__qualities.reveal.is-visible,
.recruit__jobs-block.reveal.is-visible,
.recruit__cta.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
/* Recruit Message */
.recruit__message {
  position: relative;
  margin-top: clamp(28px, 3.2vw, 46px);
  padding: clamp(28px, 3.2vw, 50px);
  background: rgba(8, 8, 8, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}
.recruit__message::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 44%;
  z-index: 0;
  background: var(--yellow);
  clip-path: polygon(35% 100%, 100% 0, 100% 100%);
  pointer-events: none;
}
.recruit__message-label,
.recruit__jobs-label,
.recruit__qualities-label,
.recruit__cta-label {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.recruit__message-title, .recruit__jobs-title {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 3.6vw, 4.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: .95;
  letter-spacing: -.06em;
}
.recruit__message-text,
.recruit__jobs-lead,
.recruit__cta-text {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0;
  font-size: clamp(.95rem, 1.08vw, 1.05rem);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
}
.recruit__cta-text {
  margin: 0 0 clamp(22px, 2.4vw, 34px);
}
.recruit__cta .btn {
  margin-top: 0;
}
.recruit__qualities-label {
  color: var(--yellow);
}
.recruit__jobs-block {
  position: relative;
  margin-top: clamp(54px, 6vw, 86px);
  padding: clamp(36px, 4vw, 64px);
  background: rgba(8, 8, 8, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}
.recruit__jobs-block::before {
  content: "";
  position: absolute;
  left: 25%;
  right: -8%;
  top: 0;
  bottom: auto;
  height: 30%;
  z-index: 0;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 70%);
  pointer-events: none;
}
.recruit__jobs-head,
.recruit__jobs {
  position: relative;
  z-index: 2;
}
.recruit__jobs-head {
  margin: 0 0 clamp(24px, 3vw, 42px);
  padding: 0;
  background: transparent;
  border: 0;
  clip-path: none;
  overflow: visible;
}
.recruit__jobs-head::before {
  content: none;
}
.recruit__jobs {
  margin-top: 0;
}
/* Jobs */
.recruit__jobs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: 0;
}
.recruit__job {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  overflow: hidden;
  color: var(--black);
  background: rgba(255, 193, 7, .7);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}
.recruit__job::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  z-index: 2;
  height: 45%;
  background: rgba(255, 193, 7, .5);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}
.recruit__job::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  z-index: 1;
  height: 58%;
  background:
    linear-gradient(to top, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .72) 38%, rgba(255, 255, 255, .42) 78%, transparent 100%);
  clip-path: polygon(0 0, 100% 38%, 100% 100%, 0 100%);
  pointer-events: none;
}
.recruit__job img {
  position: absolute;
  left: auto;
  right: clamp(-115px, -14vw, -58px);
  top: -15%;
  z-index: 1;
  width: auto;
  height: clamp(250%, 22vw, 350%);
  max-width: none;
  opacity: .62;
  transform: none;
  filter: grayscale(.05) contrast(1.05);
}
.recruit__job div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  z-index: 3;
}
.recruit__job span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: .24em;
}
.recruit__job h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 1.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .04em;
}
.recruit__job p {
  margin: 0;
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.65;
}
.recruit__job.reveal:nth-child(odd) {
  transform: translateX(-90px);
}
.recruit__job.reveal:nth-child(even) {
  transform: translateX(90px);
}
.recruit__job.reveal.is-visible {
  transform: translateX(0);
}
/* CTA */
.recruit__cta {
  position: relative;
  margin-top: clamp(34px, 4vw, 58px);
  padding: clamp(34px, 4vw, 56px) clamp(38px, 6vw, 92px);
  background: rgba(8, 8, 8, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}
.recruit__cta::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 0;
  height: 22%;
  z-index: 0;
  background: var(--yellow);
  clip-path: polygon(34% 100%, 100% 0, 100% 100%);
  pointer-events: none;
}
.recruit__cta-copy,
.recruit__cta .btn {
  position: relative;
  z-index: 2;
}
.recruit__cta-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4.4vw, 5.6rem);
  font-weight: 900;
  font-style: italic;
  line-height: .95;
  letter-spacing: -.07em;
}
.btn--yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 18px 32px;
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
/* =========================================
   CONTACT
========================================= */
.section--contact {
  display: block;
  padding-inline: 10vw;
}
.contact__head {
  margin-bottom: clamp(46px, 6vw, 82px);
}
.contact {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto auto;
  background: rgba(8, 8, 8, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 0;
  height: 32%;
  z-index: 1;
  background: var(--yellow);
  clip-path: polygon(26% 100%, 100% 0, 100% 100%);
  pointer-events: none;
}
.contact__catch-area {
  position: relative;
  z-index: 3;
  padding:
    clamp(26px, 3vw, 44px) clamp(24px, 4.2vw, 64px) clamp(12px, 1.8vw, 24px);
}
.contact__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.contact__catch {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 900;
  font-style: italic;
  line-height: .95;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.contact__info {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .34fr .66fr;
  align-items: stretch;
  gap: clamp(18px, 2.4vw, 34px);
  padding:
    0 clamp(24px, 4.2vw, 64px) clamp(28px, 3vw, 46px);
}
.contact__body {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  padding: clamp(22px, 2.6vw, 38px) 0;
  background: transparent;
  border: 0;
}
.contact__text {
  max-width: 560px;
  margin: 0;
  font-size: clamp(.98rem, 1.12vw, 1.08rem);
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
}
.contact__actions {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-top: clamp(28px, 3vw, 42px);
}
.contact__tel {
  position: relative;
  z-index: 2;
  font-family: var(--font-en);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
}
.contact__photo {
  position: relative;
  z-index: 2;
  margin: 0 0 0 clamp(-42px, -3vw, -18px);
  min-height: clamp(260px, 23vw, 340px);
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.contact__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .22), transparent 48%, rgba(0, 0, 0, .18));
  pointer-events: none;
}
.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.92) contrast(1.08) saturate(.96);
  transform: scale(1.02);
}
/* =========================================
   PEOPLE
========================================= */
.section--people {
  padding-top: clamp(150px, 18vh, 220px);
}
.people__head {
  margin-bottom: clamp(54px, 7vw, 96px);
}
.people__intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
}
.people__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-size: clamp(.78rem, 1vw, .95rem);
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.people__catch {
  margin: 0 0 30px;
}
.people__lead {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
}
.people__main {
  margin: 0;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .42);
}
.people__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 7vw, 94px);
}
.people__card {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  background: rgba(8, 8, 8, .52);
  border: 1px solid rgba(255, 255, 255, .14);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.people__card::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 38%;
  z-index: 2;
  background: var(--yellow);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}
.people__card::after {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: 0;
  height: 22%;
  z-index: 0;
  background: var(--yellow);
  clip-path: polygon(0 0, 80% 0, 0 100%);
  opacity: .95;
  pointer-events: none;
}
.people__card img {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: auto;
  height: 200%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center top;
  padding: 0;
  filter: brightness(.9) contrast(1.05);
}
.people__card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 34px;
  z-index: 3;
}
.people__card span {
  display: none;
}
.people__card h3 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(2.1rem, 3.4vw, 4.2rem);
  font-weight: 900;
  line-height: .86;
  color: var(--white);
}
.people__card p {
  margin: 12px 0 0;
  font-weight: 900;
  color: var(--black);
  font-size: .9rem;
}
.people__card {
  cursor: pointer;
}
body.is-staff-modal-open {
  overflow: hidden;
}
.staff-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.staff-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.staff-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(12px);
}
.staff-modal__panel {
  position: relative;
  width: min(980px, 92vw);
  min-height: min(760px, 86svh);
  display: grid;
  place-items: center;
  background: rgba(8, 8, 8, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  overflow: hidden;
}
.staff-modal__panel::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 30%;
  background: var(--yellow);
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}
.staff-modal__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: min(760px, 86svh);
  display: block;
  padding: 54px 90px 64px;
}
.staff-modal__number {
  position: absolute;
  top: 34px;
  left: 90px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .28em;
  color: var(--yellow);
}
.staff-modal__img {
  position: absolute;
  left: 30%;
  bottom: 10px;
  z-index: 2;
  height: 96%;
  max-height: none;
  max-width: none;
  width: auto;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .55));
}
.staff-modal__text {
  position: absolute;
  right: 40px;
  bottom: 96px;
  z-index: 3;
  width: 48%;
  padding-bottom: 0;
}
.staff-modal__name {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(3.8rem, 7vw, 7.8rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.08em;
  color: var(--white);
}
.staff-modal__role {
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .72);
}
.staff-modal__close,
.staff-modal__arrow {
  position: absolute;
  z-index: 4;
  border: 0;
  cursor: pointer;
  font-family: var(--font-en);
  font-weight: 900;
}
.staff-modal__close {
  top: 22px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: var(--yellow);
  color: var(--black);
  font-size: 2rem;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}
.staff-modal__arrow {
  top: 50%;
  width: 64px;
  height: 86px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 4rem;
  backdrop-filter: blur(8px);
}
.staff-modal__arrow--prev {
  left: 22px;
}
.staff-modal__arrow--next {
  right: 22px;
}
/* =========================================
   Staff Modal Detail
========================================= */
.staff-modal__text {
  display: grid;
  align-content: center;
  gap: 18px;
}
.staff-modal__meta {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.staff-modal__row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.staff-modal__row span {
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--yellow);
}
.staff-modal__row p {
  margin: 0;
  font-size: clamp(.88rem, .95vw, 1rem);
  font-weight: 800;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
}
.staff-modal__pr {
  position: relative;
  margin: 10px -40px 0 0;
  padding: 18px 40px 18px 28px;
  font-size: clamp(.95rem, 1vw, 1.08rem);
  font-weight: 900;
  line-height: 1.9;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .94);
  background: rgba(0, 0, 0, .34);
  border-left: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}
/* =========================================
   Reveal Motion
========================================= */
.reveal {
  opacity: 0;
  transition:
    opacity .8s ease, transform .8s cubic-bezier(.18, .9, .24, 1), filter .8s ease;
  filter: blur(8px);
}
.reveal--left {
  transform: translateX(-90px);
}
.reveal--right {
  transform: translateX(90px);
}
.reveal--up {
  transform: translateY(70px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}
/* =========================================
   People / Modal Name Final Fix
========================================= */
/* リストカード：横幅が広くなっても大きくなりすぎない */
.people__card h3 {
  font-size: clamp(1.75rem, 2.45vw, 3rem);
  line-height: .9;
  letter-spacing: -.075em;
  overflow-wrap: normal;
}
/* PCモーダル：大画面で巨大化しすぎない */
.staff-modal__name {
  font-size: clamp(3.4rem, 4.6vw, 5.2rem);
  line-height: .84;
  letter-spacing: -.08em;
  overflow-wrap: anywhere;
}
/* =========================================
   Staff Modal Arrow Center Fix
========================================= */
.staff-modal__arrow {
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0 0 .22em;
}
/* =========================================
   PEOPLE Card Hover Motion
========================================= */
/* 通常時：薄黄色の幕 */
.people__card img {
  filter:
    sepia(.95) saturate(2.4) hue-rotate(345deg) brightness(.78) contrast(1.08);
  transition:
    filter .4s ease, transform .4s ease;
}
/* hover時：カラー復帰＋少し拡大 */
.people__card:hover img {
  filter: brightness(1) contrast(1.08) saturate(1.05);
  animation: peopleHappyJump .9s ease;
  z-index: 3;
}
/* カード全体も少し嬉しそうに */
.people__card:hover {
  z-index: 20;
}
/* =========================================
   PEOPLE Card Hover Motion Reset
========================================= */
/* カード内で安全に切る */
.people__card {
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
/* 重なり順を元に戻す */
.people__card img {
  z-index: 1;
}
.people__card::before {
  z-index: 2;
}
.people__card div {
  z-index: 3;
}
/* hover時も画像は帯・文字より下 */
.people__card:hover img {
  z-index: 1;
  filter: brightness(1) contrast(1.08) saturate(1.05);
  animation: peopleHappyJump .9s ease;
}
.people__card:hover {
  z-index: 10;
}
@keyframes peopleHappyJump {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  /* ピョーン！ */
  18% {
    transform: translateX(-50%) translateY(-22px) scale(1.06);
  }
  32% {
    transform: translateX(-50%) translateY(4px) scale(.98);
  }
  /* ピョ！ */
  50% {
    transform: translateX(-50%) translateY(-10px) scale(1.03);
  }
  62% {
    transform: translateX(-50%) translateY(2px) scale(.995);
  }
  /* ピョン！ */
  78% {
    transform: translateX(-50%) translateY(-6px) scale(1.015);
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
/* =========================================
   Yellow Metallic Texture / Common
========================================= */
.hero::before,
.hero::after,
.about__number,
.about__bottom::before,
.message__hero::before,
.message__bottom::before,
.philosophy__cards::before,
.service__cards::before,
.people__card::before,
.people__card::after,
.staff-modal__panel::before,
.staff-modal__close,
.nav-toggle,
.sp-nav__panel,
.btn--yellow,
.hero__btn--primary,
.recruit__number,
.recruit__qualities::before,
.recruit__job::before,
.recruit__cta::before,
.recruit__message::before,
.recruit__jobs-block::before,
.contact::before,
.site-footer::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .26) 18%, transparent 34%, rgba(255, 255, 255, .12) 50%, transparent 66%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .24), transparent 28%),
    linear-gradient(100deg, rgba(184, 120, 0, .92) 0%, rgba(242, 172, 0, .94) 24%, rgba(255, 212, 90, .9) 46%, rgba(229, 161, 0, .94) 68%, rgba(159, 103, 0, .92) 100%);
  background-blend-mode: screen, screen, normal;
}
.recruit__job {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .14) 18%, transparent 36%, rgba(255, 255, 255, .06) 52%, transparent 68%),
    linear-gradient(100deg, rgba(120, 78, 0, .72) 0%, rgba(178, 116, 0, .72) 28%, rgba(212, 145, 0, .68) 52%, rgba(150, 96, 0, .72) 100%);
  background-blend-mode: screen, normal;
}
/* =========================================
   Responsive / Media Queries
========================================= */
@media (max-width: 760px) {
  .staff-modal {
    place-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .staff-modal__panel {
    width: 100%;
    min-height: 100svh;
    border: 0;
    clip-path: none;
    overflow: visible;
  }
  .staff-modal__content {
    height: auto;
    min-height: 128svh;
    padding: 72px 6vw 90px;
  }
  .staff-modal__number {
    top: 86px;
    left: 7vw;
  }
  .staff-modal__img {
    position: relative;
    left: 50%;
    bottom: auto;
    height: 68svh;
    max-height: none;
    max-width: none;
    width: auto;
    margin: 38px auto 0;
    transform: translateX(-50%);
    z-index: 2;
  }
  .staff-modal__text {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 5;
    width: 100%;
    margin: -22svh 0 0;
    padding: 22px 18px 24px;
    background: rgba(0, 0, 0, .58);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  }
  .staff-modal__name {
    font-size: clamp(3.1rem, 18vw, 5.8rem);
  }
  .staff-modal__role {
    margin-top: 12px;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
  }
  .staff-modal__meta {
    gap: 4px;
  }
  .staff-modal__row {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 0;
  }
  .staff-modal__row span {
    font-size: .68rem;
    letter-spacing: .2em;
  }
  .staff-modal__row p {
    font-size: .9rem;
    line-height: 1.65;
  }
  .staff-modal__pr {
    margin: 8px 0 0;
    padding: 16px 16px;
    font-size: .92rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, .52);
  }
  .staff-modal__close {
    position: fixed;
    top: 16px;
    right: 16px;
  }
  .staff-modal__arrow {
    position: fixed;
    top: 50%;
    width: 46px;
    height: 70px;
    font-size: 3rem;
  }
  .staff-modal__arrow--prev {
    left: 0;
  }
  .staff-modal__arrow--next {
    right: 0;
  }
}
/* CONTACT Responsive */
@media (max-width: 980px) {
  .section--contact {
    padding-inline: 6vw;
  }
  .contact__head {
    margin-bottom: 30px;
  }
  .contact {
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  }
  .contact::before {
    height: 22%;
    clip-path: polygon(24% 100%, 100% 28%, 100% 100%);
  }
  .contact__catch-area {
    padding: 34px 28px 20px;
  }
  .contact__catch {
    font-size: clamp(2.1rem, 6.4vw, 3.8rem);
    white-space: normal;
  }
  .contact__info {
    grid-template-columns: 1fr;
    padding: 0 28px 34px;
  }
  .contact__photo {
    display: none;
  }
  .contact__body {
    grid-template-columns: minmax(0, 1fr) minmax(180px, .45fr);
    align-items: center;
    gap: clamp(18px, 4vw, 28px);
    padding: 0;
  }
  .contact__actions {
    justify-self: start;
  }
  .contact__text {
    font-size: .95rem;
    line-height: 1.9;
  }
  .contact__actions {
    margin-top: 0;
    gap: 22px;
  }
  .contact__tel {
    font-size: .95rem;
    letter-spacing: .12em;
  }
  .message__hero,
  .message__bottom {
    grid-template-columns: 1fr;
  }

  .message__photo--main,
  .message__photo--sub {
    min-height: 300px;
  }

  .message__photo--main {
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  }
  
  
}
@media (max-width: 640px) {
  .contact__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact__actions .btn--yellow {
    width: fit-content;
    min-width: 150px;
    padding: 16px 28px;
  }
  .message__text,
  .message__bottom {
    padding: 30px 24px;
  }

  .message__catch {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .message__photo--main,
  .message__photo--sub {
    min-height: 230px;
  }
    
}
/* =========================================
   Staff Modal SP Final Fix
========================================= */
@media (max-width: 760px) {
  html:has(body.is-staff-modal-open), body.is-staff-modal-open {
    overflow: hidden;
    height: 100%;
  }
  .staff-modal {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) rgba(0, 0, 0, .45);
  }
  .staff-modal::-webkit-scrollbar {
    width: 6px;
  }
  .staff-modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .45);
  }
  .staff-modal::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 999px;
  }
  .staff-modal__panel {
    min-height: auto;
    background: transparent;
    overflow: visible;
  }
  .staff-modal__panel::before {
    display: none;
  }
  .staff-modal__content {
    min-height: auto;
    height: auto;
    padding: 72px 6vw 34px;
    overflow: visible;
  }
  .staff-modal__text {
    margin-top: -18svh;
    padding: 24px 18px 28px;
    background: rgba(0, 0, 0, .66);
    backdrop-filter: blur(14px);
  }
  .staff-modal__pr {
    margin: 10px 0 0;
    padding: 18px 18px;
    background: rgba(0, 0, 0, .56);
  }
}
.about__catch,
.philosophy__catch,
.people__catch,
.service__catch {
  font-size: clamp(3rem, 3.2vw, 3.3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.06em;
}
/* =========================================
   Responsive
========================================= */
@media (min-width: 1181px) and (max-height: 860px) {
  .site-header__logo {
    width: clamp(170px, 15vw, 240px);
    padding: 10px 14px;
  }
  .site-header__nav a {
    padding: 10px 14px;
    font-size: .76rem;
    letter-spacing: .1em;
  }
  .hero__content {
    padding-top: clamp(150px, 17vh, 190px);
  }
  .hero__title {
    font-size: clamp(4rem, 9.6vw, 10rem);
  }
}
@media (max-width: 1180px) {
  .site-header__nav a {
    padding: 11px 14px;
    font-size: .76rem;
    letter-spacing: .1em;
  }
}
@media (max-width: 1080px) {
  .site-header__nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}
@media (max-width: 980px) {
  .site-header {
    top: 16px;
    left: 18px;
    right: 18px;
  }
  .site-header__nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero__content {
    padding: 110px 7vw 80px;
  }
  .hero__bg img {
    object-position: center;
  }
  .section--about {
    padding-top: 120px;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__photo--main {
    max-width: 720px;
  }
  .about__number {
    min-height: 160px;
  }
  .about__bottom {
    grid-template-columns: 1fr;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }
  .about__photo--sub {
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }
  .about__message {
    min-height: 340px;
  }
  .philosophy__grid {
    grid-template-columns: 1fr;
  }
  .philosophy__photo {
    max-width: 720px;
  }
  .philosophy__cards {
    grid-template-columns: 1fr;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }
  .philosophy__card {
    min-height: 190px;
  }
  .philosophy__card-title {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }
  .service__grid {
    grid-template-columns: 1fr;
  }
  .service__photo {
    max-width: 720px;
  }
  .service__cards {
    grid-template-columns: 1fr;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }
  .service__card-body {
    padding: 38px 34px;
  }
  .service__card-body h3 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }
  .service__card-body p {
    font-size: 1.05rem;
  }
  .people__intro {
    grid-template-columns: 1fr;
  }
  .people__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruit__hero {
    grid-template-columns: 1fr;
  }
  .recruit__hero-photo {
    min-height: 320px;
  }
  .recruit__numbers,
  .recruit__jobs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruit__qualities {
    grid-template-columns: 1fr;
  }
  .recruit__qualities-photo {
    min-height: 300px;
  }
  .recruit__job img {
    left: auto;
    right: clamp(-100px, -22vw, -72px);
    top: -10%;
    height: clamp(260%, 64vw, 310%);
  }
}
@media (max-width: 640px) {
  .site-header__logo {
    width: 190px;
    padding: 10px 14px;
  }
  .hero__bg img {
    object-position: 56% center;
  }
  .hero__title {
    font-size: clamp(3.7rem, 22vw, 6.8rem);
  }
  .hero__actions {
    gap: 10px;
  }
  .hero__btn {
    width: 100%;
  }
  .hero__scroll {
    display: none;
  }
  .section {
    padding-inline: 6vw;
  }
  .section__title {
    font-size: clamp(2.4rem, 12vw, 4.6rem);
  }
  .about__catch {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
    line-height: 1.08;
  }
  .about__lead,
  .about__body {
    font-size: .95rem;
    line-height: 1.9;
  }
  .about__number {
    min-height: 140px;
  }
  .about__bottom {
    gap: 0;
  }
  .about__message {
    padding: 34px 28px 54px;
    min-height: 320px;
  }
  .about__message-label {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }
  .about__message-text {
    font-size: .95rem;
    line-height: 1.8;
  }
  .philosophy__catch {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
    line-height: 1.08;
  }
  .philosophy__lead, .philosophy__body {
    font-size: .95rem;
    line-height: 1.9;
  }
  .philosophy__card {
    min-height: 170px;
    padding: 28px 26px;
  }
  .philosophy__card-title {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }
  .philosophy__card-text {
    font-size: .95rem;
    line-height: 1.7;
  }
  .service__catch {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
    line-height: 1.08;
  }
  .service__lead {
    font-size: .95rem;
    line-height: 1.9;
  }
  .service__card,
  .service__card-body {
    min-height: 280px;
  }
  .people__catch {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }
  .people__card {
    min-height: 350px;
  }
  .people__card p {
    font-size: .8rem;
  }
  .section--recruit {
    padding-inline: 6vw;
  }
  .recruit__copy {
    font-size: clamp(3.4rem, 17vw, 6rem);
  }
  .recruit__hero {
    padding: 32px 26px 46px;
  }
  .recruit__hero-photo {
    min-height: 240px;
  }
  .recruit__number {
    min-height: 140px;
  }
  .recruit__qualities {
    padding: 0;
  }
  .recruit__qualities-body {
    padding: 30px 24px 46px;
  }
  .recruit__quality h3 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }
  .recruit__job {
    min-height: 340px;
  }
  .recruit__cta-copy {
    font-size: clamp(2.3rem, 12vw, 4.8rem);
  }
}
/* =========================================
   Staff Modal SP Background Fix
========================================= */
@media (max-width: 760px) {
  .staff-modal {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .42) 38%, rgba(255, 255, 255, .05)), rgba(0, 0, 0, .38);
    backdrop-filter: blur(18px) saturate(1.25);
  }
  .staff-modal__backdrop {
    background: transparent;
    backdrop-filter: none;
  }
  .staff-modal__panel,
  .staff-modal__content,
  .staff-modal__img {
    background: transparent;
  }
  .staff-modal__content {
    position: relative;
    isolation: isolate;
  }
  .staff-modal__content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 64vw;
    height: 70vw;
    max-width: 320px;
    max-height: 620px;
    background: var(--yellow);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none;
  }
  .staff-modal__img,
  .staff-modal__text,
  .staff-modal__number {
    position: relative;
    z-index: 2;
  }
  .staff-modal__text {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .52));
    backdrop-filter: blur(14px);
  }
  .staff-modal__pr {
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0;
  }
}
/* =========================================
   Staff Modal SP Line Reset
========================================= */
@media (max-width: 760px) {
  .staff-modal__row {
    border-bottom: 0;
    box-shadow: none;
  }
  .staff-modal__meta {
    gap: 6px;
  }
  .staff-modal__text {
    border-color: rgba(255, 255, 255, .10);
  }
}
@media (max-width: 980px) {
  .people__card h3 {
    font-size: clamp(1.65rem, 5.8vw, 2.6rem);
    line-height: .9;
    letter-spacing: -.07em;
  }
}
@media (max-width: 640px) {
  .people__card h3 {
    font-size: clamp(1.55rem, 6.0vw, 2.35rem);
    line-height: .9;
    letter-spacing: -.07em;
  }
}
/* SPモーダル */
@media (max-width: 760px) {
  .staff-modal__name {
    font-size: clamp(3rem, 15vw, 4.9rem);
    line-height: .86;
    letter-spacing: -.09em;
  }
}
/* =========================================
   Staff Modal SP Image Center Fix
========================================= */
@media (max-width: 760px) {
  .staff-modal {
    overflow-x: hidden;
  }
  .staff-modal__img {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    height: 90svh;
    max-width: none;
    width: auto;
    margin: -44px auto 0;
    transform: scale(1.12);
    transform-origin: center top;
  }
}

/* =========================================
   Footer
========================================= */
.site-footer {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) 7vw 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #151515, #050505 70%);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.16);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  right: auto;
  width: 70%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .95;
}

.site-footer::after {
  content: "SOZO";
  position: absolute;
  right: -2vw;
  bottom: 6vw;
  font-family: var(--font-en);
  font-size: clamp(7rem, 18vw, 22rem);
  font-weight: 900;
  font-style: italic;
  line-height: .75;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}

.site-footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1.65fr .95fr;
  gap: clamp(34px, 5vw, 82px);
  max-width: 1440px;
  margin-inline: auto;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__social-area {
  position: relative;
}

.site-footer__brand::after,
.site-footer__nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(18px, 3vw, 46px) * -1);
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.22);
}

.site-footer__logo {
  display: block;
  width: min(280px, 80%);
  padding: 12px 16px;
  background: rgba(255,255,255,.92);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.site-footer__copy {
  margin: clamp(42px, 5vw, 72px) 0 24px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--yellow);
}

.site-footer__lead {
  margin: 0;
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .08em;
  color: rgba(255,255,255,.82);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 68px);
}

.site-footer__nav-col {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.site-footer__nav a {
  display: grid;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
}

.site-footer__nav a span,
.site-footer__heading {
  font-family: var(--font-en);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--yellow);
}

.site-footer__nav a:hover {
  color: var(--yellow);
}

.site-footer__heading {
  margin: 0 0 26px;
}

.site-footer__social {
  display: flex;
  gap: 22px;
  margin-bottom: 46px;
}

.site-footer__social a {
  display: grid;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

.site-footer__social img {
  width: 72px;
  height: 72px;
  padding: 10px;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(0,0,0,.45);
  transition: transform .25s ease, border-color .25s ease;
}

.site-footer__social a:hover img {
  transform: translateY(-5px);
  border-color: var(--yellow);
}

.site-footer__contact {
  display: grid;
  gap: 8px;
  width: min(300px, 100%);
  padding: 24px 34px;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  font-weight: 900;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.site-footer__contact span {
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: .12em;
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  max-width: 1440px;
  margin: clamp(62px, 7vw, 96px) auto 0;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.site-footer__company {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-footer__company img {
  width: 180px;
  padding: 8px 12px;
  background: rgba(255,255,255,.92);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.site-footer__company p,
.site-footer__links {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .06em;
  color: rgba(255,255,255,.78);
}

.site-footer__links {
  list-style: none;
  padding: 0;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__links a::before {
  content: "› ";
  color: var(--yellow);
}

.site-footer__copyright {
  position: relative;
  z-index: 2;
  margin: 34px 0 0;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.58);
}

@media (max-width: 980px) {
  .site-footer {
    padding: 76px 6vw 26px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand::after,
  .site-footer__nav::after {
    display: none;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__company {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__social img {
    width: 64px;
    height: 64px;
  }

  .site-footer__contact {
    width: 100%;
  }
}

/* =========================================
   Footer Adjust
========================================= */

/* ① 「人と共にあれ。」段オチ防止 */
.site-footer__copy {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: .1em;
  white-space: nowrap;
}

/* ② CONTACTボタン内をセンタリング */
.site-footer__contact {
  place-items: center;
  text-align: center;
  min-height: 118px;
}

/* ③ CONTACTボタンを金属質感へ */
.site-footer__contact {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.34) 18%, transparent 34%, rgba(255,255,255,.14) 52%, transparent 68%),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.28), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(100deg, rgba(184,120,0,.94) 0%, rgba(242,172,0,.92) 24%, rgba(255,212,90,.86) 46%, rgba(229,161,0,.92) 68%, rgba(159,103,0,.96) 100%);
  background-blend-mode: screen, screen, screen, normal;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 18px 38px rgba(255,255,255,.12),
    inset 0 -20px 46px rgba(88,55,0,.25);
}

/* CONTACTボタンだけ、文字を金属背景の上で締める */
.site-footer__contact {
  color: var(--black);
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}

@media (max-width: 640px) {
  .bg-stage__item video {
    display: none;
  }
}