/*
Theme Name: ReXeR
Description: ReXeR Co., Ltd. 公式サイトテーマ（黒基調ラグジュアリー / DIN系タイポグラフィ）
Version: 1.0.0
Author: ReXeR
*/

:root {
  --accent: #B97702;
  --accent-l: #D99C33;
  --bg: #0D0C0A;
  --panel: #14120F;
  --ink: #EAE6DE;
  --mut: #9A938A;
  --line: rgba(185, 119, 2, .3);
  --hair: rgba(185, 119, 2, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Barlow', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: var(--accent);
}

::selection {
  background: rgba(185, 119, 2, .4);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 16px clamp(16px, 4vw, 40px);
  /* background: #0A0908; */
  transition: 0.5s;
}

.site-header.scroll {
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(10px);
}



.site-header .logo img {
  height: clamp(30px, 4vw, 40px);
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3.5vw, 36px);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
}

.site-nav .current {
  color: var(--accent-l);
}


/* PCではハンバーガーボタンを非表示 */
.menu-toggle {
  display: none;
}

/* PCではハンバーガーボタンを非表示 */
.top_link {
  display: none;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top_link {
    display: inline-block;
  }

  /*
   * ハンバーガーボタン
   */
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }


  /*
   * SPナビゲーション
   * 初期状態では画面外に隠す
   */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 400px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .site-nav a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
  }


  /*
   * メニューを開いた状態
   */
  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
  }


  /*
   * 1本目を斜めにして×印にする
   */
  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  /*
   * 3本目を斜めにして×印にする
   */
  .site-header.menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}


/* ---------- FV / Hero ---------- */
.hero-scroll {
  position: relative;
  height: 720vh;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* .hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(160px, 24vh, 240px);
  background: linear-gradient(#0A0908 0%, #0A0908 12%, rgba(10, 9, 8, .75) 45%, rgba(10, 9, 8, .3) 75%, rgba(10, 9, 8, 0) 100%);
  pointer-events: none;
  z-index: 6;
} */

.hero-intro {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fv-half {
  position: absolute;
  top: -12%;
  bottom: -12%;
  width: 50%;
  overflow: hidden;
}

.fv-half.left {
  left: 0;
}

.fv-half.right {
  right: 0;
}

.fv-layer {
  position: absolute;
  inset: 0;
}

.fv-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fvA1 {

  0%,
  40% {
    transform: translateY(0)
  }

  55% {
    transform: translateY(-100%)
  }

  55.01%,
  85% {
    transform: translateY(100%)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes fvA2 {

  0%,
  40% {
    transform: translateY(100%)
  }

  55%,
  85% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-100%)
  }
}

@keyframes fvB1 {

  0%,
  40% {
    transform: translateY(0)
  }

  55% {
    transform: translateY(100%)
  }

  55.01%,
  85% {
    transform: translateY(-100%)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes fvB2 {

  0%,
  40% {
    transform: translateY(-100%)
  }

  55%,
  85% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(100%)
  }
}

.fv-a1 {
  animation: fvA1 20s cubic-bezier(.7, 0, .15, 1) infinite;
}

.fv-a2 {
  animation: fvA2 20s cubic-bezier(.7, 0, .15, 1) infinite;
}

.fv-b1 {
  animation: fvB1 20s cubic-bezier(.7, 0, .15, 1) infinite;
}

.fv-b2 {
  animation: fvB2 20s cubic-bezier(.7, 0, .15, 1) infinite;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13, 12, 10, .62) 0%, rgba(13, 12, 10, .4) 55%, rgba(13, 12, 10, .55) 100%);
  pointer-events: none;
}

.hero-wm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-wm img {
  height: min(72vh, min(90vw, 650px));
  width: auto;
  opacity: .1;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 9, 8, .3) 0.7px, transparent 1px);
  background-size: 2.5px 2.5px;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}

.hero-copy .kicker {
  font-size: clamp(11px, 1.6vw, 15px);
  font-weight: 400;
  letter-spacing: .5em;
  margin: 0;
}

.hero-copy h1 {
  font-weight: 400;
  font-size: clamp(58px, 9vw, 130px);
  line-height: 1;
  letter-spacing: .22em;
  margin: 28px 0 0;
  text-indent: .22em;
}

.hero-copy .sub {
  font-size: clamp(12px, 1.8vw, 19px);
  font-weight: 500;
  letter-spacing: .5em;
  margin: 20px 0 0;
  text-indent: .56em;
}

.hero-copy .place {
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  letter-spacing: .34em;
  color: var(--accent-l);
  margin: 48px 0 0;
}

.hero-brand {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .1s linear;
}

.hero-brand .bg {
  position: absolute;
  inset: 0;
}

.hero-brand .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-brand .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(13, 12, 10, .88) 0%, rgba(13, 12, 10, .65) 45%, rgba(13, 12, 10, .15) 75%);
  pointer-events: none;
}


@media screen and (max-width: 896px) {
  .hero-brand .grad {
    background: linear-gradient(0deg, rgba(13, 12, 10, .88) 0%, rgba(13, 12, 10, .65) 45%, rgba(13, 12, 10, .15) 75%);
  }
}

.hero-brand .txt {
  position: absolute;
  left: clamp(20px, 7vw, 120px);
  right: clamp(44px, 9vw, 120px);
  bottom: clamp(36px, 10vh, 110px);
  max-width: 640px;
}

.hero-brand .num {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--accent);
  margin: 0 0 16px;
}

.hero-brand .num span {
  color: var(--mut);
}

.hero-brand .brand-logo {
  display: block;
  width: auto;
  max-width: min(78vw, 560px);
  object-fit: contain;
  object-position: left center;
}

.hero-brand h2 {
  font-weight: 300;
  font-size: clamp(36px, 7vw, 110px);
  line-height: 1.04;
  letter-spacing: .04em;
  margin: 0;
  white-space: pre-line;
}

.hero-brand .tag {
  font-size: clamp(10px, 1.4vw, 11px);
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--accent-l);
  margin: 24px 0 0;
}

.hero-brand .desc {
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 2.1;
  max-width: 480px;
  margin: 20px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.hero-brand .loc {
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--mut);
  margin: 18px 0 0;
}


[data-hero-layer] {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;

  clip-path: inset(100% 0 0 0);
  transform: translateY(40px);

  filter: blur(0) brightness(1);

  transition:
    clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1),
    transform 0.8s cubic-bezier(0.76, 0, 0.24, 1),
    filter 0.8s cubic-bezier(0.76, 0, 0.24, 1);

  will-change: clip-path, transform, filter;
}

[data-hero-layer].is-active {
  visibility: visible;
  pointer-events: auto;

  clip-path: inset(0 0 0 0);
  transform: translateY(0);

  filter: blur(0) brightness(1);

  z-index: 2;
}

[data-hero-layer].is-entering-next {
  visibility: visible;
  pointer-events: none;

  clip-path: inset(100% 0 0 0);
  transform: translateY(40px);

  z-index: 3;
}

[data-hero-layer].is-entering-next.is-active {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

[data-hero-layer].is-entering-prev {
  visibility: visible;
  pointer-events: none;

  clip-path: inset(0 0 100% 0);
  transform: translateY(-40px);

  z-index: 3;
}

[data-hero-layer].is-entering-prev.is-active {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

[data-hero-layer].is-leaving {
  visibility: visible;
  pointer-events: none;

  clip-path: inset(0 0 0 0);
  transform: scale(0.985);

  filter: blur(7px) brightness(0.7);

  z-index: 1;
}

[data-hero-layer].is-past {
  visibility: hidden;
  pointer-events: none;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  border: 1px solid var(--accent);
  padding: 13px 28px;
  color: var(--accent-l);
  transition: .25s;
}

.btn-line:hover {
  color: var(--accent-l);
  background: rgba(185, 119, 2, .15);
}

.btn-line .arw {
  color: var(--accent-l);
}

.hero-rail {
  position: absolute;
  right: clamp(10px, 2.5vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}

.hero-rail button {
  background: none;
  border: none;
  border-right: 1px solid transparent;
  cursor: pointer;
  padding: 2px 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(154, 147, 138, .55);
  transition: color .3s, border .3s;
}

.hero-rail button.on {
  color: var(--accent-l);
  border-right-color: var(--accent);
}

/* ---------- Sections ---------- */
.sec {
  padding: 120px clamp(20px, 5vw, 40px);
}

.sec-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.sec-inner.narrow {
  max-width: 980px;
}

.sec-inner.mid {
  max-width: 1060px;
}

.sec-head {
  border-left: 2px solid var(--accent);
  padding-left: clamp(18px, 3vw, 30px);
}

.sec-head h2,
.sec-head h1 {
  font-weight: 300;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: .2em;
  margin: 0;
  color: var(--accent);
}

.sec-head .jp {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--mut);
  margin: 12px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.sec-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.view-all {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--mut);
}

.philosophy {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 16vw, 180px) clamp(20px, 5vw, 40px);
  text-align: center;
}

.lineart {
  position: absolute;
  inset: 0;
  background-size: 680px auto;
  background-repeat: repeat;
  opacity: .5;
  pointer-events: none;
}

.philosophy .in {
  position: relative;
}

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .42em;
  color: var(--accent);
  margin: 0 0 34px;
}

.philosophy h2 {
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 64px);
  letter-spacing: .14em;
  margin: 0;
}

.philosophy .jp-sub {
  font-size: clamp(12px, 1.8vw, 14px);
  letter-spacing: .26em;
  color: var(--mut);
  margin: 26px 0 0;
}

.vline {
  width: 1px;
  height: 70px;
  background: var(--line);
  margin: 60px auto;
}

.philosophy p.body {
  font-size: 15px;
  line-height: 2.6;
  max-width: 620px;
  margin: 40px auto 0;
  font-family: 'Noto Sans JP', sans-serif;
  text-wrap: pretty;
}

.philosophy p.body:first-of-type {
  margin-top: 0;
}

.concept {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-bg {
  position: absolute;
  inset: 0;
}

.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 12, 10, 0.55), rgba(13, 12, 10, 0.75));
}

.concept .in {
  position: relative;
  text-align: center;
  padding: 110px clamp(20px, 5vw, 40px);
  max-width: 760px;
}

.concept h2 {
  font-weight: 300;
  font-size: clamp(30px, 5vw, 68px);
  letter-spacing: .18em;
  line-height: 1.2;
  margin: 0;
  color: var(--accent-l);
}

.concept .jp-sub {
  font-size: clamp(12px, 1.8vw, 14px);
  letter-spacing: .28em;
  color: var(--mut);
  margin: 26px 0 0;
}

.concept .vline {
  height: 50px;
  margin: 44px auto;
}

.concept p.body {
  font-size: 15px;
  line-height: 2.6;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  text-wrap: pretty;
}

.bg-panel {
  background: var(--panel);
}

.brand-list {
  margin-top: 44px;
  border-top: 1px solid var(--hair);
}

.brand-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--hair);
}

.brand-row:hover {
  background: rgba(185, 119, 2, .06);
}

.brand-row .no {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .15em;
}

.brand-row .body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand-row .body img {
  display: block;
  width: auto;
  max-width: min(64vw, 420px);
  object-fit: contain;
  object-position: left center;
}

.brand-row .nm {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  letter-spacing: .14em;
}

.brand-row .tg {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--mut);
}

.brand-row .intro {
  font-size: 12px;
}

.brand-row .arw {
  color: var(--accent);
  font-size: 14px;
}

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 0 60px;
  margin-top: 44px;
}

.news-grid.archive {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 0 70px;
  border-top: 1px solid var(--hair);
}

.news-card {
  display: grid;
  grid-template-columns: minmax(120px, 170px) 1fr;
  gap: clamp(16px, 3vw, 28px);
  padding: 34px 0;
  border-bottom: 1px solid var(--hair);
  align-items: start;
}

.news-card .thumb {
  height: 118px;
  background: #1B1815;
  overflow: hidden;
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card .tx {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card .tt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-card .ex {
  font-size: 12px;
  line-height: 2;
  color: var(--mut);
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-card .dt {
  font-size: 12px;
  color: var(--mut);
  letter-spacing: .08em;
  margin: 0;
}

.single-news_page {
  max-width: 780px;
  margin: 0 auto;
}

.single-news .dt {
  font-size: 13px;
  color: var(--mut);
  letter-spacing: .1em;
}

.single-news h1 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .04em;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 16px 0 0;
}

.single-news .content {
  font-size: 14px;
  line-height: 2.4;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 40px;
}

.single-news .content img {
  height: auto;
}

/* ---------- Recruit ---------- */
.cover-sec {
  position: relative;
  overflow: hidden;
}

.cover-sec .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 12, 10, .74), rgba(13, 12, 10, .84));
  pointer-events: none;
}

.cover-sec .in {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 40px);
  min-height: inherit;
  margin: 0 auto;
}

.recruit-hero {
  height: 74vh;
  min-height: 520px;
  display: flex;
}

.recruit-hero h1 {
  font-weight: 300;
  font-size: clamp(26px, 4.2vw, 58px);
  letter-spacing: .14em;
  margin: 0;
}

.recruit-hero p {
  font-size: 14px;
  line-height: 2.3;
  margin: 30px 0 0;
  max-width: 600px;
  font-family: 'Noto Sans JP', sans-serif;
}

.recruit-cta {
  height: 64vh;
  min-height: 480px;
  display: flex;
}

.recruit-cta h2 {
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 50px);
  letter-spacing: .14em;
  margin: 0;
}

.recruit-cta p {
  font-size: 14px;
  line-height: 2.2;
  margin: 26px 0 0;
  max-width: 560px;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  border: 1px solid var(--accent);
  color: var(--accent-l);
  padding: 16px 44px;
}

.btn-gold:hover {
  background: rgba(185, 119, 2, .15);
  color: var(--accent-l);
}

.commit {
  position: relative;
  overflow: hidden;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 60px;
  align-items: center;
  margin-top: 70px;
  position: relative;
}

.commit-grid .ph {
  position: relative;
  min-height: 420px;
}

.commit-grid .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  aspect-ratio: 500 / 333;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .commit-grid .ph {
    min-height: auto;
  }

  .commit-grid .ph img {
    position: static;
  }
}

.commit-items {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.commit-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}

.commit-item .no {
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .06em;
}

.commit-item p {
  font-size: 14px;
  line-height: 2.3;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}

.health {
  padding: 70px clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.health .in {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  align-items: center;
  justify-content: center;
}

.health img {
  width: min(300px, 74vw);
  height: auto;
  flex: none;
}

.health p {
  font-size: 12px;
  line-height: 2.3;
  color: var(--mut);
  margin: 0;
  max-width: 440px;
  font-family: 'Noto Sans JP', sans-serif;
  text-wrap: pretty;
}

.job {
  border-bottom: 1px solid var(--hair);
}

.job-head {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  padding: 30px 8px;
}

.job-head .no {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .12em;
}

.job-head .tt {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400;
  letter-spacing: .08em;
}

.job-head .tp {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--mut);
  border: 1px solid var(--line);
  padding: 5px 12px;
  white-space: nowrap;
}

.job-head .mk {
  color: var(--accent-l);
  font-size: 16px;
}

.job-body {
  display: none;
  padding: 6px 8px 44px clamp(8px, 6vw, 58px);
}

.job.open .job-body {
  display: block;
}

.job-body .desc {
  font-size: 14px;
  line-height: 2.2;
  max-width: 680px;
  margin: 0 0 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

.kv-row {
  display: grid;
  grid-template-columns: minmax(90px, 120px) 1fr;
  gap: 14px 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(185, 119, 2, .14);
  font-size: 14px;
  line-height: 2.1;
  font-family: 'Noto Sans JP', sans-serif;
}

.kv-row .k {
  color: var(--accent-l);
  letter-spacing: .1em;
  font-size: 12px;
  padding-top: 3px;
}

.kv-row .v {
  white-space: pre-line;
}

.common-box {
  margin-top: 70px;
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 50px);
}

.common-box .en {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .34em;
  color: var(--accent-l);
  margin: 0 0 8px;
}

.common-box h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .1em;
  margin: 0 0 30px;
  font-family: 'Noto Sans JP', sans-serif;
}

.common-box .kv-row {
  grid-template-columns: minmax(90px, 130px) 1fr;
  padding: 18px 0;
  line-height: 2.15;
}

.common-box .note {
  font-size: 11px;
  line-height: 2.1;
  color: var(--mut);
  margin: 24px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin-top: 50px;
}

.benefit {
  background: var(--bg);
  padding: 34px 28px;
}

.benefit .en {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .24em;
  color: var(--accent-l);
  margin: 0;
}

.benefit .ja {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.9;
  margin: 14px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 34px;
  margin-top: 60px;
}

.flow-step {
  text-align: center;
}

.flow-step .no {
  font-size: 32px;
  font-weight: 300;
  color: var(--accent);
  margin: 0;
  letter-spacing: .08em;
}

.flow-step .vl {
  width: 1px;
  height: 26px;
  background: var(--line);
  margin: 14px auto;
}

.flow-step .tt {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .1em;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.flow-step .dd {
  font-size: 12px;
  line-height: 2;
  color: var(--mut);
  margin: 10px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.center {
  text-align: center;
}

/* ---------- Company / Privacy ---------- */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 70px;
  margin-top: 60px;
}

.company-grid h3 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .34em;
  color: var(--accent);
  margin: 0 0 30px;
}

.company-grid .kv-row {
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.company-grid .hist {
  grid-template-columns: 70px 1fr;
  padding: 16px 0;
}

.company-grid .hist .k {
  font-family: 'Barlow', sans-serif;
  color: var(--accent);
}


.hist-wrap {
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 0;
  transition: height 0.6s ease;
}

@media screen and (max-width: 767px) {
  .hist-wrap {
    height: 280px;
  }
}

.more-btn {
  display: none;
  width: 100%;
  padding: 180px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: linear-gradient(to bottom,
      transparent 0%,
      #14120F 80%);
}

@media screen and (max-width: 767px) {
  .more-btn {
    display: block;
  }
}

/* 開いたあとはグラデーションを消す */
.hist-wrap.is-open .more-btn {
  position: relative;
  padding: 20px 0 0;
  background: none;
}

.more-btn p {
  display: inline-block;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 16px 44px;
  transition: 0.5s;
  cursor: pointer;
  width: 200px;
  text-align: center;
  box-sizing: border-box;
}

.more-btn p:hover {
  background: #ffffff30;
}

/* CLOSE時 */
.hist-wrap.is-open .more-btn {
  position: relative;
  padding: 20px 0 0;
  background: none;
}



.privacy-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.privacy-list h2 {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .12em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--accent-l);
}

.privacy-list p {
  font-size: 13px;
  line-height: 2.3;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.privacy-lead {
  font-size: 13px;
  line-height: 2.4;
  margin: 50px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  text-wrap: pretty;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A0908;
  padding: 100px clamp(20px, 5vw, 40px) 40px;
  border-top: 1px solid var(--hair);
}

.site-footer .cols {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 50px;
}

.site-footer .brandcol img {
  height: 38px;
  width: auto;
  display: block;
}

.site-footer .brandcol .co {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--mut);
  margin: 14px 0 0;
}

.site-footer .brandcol .tag {
  font-size: 12px;
  line-height: 2.2;
  color: var(--mut);
  margin: 28px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.site-footer .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  letter-spacing: .12em;
}

.site-footer .col.jp {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .14em;
}

.site-footer .col .hd {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--accent);
  margin: 0 0 6px;
  font-family: 'Barlow', sans-serif;
}

.site-footer .base {
  max-width: 1120px;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--hair);
  padding-top: 30px;
}

.site-footer .base p,
.site-footer .base a {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--mut);
  margin: 0;
}

.site-footer.slim {
  padding: 40px clamp(20px, 5vw, 40px);
}

.site-footer.slim .base {
  margin-top: 40px;
  border-top: none;
  padding-top: 0;
}

.pad-top {
  padding-top: 150px;
}

.fadeInUp {
  transform: translateY(20px);
  opacity: 0;
  transition: 1s ease-in-out;
}

.fadeInUp.on {
  opacity: 1;
  transform: translateY(0);
}



.pagination {
  margin-top: 50px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s ease;
}

.pagination a.page-numbers:hover {
  background: rgba(185, 119, 2, .15);
  color: var(--accent-l);
  border-color: var(--accent-l);
}

.pagination .page-numbers.current {
  background: rgba(185, 119, 2, .15);
  color: var(--accent-l);
  border-color: var(--accent-l);
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 18px;
}