@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.u-desktop {
  display: block;
}

.u-mobile {
  display: none;
}

/*
  ボタンのホバー（参考: marp-wm.com の button hover 014「上から下に色面が伸びる」）
  反転色の塗りが上端から下へ 0% → 100% と伸び、同時に文字・矢印の色が入れ替わる。

  塗りは背景画像（単色グラデーション）の background-size を動かして作る。
  ::before を使わないので、矢印用の ::after をそのまま残せるのと、
  border-radius でそのままクリップされるのが利点。
  ホバー指定を .is-hover-ready 配下に置く理由は script.js の initHoverReady を参照。
*/
/*
  矢印アイコンはマスク + currentColor で塗る。
  こうしておくと文字色のトランジションに矢印も一緒に乗る
  （background-image の差し替えだとパッと切り替わってしまう）。
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  /* ヘッダーが固定なので、アンカーで飛んだ先が隠れないように余白を取る */
  scroll-padding-top: 72px;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 0;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ホバー */
a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* 目には見せずスクリーンリーダーには読ませる */
.u-visually-hidden {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
  リビール（支給コードの .introduction__item-title の仕組みをそのまま持ってきている）
  色帯が左から入って要素を覆い、覆っている間に文字色を出し、そのまま右へ抜ける。
    0%       帯は左外（translateX(-101%)）
    40〜60%  帯が要素をぴったり覆う → この間に color を透明から本来の色へ（0s で切り替え）
    100%     帯は右外（translateX(101%)）
  帯の色は --wipe-color、出したい文字色は --wipe-text で渡す。
  .js-wipe の付与とリビールは script.js の initReveal が行う。
  → JS が動かない環境ではクラスが付かないので文字はそのまま見える。
*/
.js-wipe {
  color: transparent;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  transition: color 0s calc(1s * 0.5 + var(--wipe-delay, 0s));
  /* 帯を文字幅に合わせる。block のままなので縦並びは崩れない */
  width: -moz-fit-content;
  width: fit-content;
}
.js-wipe::before {
  background-color: var(--wipe-color, #000);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-101%);
}

.js-wipe.is-revealed {
  color: var(--wipe-text, #000);
}
.js-wipe.is-revealed::before {
  animation: wipe 1s cubic-bezier(0.8, 0, 0.17, 1) var(--wipe-delay, 0s);
}

/*
  背景色つきの帯（[data-wipe]）は、帯が通り過ぎるまで背景も隠しておき、文字と同時に出す。
  色は --wipe-color（帯）/ --wipe-text（文字）/ --wipe-bg（出したい背景色）で渡す。
*/
.js-wipe[data-wipe] {
  background-color: transparent;
  transition: color 0s calc(1s * 0.5 + var(--wipe-delay, 0s)), background-color 0s calc(1s * 0.5 + var(--wipe-delay, 0s));
}

.js-wipe.is-revealed[data-wipe] {
  background-color: var(--wipe-bg, transparent);
}

@keyframes wipe {
  0% {
    transform: translateX(-101%);
  }
  40%, 60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
/*
  スクロール出現（script.js の initScrollReveal が画面に入ったら .is-revealed を付ける）。
  初期状態は .is-js 配下にだけ書く（JS が動かない環境では最初から見えている）。

  [data-reveal="line"] … アシンメトリーに並ぶ写真（参考: marp-wm.com motion 5239）
    枠の縁を線がなぞる → 中の画像がフェードイン → 線は消える。
    線は枠の ::before（上下）/ ::after（左右）。枠を基準に描くので、
    枠はどの画面幅でも position を持たせておく（static にすると線が別の場所に出る）。
    線の色は --reveal-line（既定は黒。暗い背景のセクションで白に上書き）。
    同じ親の中の写真は --reveal-delay で順番にずらす（JS が付ける）。

  [data-reveal="diagonal"] … 画面幅いっぱいの写真（参考: marp-wm.com motion 5233）
    clip-path の三角形を左上の角から広げ、斜めの切り口が右下へ抜けるように現す。
*/
.is-js [data-reveal=line] > img {
  opacity: 0;
  transition: opacity 0.8s ease calc(var(--reveal-delay, 0s) + 0.9s);
}

.is-js [data-reveal=line].is-revealed > img {
  opacity: 1;
}

.is-js [data-reveal=line]::before,
.is-js [data-reveal=line]::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
  z-index: 2;
}

.is-js [data-reveal=line]::before {
  border-block: 0.0625rem solid var(--reveal-line, #000);
  transform: scaleX(0);
  transform-origin: left center;
  transition-delay: var(--reveal-delay, 0s), calc(var(--reveal-delay, 0s) + 1.7s);
}

.is-js [data-reveal=line]::after {
  border-inline: 0.0625rem solid var(--reveal-line, #000);
  transform: scaleY(0);
  transform-origin: center top;
  transition-delay: calc(var(--reveal-delay, 0s) + 0.3s), calc(var(--reveal-delay, 0s) + 1.7s);
}

.is-js [data-reveal=line].is-revealed::before,
.is-js [data-reveal=line].is-revealed::after {
  opacity: 0;
  transform: none;
}

.is-js [data-reveal=diagonal] {
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.18, 1) var(--reveal-delay, 0s);
}

.is-js [data-reveal=diagonal].is-revealed {
  clip-path: polygon(0 0, 200% 0, 0 200%);
}
/*
  見出しコピー（[data-copy]）の「じわっと滲み出る」出現。
  script.js の initCopyBleed が文字を1字ずつ .copy-char に分け、画面に入ったら .is-copy-in を付ける。
  ぼかしは filter ではなく text-shadow で作る（文字を inline のまま扱えるので、
  句読点が行頭に来ない日本語の改行ルールが崩れない）。
  文字色は透明 → 本来の色、影は大きくぼけた状態 → ぼけなし、へ動かす。
  色は JS が要素の文字色を --copy-color に入れる。
*/
.is-js [data-copy]:not(.is-copy-ready) {
  opacity: 0;
}

.is-js .copy-char {
  opacity: 0;
}

/*
  スマートフォンは1文字ずつではなく要素ごとに出す（JS が data-copy-whole を付ける）。
  recruit は 170 文字ぶんの個別アニメーションになり、実機で描画が追いつかないため。
*/
.is-js [data-copy-whole] {
  opacity: 0;
}

.is-js .is-copy-in[data-copy-whole] {
  animation: copy-bleed 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--copy-delay, 0s) both;
  will-change: opacity, filter;
}

.is-js .is-copy-done[data-copy-whole] {
  will-change: auto;
}

.is-js .is-copy-in .copy-char {
  animation: copy-bleed 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) calc(var(--copy-delay, 0s) + var(--copy-i, 0) * var(--copy-step, 0.07s)) both;
  will-change: opacity, filter;
}

/*
  演出が終わった文字は will-change を外す。
  付けっぱなしにするとレイヤーが残り続けてメモリを圧迫する（JS が is-copy-done を付ける）。
*/
.is-js .is-copy-done .copy-char {
  will-change: auto;
}

/*
  滲み出しは text-shadow のぼかし半径ではなく filter: blur で表現する。
  text-shadow のぼかしは GPU 合成できず毎フレーム文字を描き直すため、
  iPhone など負荷の高い環境でチラつきの原因になる。
*/
@keyframes copy-bleed {
  0% {
    filter: blur(0.32em);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
/*
  本文などのコンテンツ（.js-fade）の「下からふわっと」出現。
  対象は script.js の initFadeUp が自動で選んで付ける（除外ルールも script.js 側）。
  transform ではなく translate プロパティで動かすので、パララクスや横スクロールの transform と干渉しない。
*/
.is-js .js-fade {
  opacity: 0;
  transition: opacity 0.9s ease var(--fade-delay, 0s), translate 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--fade-delay, 0s);
  translate: 0 2rem;
}

.is-js .js-fade.is-fade-in {
  opacity: 1;
  translate: 0 0;
}
/* ========================================
  About MV
======================================== */
.about-mv {
  position: relative;
  z-index: 0;
}

.about-mv__image {
  aspect-ratio: 1680/640;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-mv__body {
  left: 0;
  padding-inline: 4rem;
  position: absolute;
  top: 8.75rem;
  width: 100%;
  z-index: 1;
}

.about-mv__title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
}

.about-mv__title-lg {
  font-size: 3.75rem;
}

.about-mv__title-xl {
  font-size: 4rem;
}

.about-mv__text {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.0625rem;
}

/* ========================================
  Pride
======================================== */
.pride {
  background-color: #fff;
  padding-block: 8.75rem 10rem;
}

.pride__inner {
  margin-left: auto;
  margin-right: 0;
  max-width: 90.9375rem;
  padding-left: 25px;
}

.pride__body {
  align-items: flex-start;
  display: flex;
  gap: min(8.875rem, 8%);
  justify-content: space-between;
  margin-top: 3rem;
}

.pride__content {
  flex: 0 1 36.5625rem;
  margin-top: 3.9375rem;
  min-width: 0;
}

.pride__lead {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.pride__texts {
  margin-top: 2.5rem;
}

.pride__text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}
.pride__text + .pride__text {
  margin-top: 2.5rem;
}

/*
  SP も PC と同じく写真を散らす。
  横幅が狭いぶん PC の座標では小さくなりすぎるので、
  枠を縦長（46:62）にしてから SP 用の配置を組み直している。
  重なりが出ないよう、隣り合う写真は x か y のどちらかを必ず離している。
*/
.pride__photos {
  aspect-ratio: 704/695;
  flex: 0 1 44rem;
  min-width: 0;
  position: relative;
  z-index: 0;
}

/* パララックスで動く画像を切り抜く枠。動かす画像は中の .pride__photo-image */
.pride__photo {
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.pride__photo-image {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pride__photo--01 {
  aspect-ratio: 1/1;
  left: 0;
  top: 0;
  width: 28.41%;
}

.pride__photo--02 {
  aspect-ratio: 293/235;
  left: 36.93%;
  top: 20.72%;
  width: 41.62%;
}

.pride__photo--03 {
  aspect-ratio: 272/200;
  left: 10.94%;
  top: 71.22%;
  width: 38.64%;
}

.pride__photo--04 {
  aspect-ratio: 1/1;
  left: 72.73%;
  top: 63.17%;
  width: 27.27%;
}

/* ========================================
  Strengs
======================================== */
.strengs {
  background-color: #0b0b0b;
  overflow-x: clip;
  padding-block: 11.25rem;
  position: relative;
  z-index: 0;
}

.strengs__bg {
  aspect-ratio: 1680/1111;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.strengs__bg::after {
  background-image: linear-gradient(180deg, rgba(11, 11, 11, 0) 55%, #0b0b0b 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.strengs__bg-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.strengs__inner {
  align-items: flex-start;
  display: flex;
  gap: 4.75rem;
  position: relative;
  z-index: 1;
}

.strengs__head {
  flex: 0 0 15.9375rem;
  position: sticky;
  /* 固定ヘッダー（縮んだ状態）のすぐ下で止める */
  top: calc(72px + 24px);
  z-index: 1;
}

.strengs__body {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 6.3125rem;
}

/*
  左の見出し（.strengs__head）だけ sticky で固定し、01〜04 は普通にスクロールさせる。
  以前は各項目も sticky で重ねていたが、02 は写真込みで画面より背が高く、
  ボタン（“叶える”たくみの塗装）が見える前に 03 が被さってしまうためやめた。
*/
.strengs__item + .strengs__item {
  margin-top: 8.75rem;
}

.strengs__label {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  min-height: 2.3125rem;
}

.strengs__label-text {
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.7;
}

.strengs__label-num {
  align-items: center;
  background-color: #fff;
  border-radius: 1.875rem;
  color: #000;
  display: flex;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  min-height: 1.5rem;
  min-width: 2.9375rem;
  padding-inline: 0.75rem;
}

.strengs__title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.strengs__text {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.25rem;
}

.strengs__steps {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 3.6875rem;
}

.strengs__step {
  background-color: #000;
  border: 0.0625rem solid #fff;
  min-height: 13.125rem;
  padding: 1.9375rem 0 1.25rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
.strengs__step + .strengs__step::before {
  background: url("/assets/images/common/triangle_white.svg") no-repeat center center/contain;
  content: "";
  height: 1rem;
  left: -0.875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
  z-index: 2;
}

.strengs__step-num {
  color: #fff;
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.strengs__step-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 0.5625rem;
}

.strengs__step-text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}

.strengs__note {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 2.75rem;
}

.strengs__image {
  aspect-ratio: 850/445;
  display: block;
  height: auto;
  margin-top: 1.25rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.strengs__button {
  margin-top: 3.6875rem;
}

.strengs .button.strengs__button-link {
  min-height: 3.9375rem;
  padding-right: 1.25rem;
  width: 25.125rem;
}

/* ========================================
  Factory Photo
======================================== */
.about-factory {
  overflow: hidden;
}

.about-factory__image {
  aspect-ratio: 1681/640;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
  Future
======================================== */
.future {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
  overflow-x: clip;
  padding-block: 8.75rem 10rem;
  position: relative;
  z-index: 0;
}

.future__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.future__title {
  display: inline-block;
}

.future__lead {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 3rem;
}

.future__texts {
  margin-top: 1.25rem;
}

.future__text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}
.future__text + .future__text {
  margin-top: 2.5rem;
}

.future__photos {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.future__photos {
  /*
    SP は PC のように本文の左右へ回り込ませる幅がないので、
    本文の下に「散らした一枚の絵」として置き直す。
    枠の縦横比を決めてから、中の写真を % で配置している。
  */
}

/* pride と同じく、枠で切り抜いて中の画像だけを動かす */
.future__photo {
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.future__photo-image {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.future__photo--01 {
  aspect-ratio: 185/200;
  left: calc(50% + 36.8125rem);
  top: 4.125rem;
  width: 11.5625rem;
}

.future__photo--02 {
  aspect-ratio: 316/211;
  left: calc(50% + 32.75rem);
  top: 28.9375rem;
  width: 19.75rem;
}

.future__photo--03 {
  aspect-ratio: 295/197;
  left: calc(50% - 55.375rem);
  top: 15.375rem;
  width: 18.4375rem;
}

.future__photo--04 {
  aspect-ratio: 316/211;
  left: calc(50% - 46.8125rem);
  top: 41.125rem;
  width: 19.75rem;
}

/* ========================================
  Coating Detail - Hero
======================================== */
.coating-detail {
  background-color: #fff;
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
}

.coating-detail__head {
  margin-bottom: 3.75rem;
}

.coating-detail__name {
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.coating-detail__note {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 1rem;
}

.coating-detail__main {
  align-items: flex-start;
  display: flex;
  gap: 3rem;
}

.coating-detail__swatch {
  aspect-ratio: 566/422;
  background-color: #d9d9d9;
  flex: 1 1 0;
  width: 100%;
}

.coating-detail__info {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 0;
}

.coating-detail__desc {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}
.coating-detail__desc::before {
  background: linear-gradient(to bottom, #0d1263, #0d4794);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0.3125rem;
}

.coating-detail__specs {
  border: 0.0625rem solid #000;
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  row-gap: 1rem;
}

.coating-detail__specs-row {
  align-items: center;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin: 0;
}

.coating-detail__specs-label {
  align-items: center;
  background-color: #b3b5b7;
  border-radius: 1.375rem;
  color: #fff;
  display: flex;
  flex: none;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2rem;
  justify-content: center;
  letter-spacing: 0.2em;
  line-height: 2;
  margin: 0;
  width: 6rem;
}

.coating-detail__specs-value {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  margin: 0;
}

.coating-detail .button.coating-detail__contact-btn {
  margin-top: 2.5rem;
  min-height: 3.9375rem;
  padding-right: 1.25rem;
  width: 25.125rem;
}

/* ========================================
  Coating Detail - Works（色Aを使った制作事例）
======================================== */
.coating-detail-works {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
  padding-bottom: 8.125rem;
  padding-top: 8.125rem;
}

.coating-detail-works__list {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.coating-detail-works__item {
  min-width: 0;
}

.coating-detail-works__link {
  display: block;
  transition: opacity 0.3s;
}
.coating-detail-works__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.coating-detail-works__image {
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  display: block;
  width: 100%;
}
/* ========================================
  Coating Detail - Other Colors（他のカラーサンプルを見る）
======================================== */
.coating-detail-others {
  background-color: #fff;
  padding-bottom: 8.125rem;
  padding-top: 8.125rem;
  position: relative;
}

.coating-detail-others__slider {
  margin-top: 3.75rem;
  position: relative;
  z-index: 0;
}

.coating-detail-others__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.coating-detail-others__viewport::-webkit-scrollbar {
  display: none;
}

.coating-detail-others__list {
  display: flex;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  padding-left: 15.625rem;
  padding-right: 15.625rem;
}

.coating-detail-others__item {
  flex: none;
  width: 13.25rem;
}

.coating-detail-others__link {
  display: flex;
  flex-direction: column;
}
.coating-detail-others__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.coating-detail-others__thumb {
  aspect-ratio: 212/158;
  background-color: #d9d9d9;
  display: block;
  width: 100%;
}

.coating-detail-others__name {
  color: #000;
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 1.25rem;
}

.coating-detail-others__code {
  color: #000;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 0.25rem;
}
.coating-detail-others__arrow {
  align-items: center;
  background-color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  height: 2.6875rem;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s;
  width: 2.6875rem;
  z-index: 10;
}
.coating-detail-others__arrow:disabled {
  cursor: default;
  opacity: 0.3;
}
.coating-detail-others__arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}
.coating-detail-others__arrow img {
  flex: none;
  height: 1.375rem;
  width: 0.75rem;
}

.coating-detail-others__arrow--prev {
  left: 2.5rem;
}

.coating-detail-others__arrow--next {
  right: 2.5rem;
}
/* ========================================
  Coating Sample - Head (page-head + back link)
======================================== */
/* ========================================
  Coating Sample - List
======================================== */
.coating-sample {
  padding-bottom: 8.125rem;
  padding-top: 6.25rem;
}

.coating-sample__title {
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.coating-sample__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 1rem;
}

.coating-sample__list {
  display: grid;
  gap: 2.5rem 1.875rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.75rem;
}

.coating-sample__link {
  color: #000;
  display: block;
  transition: opacity 0.3s;
}
.coating-sample__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}
.coating-sample__swatch {
  aspect-ratio: 212/158;
  background-color: #d9d9d9;
  display: block;
  width: 100%;
}

.coating-sample__name {
  color: #000;
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 1.25rem;
}

.coating-sample__code {
  color: #000;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 0.25rem;
}

/* Pager
------------------------------ */
.coating-sample__pager {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3.75rem;
}

.coating-sample__pager-list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.coating-sample__pager-link {
  align-items: center;
  color: #b3b5b7;
  display: inline-flex;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.8;
  min-width: 1.25rem;
  transition: color 0.3s;
}
.coating-sample__pager-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.coating-sample__pager-link.is-current {
  color: #000;
  font-weight: 600;
}
.coating-sample__pager-arrow {
  align-items: center;
  display: inline-flex;
  height: 1.125rem;
  justify-content: center;
  transition: opacity 0.3s;
  width: 1.25rem;
}
.coating-sample__pager-arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
/* ========================================
  Coating List
======================================== */
.coating-list {
  background-color: #fff;
  padding-block: 6.25rem 8.125rem;
}

.coating-list__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 2;
}

.coating-list__title {
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 5rem;
}

.coating-list__note {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 1rem;
}

/* 色の見え方についての注釈。塗装ラインナップ一覧とカラーサンプル一覧で共用（.flow__note に合わせた文字組み） */
.coating-caution {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 0.75rem;
}

/* Cards
------------------------------ */
.coating-list__cards {
  display: grid;
  gap: 2.5rem 1.875rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3.75rem;
}

.coating-list__card {
  display: flex;
  flex-direction: column;
}

.coating-list__card-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  transition: opacity 0.3s;
}
.coating-list__card-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.coating-list__card-image {
  aspect-ratio: 272/158;
  background-color: #d9d9d9;
  display: block;
  width: 100%;
}

.coating-list__card-title {
  color: #1c1c1c;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-top: 1.25rem;
}

.coating-list__card-text {
  color: #1c1c1c;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 1.75rem;
  margin-top: 0.75rem;
}

.coating-list__card-more {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  margin-left: auto;
  margin-top: auto;
}

.coating-list__card-more-text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

/* 丸ピルは TOP の .more-link__icon と同じ挙動（仕組みは _mixin.scss のコメント参照） */
.coating-list__card-more-icon {
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #000;
  border-radius: 1.375rem;
  color: #fff;
  flex: none;
  height: 1.25rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 2.625rem;
  z-index: 1;
}
.coating-list__card-more-icon::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 0.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.6875rem;
  z-index: 1;
  -webkit-mask: url("/assets/images/common/arrow_white_sm.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white_sm.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
/* Pager
------------------------------ */
.coating-list__pager {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3.75rem;
}

.coating-list__pager-list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.coating-list__pager-link {
  align-items: center;
  color: #b3b5b7;
  display: inline-flex;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.8;
  min-width: 1.25rem;
  transition: color 0.3s;
}
.coating-list__pager-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.coating-list__pager-link.is-current {
  color: #000;
  font-weight: 600;
}
.coating-list__pager-arrow {
  align-items: center;
  display: inline-flex;
  height: 1.125rem;
  justify-content: center;
  transition: opacity 0.3s;
  width: 1.25rem;
}
.coating-list__pager-arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
body.is-scroll {
  overflow: hidden;
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ========================================
  Company MV
======================================== */
.company-mv {
  position: relative;
  z-index: 0;
}

.company-mv__image {
  aspect-ratio: 1680/640;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-mv__body {
  left: 0;
  padding-inline: 4rem;
  position: absolute;
  top: 8.75rem;
  width: 100%;
  z-index: 1;
}

.company-mv__title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

.company-mv__title-lg {
  font-size: 3.75rem;
}

.company-mv__text {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.0625rem;
}

/* ========================================
  Message
======================================== */
.message {
  background-color: #fff;
  padding-block: 8.75rem 10.625rem;
}

.message__body {
  align-items: flex-end;
  display: flex;
  gap: min(11.9375rem, 8vw);
  justify-content: space-between;
}

.message__content {
  flex: 0 1 37rem;
  min-width: 0;
}

.message__lead {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2;
  margin-top: 4rem;
}

.message__texts {
  margin-top: 2.5rem;
}

.message__text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}
.message__text + .message__text {
  margin-top: 2.5rem;
}

.message__sign {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 2.5rem;
}

.message__photo {
  flex: 0 0 25rem;
  min-width: 0;
}
.message__photo img {
  aspect-ratio: 400/544;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
  Create / People / Try One's Best! Band
======================================== */
.band {
  background-color: #fff;
  overflow: clip;
  width: 100%;
}

/*
  ループスクロール。
  script.js の initMarquees（setupMarquee）が .band__track を複製して、この .band__tracks で 2 本包む。
  2 本は同じ幅なので、全体を 50%（＝1本ぶん）左へ送った時点で
  最初とまったく同じ並びに戻る。そこで巻き戻せば途切れずに流れ続ける。
  1周の時間はトラックの実寸から JS が --band-duration に入れる（画面幅が変わっても速度は一定）。
*/
.band__tracks {
  animation: band-loop var(--band-duration, 30s) linear infinite;
  display: flex;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
}

@keyframes band-loop {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.band__track {
  align-items: center;
  display: flex;
  height: 100%;
  margin-left: -3.8125rem;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}

.band__text {
  color: #0b0b0b;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 8.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-top: -0.5rem;
}

.band__text:nth-of-type(1) {
  margin-right: 2.5625rem;
}

.band__text:nth-of-type(2) {
  margin-right: 4rem;
}

.band__text:nth-of-type(3) {
  margin-right: 1.125rem;
}

.band__photo {
  flex: none;
  height: 10rem;
  width: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.band__photo:nth-of-type(1) {
  margin-right: 3.1875rem;
}

.band__photo:nth-of-type(2) {
  margin-right: 3.625rem;
}

.band__photo:nth-of-type(3) {
  margin-right: 3.625rem;
}

/* ========================================
  Profile
======================================== */
/* 背景写真は ::before に移し、--parallax-y（JS が更新）で上下に動かす。TOP の .company と同じ作り */
.profile {
  background-color: #000;
  margin-top: 5.875rem;
  overflow: hidden;
  padding-block: 10rem;
  position: relative;
  z-index: 0;
}
.profile::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/images/company/profile_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}
.profile > .inner {
  position: relative;
  z-index: 1;
}

.profile__title {
  display: block;
  text-align: center;
}

.profile__table-wrap {
  margin-inline: auto;
  margin-top: 4.5rem;
  max-width: 67.5rem;
  overflow-x: auto;
}

.profile__table {
  border-collapse: collapse;
  width: 100%;
}

.profile__table th,
.profile__table td {
  border-bottom: 0.0625rem solid #fff;
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
}

.profile__table th {
  background-color: #0b0b0b;
  color: #ededed;
  font-weight: 500;
  padding-inline: 1.5rem;
  text-align: left;
  vertical-align: middle;
  width: 20.75rem;
}

.profile__table td {
  background-color: #ededed;
  padding: 2rem;
  text-align: left;
  vertical-align: top;
}

/* ========================================
  History
======================================== */
.history {
  background-color: #fff;
  padding-bottom: 10rem;
}

.history__inner {
  align-items: flex-start;
  display: flex;
  gap: 9rem;
}

.history__head {
  flex: 0 0 14.875rem;
  padding-top: 8.75rem;
  position: sticky;
  /* 固定ヘッダー（縮んだ状態）のすぐ下で止める */
  top: calc(72px + 24px);
  z-index: 1;
}

.history__list {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 15rem;
  position: relative;
  z-index: 0;
}
.history__list::before {
  background-color: #000;
  bottom: 0.9375rem;
  content: "";
  left: 3.4375rem;
  position: absolute;
  top: 16.125rem;
  /* --grow は script.js の initGrowLine が 0→1 で更新する。
     JS が動かない環境では既定値 1 なので最初から全長で出る */
  transform: scaleY(var(--grow, 1));
  transform-origin: top center;
  width: 0.0625rem;
  z-index: 0;
  /*
    SP は年バッジと本文が縦積みになり、線を通す「バッジの中心」の列がなくなる。
    そのまま出すと本文の真ん中を線が突き抜けるので出さない。
  */
}

.history__item {
  align-items: flex-start;
  display: flex;
  position: relative;
  z-index: 1;
}

.history__item + .history__item {
  margin-top: 2.5rem;
}

.history__year {
  align-items: center;
  align-self: flex-start;
  background-color: #000;
  border-radius: 1.875rem;
  color: #fff;
  display: flex;
  flex: none;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.5;
  margin-right: 2.75rem;
  min-height: 1.9375rem;
  padding-inline: 0.625rem;
  white-space: nowrap;
  width: 6.875rem;
}

.history__events {
  flex: 1 1 0;
  min-width: 0;
}

.history__event {
  align-items: baseline;
  display: flex;
}

.history__event + .history__event {
  margin-top: 2.5rem;
}

.history__month {
  color: #000;
  flex: 0 0 3rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  margin-right: 3.75rem;
  min-width: 0;
}

.history__text {
  color: #000;
  flex: 1 1 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  min-width: 0;
}

/* カンプでは年ごとの最後の行の下に区切り線が入る（テキスト列の幅） */
.history__event:last-child .history__text {
  border-bottom: 0.0625rem solid #d9d9d9;
  padding-bottom: 2.5rem;
}

/* ========================================
  Access
======================================== */
.access {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
  overflow-x: clip;
  padding-block: 8.75rem 11rem;
  position: relative;
  z-index: 0;
}

.access__head {
  max-width: 40rem;
}

.access__address {
  margin-top: 3rem;
}

.access__line {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}
.access__line + .access__line {
  margin-top: 1rem;
}

.access__map {
  aspect-ratio: 1180/600;
  margin-top: 2.5rem;
  width: 100%;
}

.access__map-frame {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

/* 2枚は共通ラッパーを介さず .access に直接配置（1枚ずつ独立して位置調整できる）。
   枠でパララックスのはみ出しを隠し、中の .access__photo-image だけを動かす */
.access__photo {
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.access__photo-image {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.access__photo--01 {
  aspect-ratio: 288/200;
  right: 26.5625rem;
  top: 10.5625rem;
  width: 18rem;
}

.access__photo--02 {
  aspect-ratio: 225/197;
  right: 11.25rem;
  top: -5.9375rem;
  width: 14.0625rem;
}

/* ========================================
  Contact Form
======================================== */
.contact-form {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
  position: relative;
  z-index: 0;
}

.contact-form__inner {
  padding-bottom: 12.5rem;
  padding-top: 8.125rem;
}

.contact-form__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.contact-form__form {
  margin-top: 3.75rem;
}

/* ---- Rows list ---- */
.contact-form__rows {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}

.contact-form__row {
  align-items: center;
  display: flex;
}

/* ラジオ・テキストエリアの行だけラベルを上端に合わせる */
.contact-form__row--top {
  align-items: flex-start;
}

.contact-form__row--privacy {
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  /* SP は「必須」バッジと同意文を横に並べる幅がないので縦積みにする */
}

/* ---- Label cell ---- */
.contact-form__label {
  align-items: center;
  display: flex;
  flex: 0 0 25.625rem;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  width: 25.625rem;
}

.contact-form__label--top {
  align-items: flex-start;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.contact-form__label-text {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.contact-form__badge {
  align-items: center;
  background-color: #000;
  border-radius: 2.5rem;
  color: #fff;
  display: inline-flex;
  flex: none;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 0.125rem 1rem;
  white-space: nowrap;
}

/* ---- Field cell ---- */
.contact-form__field {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  padding: 2rem 1.5rem;
}

.contact-form__field--zip {
  gap: 1rem;
}

.contact-form__field--textarea {
  align-items: stretch;
}

.contact-form__input {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 1rem;
  height: 3rem;
  padding-inline: 1rem;
  transition: border-color 0.3s;
  width: 100%;
}
.contact-form__input:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.contact-form__input--zip {
  flex: none;
  width: 8.5rem;
}

.contact-form__zip-search {
  background-color: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  flex: none;
  font-size: 1rem;
  font-weight: 500;
  height: 2.3125rem;
  line-height: 1.8;
  padding-inline: 1rem;
  transition: background-color 0.3s;
}
.contact-form__zip-search:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
.contact-form__textarea {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 1rem;
  height: 18rem;
  line-height: 1.6;
  padding: 1rem;
  resize: vertical;
  width: 100%;
}
.contact-form__textarea:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

/* ---- Radio group ---- */
.contact-form__radio-group {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
}

.contact-form__legend {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.contact-form__radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.625rem;
}

.contact-form__radio-input {
  accent-color: #000;
  flex: none;
  height: 1rem;
  margin: 0;
  width: 1rem;
}
.contact-form__radio-input:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.contact-form__radio-text {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ---- Privacy checkbox ---- */
.contact-form__privacy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  /* チェックボックスは1行目の高さに合わせ、文章は折り返させる */
}

.contact-form__checkbox {
  accent-color: #000;
  flex: none;
  height: 1.375rem;
  margin: 0;
  width: 1.375rem;
}
.contact-form__checkbox:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.contact-form__privacy-label {
  color: #000;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form__privacy-link {
  color: #000;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.contact-form__privacy-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
/* ---- Submit ---- */
/* Turnstileはフォーム先頭に自動挿入されるので、CF7側に [turnstile] を置いて
   送信ボタンの直前に出している（送信まわりでひとまとまりに見せる） */
.contact-form__turnstile {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.contact-form__submit-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 3.75rem;
}

.contact-form__turnstile + .contact-form__submit-wrap {
  margin-top: 2rem;
}

.contact-form__submit {
  align-items: center;
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #000;
  border-radius: 6.25rem;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.2em;
  line-height: 1;
  max-width: 100%;
  min-height: 3.9375rem;
  padding-inline: 1.5625rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 25rem;
  z-index: 1;
}
.contact-form__submit {
  /* カンプは「送信」がボタン中央、矢印は右端から 25px */
}
.contact-form__submit::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 0.875rem;
  position: absolute;
  right: 1.5625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.0625rem;
  -webkit-mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contact-form__submit:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

/* 必須項目が埋まるまで押せない（判定は assets/js の contact.js） */
.contact-form__submit:disabled {
  background-color: #d9d9d9;
  background-image: none;
  border-color: #d9d9d9;
  color: #323232;
  cursor: not-allowed;
}

.contact-form__error {
  color: #c1121f;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.5rem;
  width: 100%;
}

.contact-form__submit-note {
  color: #323232;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
}
/* ========================================
  Thanks
  ※ カンプなし。お問い合わせページ（.contact-form）と同じ地色・余白・本文の文字組みに揃えている
======================================== */
.thanks {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
}

.thanks__inner {
  max-width: 70.625rem;
  padding-bottom: 10rem;
  padding-top: 8.125rem;
}

.thanks__heading {
  background-color: #f5f5f5;
  border-left: 0.3125rem solid #0d1263;
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
}

.thanks__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 2.5rem;
}

.thanks__note {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 1.5rem;
}

.thanks__tel {
  color: #0d1263;
  font-weight: 700;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.thanks__action {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

/* ========================================
  Privacy Policy
  ※ カンプなし。お問い合わせページ（.contact-form）と同じ地色・余白・本文の文字組みに揃えている
======================================== */
.privacy {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
}

.privacy__inner {
  max-width: 70.625rem;
  padding-bottom: 10rem;
  padding-top: 8.125rem;
}

.privacy__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.privacy__body {
  margin-top: 4rem;
}

.privacy__section + .privacy__section {
  margin-top: 3.5rem;
}

.privacy__heading {
  background-color: #f5f5f5;
  border-left: 0.3125rem solid #0d1263;
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
}

.privacy__section p,
.privacy__section ul,
.privacy__contact {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 1.25rem;
}

.privacy__section ul {
  list-style: disc;
  padding-left: 1.5em;
}

.privacy__section li + li {
  margin-top: 0.25rem;
}

.privacy__contact {
  border-top: 0.0625rem solid #e0e0e0;
}

.privacy__contact-row {
  border-bottom: 0.0625rem solid #e0e0e0;
  display: flex;
  gap: 1.5rem;
  padding-block: 0.875rem;
}

.privacy__contact-row dt {
  flex: none;
  font-weight: 700;
  width: 10rem;
}

.privacy__contact-row a {
  color: #000;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.3s;
}
.privacy__date {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 4rem;
  text-align: right;
}

/* ========================================
  FV
======================================== */
/*
  高さは画面いっぱい（PC・タブレットは直下のページ内ナビの帯まで含めて画面に収める）。
  縦の余白はカンプ（PC 791 / SP 654）の値を fr の比率で持ち、画面の高さに合わせて伸び縮みさせる。
  下限（minmax の最小値）はヘッダーと重ならない・詰まりすぎない値。
*/
.recruit-fv {
  --recruit-fv-h: calc(100vh - 4.625rem);
  background-color: #000;
  background-image: url("/assets/images/recruit/fv_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-rows: minmax(7.5rem, 211fr) auto minmax(1rem, 22fr) auto minmax(1.5rem, 59fr) auto minmax(1rem, 33fr);
  height: max(100vh - 4.625rem, 32.5rem);
  height: max(100svh - 4.625rem, 32.5rem);
  overflow-x: clip;
  position: relative;
  z-index: 0;
}
@supports (height: 100svh) {
  .recruit-fv {
    --recruit-fv-h: calc(100svh - 4.625rem);
  }
}

/*
  FV の出方（読み込み時）: 暗転（::before の黒）がじわっと明けて写真が現れ、
  「RECRUIT / 採用情報」→ 線が伸びる → やってみよう → Try One's Best! → 技術を継ぎ… の順に滲み出る。
  文字の滲み出しは共通の [data-copy]（_base.scss）。ここでは各コピーの開始時間（--copy-delay）だけ決める。
*/
.is-js .recruit-fv::before {
  animation: recruit-fv-dawn 2s ease-out 0.1s both;
  background-color: #000;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

@keyframes recruit-fv-dawn {
  to {
    opacity: 0;
  }
}
.recruit-fv__title-en {
  --copy-delay: 0.4s;
}

.recruit-fv__title-ja {
  --copy-delay: 0.9s;
}

.recruit-fv__catch-sub-text {
  --copy-delay: 1.3s;
}

.recruit-fv__catch-main {
  --copy-delay: 1.8s;
}

.recruit-fv__catch-note {
  --copy-delay: 2.6s;
}

.is-js .recruit-fv__catch-line {
  animation: recruit-fv-line 1s cubic-bezier(0.65, 0, 0.35, 1) 1s both;
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes recruit-fv-line {
  to {
    transform: scaleX(1);
  }
}
.recruit-fv__title {
  grid-row: 2;
  justify-self: start;
  margin-left: max(25px, 50% - 49rem);
  position: relative;
  z-index: 1;
}

.recruit-fv__title-en {
  color: #fff;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: min(5rem, var(--recruit-fv-h) * 0.1011378003);
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.recruit-fv__title-ja {
  color: #fff;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 0.25rem;
  padding-inline: 0.1875rem;
}

.recruit-fv__catch {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  grid-row: 4;
  justify-self: end;
  margin-right: max(25px, 50% - 49.1875rem);
  max-width: calc(100% - 25px * 2);
  position: relative;
  width: 64rem;
  z-index: 1;
}

.recruit-fv__catch-sub {
  align-items: center;
  display: flex;
  gap: 1.75rem;
  margin-bottom: -0.0625rem;
}

.recruit-fv__catch-line {
  background-color: #fff;
  flex: none;
  height: 0.0625rem;
  width: min(11.25rem, var(--recruit-fv-h) * 0.2275600506);
}

.recruit-fv__catch-sub-text {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: min(4.25rem, var(--recruit-fv-h) * 0.0859671302);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  white-space: nowrap;
}

.recruit-fv__catch-main {
  color: #fff;
  font-family: "Permanent Marker", "Inter", cursive;
  font-size: min(8.75rem, var(--recruit-fv-h) * 0.1769911504);
  font-weight: 400;
  line-height: 1;
  padding-right: 0.8125rem;
  text-align: center;
  text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.11);
  white-space: nowrap;
  width: 100%;
}

.recruit-fv__catch-kern {
  letter-spacing: 0.19em;
}

.recruit-fv__catch-note {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: min(2.0625rem, var(--recruit-fv-h) * 0.0417193426);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 0.9375rem;
  white-space: nowrap;
}

.recruit-fv__breadcrumb {
  grid-row: 6;
  justify-self: end;
  margin-right: max(25px, 50% - 49.0625rem);
  position: relative;
  white-space: nowrap;
  z-index: 1;
}

.recruit-fv .breadcrumb__item,
.recruit-fv .breadcrumb__link {
  color: #fff;
}

.recruit-fv .breadcrumb__item + .breadcrumb__item::before {
  background-image: url("/assets/images/recruit/arrow_breadcrumb_white.svg");
}

/* ========================================
  Page Navigation
======================================== */
.recruit-nav {
  background-color: #000;
}

.recruit-nav__list {
  align-items: stretch;
  display: flex;
  justify-content: center;
}

.recruit-nav__item {
  display: flex;
}

.recruit-nav__divider {
  align-self: center;
  background-color: #fff;
  flex: none;
  height: 1.1875rem;
  width: 0.0625rem;
}

.recruit-nav__link {
  align-items: center;
  display: flex;
  gap: 1.1875rem;
  padding: 1.5625rem 3.125rem;
}
.recruit-nav__link {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.recruit-nav__link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: -0.25rem;
}

.recruit-nav__icon {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.8);
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.8);
  flex: none;
  height: 0.4375rem;
  transform: translateY(-0.1875rem) rotate(45deg);
  width: 0.4375rem;
}

/* ========================================
  MESSAGE
======================================== */
.recruit-message {
  background-color: #0d1263;
  background-image: url("/assets/images/recruit/message_bg.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}

.recruit-message__inner {
  min-height: 70.4375rem;
  padding-top: 8.125rem;
  position: relative;
  z-index: 2;
}

.recruit-message__photos {
  height: 52.1875rem;
  left: calc(50% + 5.5625rem);
  pointer-events: none;
  position: absolute;
  top: 8.75rem;
  width: 36.75rem;
  z-index: 1;
}

.recruit-message__photo {
  --reveal-line: #fff;
  max-width: none;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

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

.recruit-message__photo--01 {
  aspect-ratio: 465/310;
  left: 0rem;
  top: 32.8125rem;
  width: 29.0625rem;
}

.recruit-message__photo--02 {
  aspect-ratio: 276/184;
  left: 3rem;
  top: 0rem;
  width: 17.25rem;
}

.recruit-message__photo--03 {
  aspect-ratio: 370/247;
  left: 13.625rem;
  top: 14.5625rem;
  width: 23.125rem;
}

.recruit-message__title {
  position: relative;
  z-index: 2;
}

.recruit-message__body {
  margin-left: -1.625rem;
  margin-top: 3.8125rem;
  position: relative;
  z-index: 2;
}

.recruit-message__quote {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.recruit-message__quote-line {
  --wipe-color: #0e0e0e;
  --wipe-text: #fff;
  --wipe-bg: #0e0e0e;
  background-color: #0e0e0e;
  color: #fff;
  display: inline-block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3.4375rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.125rem 0.1875rem 0.5rem 0;
  white-space: nowrap;
}

.recruit-message__quote-line--01 {
  width: 34.625rem;
}

.recruit-message__quote-line--02 {
  margin-top: 0.5rem;
  padding-left: 1.625rem;
}

.recruit-message__text {
  margin-top: 2.25rem;
  padding-left: 1.75rem;
  white-space: nowrap;
}

.recruit-message__paragraph {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.25rem;
}
.recruit-message__paragraph:first-child {
  margin-top: 0;
}

.recruit-message__mark {
  background-color: rgba(255, 255, 255, 0.95);
  box-decoration-break: clone;
  color: #0d1263;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
}

.recruit-message__slider {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.loop-tracks {
  animation: loop-track var(--loop-duration, 60s) linear infinite;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

@keyframes loop-track {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.recruit-message__track {
  display: flex;
  flex: none;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

.recruit-message__slide {
  flex: none;
  width: 28.35rem;
}

.recruit-message__slide img {
  aspect-ratio: 454/303;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
  WORK（たくみ工芸の仕事）
======================================== */
.recruit-work {
  background-color: #f5f5f5;
  padding-top: 8.125rem;
}

.recruit-work__inner {
  margin-inline: auto;
  max-width: 105rem;
  padding-inline: 5rem;
}

.recruit-work__head {
  margin-inline: auto;
  max-width: 73.75rem;
  min-height: 18.9375rem;
}

.recruit-work__head-body {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 2.1875rem;
}

.recruit-work__quote {
  flex: none;
  padding-top: 0.5625rem;
}

.recruit-work__quote-line {
  --wipe-color: #0e0e0e;
  --wipe-text: #fff;
  --wipe-bg: #0e0e0e;
  background-color: #0e0e0e;
  color: #fff;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.5625rem;
  padding: 0.125rem 0 0.5rem 1.625rem;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.recruit-work__quote-line:first-child {
  margin-top: 0;
}

.recruit-work__lead {
  color: #000;
  flex: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  white-space: nowrap;
  width: 36.25rem;
}

.recruit-work__body {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-inline: auto;
  margin-top: 3.4375rem;
  max-width: 95rem;
  padding: 5rem 10.625rem 6.25rem;
}

.recruit-work__intro {
  margin-inline: auto;
  max-width: 62.5rem;
}

.recruit-work__intro-q {
  --wipe-color: #f4cb4e;
  --wipe-text: #000;
  --wipe-bg: #f4cb4e;
  background-color: #f4cb4e;
  color: #000;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-inline: auto;
  padding: 0 1.25rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.recruit-work__intro-a {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.4375rem;
  text-align: center;
}

.recruit-work__block {
  margin-inline: auto;
  margin-top: 4.75rem;
  max-width: 73.75rem;
}

.recruit-work__intro + .recruit-work__block {
  margin-top: 3.75rem;
}

.recruit-work__block-row {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.recruit-work__block-text {
  flex: 0 1 37.375rem;
  min-width: 0;
}

.recruit-work__block-text--wide {
  flex: none;
  width: 100%;
}

.recruit-work__block-title {
  border-left: 0.25rem solid #000;
  color: #000;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  max-width: 37.375rem;
  padding-left: 1.25rem;
}

.recruit-work__block-desc {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.125rem;
}

.recruit-work__block-photo {
  flex: 0 1 33.8125rem;
  min-width: 0;
}

.recruit-work__block-photo img {
  aspect-ratio: 541/350;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-work__product-list {
  display: grid;
  gap: 0.324375rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.25rem;
}

.recruit-work__product-item {
  position: relative;
  z-index: 0;
}

.recruit-work__product-item img {
  aspect-ratio: 291/194;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-work__product-tag {
  background-color: #000;
  bottom: 0.4375rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  left: 0.5rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding-inline: 0.5rem;
  position: absolute;
  z-index: 1;
}

.recruit-work__material-list {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.recruit-work__material-item {
  flex: 0 1 23.75rem;
  min-width: 0;
}

.recruit-work__material-photo {
  position: relative;
  z-index: 0;
}

.recruit-work__material-photo::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.recruit-work__material-item:nth-child(2) .recruit-work__material-photo::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.recruit-work__material-item:nth-child(3) .recruit-work__material-photo::before {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0));
}

.recruit-work__material-photo img {
  aspect-ratio: 380/150;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-work__material-num {
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  left: 0.75rem;
  line-height: 1;
  position: absolute;
  top: 0.4375rem;
  z-index: 2;
}

.recruit-work__material-body {
  background-color: #f5f5f5;
  padding: 1rem 1.5625rem 1.6875rem;
}

.recruit-work__material-title {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 2;
}

.recruit-work__material-desc {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 0.1875rem;
}

.recruit-work__place-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.71875rem;
  justify-content: center;
  margin-top: 2rem;
}

.recruit-work__place-item {
  display: flex;
  flex: 1 0 17.5rem;
  flex-direction: column;
  gap: 1.0625rem;
  max-width: 23.4375rem;
}

.recruit-work__place-photo img {
  aspect-ratio: 375/200;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-work__place-body {
  border-left: 0.0625rem solid #000;
  padding: 0 0 0.5625rem 1.3125rem;
}

.recruit-work__place-title {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  white-space: nowrap;
}

.recruit-work__place-tags {
  align-items: flex-end;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  font-weight: 500;
  gap: 0.1875rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.recruit-work__place-tag {
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.7;
  padding-inline: 0.4375rem;
}

.recruit-work__place-tag:last-of-type {
  margin-right: 0.125rem;
}

/* ========================================
  製品ができるまで
======================================== */
.recruit-process {
  background-color: #f5f5f5;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}

.recruit-process__pin {
  padding-block: 5.625rem 8.125rem;
  position: relative;
  z-index: 0;
}

.recruit-process.is-h-scroll .recruit-process__pin {
  position: sticky;
  top: var(--pin-top, 0px);
}

.recruit-process.is-h-scroll .recruit-process__list {
  overflow: visible;
  scroll-snap-type: none;
  transform: translate3d(calc(var(--h-scroll-x, 0px) * -1), 0, 0);
  will-change: transform;
}

.recruit-process__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
  margin-inline: auto;
  max-width: 73.75rem;
  text-align: center;
}

.recruit-process__title {
  background-color: #0d1263;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding-inline: 1.25rem;
}

.recruit-process__lead {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}

.recruit-process__bg {
  bottom: 0;
  height: 34.875rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.recruit-process__bg img {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.recruit-process > .inner {
  position: relative;
  z-index: 1;
}

.recruit-process__list {
  align-items: stretch;
  display: flex;
  gap: 0.8125rem;
  margin-right: calc(50% - 50vw);
  margin-top: 2.6875rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.recruit-process__list::-webkit-scrollbar {
  display: none;
}

.recruit-process__item {
  flex: none;
  scroll-snap-align: start;
  width: 26.25rem;
}

.recruit-process__arrow {
  align-items: center;
  display: flex;
  flex: none;
  padding-left: 0.1875rem;
  width: 2.3125rem;
}

.recruit-process__arrow img {
  height: 3rem;
  width: 2.125rem;
}

.recruit-process__card {
  background-color: #000;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.3125rem 1.3125rem 1.8125rem;
}

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

.recruit-process__step {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: -0.125rem;
}

.recruit-process__card-title {
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
}

.recruit-process__card-photo {
  margin-top: 0.875rem;
}

.recruit-process__card-photo img {
  aspect-ratio: 380/230;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-process__card-desc {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1.0625rem;
  min-height: 6em;
}

.recruit-process__closing {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 3.1875rem;
  text-align: center;
}

/* ========================================
  匠への道
======================================== */
.recruit-career {
  background-color: #000;
  overflow-x: clip;
  padding-block: 9.6875rem 16.25rem;
  position: relative;
  z-index: 0;
}

.recruit-career__bg {
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: max(100%, 105rem);
  z-index: -1;
}

.recruit-career__bg--01 {
  top: 0;
}

.recruit-career__bg--02 {
  bottom: 0;
}

.recruit-career__bg img {
  aspect-ratio: 1680/1041;
  display: block;
  height: auto;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-career__line {
  height: 9.875rem;
  max-width: none;
  pointer-events: none;
  position: absolute;
  width: 13rem;
  z-index: 0;
}

.recruit-career__line--01 {
  left: calc(50% + -19.875rem);
  top: 51rem;
}

.recruit-career__line--02 {
  left: calc(50% + -19rem);
  top: 86.875rem;
}

.recruit-career__inner {
  position: relative;
  z-index: 1;
}

.recruit-career__head {
  margin-inline: auto;
  max-width: 73.75rem;
}

.recruit-career__title {
  background-color: #fff;
  color: #000;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding-inline: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.recruit-career__head-body {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 2.4375rem;
}

.recruit-career__catch {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  gap: 0.375rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  white-space: nowrap;
}

.recruit-career__catch-em {
  font-size: 6.6875rem;
}

.recruit-career__lead {
  color: #fff;
  flex: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  width: 33rem;
}

.recruit-career__list {
  display: flex;
  flex-direction: column;
  gap: 11rem;
  margin-top: 6.25rem;
  position: relative;
  z-index: 1;
}

.recruit-career__item {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  padding-left: calc(50% - 36.875rem);
  position: relative;
  z-index: 0;
}

.recruit-career__item--02 {
  gap: 5.6875rem;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: calc(50% - 36.875rem);
}

.recruit-career__item--03 {
  margin-top: -0.0625rem;
}

.recruit-career__text {
  flex: none;
  width: 38.5rem;
}

.recruit-career__item--03 .recruit-career__text {
  width: 33.75rem;
}

.recruit-career__step {
  background-color: #0d1263;
  color: #fff;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-inline: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
}

.recruit-career__step-title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 1.25rem;
  white-space: nowrap;
}

.recruit-career__step-desc {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.5rem;
}

.recruit-career__step-desc + .recruit-career__step-desc {
  margin-top: 0.8125rem;
}

.recruit-career__photo {
  --reveal-line: #fff;
  flex: 0 1 48.125rem;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.recruit-career__item--02 .recruit-career__photo {
  flex-basis: 43.4375rem;
}

.recruit-career__item--03 .recruit-career__photo {
  flex-basis: 51.5625rem;
}

.recruit-career__photo img {
  aspect-ratio: 770/314;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-career__item--02 .recruit-career__photo img {
  aspect-ratio: 695/315;
}

.recruit-career__item--03 .recruit-career__photo img {
  aspect-ratio: 825/355;
}

.recruit-career__accent {
  --reveal-line: #fff;
  aspect-ratio: 304/186;
  max-width: none;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 19rem;
  z-index: 1;
}

.recruit-career__accent img {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-career__item--01 .recruit-career__accent {
  left: calc(50% + -3rem);
  top: 12.5625rem;
}

.recruit-career__item--02 .recruit-career__accent {
  aspect-ratio: 313/212;
  left: calc(50% + 31.4375rem);
  top: 9.75rem;
  width: 19.5625rem;
}

/* ========================================
  CULTURE
======================================== */
.recruit-culture {
  background-color: #0d1263;
  background-image: url("/assets/images/recruit/culture_bg.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  padding-bottom: 9.375rem;
  position: relative;
  z-index: 0;
}

.recruit-culture__inner {
  padding-top: 7.625rem;
  position: relative;
}

.recruit-culture__head {
  position: relative;
}

.recruit-culture__watermark {
  --copy-delay: 0.4s;
  color: rgba(255, 255, 255, 0.37);
  font-family: "Permanent Marker", "Inter", cursive;
  font-size: 15.1875rem;
  font-weight: 400;
  left: -19.1875rem;
  line-height: 1;
  margin: 0;
  max-width: none;
  mix-blend-mode: overlay;
  opacity: 0.89;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0.1875rem 1.4375rem rgba(0, 0, 0, 0.11);
  top: 0.375rem;
  white-space: nowrap;
  word-spacing: -0.15em;
  z-index: 0;
}

.recruit-culture__title {
  position: relative;
  z-index: 1;
}

.recruit-culture__head-row {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 2.1875rem;
  padding-top: 0.5625rem;
  position: relative;
  z-index: 1;
}

.recruit-culture__quote {
  --wipe-color: #0e0e0e;
  --wipe-text: #fff;
  --wipe-bg: #0e0e0e;
  background-color: #0e0e0e;
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.125rem 0 0.5rem 1.625rem;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}

.recruit-culture__note {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.625rem;
  font-weight: 500;
  gap: 1.75rem;
  letter-spacing: 0.2em;
  line-height: 2;
  white-space: nowrap;
}

.recruit-culture__note-line {
  background-color: #fff;
  flex: none;
  height: 0.0625rem;
  width: 5.25rem;
}

.recruit-culture__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  justify-content: space-between;
  margin-top: 5.5625rem;
}

.recruit-culture__item {
  background-color: #fff;
  padding: 0.625rem 1rem 1.25rem;
  position: relative;
  width: 23.4375rem;
  z-index: 0;
}

.recruit-culture__item:nth-child(n+4) {
  padding-block: 1.625rem;
  width: 23.625rem;
}

.recruit-culture__num {
  -webkit-text-stroke: 0.0625rem #fff;
  background-color: #050a44;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  color: transparent;
  font-family: "Anton", "Inter", sans-serif;
  font-size: 2.8125rem;
  font-weight: 400;
  height: 7.625rem;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 0.75rem 0 0 3.1875rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 7.625rem;
  z-index: 1;
}

.recruit-culture__item-title {
  color: #0d1263;
  display: flex;
  flex-direction: column;
  font-size: 1.5625rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  min-height: 7.125rem;
  padding-left: 0.4375rem;
}

.recruit-culture__item-photo {
  margin-top: 1.25rem;
}

.recruit-culture__item-photo img {
  aspect-ratio: 343/186;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-culture__item-desc {
  color: #050a44;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.875rem;
  min-height: 6em;
  padding-inline: 0.625rem;
}

/* ========================================
  ONE TEAM（スタッフ紹介）
======================================== */
.recruit-staff {
  background-color: #dcdee7;
  background-image: url("/assets/images/recruit/staff_bg.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 72.875rem;
  overflow-x: clip;
  padding-block: 6.75rem 7.5rem;
  position: relative;
  z-index: 0;
}

.recruit-staff__title .sec-title__en {
  --wipe-color: #0d1263;
  --wipe-text: #0d1263;
  color: #0d1263;
}

.recruit-staff__head-row {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 2.6875rem;
}

.recruit-staff__lead {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}

.recruit-staff__lead-line {
  --wipe-color: #0e0e0e;
  --wipe-text: #fff;
  --wipe-bg: #0e0e0e;
  background-color: #0e0e0e;
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.125rem 1rem 0.5rem;
  white-space: nowrap;
}

.recruit-staff__nav {
  display: flex;
  flex: none;
  gap: 1.625rem;
}

.recruit-staff__arrow {
  background-color: transparent;
  border: 0.0625rem solid #000;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  height: 6.25rem;
  padding: 0;
  place-items: center;
  transition: background-color 0.3s;
  width: 6.25rem;
}
.recruit-staff__arrow::before {
  background: url("/assets/images/recruit/icon_staff_arrow.svg") no-repeat center/contain;
  content: "";
  height: 1.3125rem;
  width: 1.625rem;
}
.recruit-staff__arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.recruit-staff__arrow--next::before {
  transform: scaleX(-1);
}
.recruit-staff__slider {
  margin-top: 4.25rem;
  overflow: visible;
}

.recruit-staff__slide {
  aspect-ratio: 946/567;
  container-type: inline-size;
  overflow: hidden;
  position: relative;
  width: 59.125rem;
  z-index: 0;
}

.recruit-staff__slide-bg {
  height: 100%;
  inset: 0;
  max-width: none;
  position: absolute;
  width: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-staff__slide-en {
  -webkit-text-stroke: 0.0625rem #fff;
  color: transparent;
  display: flex;
  flex-direction: column;
  font-family: "Anton", "Inter", sans-serif;
  font-size: 10.7822410148cqw;
  left: 3.8054968288cqw;
  letter-spacing: 0.09em;
  line-height: 1;
  opacity: 0.9;
  position: absolute;
  text-transform: uppercase;
  top: 4.8625792812cqw;
  white-space: nowrap;
  z-index: 1;
}

.recruit-staff__slide-num {
  -webkit-text-stroke: 0;
  color: #fff;
  font-size: 0.515em;
  margin-left: 0.15em;
}

.recruit-staff__person {
  height: auto;
  left: calc(var(--x) / 946 * 100cqw);
  max-width: none;
  pointer-events: none;
  position: absolute;
  top: calc(var(--y) / 946 * 100cqw);
  width: calc(var(--w) / 946 * 100cqw);
  z-index: 2;
}

.recruit-staff__slide--name-front .recruit-staff__slide-en {
  z-index: 3;
}

.recruit-staff__card {
  background-color: #0e0e0e;
  left: 0;
  padding: 1.625rem 1.5rem 1.625rem 2.1875rem;
  position: absolute;
  top: 29.1754756871cqw;
  width: 44.8202959831cqw;
  z-index: 3;
}

.recruit-staff__dept {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.recruit-staff__meta {
  align-items: flex-end;
  display: flex;
  gap: 1.125rem;
  line-height: 1.6;
  margin-top: 0.5625rem;
  padding-top: 0.1875rem;
  white-space: nowrap;
}

.recruit-staff__meta-date {
  color: #cdcdcd;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.recruit-staff__meta-name {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.recruit-staff__meta-team {
  color: #cdcdcd;
  font-size: 0.875rem;
  font-weight: 500;
}

.recruit-staff__desc {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 0.875rem;
}

.recruit-staff__quotes {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  left: 84.5665961945cqw;
  position: absolute;
  top: 3.1712473573cqw;
  z-index: 3;
}

.recruit-staff__quotes--3 {
  gap: 0.5rem;
  left: 79.0697674419cqw;
}

.recruit-staff__quote {
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3.1712473573cqw;
  font-weight: 500;
  line-height: 1;
  padding: 0.8125rem 0.625rem 0.375rem;
  writing-mode: vertical-rl;
}

.recruit-staff__quote--flat {
  /* writing-mode: vertical-rl では padding-block が左右に効くため、上下は物理プロパティで詰める */
  padding-bottom: 0;
  padding-top: 0;
}

.recruit-staff__quote--top0 {
  padding-top: 0;
}

.recruit-staff__quote--bottom18 {
  padding-bottom: 1.125rem;
}

.recruit-staff__more {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 1.875rem;
  left: calc(var(--x, 656) / 946 * 100cqw);
  position: absolute;
  top: 48.0972515856cqw;
  z-index: 3;
}

.recruit-staff__open {
  background: transparent;
  border: 0;
  cursor: pointer;
  inset: 0;
  padding: 0;
  position: absolute;
  z-index: 4;
}
.recruit-staff__open:focus-visible {
  outline: 0.1875rem solid #fff;
  outline-offset: -0.375rem;
}

.recruit-staff__desc--spacer {
  padding-bottom: 2em;
}

.recruit-staff__more-text {
  font-family: "Anton", "Inter", sans-serif;
  font-size: 1.8125rem;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.recruit-staff__more-icon {
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  display: grid;
  flex: none;
  height: 5.125rem;
  place-items: center;
  transition: background-color 0.3s;
  width: 5.125rem;
}
.recruit-staff__more-icon::before {
  background: url("/assets/images/recruit/icon_staff_more.svg") no-repeat center/contain;
  content: "";
  height: 1rem;
  transition: transform 0.4s;
  width: 1.25rem;
}
.recruit-staff__open:focus-visible ~ .recruit-staff__more .recruit-staff__more-icon::before {
  transform: translateX(0.625rem);
}

.recruit-staff__pagination {
  display: flex;
  gap: 0.4375rem;
  margin: 1.75rem auto 0;
  max-width: calc(100% - 2.5rem);
  width: 59.125rem;
}

.recruit-staff__pagination-bar {
  background-color: #fff;
  flex: 0 1 5rem;
  height: 0.125rem;
  transition: background-color 0.3s;
}
.recruit-staff__pagination-bar.is-active {
  background-color: #000;
}

/* ========================================
  スタッフ インタビュー（モーダル）
======================================== */
.recruit-modal {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  width: 100%;
}
.recruit-modal::backdrop {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.8);
}

.recruit-modal[open] {
  animation: modal-fade 0.3s ease-out;
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
}
.recruit-modal__inner {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 2.1875rem;
  margin: 8.125rem auto;
  max-width: calc(100% - 50px);
  width: 73.75rem;
}

.recruit-modal__close {
  background-color: transparent;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  flex: none;
  height: 5rem;
  padding: 0;
  place-items: center;
  transition: background-color 0.3s;
  width: 5rem;
}
.recruit-modal__close::before {
  background: url("/assets/images/recruit/icon_modal_close.svg") no-repeat center/contain;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
}
.recruit-modal__close:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}
.recruit-modal__body {
  background-color: #fff;
  padding: 7.5rem 7.8125rem;
  width: 100%;
}

.recruit-modal__head {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.recruit-modal__quote {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
}

.recruit-modal__quote-line {
  background-color: #0e0e0e;
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.125rem 0.5rem 0.5rem 0.5rem;
}

.recruit-modal__quote-line + .recruit-modal__quote-line {
  padding-left: 0.5625rem;
}

.recruit-modal__profile {
  align-items: flex-end;
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 0.25rem;
}

.recruit-modal__dept {
  background-color: #f5f5f5;
  border: 0.0625rem solid #0d1263;
  color: #0d1263;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  padding: 0 1.1875rem 0.0625rem;
}

.recruit-modal__meta {
  align-items: flex-end;
  display: flex;
  gap: 1.75rem;
  line-height: 1.6;
  padding-top: 0.1875rem;
  white-space: nowrap;
}

.recruit-modal__date {
  color: #545454;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-bottom: 0.1875rem;
}

.recruit-modal__name {
  color: #000;
  font-size: 1.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.recruit-modal__photo {
  aspect-ratio: 930/385;
  display: block;
  height: auto;
  margin-top: 2.3125rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-modal__sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.125rem;
}

.recruit-modal__heading {
  background-color: #f5f5f5;
  border-left: 0.3125rem solid #0d1263;
  color: #000;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding: 0.3125rem 0 0.3125rem 1.5625rem;
}

.recruit-modal__text {
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.3125rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 0.8125rem;
}

/* ========================================
  RECRUITMENT（募集要項）
======================================== */
.recruit-recruitment {
  background-color: #fff;
  padding-block: 8.125rem;
  position: relative;
  z-index: 0;
}

.recruit-recruitment__title {
  text-align: center;
}

.recruit-recruitment__title .sec-title__en,
.recruit-recruitment__title .sec-title__ja {
  margin-inline: auto;
}

.recruit-recruitment__title .sec-title__en {
  --wipe-color: #0d1263;
  --wipe-text: #0d1263;
  color: #0d1263;
}

.recruit-recruitment__body {
  margin-inline: auto;
  margin-top: 3.4375rem;
  max-width: 67.5rem;
}

.recruit-recruitment__tabs {
  display: flex;
}

.recruit-recruitment__tab {
  align-items: center;
  background-color: #fff;
  border: 0;
  border-bottom: 0.25rem solid #0d1263;
  color: #7a7da8;
  cursor: pointer;
  display: flex;
  flex: 1 1 50%;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.7;
  min-height: 4.875rem;
  min-width: 0;
  padding: 0.75rem 1.25rem;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.recruit-recruitment__tab:focus-visible {
  outline: 0.125rem solid #0d1263;
  outline-offset: -0.125rem;
}

.recruit-recruitment__tab.is-current {
  background-color: #0d1263;
  color: #fff;
}

.recruit-recruitment__tab[aria-disabled=true] {
  cursor: default;
}

.recruit-recruitment__table {
  border-collapse: collapse;
  margin-top: 3.75rem;
  opacity: 0.92;
  width: 100%;
}

.recruit-recruitment__table tr + tr {
  border-top: 0.0625rem solid #838383;
}

.recruit-recruitment__table th,
.recruit-recruitment__table td {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

.recruit-recruitment__table th {
  background-color: #f6f6f6;
  line-height: 1.8;
  padding: 1.25rem 1.5rem;
  width: 20.75rem;
}

.recruit-recruitment__table td {
  background-color: #fff;
  line-height: 1.2;
  padding: 2rem;
}

/* ========================================
  JOIN US! / ENTRY
======================================== */
.recruit-join {
  background-color: #dcdee7;
  background-image: url("/assets/images/recruit/join_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: clip;
  padding-block: 10.375rem;
  position: relative;
  z-index: 0;
}

.recruit-join__card {
  background-image: linear-gradient(-62.09deg, #0d1263 14.415%, #0d4794 97.402%);
  border-radius: 0.625rem;
  margin-inline: auto;
  max-width: calc(100% - 50px);
  min-height: 33.1875rem;
  padding-top: 7.0625rem;
  position: relative;
  width: 67rem;
  z-index: 0;
}

.recruit-join__watermark {
  --copy-delay: 0.5s;
  color: #fff;
  font-family: "Permanent Marker", "Inter", cursive;
  font-size: 6.875rem;
  font-weight: 400;
  left: 0;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  text-align: center;
  text-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.11);
  top: -2.5625rem;
  white-space: nowrap;
  width: 100%;
}

.recruit-join__body {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: calc(100% - 1.75rem);
  text-align: center;
  width: 36.6875rem;
}

.recruit-join__en {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 3.1875rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.recruit-join__title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.0625rem;
}

.recruit-join__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.0625rem;
}

.recruit-join__br-sp {
  display: none;
}

.recruit-join__button {
  align-items: center;
  background-color: #00032b;
  background-image: linear-gradient(#0d4794, #0d4794);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border-radius: 6.25rem;
  color: #fff;
  display: flex;
  justify-content: center;
  margin-top: 2.625rem;
  max-width: 100%;
  padding: 1.5rem 1.125rem 1.5rem 0.4375rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 24.625rem;
}
.recruit-join__button:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}

.recruit-join__button-text {
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
}

.recruit-join__button-icon {
  background: url("/assets/images/recruit/icon_join_arrow.svg") no-repeat center/contain;
  height: 1rem;
  position: absolute;
  right: 6.07%;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1875rem;
}
/* ========================================
  Service MV
======================================== */
.service-mv {
  position: relative;
  z-index: 0;
}

.service-mv__image {
  aspect-ratio: 1680/640;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-mv__body {
  left: 0;
  padding-inline: 4rem;
  position: absolute;
  top: 8.75rem;
  width: 100%;
  z-index: 1;
}

.service-mv__title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.3;
}

.service-mv__title-strong {
  font-size: 3.75rem;
  font-weight: 600;
}

.service-mv__title-lg {
  font-size: 3.75rem;
}

.service-mv__text {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.0625rem;
}

/* ========================================
  Business
======================================== */
.business {
  background-color: #fff;
  padding-block: 8.75rem 9rem;
}

.business__body {
  align-items: flex-start;
  display: flex;
  gap: 7.25rem;
  margin-top: 3rem;
}

.business__col {
  flex: 0 0 33rem;
  min-width: 0;
}

.business__lead {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

.business__photo {
  aspect-ratio: 386/418;
  display: block;
  height: auto;
  margin-inline: auto;
  margin-top: 2.875rem;
  max-width: 100%;
  width: 24.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.business__content {
  flex: 1 1 0;
  min-width: 0;
}

.business__text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}
.business__text + .business__text {
  margin-top: 2.5rem;
}

.business__box {
  border: 1px solid #78858d;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
}

.business__box-title {
  background-clip: text;
  background-image: linear-gradient(180deg, #0d1263 0%, #0d4794 100%);
  display: block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}

.business__box-text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1rem;
}

/* ========================================
  Photo Collage
======================================== */
.photo-collage {
  background-color: #fff;
  overflow-x: clip;
  padding-block: 0 6.875rem;
  position: relative;
  z-index: 0;
}

/*
  SP も PC と同じく写真を散らす。
  横に広い PC の座標（1512x670）のままだと縦に潰れるので、
  SP は枠を縦長にして配置を組み直している。
*/
.photo-collage__group {
  aspect-ratio: 1512/670;
  margin-inline: auto;
  max-width: 94.5rem;
  position: relative;
  z-index: 1;
}

/*
  枠は動かさず、中の画像だけをパララックスで動かすので overflow: hidden で切る。
  left / width は --band-*（= 写真を置ける範囲）基準で書く。
  絶対配置の基準はパディングボックスなので、SP の padding-inline を
  そのまま帯の指定に反映しないと写真が画面端まで張り出す。
*/
.photo-collage__photo {
  --band-left: 0%;
  --band-width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.photo-collage__photo-image {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.photo-collage__photo--01 {
  aspect-ratio: 386/418;
  left: 0%;
  top: 29.1%;
  width: 25.53%;
}

.photo-collage__photo--02 {
  aspect-ratio: 295/197;
  left: 44.25%;
  top: 0%;
  width: 19.51%;
}

.photo-collage__photo--03 {
  aspect-ratio: 185/200;
  left: 87.77%;
  top: 24.93%;
  width: 12.24%;
}

.photo-collage__photo--04 {
  aspect-ratio: 185/200;
  left: 33.53%;
  top: 45.37%;
  width: 12.24%;
}

.photo-collage__photo--05 {
  aspect-ratio: 399/266;
  left: 53.77%;
  top: 60.3%;
  width: 26.39%;
}

/* ========================================
  Service Detail
======================================== */
.service-detail {
  background-color: #0b0b0b;
  padding-block: 8.75rem 12.5rem;
}

.service-detail__list {
  margin-top: 6.25rem;
}

.service-detail__item {
  align-items: center;
  display: flex;
  gap: 3.75rem;
}
.service-detail__item + .service-detail__item {
  margin-top: 5rem;
}

.service-detail__item--reverse {
  flex-direction: row-reverse;
}

.service-detail__image {
  aspect-ratio: 560/346;
  display: block;
  flex: 0 0 35rem;
  height: auto;
  max-width: 100%;
  min-width: 0;
  width: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-detail__body {
  flex: 1 1 0;
  min-width: 0;
}

.service-detail__label {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}

.service-detail__label-text {
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.7;
}

.service-detail__label-num {
  align-items: center;
  background-color: #fff;
  border-radius: 1.875rem;
  color: #000;
  display: flex;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  min-height: 1.5rem;
  min-width: 2.9375rem;
  padding-inline: 0.75rem;
}

.service-detail__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.service-detail__text {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1rem;
}

/* ========================================
  Flow
======================================== */
.flow {
  background-color: #fff;
  padding-block: 0 10rem;
}

.flow__body {
  align-items: flex-start;
  display: flex;
}

/* 右の工程リストを読み進める間、見出しは画面に留める（.strengs__head と同じ考え方）。
   上に padding-top: 160 を持っているので、その分を引いて
   「見出しの文字が画面上から 120px」で留まるようにする */
.flow__head {
  align-self: flex-start;
  flex: 0 1 36rem;
  min-width: 0;
  padding-top: 10rem;
  position: sticky;
  top: calc(7.5rem - 10rem);
  z-index: 1;
}

.flow__lead {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.875rem;
}

.flow__content {
  flex: 0 1 37.75rem;
  min-width: 0;
  padding-top: 10rem;
}

.flow__list {
  border-top: 0.0625rem solid rgba(28, 28, 28, 0.1);
}

.flow__item {
  align-items: center;
  border-bottom: 0.0625rem solid rgba(28, 28, 28, 0.1);
  display: flex;
  gap: 2rem;
  min-height: 7.4375rem;
  padding: 1.5rem 0.75rem;
}

.flow__item-num {
  align-items: center;
  background-color: #000;
  border-radius: 1.25rem;
  color: #fff;
  display: inline-flex;
  flex: none;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  height: 1.25rem;
  justify-content: center;
  letter-spacing: 0.13em;
  min-width: 2.3125rem;
  padding-inline: 0.5rem;
}

.flow__item-text {
  color: #1c1c1c;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.17;
}

.flow__note {
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 2.5rem;
}

.flow__button {
  margin-top: 2.5rem;
}

.flow .button.flow__button-link {
  min-height: 3.9375rem;
  width: 25.125rem;
}

/* ========================================
  Capability
======================================== */
.capability {
  background-color: #0b0b0b;
  padding-block: 8.75rem 10rem;
}

.capability__list {
  display: grid;
  gap: 1.3125rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6.25rem;
}

.capability__card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.25rem;
}

.capability__image {
  aspect-ratio: 340/210;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.capability__body {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.capability__title {
  background-clip: text;
  background-image: linear-gradient(180deg, #0d1263 0%, #0d4794 100%);
  display: block;
  width: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-align: center;
}

/* カンプではタグ／テキストが見出し下の余白いっぱいの中で天地中央に置かれる */
.capability__tags {
  align-content: center;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.5rem 0.625rem;
  justify-content: center;
  width: 100%;
}

.capability__tags--col {
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.capability__tag {
  background-color: #ededed;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.7;
  padding: 0.1875rem 1.3125rem;
  text-align: center;
}

.capability__tags--col .capability__tag {
  max-width: 100%;
  padding-inline: 0;
  width: 13.125rem;
}

.capability__lot {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.9;
  /* 見出し下の余白いっぱいの中で天地中央（.capability__body が縦 flex） */
  margin-block: auto;
  text-align: center;
  width: 100%;
}

.capability__lot-strong {
  font-size: 1.125rem;
  font-weight: 600;
}

/* ========================================
  Equipment
======================================== */
.equipment {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(13, 18, 99, 0.03), rgba(13, 71, 148, 0.03));
  padding-block: 10rem;
}

.equipment__group {
  display: grid;
  /* カンプは見出し列 0〜393、リストは x=393 から（列間の余白なし） */
  grid-template-columns: 24.5625rem 1fr;
  margin-top: 7.75rem;
}
.equipment__group + .equipment__group {
  margin-top: 6.25rem;
}

/* リストが長いので、見出しはグループを読み終えるまで留める */
.equipment__label {
  align-self: start;
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  position: sticky;
  top: 7.5rem;
  z-index: 1;
}

.equipment__list {
  min-width: 0;
}

.equipment__item {
  align-items: flex-end;
  display: flex;
  gap: 3.75rem;
}
.equipment__item + .equipment__item {
  margin-top: 1rem;
}

.equipment__photo {
  aspect-ratio: 207/137;
  display: block;
  flex: 0 0 12.9375rem;
  height: auto;
  min-width: 0;
  width: 12.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 罫線は写真の右 60px から始まる情報側にだけ引く（写真の下には引かない） */
.equipment__info {
  align-items: baseline;
  border-bottom: 0.0625rem solid #78858d;
  display: flex;
  flex: 1 1 0;
  gap: 1rem;
  justify-content: space-between;
  min-width: 0;
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
}

/* 拠点は情報エリアが写真と同じ高さで、中身は天地中央 */
.equipment__info--location {
  align-items: flex-start;
  align-self: stretch;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.equipment__name {
  color: #000;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.equipment__info--location .equipment__name {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.5rem;
  line-height: 1.6;
}

.equipment__caption {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.equipment__count {
  color: #000;
  flex: none;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  width: 4.0625rem;
}

.equipment__count-num {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ========================================
  FV
======================================== */
/*
  FV オープニング（案A「図面が引かれて、実物が現れる」）
  タイムライン
    0.00s  方眼グリッドが左上→右下に引かれる（製図しているニュアンス）
    0.35s  キャッチコピーが1行ずつ、色帯が通過して現れる（0.15sずつ遅らせる）
    0.90s  写真：先に枠線が縦に開き、続いて中の写真が下から出る（0.15sずつ）
    1.60s  英字リード → SCROLL バッジの順にフェード
  初期状態は .is-js 配下にだけ書く。JS 無効時は静止した完成形が出る。
  再生は script.js の initFvIntro（.fv に .is-fv-played を付ける）。
*/
.fv {
  background-color: #fff;
  overflow-x: clip;
  padding-block: 11.0625rem 4.5rem;
  position: relative;
  z-index: 0;
}
.fv {
  /*
    SP は FV と直下の NEWS バーを合わせて画面の高さいっぱいにし、中身を上下中央に置く。
    NEWS バーは折り返して高さが変わるので、script.js の initNewsBarHeight が実測して --news-bar-height に入れる
  */
}
.fv {
  /* グリッドはマスクで引くので背景色から分離する */
}
.fv::before {
  background-image: url("/assets/images/common/bg_grid.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

@property --fv-grid {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 112%;
}
.is-js .fv {
  --fv-grid: 0%;
}
.is-js .fv::before {
  /* 斜めのエッジが通り過ぎてグリッドが現れる */
  -webkit-mask-image: linear-gradient(100deg, #000 calc(var(--fv-grid) - 14%), transparent var(--fv-grid));
          mask-image: linear-gradient(100deg, #000 calc(var(--fv-grid) - 14%), transparent var(--fv-grid));
  transition: --fv-grid 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-js .fv.is-fv-played {
  --fv-grid: 112%;
}

.fv__catch {
  margin-left: 11.37%;
  position: relative;
  width: 78.63%;
  z-index: 1;
}

/* 3行を元の 1321x418 の座標どおりに重ねる（%指定なので幅が変わっても崩れない） */
.fv__title {
  aspect-ratio: 1321/418;
  line-height: 0;
  margin: 0;
  position: relative;
  width: 100%;
}

.fv__title-line {
  display: block;
  overflow: hidden;
  position: absolute;
}
.fv__title-line img {
  display: block;
  height: auto;
  width: 100%;
}

.fv__title-line--01 {
  --fv-delay: 0.35s;
  left: -0.0757%;
  top: -0.2392%;
  width: 75.4731%;
}

.fv__title-line--02 {
  --fv-delay: 0.5s;
  left: 21.1204%;
  top: 46.4115%;
  width: 78.9553%;
}

.fv__title-line--03 {
  --fv-delay: 0.65s;
  left: 59.0462%;
  top: 91.866%;
  width: 40.2725%;
}

/* 色帯が左から入って行を覆い、覆っている間に中身を出し、そのまま右へ抜ける */
.is-js .fv__title-line img {
  opacity: 0;
}
.is-js .fv__title-line::before {
  background-color: #000;
  content: "";
  inset: 0;
  position: absolute;
  translate: -101% 0;
  z-index: 1;
}

.is-js .fv.is-fv-played .fv__title-line img {
  opacity: 1;
  transition: opacity 0s calc(var(--fv-delay) + 0.5s);
}
.is-js .fv.is-fv-played .fv__title-line::before {
  animation: fv-wipe 1s cubic-bezier(0.8, 0, 0.17, 1) var(--fv-delay);
}

@keyframes fv-wipe {
  0% {
    translate: -101% 0;
  }
  40%, 60% {
    translate: 0 0;
  }
  100% {
    translate: 101% 0;
  }
}
/*
  写真の left / width はキャッチコピー（.fv__title）の幅を基準にした % で持っていて、
  文字と文字の隙間に収まるよう値が決まっている。
  なので基準はコピーと同じ帯（--fv-band-*）に合わせないと、文字に重なってしまう。

  PC は .fv__catch に padding がないので帯 = 全幅でよい。
  SP は .fv__catch に padding-inline があるぶんコピーが内側に入るが、
  絶対配置の基準はパディングボックスなので写真には padding が効かない。
  その結果コピーより外へ張り出すので、SP だけ padding ぶんずらしている。
*/
.fv__photo {
  --fv-band-left: 0%;
  --fv-band-width: 100%;
  aspect-ratio: 240/160;
  overflow: hidden;
  position: absolute;
  width: calc(var(--fv-band-width) * 0.1817);
  z-index: 2;
}

.fv__photo-image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 枠線。写真より先に縦へ開いて「図面に枠を引く」ニュアンスを出す */
.is-js .fv__photo::after {
  border: 0.0625rem solid #000;
  content: "";
  inset: 0;
  position: absolute;
  scale: 1 0;
  z-index: 1;
}

/*
  写真の出し方。
  拡大（scale）は使わない。拡大中はブラウザが引き伸ばしたテクスチャで描き、
  アニメーションが終わった瞬間に元の解像度で描き直すため、最後にチラッと見える。
  代わりに写真を枠より 10% 大きく置いて、移動（translate）だけで見せる。
  移動なら描き直しが起きないうえ、どの位置でも枠に隙間ができない。
  clip-path と translate は同じ尺にして、終わりがズレないようにしている。
*/
/*
  枠より上下 6% ずつ大きく置き、動かす量は自身の 4%（＝枠の約4.5%）に留める。
  はみ出し量 > 移動量 にしておかないと、動いている途中で枠の端に隙間が出る。
*/
.is-js .fv__photo .fv__photo-image {
  clip-path: inset(100% 0 0 0);
  height: 112%;
  left: 0;
  position: absolute;
  top: -6%;
  translate: 0 4%;
}

.is-js .fv.is-fv-played .fv__photo::after {
  animation: fv-frame 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--fv-delay) forwards;
}
.is-js .fv.is-fv-played .fv__photo .fv__photo-image {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--fv-delay) + 0.25s), translate 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--fv-delay) + 0.25s);
  translate: 0 0;
}

@keyframes fv-frame {
  0% {
    opacity: 1;
    scale: 1 0;
  }
  45% {
    opacity: 1;
    scale: 1 1;
  }
  100% {
    opacity: 0;
    scale: 1 1;
  }
}
.fv__photo--01 {
  --fv-delay: 0.9s;
  left: calc(var(--fv-band-left) + var(--fv-band-width) * 0.352);
  top: 0.24%;
}

.fv__photo--02 {
  --fv-delay: 1.05s;
  left: calc(var(--fv-band-left) + var(--fv-band-width) * 0.7956);
  top: 0.24%;
}

.fv__photo--03 {
  --fv-delay: 1.2s;
  left: var(--fv-band-left);
  top: 50.96%;
}

.fv__lead {
  --fv-delay: 1.6s;
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-left: 11.07%;
  margin-top: 3.8125rem;
}

/* リードとバッジは最後に軽く持ち上げながらフェード */
.is-js .fv__lead,
.is-js .fv__scroll {
  opacity: 0;
  translate: 0 12px;
}

.is-js .fv.is-fv-played .fv__lead,
.is-js .fv.is-fv-played .fv__scroll {
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--fv-delay), translate 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--fv-delay);
  translate: 0 0;
}

/* 回すのは「SCROLL DOWN」の文字リングだけ。黒丸と下向き矢印は止めたままにする */
.fv__scroll {
  --fv-delay: 1.75s;
  bottom: 3.25rem;
  display: block;
  pointer-events: none;
  position: absolute;
  right: 3.39%;
  width: 8.3125rem;
  z-index: 1;
}

.fv__scroll-base,
.fv__scroll-text {
  display: block;
  height: auto;
  max-width: none;
  width: 100%;
}

.fv__scroll-text {
  animation: fv-scroll-spin 14s linear infinite;
  inset: 0;
  position: absolute;
}

@keyframes fv-scroll-spin {
  to {
    transform: rotate(360deg);
  }
}
/*
  演出が終わっているはずの時刻に JS が付ける保険クラス。
  通常は何も変わらない（すでに同じ状態）が、
  途中でトランジションが落ちた場合でも FV が消えたままにならないようにする。
*/
.is-js .fv.is-fv-done {
  --fv-grid: 112%;
  /* 待ちを挟まず即座に確定させたいので、残っているトランジションは切る */
  /* 写真は .is-fv-played 側が .fv__photo を挟んでいるので、詳細度を合わせる */
}
.is-js .fv.is-fv-done .fv__title-line img,
.is-js .fv.is-fv-done .fv__photo .fv__photo-image,
.is-js .fv.is-fv-done .fv__lead,
.is-js .fv.is-fv-done .fv__scroll {
  transition: none;
}
.is-js .fv.is-fv-done .fv__title-line img {
  opacity: 1;
}
.is-js .fv.is-fv-done .fv__photo .fv__photo-image {
  clip-path: inset(0 0 0 0);
  translate: 0 0;
}
.is-js .fv.is-fv-done .fv__lead,
.is-js .fv.is-fv-done .fv__scroll {
  opacity: 1;
  translate: 0 0;
}

/* 「動きを減らす」設定では演出を全部止めて、完成形だけを出す */
/* ========================================
  News Bar
======================================== */
.news-bar {
  background-color: #000;
}

.news-bar__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 3.625rem;
  padding-block: 0.75rem;
  padding-inline: 25px;
}
.news-bar__inner:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: -0.25rem;
}
.news-bar__label {
  color: #fff;
  flex: none;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.news-bar__text {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-left: 0.6875rem;
}

/* ========================================
  About
======================================== */
.about {
  background-color: #fff;
}

.about__visual {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.about__visual-image {
  aspect-ratio: 1680/598;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__visual-body {
  left: 0;
  position: absolute;
  top: 9.9375rem;
  width: 100%;
  z-index: 1;
}

.about__visual-title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

.about__visual-en {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.5625rem;
}

.about__body {
  overflow-x: clip;
  padding-block: 8.3125rem 12.875rem;
  position: relative;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 0.6875rem;
       column-gap: 0.6875rem;
  margin-top: 3.9375rem;
  max-width: 50.5625rem;
  row-gap: 0.8125rem;
}

.about__feature {
  align-items: center;
  background-color: #ededed;
  color: #000;
  display: flex;
  font-size: 1.125rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.7;
  min-height: 3.3125rem;
  padding: 0.6875rem 1rem;
  text-align: center;
}

.about__text {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 2.875rem;
  max-width: 68.875rem;
}

.about__button {
  margin-top: 4.5rem;
}

.about__photos {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.about__photos {
  /*
    SP も PC と同じく写真を散らす。
    横並びをやめて縦長の枠に戻し、中で絶対配置する。
    枠の縦横比を決めておかないと、絶対配置の子だけでは高さが出ない。
  */
}

/* 枠は動かさず、中の画像だけをパララックスで動かすので overflow: hidden で切る */
.about__photo {
  /* left / width の基準。絶対配置はパディングボックス基準なので、
     SP の padding-inline を帯の指定に反映しないと画面端まで張り出す */
  --band-left: 0%;
  --band-width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.about__photo {
  /* lg より後に書く（lg と md は両方 max-width なので、SP では後勝ちにする必要がある） */
}

.about__photo-image {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__photo--01 {
  aspect-ratio: 295/197;
  left: calc(50% + 19.25rem);
  top: 4.9375rem;
  width: 18.4375rem;
}

.about__photo--02 {
  aspect-ratio: 160/174;
  left: calc(50% + 32.5rem);
  top: 22.4375rem;
  width: 10rem;
}

.about__photo--03 {
  aspect-ratio: 429/261;
  left: calc(50% + 27.6875rem);
  top: 36.5rem;
  width: 26.8125rem;
}

/* ========================================
  One Stop System
======================================== */
.onestop {
  background-color: #323232;
  background-image: url("/assets/images/top/onestop_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 9.875rem 10.125rem;
  position: relative;
  text-align: center;
}
.onestop {
  /* カンプの見え方に合わせて背景写真を暗くする */
}
.onestop::before {
  background-color: rgba(0, 0, 0, 0.65);
  content: "";
  inset: 0;
  position: absolute;
}
.onestop > .inner {
  position: relative;
  z-index: 1;
}

.onestop__en {
  color: #fff;
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.7;
}

.onestop__title {
  color: #fff;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 1.25rem;
}

.onestop__sub {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.625rem;
}

.onestop__steps {
  display: grid;
  gap: 0.8125rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 3.6875rem;
}

.onestop__step {
  background-color: #000;
  border: 0.0625rem solid #fff;
  min-height: 14.3125rem;
  padding: 1.875rem 0.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.onestop__step + .onestop__step::before {
  background: url("/assets/images/common/triangle_white.svg") no-repeat center center/contain;
  content: "";
  height: 1rem;
  left: -0.875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
  z-index: 2;
}

.onestop__step-num {
  color: #fff;
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

.onestop__step-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 0.375rem;
}

.onestop__step-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.375rem;
}

.onestop__note {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-inline: auto;
  margin-top: 2.8125rem;
  max-width: 66.25rem;
}

/* ========================================
  Service
======================================== */
.service {
  background-color: #0b0b0b;
  padding-block: 8.5625rem 10rem;
}

.service__head {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.service__more {
  margin-bottom: 0.625rem;
}

.service__lead {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 2.375rem;
}

.service__cards {
  display: grid;
  gap: 1.3125rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.375rem;
}

.service__card {
  background-color: #fff;
  padding: 1.1875rem 1.25rem 2.1875rem;
}

.service__card-image {
  aspect-ratio: 340/210;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__card-title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
  margin-top: 0.875rem;
  text-align: center;
}

.service__card-text {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ========================================
  Works
======================================== */
.works {
  background-color: #fff;
  background-image: url("/assets/images/top/works_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 8.5625rem 9.4375rem;
}

.works__head {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.works__more {
  margin-top: 3.0625rem;
}

.works__lead {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.25rem;
  max-width: 50rem;
}

.works__cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 5.5rem;
}

.works__card-link {
  display: block;
  transition: opacity 0.3s;
}
.works__card-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}
.works__card-image {
  aspect-ratio: 280/180;
  background-color: #ababab;
  display: block;
  width: 100%;
}

.works__card-tag {
  align-items: center;
  background-color: #010101;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1.25rem;
  min-height: 1.75rem;
  padding-inline: 0.875rem;
}

.works__card-title {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ========================================
  Company
======================================== */
/* 背景写真は ::before に移し、--parallax-y（JS が更新）で上下に動かす */
.company {
  background-color: #333;
  overflow: hidden;
  padding-block: 8.6875rem 10.0625rem;
  position: relative;
  z-index: 0;
}
.company::before {
  background-image: url("/assets/images/top/company_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: -4.375rem 0;
  position: absolute;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}
.company > .inner {
  position: relative;
  z-index: 1;
}

.company__title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 5.4375rem;
}

.company__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 0.875rem;
  max-width: 49rem;
}

.company__stats {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 10rem);
  margin-top: 4.375rem;
}

.company__stat {
  align-items: center;
  background-color: #010101;
  border: 0.0625rem solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
  padding: 0.75rem;
  text-align: center;
}

.company__stat-num {
  align-items: baseline;
  color: #fff;
  display: flex;
  justify-content: center;
}

.company__stat-value {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3.92rem;
  font-weight: 600;
  line-height: 1;
}

/*
  スロットカウンター。
  数字1桁ぶんの窓（overflow: hidden）に 0-9 を並べたリールを入れ、
  translateY で目的の数字まで回す。JS（initSlotCounter）が組み立てる。
*/
.company__stat-counter {
  display: inline-flex;
}

.company__stat-digit {
  display: block;
  height: 1em;
  overflow: hidden;
}

.company__stat-reel {
  display: block;
  will-change: transform;
}

.company__stat-reel > span {
  display: block;
  height: 1em;
  line-height: 1;
}

.company__stat-unit {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.648125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}

.company__stat-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 0.3125rem;
}

.company__button {
  margin-top: 4.125rem;
}

/* ========================================
  Recruit
======================================== */
.recruit {
  background-image: linear-gradient(180deg, #0d1263 0%, #0d4794 100%);
  overflow-x: clip;
  padding-block: 13rem 12.6875rem;
  position: relative;
  z-index: 0;
}

.recruit__inner {
  position: relative;
  z-index: 2;
}

.recruit__title {
  color: #fff;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 4.75rem;
  margin-top: 5.4375rem;
}

.recruit__title-lg {
  font-size: 3.625rem;
  margin-left: -2.3125rem;
}

.recruit__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.25rem;
  max-width: 58.4375rem;
}

.recruit__features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 24.9375rem));
  margin-top: 2.875rem;
  max-width: 51.125rem;
}

.recruit__feature {
  align-items: center;
  background-color: #ededed;
  color: #000;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.7;
  min-height: 3.0625rem;
  padding: 0.6875rem 1rem;
  text-align: center;
}

.recruit__button {
  margin-top: 5.6875rem;
}

.recruit__photos {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.recruit__photos {
  /* SP も PC と同じく写真を散らす（考え方は .about__photos のコメント参照） */
}

/* ABOUT の写真と同じ。枠は固定して中の画像だけ動かす */
.recruit__photo {
  --reveal-line: #fff;
  --band-left: 0%;
  --band-width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.recruit__photo {
  /* lg より後に書く（lg と md は両方 max-width なので、SP では後勝ちにする必要がある） */
}

.recruit__photo-image {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__photo--01 {
  aspect-ratio: 520/334;
  left: calc(50% + 7.75rem);
  top: 10.8125rem;
  width: 32.5rem;
}

.recruit__photo--02 {
  aspect-ratio: 187/132;
  left: calc(50% - 9.1875rem);
  top: 14.9375rem;
  width: 11.6875rem;
}

.recruit__photo--03 {
  aspect-ratio: 314/210;
  left: calc(50% + 27.6875rem);
  top: 36.625rem;
  width: 19.625rem;
}

.recruit__photo--04 {
  aspect-ratio: 223/144;
  left: calc(50% + 19rem);
  top: 55.375rem;
  width: 13.9375rem;
}

/* ========================================
  Parallax
======================================== */
/*
  JS（initParallax）が --parallax-y を書き換えるだけにして、
  基準の拡大率は --parallax-scale で個別に持たせる。
  ABOUT のビジュアルは親を overflow: hidden にしたうえで
  移動量ぶん拡大しておき、動かしても隙間が出ないようにする。
*/
.js-parallax {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1));
}

.js-parallax.is-parallax-active {
  will-change: transform;
}
/* ========================================
  Topics
======================================== */
.topics {
  background-color: #fff;
  padding-block: 8.4375rem 10.0625rem;
}

.topics__body {
  margin-inline: auto;
  max-width: 65.9375rem;
}

.topics__head {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.topics__heading .sec-title__ja {
  letter-spacing: 0;
}

.topics__more {
  margin-top: 1.5625rem;
}

.topics__list {
  border-top: 0.0625rem solid #e0e0e0;
  margin-top: 3.8125rem;
}

.topics__item {
  border-bottom: 0.0625rem solid #e0e0e0;
}

.topics__link {
  align-items: center;
  display: grid;
  grid-template-columns: 6.75rem 11.8125rem minmax(0, 1fr);
  min-height: 4.0625rem;
  padding-left: 1.8125rem;
  transition: opacity 0.3s;
}
.topics__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: -0.125rem;
}

.topics__date {
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.topics__cat {
  align-items: center;
  background-color: #b3b5b7;
  border-radius: 2.625rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  justify-self: start;
  line-height: 1;
  min-height: 1.625rem;
  min-width: 6.125rem;
  padding-inline: 1.3125rem;
}

.topics__title {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
/* ========================================
  Social Media
======================================== */
.social {
  background-color: #c0c2ca;
  background-image: url("/assets/images/common/bg_noise.webp");
  background-repeat: repeat;
  padding-top: 8.5rem;
}

.social .sec-title__ja {
  letter-spacing: 0;
}

.social__items {
  display: grid;
  gap: 2.5625rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 5.125rem;
}

.social__item {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.social__visual {
  aspect-ratio: 570/340;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.social__grid {
  aspect-ratio: 570/340;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
}

.social__grid-item img {
  aspect-ratio: 114/170;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.social__button {
  align-items: center;
  background-color: #000;
  background-image: linear-gradient(#323232, #323232);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border-radius: 6.25rem;
  color: #fff;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 0.9375rem;
  justify-content: center;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 2.75rem;
  max-width: 100%;
  min-height: 4.125rem;
  padding-inline: 1.25rem;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 22.0625rem;
}
.social__button:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.social__icon {
  flex: none;
}

.social__icon--youtube {
  background: url("/assets/images/common/icon_youtube.svg") no-repeat center center/contain;
  height: 1.875rem;
  width: 2.6875rem;
}

.social__icon--instagram {
  background: url("/assets/images/common/icon_instagram.svg") no-repeat center center/contain;
  height: 2rem;
  width: 2rem;
}
/* ========================================
  Coating Lineup
======================================== */
.coating-lineup {
  background-color: #fff;
  background-image: url("/assets/images/top/coating_bg.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 8.75rem 9.375rem;
}

.coating-lineup__head {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.coating-lineup__more {
  margin-top: 2.1875rem;
}

.coating-lineup__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 1.25rem;
}

.coating-lineup__cards {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3.75rem;
}

.coating-lineup__link {
  display: block;
  transition: opacity 0.3s;
}
.coating-lineup__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.coating-lineup__image {
  aspect-ratio: 272/158;
  background-color: #ababab;
  display: block;
  width: 100%;
}

.coating-lineup__name {
  color: #1c1c1c;
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-top: 1.25rem;
}
/* ========================================
  Topics Detail
======================================== */
.topics-detail {
  background-color: #fff;
  padding-bottom: 12.5rem;
  padding-top: 8.125rem;
}

.topics-detail__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 69rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  row-gap: 3.75rem;
  width: 100%;
}

.topics-detail__content {
  display: flex;
  flex-direction: column;
  row-gap: 4.375rem;
  width: 100%;
}

.topics-detail__head {
  border-bottom: 0.0625rem solid #000;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
  row-gap: 1.5rem;
}

.topics-detail__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.125rem;
       column-gap: 1.125rem;
}

.topics-detail__date {
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.topics-detail__cat {
  align-items: center;
  background-color: #b3b5b7;
  border-radius: 6.25rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  padding: 0.375rem 1.3125rem;
}

.topics-detail__title {
  color: #000;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

/*
  本文（WordPress 化後は the_content() の出力がそのまま入る）。
  投稿エディタが出すタグにクラスは付かないので、.topics-detail__body 配下をタグで指定する。
  ※ 記事タイトルの h2（.topics-detail__title）と衝突しないよう、__content ではなく __body を起点にしている。
*/
.topics-detail__body {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}

.topics-detail__body > * + * {
  margin-top: 3rem;
}

/*
  エディタで選べる見出しは h2〜h5（inc/admin.php の block_formats）。
  h2 はプライバシーポリシー（.privacy__heading）と同じ地色＋メインカラーの左罫線に揃え、
  h3 → h5 と装飾を減らして強弱を付けている。
*/
.topics-detail__body h2 {
  background-color: #f5f5f5;
  border-left: 0.3125rem solid #0d1263;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
}

.topics-detail__body h3 {
  border-bottom: 0.125rem solid #0d1263;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-bottom: 0.5rem;
}

.topics-detail__body h4 {
  border-bottom: 0.0625rem solid #e0e0e0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-bottom: 0.5rem;
}

.topics-detail__body h5 {
  color: #0d1263;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.topics-detail__body h2 + *,
.topics-detail__body h3 + *,
.topics-detail__body h4 + *,
.topics-detail__body h5 + * {
  margin-top: 1rem;
}

.topics-detail__body a {
  color: #000;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.3s;
}
.topics-detail__body strong {
  font-weight: 700;
}

.topics-detail__body ul,
.topics-detail__body ol {
  padding-left: 1.5em;
}

.topics-detail__body ul {
  list-style: disc;
}

.topics-detail__body ol {
  list-style: decimal;
}

.topics-detail__body li + li {
  margin-top: 0.25rem;
}

.topics-detail__body img {
  display: block;
  height: auto;
  max-width: 100%;
}

.topics-detail__body figure {
  margin-inline: 0;
}

.topics-detail__body figcaption {
  color: #ababab;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.topics-detail__body blockquote {
  background-color: #ededed;
  padding: 1.5rem 2rem;
}

.topics-detail__body table {
  border-collapse: collapse;
  width: 100%;
}

.topics-detail__body th,
.topics-detail__body td {
  border: 0.0625rem solid #e0e0e0;
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.topics-detail__body th {
  background-color: #ededed;
  font-weight: 700;
}

.topics-detail__body hr {
  border: 0;
  border-top: 0.0625rem solid #e0e0e0;
}

.topics-detail__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ========================================
  Topics List
======================================== */
.topics-list {
  background-color: #fff;
  padding-block: 8.125rem 12.5rem;
}

.topics-list__body {
  margin-inline: auto;
  max-width: 65.875rem;
}

/* Category tabs
------------------------------ */
.topics-list__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.topics-list__tab {
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #b3b5b7;
  border-radius: 2.625rem;
  color: #b3b5b7;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 1.625rem;
  min-width: 6.125rem;
  padding-inline: 1.3125rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.topics-list__tab:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.topics-list__tab.is-current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
/* List
------------------------------ */
.topics-list__list {
  border-top: 0.0625rem solid #e0e0e0;
  margin-top: 5rem;
}

.topics-list__item {
  border-bottom: 0.0625rem solid #e0e0e0;
}

.topics-list__link {
  align-items: center;
  display: grid;
  grid-template-columns: 6.75rem 12rem minmax(0, 1fr);
  min-height: 4.125rem;
  padding-inline: 1.25rem;
  transition: opacity 0.3s;
}
.topics-list__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: -0.125rem;
}

.topics-list__date {
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.topics-list__cat {
  align-items: center;
  background-color: #b3b5b7;
  border-radius: 2.625rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  justify-self: start;
  line-height: 1;
  min-height: 1.625rem;
  min-width: 6.125rem;
  padding-inline: 1.3125rem;
}

.topics-list__title {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
/* Pager
------------------------------ */
.topics-list__pager {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3.75rem;
}

.topics-list__pager-list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.topics-list__pager-link {
  align-items: center;
  color: #b3b5b7;
  display: inline-flex;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.8;
  min-width: 1.25rem;
  transition: color 0.3s;
}
.topics-list__pager-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.topics-list__pager-link.is-current {
  color: #000;
  font-weight: 600;
}
.topics-list__pager-arrow {
  align-items: center;
  display: inline-flex;
  height: 1.125rem;
  justify-content: center;
  transition: opacity 0.3s;
  width: 1.25rem;
}
.topics-list__pager-arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
/* ========================================
  Works Detail - 本文
======================================== */
.works-detail {
  background-color: #fff;
  padding-bottom: 8.125rem;
  padding-top: 6.25rem;
}

.works-detail__inner {
  display: flex;
  flex-direction: column;
  row-gap: 3.75rem;
}

/* ---- 見出しブロック ---- */
.works-detail__head {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.works-detail__tag {
  align-items: center;
  align-self: flex-start;
  background-color: #000;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.375rem 0.875rem;
}

.works-detail__title {
  color: #000;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.works-detail__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

/* ---- ギャラリー ---- */
.works-detail__gallery {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.works-detail__main-image {
  aspect-ratio: 1180/685.44;
  background-color: #d9d9d9;
  width: 100%;
}

.works-detail__thumbs {
  position: relative;
}

.works-detail__thumbs-viewport {
  overflow: hidden;
}

.works-detail__thumbs-track {
  display: flex;
}

.works-detail__thumb {
  aspect-ratio: 478/278;
  background-color: #d9d9d9;
  flex: none;
  max-width: 40%;
  width: 29.875rem;
}

.works-detail__thumbs-arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.works-detail__thumbs-arrow {
  background-color: #000;
  border: none;
  cursor: pointer;
  height: 2.6875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6875rem;
  z-index: 2;
}
.works-detail__thumbs-arrow::before {
  background: url("/assets/images/common/arrow_white_sm.svg") no-repeat center center/contain;
  content: "";
  height: 0.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.6875rem;
}
.works-detail__thumbs-arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.works-detail__thumbs-arrow--prev {
  left: -0.5rem;
}
.works-detail__thumbs-arrow--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.works-detail__thumbs-arrow--next {
  right: -0.5rem;
}

/* ---- 説明文 + スペック表 ---- */
.works-detail__info {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  row-gap: 2.5rem;
}

.works-detail__desc {
  color: #000;
  flex: 1 1 37.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}
.works-detail__desc::before {
  background: linear-gradient(to bottom, #0d1263, #0d4794);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0.3125rem;
}

.works-detail__spec-wrap {
  border: 0.0625rem solid #000;
  flex: 1 1 32.5rem;
  min-width: 0;
  padding: 1.25rem 1.5rem;
}

.works-detail__spec {
  border-collapse: collapse;
  width: 100%;
}

.works-detail__spec-row + .works-detail__spec-row {
  border-top: 1rem solid transparent;
}

.works-detail__spec-label {
  align-items: center;
  background-color: #b3b5b7;
  border-radius: 1.375rem;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 2rem;
  text-align: center;
  vertical-align: middle;
  width: 6rem;
}

.works-detail__spec-value {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  padding-left: 1rem;
  vertical-align: middle;
}

/* ---- 前後の製作事例 ---- */
.works-detail__nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  padding-top: 1.3125rem;
}

.works-detail__nav-link {
  align-items: center;
  color: #000;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 600;
  gap: 1.125rem;
  line-height: 1;
}
.works-detail__nav-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.works-detail__nav-link--next {
  margin-left: auto;
}

.works-detail__nav-icon {
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #000;
  border-radius: 1.9375rem;
  color: #fff;
  flex: none;
  height: 1.9375rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 4.25rem;
  z-index: 1;
}
.works-detail__nav-icon::before {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 0.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.6875rem;
  -webkit-mask: url("/assets/images/common/arrow_white_sm.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white_sm.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.works-detail__nav-icon--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
/* ========================================
  Works List
======================================== */
.works-list {
  background-color: #fff;
  padding-block: 6.25rem 8.125rem;
}

.works-list__lead {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 2;
}

.works-list__body {
  margin-top: 5rem;
}

/* Head
------------------------------ */
.works-list__head {
  margin-bottom: 3.75rem;
}

.works-list__heading {
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}

.works-list__note {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 1rem;
}

/* Category tabs
------------------------------ */
.works-list__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}

.works-list__tab {
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #b3b5b7;
  color: #b3b5b7;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 1.625rem;
  min-width: 6.125rem;
  padding-inline: 0.875rem;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.works-list__tab:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.works-list__tab.is-current {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
/* Grid
------------------------------ */
.works-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  row-gap: 5rem;
}

.works-list__link {
  display: block;
  transition: opacity 0.3s;
}
.works-list__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
.works-list__thumb {
  aspect-ratio: 372/216;
  background-color: #d9d9d9;
  width: 100%;
}

.works-list__info {
  margin-top: 1.25rem;
}

.works-list__cat {
  align-items: center;
  background-color: #b3b5b7;
  color: #fff;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 1.625rem;
  padding-inline: 0.875rem;
}

.works-list__title {
  color: #1c1c1c;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-top: 0.75rem;
}

.works-list__paint {
  color: #1c1c1c;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 0.75rem;
}

/* Pager
------------------------------ */
.works-list__pager {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3.75rem;
}

.works-list__pager-list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.works-list__pager-link {
  align-items: center;
  color: #b3b5b7;
  display: inline-flex;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.8;
  min-width: 1.25rem;
  transition: color 0.3s;
}
.works-list__pager-link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}

.works-list__pager-link.is-current {
  color: #000;
  font-weight: 600;
}
.works-list__pager-arrow {
  align-items: center;
  display: inline-flex;
  height: 1.125rem;
  justify-content: center;
  transition: opacity 0.3s;
  width: 1.25rem;
}
.works-list__pager-arrow:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.125rem;
}
/* ========================================
  Button
======================================== */
/*
  ホバー：反転色の塗りが上から下へ伸び、文字と矢印の色が入れ替わる（仕組みは _mixin.scss のコメント参照）。
  枠線は背景の外側なので塗りが伸びても残り、白／黒どちらの状態でもボタンの形が分かる。
*/
.button {
  align-items: center;
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #000;
  border-radius: 6.25rem;
  color: #fff;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  max-width: 100%;
  min-height: 4.125rem;
  padding-left: 5.625rem;
  padding-right: 1.5rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  white-space: nowrap;
  width: 22.0625rem;
  z-index: 1;
}
.button::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  flex: none;
  height: 1rem;
  margin-left: 3.5625rem;
  width: 1.1875rem;
  -webkit-mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.button:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}

.button--light {
  background-color: #fff;
  background-image: linear-gradient(#000, #000);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border-color: #fff;
  color: #000;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.button--light::after {
  background-color: currentColor;
  background-image: none;
  height: 1.0625rem;
  width: 1.25rem;
  -webkit-mask: url("/assets/images/common/arrow_black.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_black.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.button--light:focus-visible {
  outline-color: #fff;
}
/* ========================================
  Contact
======================================== */
.contact {
  background-color: #c0c2ca;
  background-image: url("/assets/images/common/bg_noise.webp");
  background-repeat: repeat;
  padding-block: 10.375rem;
}

.contact--top {
  padding-top: 9.5625rem;
}

.contact__card {
  background-color: #000;
  border-radius: 0.625rem;
  margin-inline: auto;
  max-width: 67rem;
  padding: 6.375rem 1.5rem 6.3125rem;
  text-align: center;
}

.contact__title {
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.3125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.contact__lead {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.625rem;
}

.contact__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 2.3125rem;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6875rem;
  justify-content: center;
  margin-top: 4.6875rem;
}

.contact__button {
  align-items: center;
  border-radius: 6.25rem;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  max-width: 100%;
  min-height: 4.125rem;
  padding-left: 2.5625rem;
  padding-right: 3.125rem;
  position: relative;
  width: 24.625rem;
  z-index: 1;
}
.contact__button::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 1rem;
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1875rem;
  z-index: 1;
  -webkit-mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contact__button:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}

.contact__button--contact {
  background-color: #747474;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  color: #fff;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.contact__button--recruit {
  background-color: #8e93a2;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  color: #fff;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
/* ========================================
  Footer
======================================== */
.footer {
  background-color: #000;
  padding-block: 7.1875rem 1.6875rem;
}

.footer__logo {
  line-height: 0;
  text-align: center;
}

.footer__logo-image {
  aspect-ratio: 420/135;
  display: inline-block;
  height: auto;
  max-width: 100%;
  width: 26.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__body {
  display: grid;
  grid-template-columns: 28rem repeat(3, minmax(0, 1fr));
  margin-top: 6.375rem;
}

.footer__name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.11em;
}

.footer__address {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1.8;
  margin-top: 0.5625rem;
  max-width: 17.625rem;
}

.footer__url {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1.8;
  margin-top: 0;
}

.footer__url-link {
  color: #fff;
  transition: opacity 0.3s;
}
.footer__url-link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}

.footer__nav {
  display: contents;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}

.footer__link {
  color: #fff;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.3s;
}
.footer__link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}

.footer__copyright {
  border-top: 0.0625rem solid #676767;
  color: #d6d6d6;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.8;
  margin-top: 3.6875rem;
  padding-top: 1.9375rem;
  text-align: center;
}
/* ========================================
  Header
  ※ ナビ7項目 + CONTACT ボタンのため、ドロワー切替は 1439px 以下
     （カンプ幅 1680 で 1144px + ナビ余白 456px を要するため、1440 未満では PC ナビが収まらない）
======================================== */
/*
  スクロールすると縮むヘッダー。
  少し下げた時点で .is-compact が付き（付与は script.js の initHeaderShrink）、
  高さ・ロゴ幅・CONTACT ボタンが同じ尺で縮む。
  最初は背景なし（FV の白地に溶かす）で、縮んだときだけ白を敷いて
  下を流れるコンテンツと重なっても読めるようにしている。
*/
.header {
  --header-height: 6.875rem;
  left: 0;
  position: fixed;
  top: 0;
  transition: background-color 0.4s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
  z-index: 100;
}

.header.is-compact {
  backdrop-filter: blur(0.5rem);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.0625rem 0 rgba(0, 0, 0, 0.08);
}

.header__inner {
  align-items: center;
  display: flex;
  min-height: 6.875rem;
  padding-left: 2rem;
  padding-right: 0.75rem;
  transition: min-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.header.is-compact {
  --header-height: 4.5rem;
}

.header.is-compact .header__inner {
  min-height: 4.5rem;
}

.header__logo {
  display: block;
  flex: none;
  transition: width 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  width: 13.75rem;
}

.header.is-compact .header__logo {
  width: 10.75rem;
}

.header__logo-image {
  aspect-ratio: 220/70;
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__toggle {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 2.75rem;
  padding: 0.625rem;
  position: relative;
  width: 2.75rem;
  z-index: 120;
}
.header__toggle:focus-visible {
  outline: 0.125rem solid #78858d;
  outline-offset: 0.125rem;
}

.header__toggle-bar {
  background-color: #000;
  display: block;
  height: 0.125rem;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  width: 100%;
}
.header__toggle-bar + .header__toggle-bar {
  margin-top: 0.5625rem;
}

.header__toggle[aria-expanded=true] .header__toggle-bar {
  background-color: #fff;
}

.header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(1) {
  transform: translateY(0.6875rem) rotate(45deg);
}

.header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(3) {
  transform: translateY(-0.6875rem) rotate(-45deg);
}

.header__nav {
  align-items: center;
  display: flex;
  margin-left: auto;
}

.header__list {
  --header-nav-gap: min(4.75rem, calc((100vw - 73.5rem) / 6));
  align-items: center;
  display: flex;
  gap: var(--header-nav-gap);
  height: 2.4375rem;
  margin-right: 2.375rem;
}

.header__item {
  position: relative;
  z-index: 1;
}
.header__item + .header__item::before {
  background-color: #838f96;
  content: "";
  height: 2.4375rem;
  left: calc(var(--header-nav-gap) / -2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
  z-index: 1;
}

.header__link {
  color: #78858d;
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.header__link:focus-visible {
  outline: 0.125rem solid #78858d;
  outline-offset: 0.25rem;
}
.header__link::after {
  content: "";
  height: var(--header-height);
  left: calc(var(--header-nav-gap) / -2);
  position: absolute;
  right: calc(var(--header-nav-gap) / -2);
  top: 50%;
  transform: translateY(-50%);
}

/* ホバーで白黒反転。仕組みは _button.scss のコメント参照（角丸なしなので clip-path は round なし） */
.header__contact {
  align-items: center;
  background-color: #000;
  border: 0.0625rem solid #000;
  color: #fff;
  display: flex;
  flex: none;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  min-height: 4.375rem;
  padding-inline: 1rem;
  position: relative;
  text-transform: uppercase;
  transition: width 0.4s cubic-bezier(0.33, 1, 0.68, 1), min-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  width: 11.25rem;
  z-index: 1;
}
.header__contact::before {
  background-color: #fff;
  clip-path: inset(0 0 100% 0);
  content: "";
  inset: 0;
  mix-blend-mode: difference;
  position: absolute;
  transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.header__contact:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}

.header.is-compact .header__contact {
  min-height: 3.5rem;
  width: 10rem;
}
.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1234px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

/* ========================================
  More Link
======================================== */
.more-link {
  align-items: center;
  display: inline-flex;
  /* 見出しと同じ行に並ぶ場面があるので、押しつぶされて折り返さないようにする */
  flex: none;
  gap: 0.75rem;
}
.more-link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.25rem;
}

.more-link__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* 丸ピル部分は .button と同じ挙動（仕組みは _mixin.scss のコメント参照） */
.more-link__icon {
  background-color: #fff;
  background-image: linear-gradient(#000, #000);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #fff;
  border-radius: 4.1875rem;
  color: #000;
  flex: none;
  height: 2rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 4.1875rem;
  z-index: 1;
}
.more-link__icon::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 0.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.6875rem;
  z-index: 1;
  -webkit-mask: url("/assets/images/common/arrow_black_sm.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_black_sm.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.more-link--dark .more-link__text {
  color: #000;
}

.more-link--dark .more-link__icon {
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border-color: #000;
  color: #fff;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
/* ========================================
  Other Page
======================================== */
.other-page {
  background-color: #fff;
  padding-block: 5rem;
  position: relative;
}

.other-page__title {
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.other-page__list {
  display: grid;
  gap: 2.5625rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.other-page__link {
  align-items: center;
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #000;
  border-radius: 6.25rem;
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  min-height: 4rem;
  padding-left: 1.625rem;
  padding-right: 3.5rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.other-page__link::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 1rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1875rem;
  z-index: 1;
  -webkit-mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.other-page__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}
/* ========================================
  Page Head (back link type)
  ※ カラーサンプル一覧 / カラー詳細 / 製作事例詳細 で使用（カンプ 1680x288）
======================================== */
.page-back {
  background-color: #fff;
  background-image: url("/assets/images/common/bg_grid.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 13rem 3.75rem 3rem 15.75rem;
  position: relative;
  z-index: 0;
}

.page-back__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.page-back__link {
  align-items: center;
  display: inline-flex;
  flex: none;
}
.page-back__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.25rem;
}

/* 丸ピル部分は TOP のボタン（.more-link__icon）と同じ挙動：白い塗りが上から下へ伸び、矢印が黒に変わる。
   矢印はマスク + currentColor で塗って、文字色のトランジションに乗せる（仕組みは _mixin.scss） */
.page-back__icon {
  background-color: #000;
  background-image: linear-gradient(#fff, #fff);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 0%;
  border: 0.0625rem solid #000;
  border-radius: 1.375rem;
  color: #fff;
  flex: none;
  height: 2rem;
  position: relative;
  transition: background-size 0.5s cubic-bezier(0.65, 0, 0.35, 1), color 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 4.25rem;
  z-index: 1;
}
.page-back__icon::after {
  background-color: currentColor;
  background-image: none;
  content: "";
  height: 0.5625rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.6875rem;
  z-index: 1;
  -webkit-mask: url("/assets/images/common/arrow_white_back.svg") no-repeat center center;
          mask: url("/assets/images/common/arrow_white_back.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.page-back__text {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  margin-left: 1.125rem;
}
/* ========================================
  Page Head
======================================== */
.page-head {
  background-color: #fff;
  background-image: url("/assets/images/common/bg_grid.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 13rem 3.8125rem 3rem;
  position: relative;
  z-index: 0;
}

.page-head__inner {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.page-head__en {
  color: #000;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.page-head__ja {
  color: #000;
  display: block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 0.25rem;
}

.breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.1875rem;
}

.breadcrumb__item {
  color: #000;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.breadcrumb__item + .breadcrumb__item {
  padding-left: 2.625rem;
}
.breadcrumb__item + .breadcrumb__item::before {
  background: url("/assets/images/common/arrow_breadcrumb.svg") no-repeat center center/contain;
  content: "";
  height: 1.25rem;
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem;
  z-index: 1;
}

.breadcrumb__link {
  color: #000;
  transition: opacity 0.3s;
}
.breadcrumb__link:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.1875rem;
}
/* ========================================
  Section Title
======================================== */
.sec-title__en {
  color: #000;
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.sec-title__ja {
  color: #000;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}

.sec-title--light .sec-title__en,
.sec-title--light .sec-title__ja {
  color: #fff;
}

/* リビール（.js-wipe）に渡す色。帯と文字は同じ色系で揃える */
.sec-title__en,
.sec-title__ja {
  --wipe-color: #000;
  --wipe-text: #000;
}

.sec-title--light .sec-title__en,
.sec-title--light .sec-title__ja {
  --wipe-color: #fff;
  --wipe-text: #fff;
}

@media screen and (min-width: 1441px){
  .recruit-work__block-text--wide .recruit-work__block-desc {
    white-space: nowrap;
  }
}

@media screen and (max-width: 1679px){
  .recruit-work__place-title {
    white-space: normal;
  }
}

@media screen and (any-hover: hover) and (max-width: 1439px){
  .header__link:hover {
    color: #78858d;
  }
}

@media screen and (max-width: 1439px){
  .header__inner {
    justify-content: space-between;
    padding-left: 25px;
    padding-right: 25px;
  }
  .header__toggle {
    display: block;
  }
  .header__nav {
    background-color: rgba(0, 0, 0, 0.94);
    flex-direction: column;
    gap: 2.5rem;
    height: 100svh;
    justify-content: center;
    left: 0;
    margin-left: 0;
    opacity: 0;
    overflow-y: auto;
    padding: 5rem 20px;
    position: fixed;
    top: 0;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 110;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .header__list {
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    margin-right: 0;
  }
  .header__item + .header__item::before {
    content: none;
  }
  .header__link {
    color: #fff;
    font-size: 1.375rem;
  }
  .header__link::after {
    content: none;
  }
  .header__contact {
    border-color: #fff;
    min-height: 3.75rem;
    width: 15rem;
  }
  .header.is-compact .header__contact {
    min-height: 3.75rem;
    /* ドロワー内のボタンは縮めない */
    width: 15rem;
  }
}

@media (max-width: 1184px){
  html {
    font-size: 1.3513513514vw;
  }
}

@media screen and (max-width: 1023px){
  .about-mv__body {
    padding-inline: 25px;
    top: 5rem;
  }
  .pride {
    padding-block: 5.625rem;
  }
  .pride__inner {
    margin-inline: auto;
    padding-inline: 25px;
  }
  .pride__body {
    flex-direction: column;
    gap: 3rem;
  }
  .pride__content {
    flex: none;
    width: 100%;
  }
  .pride__photos {
    flex: none;
    width: 100%;
  }
  .strengs {
    padding-block: 6.25rem;
  }
  .strengs__inner {
    flex-direction: column;
    gap: 3rem;
  }
  .strengs__head {
    flex: none;
    position: static;
    width: 100%;
  }
  .strengs__body {
    flex: none;
    padding-top: 0;
    width: 100%;
  }
  .strengs__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.5rem;
  }
  .strengs__step + .strengs__step::before {
    content: none;
  }
  .future {
    padding-block: 5.625rem;
  }
  .future__photos {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: auto;
    margin-top: 3rem;
    padding-inline: 25px;
    position: static;
    width: 100%;
  }
  .future__photo {
    inset: auto;
    min-width: 0;
    position: relative;
    width: 100%;
  }
  .future__photo--01 {
    width: 100%;
  }
  .future__photo--02 {
    width: 100%;
  }
  .future__photo--03 {
    width: 100%;
  }
  .future__photo--04 {
    width: 100%;
  }
  .coating-detail {
    padding-bottom: 4.5rem;
    padding-top: 4.5rem;
  }
  .coating-detail-works {
    padding-bottom: 5.625rem;
    padding-top: 5.625rem;
  }
  .coating-detail-others {
    padding-bottom: 5.625rem;
    padding-top: 5.625rem;
  }
  .coating-sample {
    padding-bottom: 5.625rem;
    padding-top: 4.5rem;
  }
  .coating-sample__title {
    font-size: 2rem;
  }
  .coating-sample__list {
    gap: 2rem 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
  }
  .coating-list {
    padding-block: 4.375rem 5.625rem;
  }
  .coating-list__title {
    font-size: 2rem;
    margin-top: 3.5rem;
  }
  .coating-list__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
  }
  .company-mv__body {
    padding-inline: 25px;
    top: 5rem;
  }
  .message {
    padding-block: 5.625rem;
  }
  .message__body {
    align-items: stretch;
    flex-direction: column;
    gap: 3rem;
  }
  .message__content {
    flex: none;
    width: 100%;
  }
  .message__photo {
    flex: none;
    margin-inline: auto;
    max-width: 25rem;
    width: 100%;
  }
  .band {
    height: 12.5rem;
  }
  .band__track {
    margin-left: -1.875rem;
  }
  .band__text {
    font-size: 5rem;
  }
  .band__text:nth-of-type(1) {
    margin-right: 1.5rem;
  }
  .band__text:nth-of-type(2) {
    margin-right: 1.5rem;
  }
  .band__text:nth-of-type(3) {
    margin-right: 0.75rem;
  }
  .band__photo {
    height: 5.875rem;
    width: 8.75rem;
  }
  .band__photo:nth-of-type(1) {
    margin-right: 1.5rem;
  }
  .band__photo:nth-of-type(2) {
    margin-right: 1.5rem;
  }
  .band__photo:nth-of-type(3) {
    margin-right: 1.5rem;
  }
  .profile {
    padding-block: 5.625rem;
  }
  .profile__table {
    display: block;
    width: 100%;
  }
  .profile__table tbody,
  .profile__table tr {
    display: block;
    width: 100%;
  }
  .profile__table th {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }
  .profile__table td {
    display: block;
    padding: 1.25rem 1.5rem;
    width: 100%;
  }
  .history {
    padding-bottom: 5.625rem;
  }
  .history__inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .history__head {
    flex: none;
    padding-top: 0;
    position: static;
    width: 100%;
  }
  .history__list {
    flex: none;
    padding-top: 2.5rem;
    width: 100%;
  }
  .access {
    padding-block: 5.625rem;
  }
  .access__photo {
    display: none;
  }
  .contact-form__inner {
    padding-bottom: 8.75rem;
    padding-top: 5.625rem;
  }
  .thanks__inner {
    padding-bottom: 7.5rem;
    padding-top: 5.625rem;
  }
  .privacy__inner {
    padding-bottom: 7.5rem;
    padding-top: 5.625rem;
  }
  .recruit-fv {
    grid-template-rows: minmax(7.5rem, 140fr) auto minmax(2rem, 48fr) auto minmax(1.5rem, 40fr) auto minmax(2rem, 48fr);
    height: auto;
    min-height: calc(100vh - 4.625rem);
    min-height: calc(100svh - 4.625rem);
    padding-inline: 25px;
  }
  .recruit-fv__title {
    margin-left: 0;
  }
  .recruit-fv__title-en {
    font-size: 3rem;
  }
  .recruit-fv__title-ja {
    font-size: 1rem;
  }
  .recruit-fv__catch {
    justify-self: stretch;
    margin-right: 0;
    max-width: none;
    width: 100%;
  }
  .recruit-fv__catch-line {
    width: 7.5rem;
  }
  .recruit-fv__catch-sub-text {
    font-size: 2.75rem;
  }
  .recruit-fv__catch-main {
    font-size: 5.5rem;
    text-align: right;
  }
  .recruit-fv__catch-note {
    font-size: 1.5rem;
  }
  .recruit-fv__breadcrumb {
    justify-self: start;
    margin-right: 0;
  }
  .recruit-nav__list {
    justify-content: flex-start;
    padding-inline: 25px;
  }
  .recruit-nav__link {
    padding-inline: 2rem;
  }
  .recruit-message {
    padding-bottom: 4rem;
  }
  .recruit-message__inner {
    min-height: 0;
    padding-top: 4rem;
  }
  .recruit-message__photos {
    aspect-ratio: 588/835;
    height: auto;
    left: auto;
    margin: 2.5rem auto 0;
    max-width: 36.75rem;
    position: relative;
    top: auto;
    width: 100%;
  }
  .recruit-message__photo--01 {
    left: 0%;
    top: 62.874251497%;
    width: 79.0816326531%;
  }
  .recruit-message__photo--02 {
    left: 8.1632653061%;
    top: 0%;
    width: 46.9387755102%;
  }
  .recruit-message__photo--03 {
    left: 37.074829932%;
    top: 27.9041916168%;
    width: 62.925170068%;
  }
  .recruit-message__body {
    margin-left: 0;
    margin-top: 2.5rem;
  }
  .recruit-message__quote-line {
    font-size: 2.125rem;
  }
  .recruit-message__quote-line--01 {
    width: auto;
  }
  .recruit-message__text {
    padding-left: 0;
    white-space: normal;
  }
  .recruit-message__slider {
    margin-top: 3.5rem;
  }
  .recruit-work {
    padding-top: 4.5rem;
  }
  .recruit-work__inner {
    padding-inline: 25px;
  }
  .recruit-work__head {
    min-height: 0;
  }
  .recruit-work__head-body {
    flex-direction: column;
    gap: 1.5rem;
  }
  .recruit-work__quote-line {
    font-size: 1.75rem;
  }
  .recruit-work__lead {
    white-space: normal;
    width: auto;
  }
  .recruit-work__body {
    margin-top: 2.5rem;
    padding: 3rem 25px 4rem;
  }
  .recruit-work__block {
    margin-top: 3.5rem;
  }
  .recruit-work__intro + .recruit-work__block {
    margin-top: 2.5rem;
  }
  .recruit-work__block-row {
    align-items: stretch;
    flex-direction: column;
  }
  .recruit-work__block-text {
    flex: none;
    width: 100%;
  }
  .recruit-work__block-photo {
    flex: none;
    width: 100%;
  }
  .recruit-work__product-list {
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruit-work__material-list {
    flex-direction: column;
  }
  .recruit-work__material-item {
    flex: none;
    width: 100%;
  }
  .recruit-work__place-item {
    flex-basis: calc((100% - 1.71875rem) / 2);
  }
  .recruit-process__pin {
    padding-block: 3.5rem 4.5rem;
  }
  .recruit-process__list {
    margin-top: 2rem;
  }
  .recruit-process__closing {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
  .recruit-career {
    padding-block: 4.5rem 6rem;
  }
  .recruit-career__line {
    display: none;
  }
  .recruit-career__head-body {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.75rem;
  }
  .recruit-career__catch {
    font-size: 2rem;
  }
  .recruit-career__catch-em {
    font-size: 4.5rem;
  }
  .recruit-career__lead {
    width: auto;
  }
  .recruit-career__list {
    gap: 4rem;
    margin-top: 3.5rem;
    padding-inline: 25px;
  }
  .recruit-career__item {
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 0;
  }
  .recruit-career__item--02 {
    flex-direction: column-reverse;
    gap: 1.5rem;
    padding-right: 0;
  }
  .recruit-career__item--03 {
    margin-top: 0;
  }
  .recruit-career__text {
    width: 100%;
  }
  .recruit-career__item--03 .recruit-career__text {
    width: 100%;
  }
  .recruit-career__step-title {
    font-size: 2.125rem;
  }
  .recruit-career__photo {
    flex: none;
    width: 100%;
  }
  .recruit-career__item--02 .recruit-career__photo {
    flex-basis: auto;
  }
  .recruit-career__item--03 .recruit-career__photo {
    flex-basis: auto;
  }
  .recruit-career__accent {
    display: none;
  }
  .recruit-culture {
    padding-bottom: 5.625rem;
  }
  .recruit-culture__inner {
    padding-top: 4rem;
  }
  .recruit-culture__watermark {
    display: none;
  }
  .recruit-culture__head-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  .recruit-culture__quote {
    font-size: 1.625rem;
  }
  .recruit-culture__note {
    font-size: 1.0625rem;
  }
  .recruit-culture__list {
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .recruit-culture__item {
    width: calc((100% - 1.5rem) / 2);
  }
  .recruit-culture__item:nth-child(n+4) {
    width: calc((100% - 1.5rem) / 2);
  }
  .recruit-staff {
    min-height: 0;
    padding-block: 4.5rem 5rem;
  }
  .recruit-staff__head-row {
    gap: 1rem;
    margin-top: 1.75rem;
  }
  .recruit-staff__lead-line {
    font-size: 1.75rem;
  }
  .recruit-staff__slider {
    margin-top: 2.5rem;
  }
  .recruit-staff__slide {
    width: min(59.125rem, 100vw - 5rem);
  }
  .recruit-staff__dept {
    font-size: 2rem;
  }
  .recruit-modal__body {
    padding: 4rem 2.5rem;
  }
  .recruit-modal__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .recruit-modal__profile {
    align-items: flex-start;
  }
  .recruit-recruitment {
    padding-block: 4.5rem;
  }
  .recruit-recruitment__body {
    margin-top: 2.5rem;
  }
  .recruit-recruitment__tab {
    font-size: 1.125rem;
  }
  .recruit-recruitment__table {
    display: block;
    margin-top: 2.5rem;
  }
  .recruit-recruitment__table tbody,
  .recruit-recruitment__table tr {
    display: block;
    width: 100%;
  }
  .recruit-recruitment__table th {
    display: block;
    padding-block: 0.75rem;
    width: 100%;
  }
  .recruit-recruitment__table td {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
  }
  .recruit-join {
    padding-block: 7.5rem 6rem;
  }
  .service-mv__body {
    padding-inline: 25px;
    top: 5rem;
  }
  .business {
    padding-block: 5.625rem;
  }
  .business__body {
    flex-direction: column;
    gap: 3rem;
  }
  .business__col {
    flex: none;
    width: 100%;
  }
  .business__content {
    flex: none;
    width: 100%;
  }
  .photo-collage {
    padding-block: 0 4rem;
  }
  .photo-collage__group {
    padding-inline: 25px;
    width: 100%;
  }
  .service-detail {
    padding-block: 5.625rem;
  }
  .service-detail__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-detail__item--reverse {
    flex-direction: column;
  }
  .service-detail__image {
    flex: none;
    width: 100%;
  }
  .service-detail__body {
    flex: none;
    width: 100%;
  }
  .flow {
    padding-block: 0 5.625rem;
  }
  .flow__body {
    flex-direction: column;
    gap: 3rem;
  }
  .flow__head {
    flex: none;
    padding-top: 5.625rem;
    position: static;
    width: 100%;
  }
  .flow__content {
    flex: none;
    padding-top: 0;
    width: 100%;
  }
  .capability {
    padding-block: 5.625rem;
  }
  .capability__list {
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 3rem;
  }
  .equipment {
    padding-block: 5.625rem;
  }
  .equipment__group {
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 3.75rem;
  }
  .equipment__label {
    position: static;
  }
  .fv {
    padding-block: 9.375rem 4rem;
  }
  .fv__scroll {
    bottom: 2.5rem;
    width: 6rem;
  }
  .about__visual-body {
    top: 6.25rem;
  }
  .about__body {
    padding-block: 5.625rem 5.625rem;
  }
  .about__photos {
    align-items: flex-start;
    display: flex;
    gap: 0.75rem;
    height: auto;
    margin-top: 3rem;
    padding-inline: 25px;
    position: static;
    width: 100%;
  }
  .about__photo {
    flex: 1 1 0;
    inset: auto;
    max-width: 100%;
    min-width: 0;
    position: relative;
    width: 100%;
  }
  .about__photo--01 {
    width: 100%;
  }
  .about__photo--02 {
    width: 100%;
  }
  .about__photo--03 {
    width: 100%;
  }
  .onestop {
    padding-block: 6.25rem 6.25rem;
  }
  .onestop__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .onestop__step + .onestop__step::before {
    content: none;
  }
  .service {
    padding-block: 5.625rem 6.25rem;
  }
  .works {
    padding-block: 5.625rem 6.25rem;
  }
  .works__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3.5rem;
  }
  .company {
    padding-block: 5.625rem 6.25rem;
  }
  .recruit {
    padding-block: 6.25rem 6.25rem;
  }
  .recruit__photos {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: auto;
    margin-top: 3rem;
    padding-inline: 25px;
    position: static;
    width: 100%;
  }
  .recruit__photo {
    inset: auto;
    max-width: 100%;
    min-width: 0;
    position: relative;
    width: 100%;
  }
  .recruit__photo--01 {
    width: 100%;
  }
  .recruit__photo--02 {
    width: 100%;
  }
  .recruit__photo--03 {
    width: 100%;
  }
  .recruit__photo--04 {
    width: 100%;
  }
  .topics {
    padding-block: 5.625rem 6.25rem;
  }
  .social {
    padding-top: 5.625rem;
  }
  .coating-lineup {
    padding-block: 5.625rem 6.25rem;
  }
  .coating-lineup__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
  }
  .topics-detail {
    padding-bottom: 7.5rem;
    padding-top: 5rem;
  }
  .topics-list {
    padding-block: 5.625rem 8.75rem;
  }
  .works-detail {
    padding-bottom: 5.625rem;
    padding-top: 3rem;
  }
  .works-list {
    padding-block: 4.375rem 5.625rem;
  }
  .contact {
    padding-block: 6.25rem 6.25rem;
  }
  .contact--top {
    padding-top: 6.25rem;
  }
  .footer__body {
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 3rem;
  }
  .footer__nav {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__list {
    gap: 1rem;
    padding-top: 0;
  }
  .other-page__list {
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-back {
    padding: 9.375rem 25px 2.5rem;
  }
  .page-head {
    padding: 9.375rem 25px 2.5rem;
  }
  .page-head__en {
    font-size: 3.5rem;
  }
}

@media (any-hover: hover){
  .is-hover-ready .coating-detail-works__link:hover {
    opacity: 0.7;
  }
  .coating-detail-others__link:hover .coating-detail-others__thumb {
    opacity: 0.8;
  }
  .coating-detail-others__arrow:hover {
    background-color: #323232;
  }
  .coating-sample__link:hover {
    opacity: 0.7;
  }
  a.coating-sample__pager-link:hover {
    color: #000;
  }
  .coating-sample__pager-arrow:hover {
    opacity: 0.6;
  }
  .is-hover-ready .coating-list__card-link:hover .coating-list__card-more-icon {
    background-size: 100% 100%;
    color: #000;
  }
  a.coating-list__pager-link:hover {
    color: #000;
  }
  .coating-list__pager-arrow:hover {
    opacity: 0.6;
  }
  .contact-form__zip-search:hover {
    background-color: #323232;
  }
  .contact-form__privacy-link:hover {
    opacity: 0.6;
  }
  .is-hover-ready .contact-form__submit:not(:disabled):hover {
    background-size: 100% 100%;
    color: #000;
  }
  .privacy__contact-row a:hover {
    opacity: 0.6;
  }
  .recruit-staff__arrow:hover {
    background-color: rgba(0, 0, 0, 0.06);
  }
  .recruit-staff__slide:hover .recruit-staff__more-icon {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .recruit-staff__slide:hover .recruit-staff__more-icon::before {
    transform: translateX(0.625rem);
  }
  .recruit-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .is-hover-ready .recruit-join__button:hover {
    background-size: 100% 100%;
    color: #fff;
  }
  .news-bar__inner:hover {
    opacity: 0.7;
  }
  .works__card-link:hover {
    opacity: 0.7;
  }
  .topics__link:hover {
    opacity: 0.6;
  }
  .is-hover-ready .social__button:hover {
    background-size: 100% 100%;
    color: #fff;
  }
  .coating-lineup__link:hover {
    opacity: 0.7;
  }
  .topics-detail__body a:hover {
    opacity: 0.6;
  }
  .topics-list__tab:not(.is-current):hover {
    border-color: #000;
    color: #000;
  }
  .topics-list__link:hover {
    opacity: 0.6;
  }
  a.topics-list__pager-link:hover {
    color: #000;
  }
  .topics-list__pager-arrow:hover {
    opacity: 0.6;
  }
  .is-hover-ready .works-detail__nav-link:hover .works-detail__nav-icon {
    background-size: 100% 100%;
    color: #000;
  }
  .works-list__tab:not(.is-current):hover {
    border-color: #000;
    color: #000;
  }
  .works-list__link:hover {
    opacity: 0.7;
  }
  a.works-list__pager-link:hover {
    color: #000;
  }
  .works-list__pager-arrow:hover {
    opacity: 0.6;
  }
  .is-hover-ready .button:hover {
    background-size: 100% 100%;
    color: #000;
  }
  .is-hover-ready .button--light:hover {
    background-size: 100% 100%;
    color: #fff;
  }
  .is-hover-ready .contact__button:hover {
    background-size: 100% 100%;
    color: #000;
  }
  .footer__link:hover,
  .footer__url-link:hover {
    opacity: 0.6;
  }
  .header__link:hover {
    color: #000;
  }
  .is-hover-ready .header__contact:hover::before {
    clip-path: inset(0 0 0 0);
  }
  .is-hover-ready .more-link:hover .more-link__icon {
    background-size: 100% 100%;
    color: #fff;
  }
  .is-hover-ready .more-link--dark:hover .more-link__icon {
    background-size: 100% 100%;
    color: #000;
  }
  .is-hover-ready .other-page__link:hover {
    background-size: 100% 100%;
    color: #000;
  }
  .is-hover-ready .page-back__link:hover .page-back__icon {
    background-size: 100% 100%;
    color: #000;
  }
  .breadcrumb__link:hover {
    opacity: 0.6;
  }
}

@media (prefers-reduced-motion: reduce){
  .js-wipe {
    color: var(--wipe-text, #000);
    transition: none;
  }
  .js-wipe[data-wipe] {
    background-color: var(--wipe-bg, transparent);
  }
  .js-wipe::before {
    display: none;
  }
  .is-js [data-reveal=line] > img {
    opacity: 1;
    transition: none;
  }
  .is-js [data-reveal=line]::before,
  .is-js [data-reveal=line]::after {
    content: none;
  }
  .is-js [data-reveal=diagonal] {
    clip-path: none;
    transition: none;
  }
  .is-js [data-copy]:not(.is-copy-ready),
  .is-js .copy-char,
  .is-js .js-fade {
    animation: none;
    opacity: 1;
    translate: none;
  }
  .coating-list__card-more-icon {
    transition-duration: 0.01ms;
  }
  .band__tracks {
    animation: none;
  }
  .contact-form__submit {
    transition-duration: 0.01ms;
  }
  .is-js .recruit-fv::before {
    content: none;
  }
  .is-js .recruit-fv__catch-line {
    animation: none;
    transform: none;
  }
  .loop-tracks {
    animation: none;
  }
  .fv__scroll-text {
    animation: none;
  }
  .is-js .fv {
    --fv-grid: 112%;
  }
  .is-js .fv::before,
  .is-js .fv__title-line img,
  .is-js .fv__photo .fv__photo-image,
  .is-js .fv__lead,
  .is-js .fv__scroll {
    animation: none;
    transition: none;
  }
  .is-js .fv__title-line img {
    opacity: 1;
  }
  .is-js .fv__title-line::before,
  .is-js .fv__photo::after {
    display: none;
  }
  .is-js .fv__photo .fv__photo-image {
    clip-path: none;
    translate: 0 0;
  }
  .is-js .fv__lead,
  .is-js .fv__scroll {
    opacity: 1;
    translate: 0 0;
  }
  .js-parallax {
    transform: none;
  }
  .works-detail__nav-icon {
    transition-duration: 0.01ms;
  }
  .button {
    transition-duration: 0.01ms;
  }
  .contact__button {
    transition-duration: 0.01ms;
  }
  .header__contact::before {
    transition-duration: 0.01ms;
  }
  .header,
  .header__inner,
  .header__logo,
  .header__contact {
    transition-duration: 0.01ms;
  }
  .more-link__icon {
    transition-duration: 0.01ms;
  }
  .other-page__link {
    transition-duration: 0.01ms;
  }
  .page-back__icon {
    transition-duration: 0.01ms;
  }
}
/*
  グレーの箱で組まれているプレースホルダに、投稿画像を流し込む。

  aspect-ratio を img 側にも引き継がせているのは、箱が縦方向の flex アイテムのとき
  （.coating-list__card-image / .coating-detail-others__thumb）に高さが崩れるため。
  flex アイテムは min-height: auto なので、height: 100% が親の不定な高さに対して auto 扱いになり、
  中の画像が実寸比で描画される → 箱が画像の比率まで引き伸ばされ、箱の aspect-ratio が効かなくなる。
  img に同じ比率を持たせると高さが確定し、object-fit: cover でトリミングされる。
*/
.works__card-image > img,
.coating-lineup__image > img,
.works-list__thumb > img,
.works-detail__main-image > img,
.works-detail__thumb > img,
.coating-list__card-image > img,
.coating-sample__swatch > img,
.coating-detail__swatch > img,
.coating-detail-works__image > img,
.coating-detail-others__thumb > img {
  aspect-ratio: inherit;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* CF7の出力HTMLは変更できないため、静的版と同じ見た目になるよう親側で当てる */
.contact-form__field .wpcf7-form-control-wrap {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.contact-form__field--zip .wpcf7-form-control-wrap {
  flex: none;
  width: auto;
}

.contact-form__field .wpcf7-radio {
  display: grid;
  gap: 0.625rem;
  justify-items: start;
}

.contact-form__field .wpcf7-list-item,
.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}

.contact-form__field .wpcf7-list-item label {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.625rem;
}

.contact-form__field input[type="radio"] {
  accent-color: #000;
  flex: none;
  height: 1rem;
  margin: 0;
  width: 1rem;
}

.contact-form__field .wpcf7-list-item-label {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
}

.contact-form__privacy .wpcf7-form-control-wrap {
  display: block;
}

.contact-form__privacy .wpcf7-list-item label {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
}

.contact-form__privacy input[type="checkbox"] {
  accent-color: #000;
  flex: none;
  height: 1.375rem;
  margin: 0;
  width: 1.375rem;
}

.contact-form__privacy .wpcf7-list-item-label {
  color: #000;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}

.contact-form__form .wpcf7-not-valid-tip {
  color: #c1121f;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.contact-form__form .wpcf7-response-output {
  border: 0.0625rem solid currentColor;
  font-size: 1rem;
  line-height: 1.8;
  margin: 2.5rem 0 0;
  padding: 1rem 1.25rem;
  text-align: center;
}

/* 送信成功時のメッセージは出さない（直後にサンクスページへ遷移するため）。
   送信中は中身が空のまま枠だけ出るので、そちらも隠す */
.contact-form__form.sent .wpcf7-response-output,
.contact-form__form .wpcf7-response-output:empty {
  display: none;
}

.contact-form__form .wpcf7-spinner {
  margin-inline: 0.75rem;
}

.contact-form__form.submitting .contact-form__submit {
  pointer-events: none;
}
