/* =========================================================
   aoki-recruit — site.css（共通基盤・メインCC管理）
   憲法：_rough/references/sources.md（アンカー実測に基づく）
   ルール：vw禁止／100vhは svh 二段／filter・blend・3D 不使用
   ========================================================= */

:root {
  --ink: #434343;
  --paper: #ffffff;
  --blue: #0d6fc2;
  --blue2: #2f8fd8;
  --blue3: #0b5aa0;
  --pink: #ea3a6c;
  --pink-fv: #f65e82;
  --yellow: #ffd60a;
  --yellow-text: #c99a00;
  --orange: #ff9a1f;
  --tint-b: #d9ecff;
  --tint-p: #ffd9e2;
  --tint-y: #fffacd;
  --cream: #fbfacd;
  --line: #d0d0d0;
  --grey: #dddddd;
  --grey2: #b4b4b4;
  --grey3: #2e2e2e;
  --grad: linear-gradient(90deg, #0d6fc2 0%, #ffd60a 50%, #ea3a6c 100%);
  --ease: cubic-bezier(.785, .135, .15, .86);
  --ease2: cubic-bezier(.455, .03, .515, .955);
  --back: cubic-bezier(.34, 1.56, .64, 1);
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-en: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1200px;
  --vh: 1vh;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.733;
  letter-spacing: .05em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-lock { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }
.en { font-family: var(--font-en); }
.nb { white-space: nowrap; }
.br-sp { display: none; }
.u-sp { display: none !important; }
.u-center { text-align: center; }
.u-white { color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 767px) {
  body { font-size: 14px; }
  .br-sp { display: block; }
  .u-pc { display: none !important; }
  .u-sp { display: block !important; }
}

/* focus-visible：キーボード操作時だけ青いリング（アニメしない） */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.c-btn:focus-visible, .c-tabs__btn:focus-visible { outline-offset: 4px; }

/* ---------- backgrounds（方眼紙／青格子） ---------- */
.bg-paper {
  background-color: #fff;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(rgba(0, 0, 0, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .05) 1px, transparent 1px);
  background-size: 120px 120px, 34px 34px, 34px 34px;
  background-position: 0 0, top 0 left calc(50% + 17px), top 0 left calc(50% + 17px);
}
.bg-blue {
  background-color: var(--blue2);
  background-image:
    linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .3) 1px, transparent 1px);
  background-size: 34px 34px;
  background-position: top 0 left calc(50% + 17px);
}

/* ---------- containers ---------- */
.c-wrap { max-width: var(--wrap); width: calc(100% - 40px); margin: 0 auto; }
.c-wrap--m { max-width: 1000px; }
.c-wrap--s { max-width: 800px; }
.c-wrap--xs { max-width: 720px; }

/* ---------- header ---------- */
.l-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  max-width: 1500px;
  width: calc(100% - 40px);
  height: 46px;
  transform: translateX(-50%);
  transition: transform .6s ease-out, max-width .6s var(--ease), height .6s var(--ease);
}
.l-header.is-off { transform: translate(-50%, calc(-120% - 20px)); }
.l-header__bg {
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
  width: 257px;
  height: 100%;
  border-radius: 100px;
  background: #fff;
  transition: width .6s var(--ease), border-radius .6s var(--ease), box-shadow .6s var(--ease);
  pointer-events: none;
}
.l-header__bg::after {
  content: "";
  position: absolute;
  left: 148px; top: 50%;
  width: 1px; height: calc(100% - 20px);
  background: var(--ink);
  transform: translateY(-50%);
}
.l-header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 257px;
  height: 46px;
  padding: 0 20px;
  transition: width .4s var(--ease), height .4s var(--ease), padding .4s var(--ease);
}
.l-header__logo svg { width: 108px; height: 22px; color: var(--ink); }
.l-header__logo span { font-family: var(--font-en); font-size: 18px; font-weight: 700; letter-spacing: .05em; line-height: 1; color: var(--ink); }
.l-header__nav {
  position: absolute;
  left: 160px; top: 50%;
  max-width: 848px;
  width: calc(100% - 160px - 300px);
  padding: 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(.9);
  transition: all .4s var(--ease);
}
.l-header__nav ul { display: flex; justify-content: space-between; gap: 12px; }
.l-header__nav a { display: inline-block; font-size: 15px; font-weight: 600; white-space: nowrap; letter-spacing: .02em; }
.l-header__cta { position: absolute; right: 62px; top: 50%; transform: translateY(-50%); transition: right .4s var(--ease); }
.l-header__cta .c-btn { min-width: 0; }
.l-header__ham {
  position: absolute;
  right: 0; top: 50%;
  width: 42px; height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: border-color .2s var(--ease);
}
.l-header__ham span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  border-radius: 50px;
  background: #fff;
  transition: all .2s var(--ease);
}
.l-header__ham span:nth-child(1) { transform: translate(-50%, calc(-50% - 5.5px)); }
.l-header__ham span:nth-child(2) { transform: translate(-50%, -50%); }
.l-header__ham span:nth-child(3) { transform: translate(-50%, calc(-50% + 5.5px)); }
.l-header__ham.is-active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.l-header__ham.is-active span:nth-child(2) { opacity: 0; }
.l-header__ham.is-active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
.l-header--ink .l-header__ham, .l-header.is-scrolled .l-header__ham { border-color: var(--ink); }
.l-header--ink .l-header__ham span, .l-header.is-scrolled .l-header__ham span { background: var(--ink); }
.l-header.is-menu .l-header__ham { border-color: #fff; z-index: 70; }
.l-header.is-menu .l-header__ham span { background: #fff; }

.l-header.is-scrolled { max-width: 1300px; height: 84px; }
.l-header.is-scrolled .l-header__bg { width: 100%; border-radius: 20px; box-shadow: 5px 5px 0 0 rgba(0, 0, 0, .15); }
.l-header.is-scrolled .l-header__bg::after { left: 166px; height: calc(100% - 26px); }
.l-header.is-scrolled .l-header__logo { width: 166px; height: 84px; padding: 0 30px; }
.l-header.is-scrolled .l-header__logo span { display: none; }
.l-header.is-scrolled .l-header__cta { right: 30px; }
@media (min-width: 1025px) {
  .l-header.is-scrolled .l-header__nav { opacity: 1; visibility: visible; transform: translateY(-50%) scale(1); transition-delay: .3s; }
  .l-header.is-scrolled .l-header__ham { display: none; }
}
@media (max-width: 1024px) {
  .l-header__nav { display: none; }
  .l-header.is-scrolled { max-width: 1500px; height: 64px; }
  .l-header.is-scrolled .l-header__logo { height: 64px; }
}
@media (max-width: 767px) {
  .l-header { top: 12px; width: calc(100% - 20px); height: 32px; }
  .l-header.is-off { transform: translate(-50%, calc(-120% - 12px)); }
  .l-header__bg { width: 106px; }
  .l-header__bg::after { display: none; }
  .l-header__logo { width: 106px; height: 32px; padding: 0 12px; }
  .l-header__logo svg { width: 80px; height: 16px; }
  .l-header__logo span { display: none; }
  .l-header__cta { right: 36px; }
  .l-header__cta .c-btn { padding: 5px 42px 5px 13px; font-size: 13px; }
  .l-header__cta .c-btn__arrow { width: 32px; height: 20px; right: 6px; }
  .l-header__ham { width: 30px; height: 30px; border-width: 1px; }
  .l-header__ham span { width: 15px; height: 1px; }
  .l-header__ham span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
  .l-header__ham span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }
  .l-header.is-scrolled { height: 48px; }
  .l-header.is-scrolled .l-header__bg { border-radius: 14px; box-shadow: 3px 3px 0 0 rgba(0, 0, 0, .15); }
  .l-header.is-scrolled .l-header__logo { width: 106px; height: 48px; padding: 0 12px; }
  .l-header.is-scrolled .l-header__cta { right: 40px; }
}

/* ---------- full-screen menu ---------- */
.l-menu { position: fixed; inset: 0; z-index: 60; display: flex; justify-content: flex-end; visibility: hidden; pointer-events: none; }
.l-menu__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .6); opacity: 0; transition: opacity .3s var(--ease); }
.l-menu__panel {
  position: relative;
  width: min(760px, 100%);
  height: 100%;
  padding: 140px 72px 72px;
  overflow-y: auto;
  background: var(--ink);
  color: #fff;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.l-menu__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0; transform: scale(.95); transition: all .4s .1s var(--ease); }
.l-menu__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.l-menu__nav { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); row-gap: 32px; max-width: 600px; }
.l-menu__nav > li { font-size: 20px; font-weight: 600; letter-spacing: .02em; }
.l-menu__nav > li:first-child { grid-column: 1 / 4; }
.l-menu__nav > li ul { margin-top: 8px; }
.l-menu__nav > li li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 500; }
.l-menu__nav > li li + li { margin-top: 4px; }
.l-menu__nav > li li::after { content: ""; position: absolute; left: 7px; top: 4px; width: 11px; height: 12px; border-left: 1px solid #fff; border-bottom: 1px solid #fff; }
.l-menu__cta { position: relative; z-index: 1; margin-top: 56px; }
.l-menu.is-open { visibility: visible; pointer-events: auto; }
.l-menu.is-open .l-menu__overlay { opacity: 1; }
.l-menu.is-open .l-menu__panel { transform: translateX(0); }
.l-menu.is-open .l-menu__bg { opacity: 1; transform: scale(1); }
@media (max-width: 767px) {
  .l-menu__panel { padding: 96px 28px 48px; }
  .l-menu__nav { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .l-menu__nav > li { font-size: 16px; }
  .l-menu__nav > li:first-child { grid-column: auto; }
}

/* ---------- buttons ---------- */
.c-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: min(252px, 100%);
  width: max-content;
  max-width: 100%;
  padding: 8px 64px 8px 28px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.733;
  text-align: left;
  overflow: hidden;
  transition: color .6s var(--ease);
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: var(--grad);
  transform: translateX(-101%);
  transition: transform .6s var(--ease);
}
.c-btn__arrow {
  position: absolute;
  right: 7px; top: 50%;
  width: 45px; height: 28.5px;
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
  transform: translateY(-50%);
}
.c-btn__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(101%);
  transition: transform .4s .2s var(--ease);
}
.c-btn__arrow svg {
  position: absolute;
  left: 50%; top: 50%;
  width: 21px; height: 10px;
  transition: transform .6s var(--ease);
}
.c-btn__arrow svg:nth-child(1) { color: #fff; transform: translate(-200%, -50%); }
.c-btn__arrow svg:nth-child(2) { color: var(--ink); transform: translate(-50%, -50%); }
@media (hover: hover) {
  .c-btn:hover { color: var(--ink); }
  .c-btn:hover::before { transform: translateX(0); }
  .c-btn:hover .c-btn__arrow::before { transform: translateX(0); }
  .c-btn:hover .c-btn__arrow svg:nth-child(1) { transform: translate(-50%, -50%); }
  .c-btn:hover .c-btn__arrow svg:nth-child(2) { transform: translate(150%, -50%); }
}
.c-btn--white { background: #fff; color: var(--ink); }
.c-btn--white .c-btn__arrow { background: var(--ink); }
.c-btn--white .c-btn__arrow::before { background: #fff; }
.c-btn--white .c-btn__arrow svg:nth-child(1) { color: var(--ink); }
.c-btn--white .c-btn__arrow svg:nth-child(2) { color: #fff; }
.c-btn--center { display: block; margin-left: auto; margin-right: auto; }
.c-btn--full { width: 100%; }
@media (max-width: 767px) {
  .c-btn { padding: 8px 64px 8px 20px; font-size: 14px; }
}

.c-link { display: inline-flex; align-items: center; gap: 6px; font-size: 20px; font-weight: 500; letter-spacing: .05em; }
.c-link svg { width: 21px; height: 10px; margin-top: 2px; }
.c-link--sm { font-size: 15px; }
@media (max-width: 767px) { .c-link { font-size: 14px; } .c-link svg { width: 16px; height: 7px; } }

.c-line {
  display: inline;
  padding-bottom: 2px;
  background-image: var(--grad);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: right bottom;
  transition: background-size .6s var(--ease);
}
.c-line--to { background-size: 0 3px; background-position: left bottom; }
a:hover .c-line--to, .c-line--to:hover { background-size: 100% 3px; }
.c-line--white { background-image: linear-gradient(#fff, #fff); background-size: 100% 1px; }
.c-line--ink { background-image: linear-gradient(var(--ink), var(--ink)); background-size: 100% 1px; }
.c-line--to.c-line--white, .c-line--to.c-line--ink { background-size: 0 1px; }
a:hover .c-line--to.c-line--white, a:hover .c-line--to.c-line--ink { background-size: 100% 1px; }

/* ---------- section heading ---------- */
.c-head { display: block; }
.c-head__en {
  position: relative;
  display: block;
  padding-left: 19px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.c-head__en::before { content: ""; position: absolute; left: 0; top: 3px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.c-head__jp { display: block; font-size: 44px; font-weight: 600; line-height: 1.75; letter-spacing: .08em; }
.c-head--white { color: #fff; }
.c-head--center { text-align: center; }
.c-head--center .c-head__en { display: inline-block; }
.c-head--sm .c-head__jp { font-size: 32px; }
@media (max-width: 1024px) { .c-head__jp { font-size: 36px; } .c-head--sm .c-head__jp { font-size: 28px; } }
@media (max-width: 767px) { .c-head__jp { font-size: 24px; } .c-head__en { font-size: 12px; padding-left: 16px; } .c-head--sm .c-head__jp { font-size: 20px; } }

/* 見出し用の青帯（数字カード・ギャラリー等） */
.c-band { display: inline-block; padding: 4px 24px; border-radius: 5px; background: var(--blue); color: #fff; font-size: 28px; font-weight: 600; letter-spacing: .08em; }
.c-band--yellow { background: var(--yellow); color: var(--ink); }
.c-band--pink { background: var(--pink); }
.c-band--sm { font-size: 20px; padding: 6px 20px; }
@media (max-width: 767px) { .c-band { font-size: 18px; padding: 4px 16px; } .c-band--sm { font-size: 16px; } }

/* ---------- lower page（下層共通） ---------- */
.lower-fv {
  position: fixed;
  top: 0; left: 0;
  z-index: 0;
  width: 100%;
  min-height: 396px;
  padding: 120px 20px 40px;
  color: #fff;
  text-align: center;
}
.lower-fv__en { display: block; font-family: var(--font-en); font-size: 80px; font-weight: 500; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.lower-fv__jp { position: relative; display: inline-block; margin-top: 8px; padding-top: 26px; font-size: 20px; font-weight: 600; letter-spacing: .1em; }
.lower-fv__jp::before { content: ""; position: absolute; top: 0; left: 50%; width: 124px; height: 10px; background: var(--yellow); transform: translateX(-50%); }
.lower-body { position: relative; z-index: 1; margin-top: 396px; overflow-x: clip; }
.c-crumb {
  position: absolute;
  top: 88px; left: 50%;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  max-width: 1500px;
  width: calc(100% - 40px);
  font-size: 15px;
  letter-spacing: .05em;
  color: #fff;
  white-space: nowrap;
  transform: translateX(-50%);
  overflow-x: auto;
  scrollbar-width: none;
}
.c-crumb::-webkit-scrollbar { display: none; }
.c-crumb li { position: relative; }
.c-crumb li + li { padding-left: 18px; }
.c-crumb li + li::before { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #fff; transform: translateY(-50%); }
@media (max-width: 1024px) { .lower-fv__en { font-size: 60px; } }
@media (max-width: 767px) {
  .lower-fv { min-height: 270px; padding: 108px 20px 32px; }
  .lower-fv__en { font-size: 40px; line-height: 1.575; letter-spacing: 0; }
  .lower-fv__jp { font-size: 14px; padding-top: 16px; }
  .lower-fv__jp::before { width: 84px; height: 8px; }
  .lower-body { margin-top: 270px; }
  .c-crumb { top: 64px; font-size: 12px; width: calc(100% - 20px); justify-content: flex-start; }
}

/* hash 着地時に固定ヘッダーぶん逃がす */
[id]:not(#menu) { scroll-margin-top: 120px; }
@media (max-width: 767px) { [id]:not(#menu) { scroll-margin-top: 80px; } }

/* 節の共通余白 */
.c-sec { padding: 160px 0 0; }
.c-sec--first { padding-top: 128px; }
.c-sec--last { padding-bottom: 160px; }
@media (max-width: 767px) { .c-sec { padding-top: 72px; } .c-sec--first { padding-top: 64px; } .c-sec--last { padding-bottom: 80px; } }

/* ---------- ページ末：横長写真＋英字マーキー＋次へ ---------- */
.c-wide { position: relative; height: 720px; overflow: hidden; }
.c-wide img { position: absolute; left: 0; top: -10%; width: 100%; height: 120%; object-fit: cover; }
.c-next { padding: 148px 0; text-align: center; }
.c-next__loop { font-family: var(--font-en); font-size: 80px; font-weight: 600; line-height: 1; letter-spacing: .04em; text-transform: uppercase; }
.c-next__loop .c-marquee__track > span { display: inline-flex; align-items: center; padding-right: 27px; }
.c-next__loop svg { width: 95px; height: 107px; margin: 0 27px 0 0; color: var(--grey); }
.c-next .c-btn { margin: 32px auto 0; }
@media (max-width: 767px) {
  .c-wide { height: 243px; }
  .c-next { padding: 60px 0; }
  .c-next__loop { font-size: 40px; }
  .c-next__loop svg { width: 48px; height: 54px; margin-right: 14px; }
  .c-next .c-btn { margin-top: 24px; }
}

/* ---------- marquee ---------- */
.c-marquee { overflow: hidden; white-space: nowrap; }
.c-marquee__track { display: inline-flex; animation: marq var(--marq-dur, 30s) linear infinite; will-change: transform; }
.c-marquee--reverse .c-marquee__track { animation-direction: reverse; }
.c-marquee.is-pause .c-marquee__track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- tabs ---------- */
.c-tabs { display: flex; align-items: flex-end; gap: 16px; height: 100px; }
.c-tabs__btn {
  flex: 1 1 0;
  height: 80%;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height .3s var(--ease);
}
.c-tabs__btn.is-current { height: 100%; }
.c-tabs__btn--blue { background: var(--blue); }
.c-tabs__btn--yellow { background: var(--yellow); color: var(--ink); }
.c-tabs__btn--pink { background: var(--pink); }
.c-tabs__btn small { font-size: inherit; font-weight: inherit; }
.c-panel { display: none; padding: 80px 0; border: 3px solid var(--blue); border-radius: 0 0 24px 24px; background: #fff; }
.c-panel.is-current { display: block; animation: fadeIn .3s var(--ease2); }
.c-panel--yellow { border-color: var(--yellow); }
.c-panel--pink { border-color: var(--pink); }
.c-panel__inner { max-width: 1000px; width: calc(100% - 48px); margin: 0 auto; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 767px) {
  .c-tabs { height: 42px; gap: 4px; }
  .c-tabs__btn { font-size: 15px; letter-spacing: 0; border-radius: 6px 6px 0 0; }
  .c-tabs__btn small { display: none; }
  .c-tabs__btn--pink { font-size: 12px; letter-spacing: -.05em; }
  .c-panel { padding: 40px 0; border-width: 2px; border-radius: 0 0 12px 12px; }
}

/* ---------- 定義リスト表（募集要項など） ---------- */
.c-spec__row { display: flex; padding: 28px 0; border-bottom: 1px dashed var(--grey); }
.c-spec__row:first-child { padding-top: 0; }
.c-spec__row--center { align-items: center; }
.c-spec dt { flex: none; width: 200px; font-weight: 600; color: var(--blue); }
.c-spec dd { width: calc(100% - 200px); }
.c-spec--yellow dt { color: var(--yellow-text); }
.c-spec--pink dt { color: var(--pink); }
.c-ul-sq li { position: relative; padding-left: 16px; }
.c-ul-sq li::before { content: ""; position: absolute; left: 0; top: .75em; width: 6px; height: 6px; border-radius: 1px; background: var(--blue); }
.c-ul-sq li + li { margin-top: 8px; }
.c-ul-sq--yellow li::before { background: var(--yellow); }
.c-ul-sq--pink li::before { background: var(--pink); }
@media (max-width: 767px) {
  .c-spec__row { flex-direction: column; gap: 8px; padding: 20px 0; }
  .c-spec dt, .c-spec dd { width: 100%; }
}

/* ---------- 縦タイムライン（1日の流れ） ---------- */
.c-timeline { max-width: 836px; margin: 0 auto; }
.c-timeline li { position: relative; display: flex; justify-content: space-between; padding-left: 48px; padding-bottom: 36px; }
.c-timeline li::after { content: ""; position: absolute; left: 0; top: 9px; width: 20px; height: 20px; border-radius: 50%; background: var(--pink); }
.c-timeline li::before { content: ""; position: absolute; left: 9.5px; top: 20px; bottom: -10px; width: 1px; background: var(--pink); }
.c-timeline li:last-child { padding-bottom: 0; }
.c-timeline li:last-child::before { display: none; }
.c-timeline__head { flex: none; width: 206px; font-size: 20px; font-weight: 600; line-height: 1.6; }
.c-timeline__head span { display: inline-block; }
.c-timeline__time { margin-right: 12px; }
.c-timeline__desc { width: calc(100% - 230px); line-height: 2.13; }
.c-timeline--blue li::after, .c-timeline--blue li::before { background: var(--blue); }
.c-timeline--yellow li::after, .c-timeline--yellow li::before { background: var(--yellow); }
@media (max-width: 767px) {
  .c-timeline li { flex-direction: column; padding-left: 32px; padding-bottom: 24px; }
  .c-timeline li::after { width: 16px; height: 16px; top: 6px; }
  .c-timeline li::before { left: 7.5px; }
  .c-timeline__head { width: 100%; font-size: 17px; }
  .c-timeline__desc { width: 100%; margin-top: 8px; line-height: 1.9; }
}

/* ---------- 数字カード ---------- */
.c-num { display: flex; flex-direction: column; border: 1px solid var(--blue); border-radius: 20px; background: #fff; overflow: hidden; text-align: center; padding-bottom: 24px; }
.c-num__title { padding: 7px 8px; background: var(--blue); color: #fff; font-size: 20px; font-weight: 600; letter-spacing: .04em; line-height: 1.75; }
.c-num__body { flex: 1; display: flex; align-items: center; justify-content: center; gap: 20px; padding: 32px 24px 12px; }
.c-num__val { font-family: var(--font-en); font-size: 72px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.c-num__unit { font-family: var(--font-jp); font-size: 22px; font-weight: 700; color: var(--ink); margin-left: 4px; letter-spacing: 0; }
.c-num__val.is-blue { color: var(--blue); }
.c-num__val.is-pink { color: var(--pink); }
.c-num__val.is-yellow { color: #f0c400; }
.c-num__pict { width: 120px; flex: none; }
.c-num__note { font-size: 15px; line-height: 2; letter-spacing: .06em; padding: 0 16px; }
@media (max-width: 767px) {
  .c-num { border-width: 2px; border-radius: 10px; }
  .c-num__title { font-size: 17px; }
  .c-num__val { font-size: 52px; }
  .c-num__unit { font-size: 18px; }
  .c-num__pict { width: 84px; }
  .c-num__note { font-size: 13px; }
}

/* ---------- 吹き出しマスク写真（SVG clipPath #bubble-tall を各ページの defs に置く） ---------- */
.c-bubble { position: relative; width: 100%; aspect-ratio: 338 / 572; }
.c-bubble__shadow { position: absolute; inset: 0; background: var(--ink); clip-path: url(#bubble-tall); transform: translate(8px, 8px); }
.c-bubble__img { position: absolute; inset: 0; overflow: hidden; background: var(--blue); clip-path: url(#bubble-tall); }
.c-bubble__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s var(--ease2); }
.c-bubble__line { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #fff; stroke-width: 5; pointer-events: none; }
.c-bubble--blue .c-bubble__img { background: var(--blue); }
.c-bubble--pink .c-bubble__img { background: var(--pink); }
.c-bubble--yellow .c-bubble__img { background: var(--yellow); }
.c-bubble--ink .c-bubble__img { background: var(--ink); }
.c-bubble--flip .c-bubble__shadow, .c-bubble--flip .c-bubble__img, .c-bubble--flip .c-bubble__line { transform: scaleX(-1); }
.c-bubble--flip .c-bubble__shadow { transform: scaleX(-1) translate(-8px, 8px); }
.c-bubble--flip .c-bubble__img img { transform: scaleX(-1); }
@media (hover: hover) {
  a:hover .c-bubble__img img, .c-bubble:hover .c-bubble__img img { transform: scale(1.15); }
  a:hover .c-bubble--flip .c-bubble__img img, .c-bubble--flip:hover .c-bubble__img img { transform: scaleX(-1) scale(1.15); }
}
@media (max-width: 767px) { .c-bubble__shadow { transform: translate(4px, 4px); } .c-bubble__line { stroke-width: 6; } }

/* 名札（一覧・カルーセル下） */
.c-nameplate { text-align: center; }
.c-nameplate__meta { font-weight: 600; letter-spacing: .05em; }
.c-tag { display: inline-block; margin-left: 16px; padding: 7px 16px; border-radius: 15px; background: var(--grey); line-height: 1; font-size: 13px; }
.c-nameplate__copy { margin-top: 16px; color: #fff; font-size: 22px; font-weight: 600; line-height: 1.2; letter-spacing: .05em; }
.c-chip { display: inline-block; padding: 4px 8px; border-radius: 5px; background: var(--ink); }
.c-chip + .c-chip { margin-top: 4px; }
@media (max-width: 767px) { .c-nameplate__copy { font-size: 16px; } .c-tag { margin-left: 8px; padding: 6px 12px; } }

/* 装飾の吹き出し（inline SVG <use href="#deco-bubble">） */
.c-deco { position: absolute; width: 100px; aspect-ratio: 120 / 207; pointer-events: none; opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease2), transform .6s var(--ease2); }
.c-deco svg { width: 100%; height: 100%; }
.c-deco--blue { color: var(--blue); }
.c-deco--pink { color: var(--pink); }
.c-deco--yellow { color: var(--yellow); }
.c-deco.is-in { opacity: 1; transform: translateY(0); }
.c-deco.is-passed { opacity: 0; transform: translateY(-20px); }
.c-deco--float { animation: floatY 8s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 767px) { .c-deco { width: 24px; } }

/* ---------- 汎用 reveal（IntersectionObserver で .is-in） ---------- */
.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease2), transform .6s var(--ease2); }
.js-reveal.is-in { opacity: 1; transform: translateY(0); }
.js-reveal--photo { opacity: 0; transform: scale(1.08); transition: opacity .6s var(--ease), transform .8s var(--ease); }
.js-reveal--photo.is-in { opacity: 1; transform: scale(1); }
.js-reveal--pop { opacity: 0; transform: translateY(50px) scale(.9); transition: opacity .6s ease-in-out, transform .6s ease-in-out; }
.js-reveal--pop.is-in { opacity: 1; transform: translateY(0) scale(1); }
.js-reveal--bounce { opacity: 0; transform: scale(.8); transition: opacity .4s var(--ease2), transform 1.2s var(--back); }
.js-reveal--bounce.is-in { opacity: 1; transform: scale(1); }
.js-reveal--fade { opacity: 0; transition: opacity .6s var(--ease); }
.js-reveal--fade.is-in { opacity: 1; }
.js-reveal--line .c-line--to { background-size: 0 3px; }
.js-reveal--line.is-in .c-line--to { background-size: 100% 3px; }

/* ---------- 青の問い合わせカード ---------- */
.c-contact { margin: 80px 0 160px; padding: 80px 0; border-radius: 24px; background: var(--blue); color: #fff; }
.c-contact__inner { max-width: 1000px; width: calc(100% - 48px); margin: 0 auto; }
.c-contact__cols { display: flex; flex-wrap: wrap; gap: 48px; margin-top: 40px; }
.c-contact__col { flex: 1 1 320px; max-width: 436px; display: flex; gap: 24px; }
.c-contact__office { flex: none; width: 120px; font-size: 20px; font-weight: 600; }
.c-contact__body { font-size: 15px; line-height: 1.9; }
@media (max-width: 767px) {
  .c-contact { margin: 48px 0 80px; padding: 40px 0 48px; border-radius: 12px; }
  .c-contact__col { flex-direction: column; gap: 8px; }
}

/* ---------- sticky サイドナビ（働く環境などのアンカー節） ---------- */
.c-anchor-grid { display: grid; grid-template-columns: 200px 1fr; }
.c-anchor-grid--wide { grid-template-columns: 350px 1fr; }
.c-sidenav { position: sticky; top: 180px; padding-top: 184px; }
.c-sidenav a { position: relative; display: inline-block; padding-left: 26px; font-size: 18px; font-weight: 600; letter-spacing: .08em; }
.c-sidenav a::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 14px; border-radius: 50% 50% 50% 0; background: var(--blue); opacity: 0; transform: scale(.6); transition: all .3s var(--ease2); }
.c-sidenav li:nth-child(3n+2) a::before { background: var(--pink); }
.c-sidenav li:nth-child(3n+3) a::before { background: var(--yellow); }
.c-sidenav li + li { margin-top: 12px; }
.c-sidenav a.is-current::before { opacity: 1; transform: scale(1); }
@media (max-width: 1024px) {
  .c-anchor-grid, .c-anchor-grid--wide { grid-template-columns: 1fr; }
  .c-sidenav { display: none; }
}

/* ---------- 一覧（吹き出し3列） ---------- */
.c-bubble-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 120px 3.33%; }
.c-bubble-grid > li > a { display: block; max-width: 320px; margin: 0 auto; }
.c-bubble-grid .c-nameplate { margin-top: 24px; }
@media (max-width: 1200px) { .c-bubble-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .c-bubble-grid { grid-template-columns: 1fr; gap: 60px; } .c-bubble-grid > li > a { max-width: 260px; } }

/* ---------- 記事一覧（新着） ---------- */
.c-post a { position: relative; display: block; padding: 18px 24px 16px 0; border-bottom: 1px solid var(--line); }
.c-post:first-child a { padding-top: 0; }
.c-post__day { color: var(--grey2); font-size: 17px; font-weight: 400; line-height: 1; letter-spacing: .02em; }
.c-post__title { margin-top: 12px; font-size: 20px; font-weight: 600; letter-spacing: 0; }
.c-post__cat { display: inline-block; margin-top: 12px; padding: 2px 8px; border: 1px solid var(--grey3); border-radius: 21px; line-height: 1.6; font-size: 13px; letter-spacing: .03em; }
.c-post svg { position: absolute; right: 0; bottom: 16px; width: 21px; height: 10px; }
.c-cats { display: flex; flex-direction: column; gap: 16px; }
.c-cats a { display: block; width: 224px; padding: 13px 20px; border-radius: 8px; background: var(--grey); font-size: 17px; letter-spacing: .03em; text-align: center; }
.c-cats a.is-current { background: var(--blue); color: #fff; }
@media (max-width: 767px) {
  .c-post a { padding: 20px 20px 20px 0; }
  .c-post__day { color: var(--ink); font-size: 14px; font-weight: 600; }
  .c-post__title { margin-top: 6px; font-size: 15px; }
  .c-post svg { width: 16px; height: 7px; bottom: 26px; }
  .c-cats { flex-direction: row; gap: 10px; overflow-x: auto; }
  .c-cats a { width: max-content; padding: 2px 20px; border-radius: 4px; font-size: 14px; }
}

/* ---------- フォーム ---------- */
.c-form__title { display: inline-block; padding: 4px 24px; border-radius: 5px; background: var(--yellow); font-size: 22px; font-weight: 600; letter-spacing: .05em; }
.c-form__lead { margin-top: 24px; text-align: center; line-height: 2; }
.c-form__row { margin-top: 40px; }
.c-form__label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 600; }
.c-req { display: inline-block; padding: 3px 6px; border-radius: 3px; background: var(--pink); color: #fff; font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: .05em; }
.c-opt { background: var(--grey2); }
.c-form input[type="text"], .c-form input[type="email"], .c-form input[type="tel"], .c-form input[type="date"], .c-form select, .c-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color .2s;
}
.c-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23434343' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.c-form input:focus, .c-form select:focus, .c-form textarea:focus { border-color: var(--blue); }
.c-form textarea { min-height: 200px; resize: vertical; }
.c-form__hint { margin-top: 6px; font-size: 13px; color: #888; }
.c-form__error { display: none; margin-top: 6px; font-size: 13px; color: var(--pink); }
.c-form__row.is-error .c-form__error { display: block; }
.c-form__row.is-error input, .c-form__row.is-error textarea, .c-form__row.is-error select { border-color: var(--pink); }
.c-form__check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.c-form__check input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue); }
.c-form__radios { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.c-form__submit { margin-top: 48px; text-align: center; }
.c-form__submit .c-btn { margin: 0 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.c-steps { display: flex; justify-content: center; gap: 0; margin: 40px auto 0; max-width: 560px; }
.c-steps li { flex: 1; position: relative; text-align: center; font-size: 13px; font-weight: 600; color: var(--grey2); padding-top: 40px; }
.c-steps li::before { content: attr(data-n); position: absolute; left: 50%; top: 0; width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--grey); background: #fff; color: var(--grey2); font-family: var(--font-en); font-size: 14px; line-height: 28px; transform: translateX(-50%); }
.c-steps li::after { content: ""; position: absolute; left: 50%; top: 15px; width: 100%; height: 2px; background: var(--grey); z-index: -1; }
.c-steps li:last-child::after { display: none; }
.c-steps li.is-current { color: var(--blue); }
.c-steps li.is-current::before { border-color: var(--blue); background: var(--blue); color: #fff; }
.c-steps li.is-done::before { border-color: var(--blue); color: var(--blue); }
.c-confirm dt { font-weight: 600; color: var(--blue); }
.c-form__step { display: none; }
.c-form__step.is-current { display: block; }
@media (max-width: 767px) { .c-form__title { font-size: 18px; } .c-form__row { margin-top: 28px; } }

/* ---------- footer ---------- */
.l-footer { position: relative; z-index: 1; padding: 120px 0 56px; color: #fff; }
.l-footer__panel { margin-bottom: 72px; padding: 96px 0 100px; border-radius: 20px; background: #fff; color: var(--ink); }
.l-footer__panel-inner { max-width: 1000px; width: calc(100% - 48px); margin: 0 auto; }
.l-footer__panel h2 { font-size: 44px; font-weight: 600; line-height: 1; letter-spacing: .08em; color: #000; }
.l-footer__btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.l-footer__btns .c-btn { width: calc((100% - 32px) / 3); min-width: 0; }
.l-footer__main { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 40px; }
.l-footer__logo { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-bottom: 40px; }
.l-footer__logo-en { width: 174px; height: 36px; color: #fff; }
.l-footer__logo-jp { font-size: 20px; font-weight: 700; letter-spacing: .05em; }
.l-footer__office { font-size: 16px; letter-spacing: .04em; line-height: 1.9; }
.l-footer__office + .l-footer__office { margin-top: 30px; }
.l-footer__sns { display: flex; gap: 12px; margin-top: 32px; }
.l-footer__sns a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid #fff; border-radius: 50%; transition: background .3s, color .3s; }
.l-footer__sns a:hover { background: #fff; color: var(--blue2); }
.l-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); row-gap: 32px; column-gap: 24px; max-width: 600px; width: 100%; font-weight: 600; }
.l-footer__nav > li:first-child { grid-column: 1 / 4; }
.l-footer__nav > li > a { display: inline-block; }
.l-footer__nav > li ul { margin-top: 8px; }
.l-footer__nav > li li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 500; }
.l-footer__nav > li li + li { margin-top: 4px; }
.l-footer__nav > li li::after { content: ""; position: absolute; left: 7px; top: 2px; width: 11px; height: 12px; border-left: 1px solid #fff; border-bottom: 1px solid #fff; }
.l-footer__copy { margin-top: 160px; font-size: 14px; letter-spacing: .02em; text-align: center; }
.br-pc { display: inline; }
@media (max-width: 1024px) { .l-footer__main { flex-direction: column; } .l-footer__nav { max-width: none; } }
@media (max-width: 767px) {
  .l-footer { padding: 80px 0 56px; }
  .l-footer__panel { margin-bottom: 80px; padding: 40px 0; }
  .l-footer__panel h2 { font-size: 28px; }
  .l-footer__btns { flex-direction: column; margin-top: 24px; }
  .l-footer__btns .c-btn { width: 100%; }
  .l-footer__logo { gap: 12px; margin-bottom: 24px; }
  .l-footer__logo-en { width: 168px; height: 34px; }
  .l-footer__logo-jp { font-size: 16px; }
  .l-footer__office { font-size: 14px; }
  .l-footer__office + .l-footer__office { margin-top: 24px; }
  .l-footer__nav { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .l-footer__nav > li:first-child { grid-column: auto; }
  .l-footer__nav > li { font-size: 14px; }
  .l-footer__copy { margin-top: 104px; }
  .br-pc { display: none; }
}

/* ---------- 撮影モード（?shot=1）：演出を完了状態で固定 ---------- */
html.is-shot .js-reveal, html.is-shot .js-reveal--photo, html.is-shot .js-reveal--pop, html.is-shot .js-reveal--bounce, html.is-shot .js-reveal--fade, html.is-shot .c-deco { opacity: 1 !important; transform: none !important; transition: none !important; }
html.is-shot .js-reveal--line .c-line--to { background-size: 100% 3px; }
html.is-shot .c-marquee__track { animation: none !important; }
html.is-shot .l-header { transition: none; }
html.is-shot .c-deco--float { animation: none; }
