/* =========================================================
   みんなの社食 採用LP / style.css （PC基準・共通）
   デザインルール: DESIGN_RULES.md 準拠
   ========================================================= */

.sp-br { display: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --color-orange: #ea5414;      /* メインアクセント */
  --color-orange-dark: #f06830; /* ホバー（明るく） */
  --color-teal: #00b1b2;        /* サブアクセント */
  --color-teal-dark: #1dc8c9;
  --color-green: #00b1b2;       /* カジュアル面談ボタン */
  --color-green-dark: #1dc8c9;
  --color-yellow: #f5a623;
  --color-ink: #1a1a1a;         /* テキスト */
  --color-ink-sub: var(--color-ink); /* グレーは使わず黒に統一。弱める箇所はfont-weightで差をつける */
  --color-white: #ffffff;
  --color-gray: #f7f7f7;        /* 交互背景 */
  --color-gray-2: #ececec;
  --color-border: #c8c8c8;

  /* Typography */
  --font-base: 'Zen Kaku Gothic New', sans-serif;

  /* Layout */
  --maxw: 1400px;
  --radius-card: 20px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --header-h: 76px;

  /* Effects */
  --shadow-card: 0 10px 30px rgba(0,0,0,.08);
  --shadow-cta: 0 8px 20px rgba(234,84,20,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--color-ink);
  background: #f7f7f7;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}

/* 読点「、」の後ろの余白を詰める（main.jsで .kt を付与） */
.kt { margin-right: -.3em; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; font-weight: 900; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-base);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--color-green); color: #fff; }
.btn--primary:hover { background: var(--color-green-dark); }
.btn--outline { background: transparent; color: var(--color-green); border-color: var(--color-green); }
.btn--outline:hover { background: var(--color-green); color: #fff; }
.btn--teal { background: var(--color-orange); color: #fff; }
.btn--teal:hover { background: var(--color-orange-dark); }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-orange); color: var(--color-orange); }
.btn--lg { font-size: 18px; }
.btn--sm { padding: 10px 22px; font-size: 14px; }

/* ---------- Placeholders（素材差し替え用） ---------- */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(45deg, #efefef, #efefef 12px, #e6e6e6 12px, #e6e6e6 24px);
  color: #999;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 14px;
  border-radius: var(--radius-sm);
}
.placeholder--fv { width: 100%; height: 100%; min-height: 78vh; border-radius: 48px 0 0 48px; font-size: 22px; }
.fv__video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 68vh;
  object-fit: cover;
  border-radius: 48px 0 0 48px;
  background: var(--color-gray);
}
.placeholder--portrait { aspect-ratio: 4/5; border-radius: var(--radius-card); }
.placeholder--thumb { aspect-ratio: 1.91 / 1; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.placeholder--video { aspect-ratio: 16/9; font-size: 18px; }
.placeholder--logo { aspect-ratio: 3/1; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.site-header__inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo-img { height: 60px; width: auto; }
.site-header__tagline {
  margin: 0 0 0 -10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
}
.site-header__tagline-em { color: var(--color-orange); }
.logo-text { font-weight: 900; font-size: 22px; letter-spacing: .02em; }
.site-header__nav { display: flex; gap: 26px; margin-left: auto; font-size: 15px; font-weight: 700; }
.site-header__nav a { position: relative; padding: 6px 0; }
.site-header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--color-orange); transition: width .2s ease;
}
.site-header__nav a:hover::after { width: 100%; }
.site-header__cta { display: flex; gap: 10px; }

/* ---------- Section Common ---------- */
.section { padding: 80px 0; }
.section--gray { background: var(--color-gray); }
.section--orange { background: var(--color-orange); position: relative; overflow: hidden; border-radius: 60px; }
.section--teal { background: var(--color-teal); border-radius: 60px; }
.recruit.section--teal { border-radius: 60px 60px 0 0; }
.section--teal .section__title { color: #fff; }
.business__nabe {
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  bottom: clamp(16px, 3vw, 40px);
  width: clamp(150px, 18vw, 240px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.section--orange .section__title { color: #fff; }
.business__heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section--orange .section__desc { color: rgba(255, 255, 255, .92); }
.section__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__label {
  display: block;
  font-size: 20px; font-weight: 900; letter-spacing: .15em;
  text-transform: uppercase; color: var(--color-orange);
}
.section__title { font-size: 40px; letter-spacing: .01em; }
.section__desc { margin-top: 10px; font-size: 18px; font-weight: 700; color: var(--color-ink-sub); }
.section__head--light .section__label { color: #fff; }
.section__head--light .section__title,
.section__head--light .section__desc { color: #fff; }

/* =========================================================
   ① First View
   ========================================================= */
.fv {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 24px) 0 48px;
  overflow: hidden;
  background-color: #f7f7f7;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../assets/img/fv-bg.png) center / cover no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.fv__inner {
  position: relative; z-index: 2;
  max-width: none; margin: 0; width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  align-items: center;
  padding-left: 56px;
}
.fv__copy {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.fv__catch {
  font-size: clamp(38px, 4vw, 80px);
  line-height: 1.26;
  letter-spacing: .01em;
  margin-bottom: 28px;
  white-space: nowrap;
}
.fv__lead { font-size: 22px; margin-bottom: 40px; font-weight: 700; letter-spacing: 0.06em; }
.fv__lead strong {
  color: var(--color-orange);
  padding-bottom: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='8' viewBox='0 0 20 8'%3E%3Cpath d='M0 4 Q5 0 10 4 T20 4' fill='none' stroke='%23ea5414' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 20px 8px;
}
.deco-star {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .07em;
  vertical-align: 0;
  color: #ea5414;
  overflow: visible;
}
.fv__lead strong { color: var(--color-orange); }
.fv__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.fv__visual { width: 100%; height: 100%; }
.fv__scroll {
  position: absolute;
  left: clamp(20px, 2.4vw, 36px);
  top: 76%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
}
.fv__scroll-text {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .25em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-ink-sub);
}
.fv__scroll-line {
  position: relative;
  flex: 1;
  width: 1px;
  background: var(--color-border);
}
.fv__scroll-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-orange);
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: 0;    opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fv__scroll-dot { animation: none; top: 0; }
}

/* =========================================================
   ② Message
   ========================================================= */
.message { position: relative; background: #fff; }
.message__inner { position: relative; }
.message__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.message__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.message__photos-col { display: flex; flex-direction: column; gap: 20px; margin-top: -20px; }
.message__photos-col--down { margin-top: 80px; }
.photo { width: 100%; border-radius: 24px; overflow: hidden; }
.photo--a { aspect-ratio: 1 / 1; }
.photo--b { aspect-ratio: 4 / 3; }
.photo--c { aspect-ratio: 4 / 3; }
.photo--d { aspect-ratio: 4 / 5; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.message__deco {
  position: absolute;
  right: max(24px, calc((100vw - var(--maxw)) / 2 + 24px));
  bottom: 110px;
  width: clamp(140px, 16vw, 220px);
  z-index: 0;
  pointer-events: none;
}
.message__deco-pot { display: block; width: 100%; height: auto; aspect-ratio: 200 / 177; }
.message__deco-fire {
  display: block;
  width: 50%;
  height: auto;
  aspect-ratio: 110 / 43;
  margin: 4px auto 0;
  transform-origin: center bottom;
  animation: flame 1.5s ease-in-out infinite;
}
@keyframes flame {
  0%, 100% { transform: scaleY(1) scaleX(1) translateX(0); opacity: 1; }
  20% { transform: scaleY(1.1) scaleX(.97) translateX(-.5px); opacity: .92; }
  45% { transform: scaleY(.94) scaleX(1.03) translateX(.5px); opacity: 1; }
  70% { transform: scaleY(1.07) scaleX(.98) translateX(-.4px); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) {
  .message__deco-fire { animation: none; }
}
.message__bg {
  position: absolute;
  top: -.34em;
  left: -.04em;
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  color: #00b1b214;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.message .section__label { display: none; }
.message__catch {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .01em;
  margin-bottom: 44px;
}
.message__text { position: relative; z-index: 1; max-width: 1000px; }
.message__text p { font-size: 20px; font-weight: 700; line-height: 2.15; margin-bottom: 1.6em; }
.message__text strong { font-weight: 700; }
.message__sign {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-ink);
}

/* =========================================================
   ③ note
   ========================================================= */
.note__title { display: inline-flex; align-items: center; justify-content: center; gap: clamp(16px, 2.5vw, 36px); }
.note__icon { height: clamp(64px, 7vw, 104px); width: auto; aspect-ratio: 30 / 140; flex-shrink: 0; }
.note__icon--left { transform: rotate(18deg); }
.note__icon--right { transform: rotate(-18deg); }
.note__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.note-card {
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease;
}
.note-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.note-card img { display: block; width: 100%; aspect-ratio: 1.91 / 1; object-fit: cover; border-radius: var(--radius-sm) var(--radius-sm) 0 0; transition: transform .5s ease; }
.note-card:hover img { transform: scale(1.06); }
.note-card__body { padding: 22px 24px 26px; }
.note-card__tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: #fff; background: var(--color-teal);
  text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.note-card__title { font-size: 18px; line-height: 1.5; margin-bottom: 12px; }
.note-card__meta { font-size: 13px; color: var(--color-ink); font-weight: 500; margin: 0; }
.note__more { text-align: center; margin-top: 44px; }
.note__more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  transition: color .2s ease, border-color .2s ease;
}
.note__more-icon { width: 15px; height: 15px; flex-shrink: 0; }
.note__more-link:hover { color: var(--color-orange-dark); border-color: var(--color-orange-dark); }

/* =========================================================
   ④ Business
   ========================================================= */
.business__logo { width: 60px; height: auto; flex-shrink: 0; }
.business__video { max-width: 880px; margin: 0 auto 60px; }

.video-embed { width: 100%; overflow: hidden; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.video-embed iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

.business:not(.section--orange):not(.section--teal) { background: #f7f7f7; }
.sanpo { display: grid; grid-template-columns: 55fr 45fr; gap: 0; align-items: stretch; margin-bottom: 60px;
  background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden;
  max-width: 1400px; margin-left: auto; margin-right: auto; }
.sanpo__text { padding: 56px 56px 56px 96px; display: flex; flex-direction: column; justify-content: center; }
.sanpo__image { display: flex; align-items: center; justify-content: center; padding: 56px 96px 56px 16px; }
.sanpo__image--left { padding: 56px 16px 56px 56px; }
.sanpo--img-left { grid-template-columns: 45fr 55fr; }
.sanpo--img-left .sanpo__text { padding: 56px 96px 56px 56px; }
.sanpo__title { text-align: left; font-size: 32px; line-height: 1.5; margin-bottom: 22px; }
.sanpo__text p { font-size: 18px; font-weight: 600; line-height: 2; }
.framed-photo { position: relative; width: 100%; border-radius: var(--radius-card); overflow: hidden; }
.framed-photo img { width: 100%; height: auto; display: block; border-radius: var(--radius-card); }
.framed-photo--logo-placeholder {
  aspect-ratio: 4/3;
  background: var(--color-gray-2);
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 14px; text-align: center; line-height: 1.8;
}
.placeholder--framed {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-card);
  background: var(--color-gray-2);
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 14px;
}
.sanpo__text small { display: block; font-size: 13px; font-weight: 400; margin-top: 10px; }
.growth-card { background: #fff; border-radius: 24px; padding: 32px; box-shadow: var(--shadow-card); }
.sanpo__grid { display: flex; align-items: stretch; justify-content: center; gap: 16px; flex-wrap: wrap; }
.sanpo__card {
  flex: 1 1 0; min-width: 220px; max-width: 300px;
  background: #fff; border: 2px solid var(--color-gray-2);
  border-radius: var(--radius-card); padding: 32px 26px; text-align: center;
}
.sanpo__card:nth-child(1) { border-color: var(--color-orange); }
.sanpo__card:nth-child(3) { border-color: var(--color-teal); }
.sanpo__card:nth-child(5) { border-color: var(--color-yellow); }
.sanpo__icon { font-size: 40px; display: block; margin-bottom: 12px; }
.sanpo__card h4 { font-size: 20px; margin-bottom: 12px; }
.sanpo__card p { font-size: 15px; color: var(--color-ink-sub); }
.sanpo__plus { display: flex; align-items: center; font-size: 32px; font-weight: 900; color: var(--color-orange); }

.proof { margin-bottom: 100px; }
.proof__title { font-size: 20px; margin-bottom: 22px; text-align: center; }
.proof__logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.proof__growth { background: #fff; border-radius: var(--radius-card); padding: 32px; box-shadow: var(--shadow-card); position: relative; }
.growth-chart { position: relative; }
.growth-chart__bars {
  display: flex; align-items: flex-end; gap: 10px; height: 200px; padding: 0 8px;
}
.growth-chart__bars span {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--color-orange), #f7a073);
  border-radius: 6px 6px 0 0;
  filter: blur(1px);
}
.growth-chart__blur {
  position: absolute; top: 10px; right: 12px;
  background: rgba(26,26,26,.78); color: #fff; font-weight: 900; font-size: 13px;
  padding: 8px 14px; border-radius: var(--radius-sm); line-height: 1.4; text-align: center;
}
.growth-chart__caption { margin-top: 18px; font-weight: 700; font-size: 15px; text-align: center; }
.growth-chart__caption small { display: block; font-weight: 400; color: var(--color-ink); margin-top: 4px; }

/* =========================================================
   ⑤ Why Now
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.why-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius-card); padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.why-card .why-card__contrast { margin-top: auto; }
.why-card__img { width: 100%; aspect-ratio: 3 / 2; border-radius: 14px; margin-bottom: 24px; overflow: hidden; }
.why-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-card__title { font-size: 22px; margin-bottom: 16px; line-height: 1.5; }
.why-card p { font-size: 16px; }
.why-card__contrast {
  display: none; margin-top: 16px; background: rgba(0,177,178,.10); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 15px;
}
.tag-bad, .tag-good {
  display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 12px;
  border-radius: var(--radius-pill); margin-right: 10px; margin-bottom: 2px;
}
.tag-bad { background: #f2dede; color: #b0413e; }
.tag-good { background: rgba(0,177,178,.14); color: var(--color-teal-dark); }
.why-card--accent { background: linear-gradient(120deg, #fff 0%, #fff6f1 100%); border: 2px solid var(--color-orange); }
.why-card--accent .why-card__no { color: #f7c3a8; }
.why-card--accent strong { color: var(--color-orange); }

/* =========================================================
   ⑥ Culture & Value
   ========================================================= */
.culture { background: #f7f7f7; }
/* --- Culture Carousel --- */
.culture-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.culture-carousel__viewport {
  overflow: hidden;
}

.culture-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.culture-slide {
  flex: 0 0 64vw;
  min-width: 0;
}

.culture-card {
  display: grid; grid-template-columns: 55fr 45fr;
  border-radius: var(--radius-card); overflow: hidden;
  min-height: 360px; width: 100%;
}

/* 矢印ボタン */
.culture-carousel__arrow {
  display: none;
}
.culture-carousel__arrow:hover { opacity: .75; }
.culture-carousel__arrow--prev { left: 32px; }
.culture-carousel__arrow--next { right: 32px; }
.culture-carousel__arrow:disabled { opacity: .25; cursor: default; }

.culture-carousel__dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 28px;
}
.culture-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--color-gray-2); transition: background .3s; padding: 0;
}
.culture-dot--active { background: var(--color-teal); }
.culture-card--warm { background: #fff; border: none; color: var(--color-ink); box-shadow: var(--shadow-card); }
.culture-card--sharp { background: #fff; border: none; box-shadow: var(--shadow-card); }
.culture-card--env { background: #fff; border: none; box-shadow: var(--shadow-card); }

.culture-card__body { padding: 48px 48px 48px 72px; display: flex; flex-direction: column; justify-content: center; }

.culture-card__label {
  display: inline-block; font-weight: 900; font-size: 13px; letter-spacing: .12em;
  padding: 5px 16px; border-radius: var(--radius-pill); margin-bottom: 20px; color: #fff;
  align-self: flex-start;
}
.culture-card--warm .culture-card__label { background: #ff7f48; }
.culture-card--sharp .culture-card__label { background: var(--color-teal); }
.culture-card--env .culture-card__label { background: var(--color-ink); }

.culture-card__title { font-size: 32px; font-weight: 800; margin-bottom: 18px; line-height: 1.4; }
.culture-card__text { font-size: 18px; font-weight: 500; letter-spacing: 0.9px; line-height: inherit; }
.culture-card--warm strong, .culture-card--sharp strong, .culture-card--env strong {
  font-weight: 900;
}
.culture-card__note { display: none; }

.culture-card__benefits {
  margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0;
}
.culture-card__benefits li {
  font-size: 15px; font-weight: 700;
  background: #fff; border-radius: var(--radius-sm); padding: 12px 16px;
}

.culture-card__photo {
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #aaa; font-weight: 500; letter-spacing: .05em;
  min-height: 350px; margin: 48px 48px 48px 16px; border-radius: var(--radius-card);
  overflow: hidden;
}
.culture-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.culture-card--warm .culture-card__photo { background: rgba(234,84,20,.08); }
.culture-card--sharp .culture-card__photo { background: rgba(0,177,178,.08); }
.culture-card--env .culture-card__photo { background: var(--color-gray-2); }

/* =========================================================
   ⑦ Recruit / CTA
   ========================================================= */
.section--cta {
  background: var(--color-orange);
  position: relative;
}
.job-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px;
}
.job-grid__loading { color: rgba(255,255,255,.7); font-size: 15px; grid-column: 1/-1; text-align: center; padding: 40px 0; }
.job-card {
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: var(--color-ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.14); }
.job-card__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--color-gray);
  display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 13px;
}
.job-card__img { overflow: hidden; }
.job-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.job-card:hover .job-card__img img { transform: scale(1.06); }
.job-card__body { padding: 32px 24px 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.job-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.job-card__tag {
  font-size: 11px; font-weight: 700; padding: 1px 10px; border-radius: var(--radius-pill);
  background: #fff; color: var(--color-teal); border: 1px solid var(--color-teal);
}
.job-card__title {
  font-size: 14px; font-weight: 700; line-height: 1.5;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
  overflow: hidden; max-height: calc(1.5em * 3);
}
.job-card__location {
  font-size: 12px; font-weight: 500; color: #888;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  border-top: 1px solid var(--color-gray-2); padding-top: 4px; margin-top: -14px;
  display: flex; align-items: center; gap: 4px;
}
.job-card__location::before {
  content: '';
  flex-shrink: 0;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 21h16.5M4.5 3h15M5.25 3v18m13.5-18v18M9 6.75h1.5m-1.5 3h1.5m-1.5 3h1.5m3-6H15m-1.5 3H15m-1.5 3H15M9 21v-3.375c0-.621.504-1.125 1.125-1.125h3.75c.621 0 1.125.504 1.125 1.125V21'/%3E%3C/svg%3E") center/contain no-repeat;
}
.recruit__casual {
  text-align: center; background: #fff; border: none;
  border-radius: var(--radius-card); padding: 40px; color: var(--color-ink);
  box-shadow: var(--shadow-card);
}
.recruit__casual p { font-size: 17px; font-weight: 700; margin-bottom: 24px; }
.recruit__casual .btn--primary { background: var(--color-teal); color: #fff; }
.recruit__casual .btn--primary:hover { background: var(--color-teal-dark); color: #fff; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: rgb(0 0 0 / 80%); color: #fff; padding: 56px 24px 28px; }
.site-footer__inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.logo-text--footer { display: inline-block; }
.footer-logo { height: 52px; width: auto; display: block; }
.site-footer__brand p { margin: 8px 0 0; font-size: 14px; color: #bbb; }
.site-footer__nav { display: flex; column-gap: 24px; row-gap: 10px; flex-wrap: wrap; font-size: 14px; font-weight: 700; }
.site-footer__nav a:hover { color: var(--color-orange); }
.site-footer__nav-break { width: 100%; }
.site-footer__nav-external { display: inline-flex; align-items: center; gap: 4px; }
.site-footer__nav-external svg { width: 14px; height: 14px; flex-shrink: 0; }
.site-footer__copy { max-width: var(--maxw); margin: 20px auto 0; font-size: 12px; color: #888; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.site-footer__copy-link { color: inherit; text-decoration: none; }
.site-footer__copy-credit { text-align: right; white-space: nowrap; }

/* ---------- Floating CTA (SPで表示) ---------- */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; flex-direction: row;
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
}
.floating-cta__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 12px; font-size: 15px; font-weight: 900; color: #fff;
  text-decoration: none; transition: opacity .2s;
}
@media (hover: hover) {
  .floating-cta__btn:hover { opacity: .85; }
}
.floating-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.floating-cta__btn--casual { background: var(--color-teal); }
.floating-cta__btn--jobs { background: var(--color-orange); }

/* ---------- トップへ戻るボタン ---------- */
.back-to-top {
  display: flex; align-items: center; justify-content: center;
  position: fixed; right: 32px; bottom: 40px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: #1a1a1a; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  transform: translateY(8px);
  cursor: pointer;
}
.back-to-top svg { width: 22px; height: 22px; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- ハンバーガー & モバイルナビ ---------- */
.header-sp-label {
  display: none; font-size: 11px; font-weight: 700; color: var(--color-ink);
  white-space: nowrap; line-height: 1.3;
}

.hamburger-btn {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; width: 56px; height: 56px; background: var(--color-teal);
  border: none; cursor: pointer; color: #fff; flex-shrink: 0;
}
.hamburger-btn__lines { display: flex; flex-direction: column; gap: 5px; }
.hamburger-btn__lines span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 2px; }
.hamburger-btn__label { font-size: 9px; font-weight: 900; letter-spacing: .08em; line-height: 1; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 950;
  background: #fff; display: flex; flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--color-ink);
}
.mobile-nav__close svg { width: 24px; height: 24px; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #eee; }
.mobile-nav__link {
  font-size: 17px; font-weight: 700; color: var(--color-ink); text-decoration: none;
  padding: 20px 0; border-bottom: 1px solid #eee; display: block;
}
.mobile-nav__cta { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav__cta .btn { width: 100%; text-align: center; }
.mobile-nav__deck { display: none; margin-top: 28px; }
.mobile-nav__deck-frame {
  width: 100%; aspect-ratio: 16 / 9;
  background: #e8e8e8; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #999;
}

.mobile-nav__overlay {
  display: none; position: fixed; inset: 0; z-index: 940;
  background: rgba(0,0,0,.4);
}
.mobile-nav__overlay.is-open { display: block; }

/* ---------- カンパニーデック ウィジェット ---------- */
.deck-widget {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  z-index: 900;
  transition: opacity .3s ease, transform .3s ease;
}
.deck-widget.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.deck-widget__inner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.deck-widget__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888;
  font-weight: 600;
}
.deck-widget__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0;
  transition: background .2s;
  z-index: 1;
}
.deck-widget__close:hover { background: #333; }
.deck-widget__close svg { width: 10px; height: 10px; }

/* ---------- カスタムカーソル（黒丸） ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  will-change: transform;
}
.cursor.is-active { opacity: 1; }
.cursor__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-ink);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .18s ease;
}
.cursor.is-hover .cursor__dot { transform: translate(-50%, -50%) scale(1.7); }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .btn, [role="button"], input, textarea, select, label, summary { cursor: none; }
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Scroll reveal (main.jsで付与) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
