/* 1024px 以下 */
@media (max-width: 1024px) {
  .max-width {
    max-width: 84%;
    margin: auto;
  }

}

/* 1025px 以上 1281px 以下 */
@media (min-width: 1025px) and (max-width: 1280px) {
  .max-width {
    max-width: 1116px;
    margin: auto;
  }
}

/* 1282px 以上 */
@media (min-width: 1281px) {
  .max-width {
    max-width: 1116px;
    margin: auto;
  }

}

body {
  margin: 0;
  color: #212B36;
  font-family: "Zen Old Mincho", serif;
}

/* staff Archive Styles */

.white-bar {
  width: 170px;
  height: 1.5px;
  background: white;
  margin: auto;
  margin-top: 22px;
  margin-bottom: 22px;
}


/* 1カラム（スマホ） */
@media (max-width: 1024px) {

  .black-bar {
    width: 120px;
    height: 1.5px;
    background: black;
    margin: auto;
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .belt-title-archive {
    font-size: 48px;
    text-align: center;
    padding-top: 30px;
    line-height: 1.6;
    font-family: "garamond-premier-pro-display", serif;
    font-weight: 300;
    font-style: normal;
  }

  .belt-subtitle-archive {
    font-size: 21px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 22px;
  }

  .belt-text-archive {
    font-size: 16px;
    text-align: center;
    padding-bottom: 40px;
    line-height: 2.6;
    max-width: 96%;
    margin: auto;
  }

}


/* ページネーション：中央寄せ */
.pagination {
  margin: 48px 0 0;
  text-align: center;
}

/* 数字の並び・間隔（左右の空きは大きめ） */
.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  /* ←ここで間隔を調整 */
  margin-top: 50px;
  margin-bottom: 50px;
}

/* 基本の数字（2,3…）：ただのテキストに */
.pagination .page-numbers {
  border: 0;
  background: none;
  color: #000;
  text-decoration: none;
  line-height: 1;
  font-size: 24px;
  /* 数字の大きさ */
  padding: 0;
  min-width: 0;
}

/* 現在ページだけ四角にして塗る */
.pagination .page-numbers.current {
  background: #c9b792;
  /* ベージュ */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  /* 正方形サイズ */
  height: 36px;
}

/* hover は軽めに */
.pagination a.page-numbers:hover {
  opacity: .7;
}

/* 前へ・次へ・… を使わないなら非表示に */
.pagination .prev,
.pagination .next,
.pagination .dots {
  display: none;
}

/* header調整 */


/* ========= PCのみ ========= */
@media (min-width: 768px) {

  /* リスト内リンクのベース */
  .g-nav__list a {
    position: relative;
    display: inline-block;
    padding: 8px 6px;
    text-decoration: none;
    color: inherit;
    /* 初期はヘッダーの色に追従 */
    transition: color .25s ease;
  }

  /* 下線（非表示→スケールで表示） */
  .g-nav__list a::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, #cbbd9c, #b79b72, #8e6435);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.2, .7, 0, .99);
  }

  /* hover：色を金、下線を表示 */
  .g-nav__list a:hover {
    color: #bca885;
  }

  .g-nav__list a:hover::after {
    transform: scaleX(1);
  }

  /* 可能ならテキストも金グラデで“流れる”演出（対応ブラウザのみ） */
  @supports (-webkit-background-clip: text) or (background-clip: text) {
    .g-nav__list a:hover {
      color: transparent;
      /* いったん透明にして… */
      background-image: linear-gradient(90deg, #cbbd9c, #b79b72, #8e6435);
      background-size: 200% 100%;
      background-position: 0% 50%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: background-position 1.0s ease, color .2s ease;
    }

    .g-nav__list a:hover {
      background-position: 100% 50%;
      /* 左→右へ流れる */
    }
  }

  /* ===================== 「お問い合わせ」だけ枠付きボタン風 ===================== */
  /* HTMLを触れない前提で「最後の項目」をCTA扱い */
  .g-nav__list li:last-child a {
    padding: 10px 16px;
    border: 1px solid currentColor;
    /* 初期は文字色の枠 */
    border-radius: 2px;
    line-height: 1;
    isolation: isolate;
    /* ::before の重なり順制御 */
    overflow: hidden;
  }

  /* 金スイープ背景（.viewmoreと同じ考え方） */
  .g-nav__list li:last-child a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg,
        #e7d9b0 0%,
        #ddcb9b 22%,
        #cdb682 45%,
        #b69163 70%,
        #7a5830 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    clip-path: inset(0 100% 0 0);
    /* 右100%で見えない状態 */
    transition:
      clip-path .75s cubic-bezier(.2, .7, 0, .99),
      background-position 1.2s ease;
  }

  /* CTA hover時：金背景が満ちて文字を白に */
  .g-nav__list li:last-child a:hover {
    color: #fff;
    /* 背景に乗る文字色 */
    border-color: transparent;
    /* 枠は背景に溶かす */
  }

  .g-nav__list li:last-child a:hover::before {
    clip-path: inset(0 0 0 0);
    /* 全面表示 */
    background-position: 100% 50%;
    /* 左→右へ流れる */
  }

  /* グラデテキスト化はCTAでは不要なので打ち消す */
  @supports (-webkit-background-clip: text) or (background-clip: text) {
    .g-nav__list li:last-child a:hover {
      background-image: none;
      -webkit-background-clip: initial;
      background-clip: initial;
      -webkit-text-fill-color: initial;
    }
  }
}



/* 固定ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: white;
}

/* WP管理バー（ログイン時）で隠れないように */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 1024px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.headerflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 95%;
  margin: auto;
}

.logo {
  display: flex;
  width: 140px;
  align-items: center;
}

.contents {
  width: 100%;
  height: auto;
}

.contents img {
  width: 100%;
}

/* ヘッダー土台（初期：透明＋白系） */
/* 可変ヘッダー高（必要なら数値調整） */
:root {
  --header-h: 80px;
}

/* 固定ヘッダー本体 */
.site-header {
  position: fixed;
  /* ← sticky ではなく fixed に */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  /* 初期は透明 */
  color: #fff;
  /* 初期は白文字 */
  transition: background .25s, box-shadow .25s, color .25s;
}

/* ログイン時の管理バー考慮 */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 1024px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* 中身の整列 */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;

}

@media (max-width: 1024px) {
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;

  }
}

/* ロゴ：imgは非表示、背景で白/カラーを切替（画像パスは環境に合わせて） */
.logo a {
  display: block;
  position: relative;
  width: 92px;
  height: 31px;
  background: url("../../images/common/logo-white.png") no-repeat center / contain;
  /* 初期＝白ロゴ */
}

.logo img {
  display: none;
}

/* ===== PCメニュー ===== */
.g-nav {
  display: block;
}

.g-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.g-nav__list a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  /* ヘッダーの color に追従 */
}

/* ===== hamburgermenu（PCでは非表示） ===== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: black;
  /* ヘッダー色に追従 */
  transition: transform .25s, opacity .2s;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

/* ===== SPレイアウト（ヘッダー下・右→左 全画面） ===== */
@media (max-width: 1024px) {
  .g-nav {
    position: fixed;
    top: var(--header-h, 80px);
    /* ヘッダーの高さ分下に配置 */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-h, 80px));
    background: #000;
    /* 黒背景 */
    color: #fff;
    transform: translateX(100%);
    /* 初期は右の外へ */
    transition: transform .35s ease;
    z-index: 120;
    display: flex;
    flex-direction: column;
    padding: 32px 20px;
  }

  .g-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .g-nav__list li a {
    position: relative;
    display: block;
    padding: 16px 28px 16px 4px;
    font-size: 16px;
    line-height: 1.8;
    color: #f5f5f5;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    transition: color .2s ease, background-color .2s ease;
  }

  .g-nav__list li a::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 1.5px solid #bca885;
    border-top: 1.5px solid #bca885;
    transform: rotate(45deg);
    opacity: .9;
  }

  .g-nav__list li a:hover {
    color: #bca885;
    background-color: rgba(188, 168, 133, .1);
  }

  /* ハンバーガーはSPで表示 */
  .hamburger {
    display: block;
    z-index: 130;
  }

  /* 背景オーバーレイ（全画面） */
  .g-nav__overlay {
    position: fixed;
    top: var(--header-h, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 110;
    display: none;
  }

  /* 開いた時の状態 */
  body.is-nav-open {
    overflow: hidden;
  }

  body.is-nav-open .g-nav {
    transform: translateX(0);
  }

  body.is-nav-open .g-nav__overlay {
    display: block;
  }

  /* ハンバーガー → 白い× */
  body.is-nav-open .hamburger span {
    background: black;
  }

  body.is-nav-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.is-nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  body.is-nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* CTA（お問い合わせ）だけボタン風 */
  .g-nav__list li:last-child {
    border-bottom: none;
  }

  .g-nav__list li:last-child a {
    margin-top: 24px;
    border: 1.5px solid #e6e1d6;
    text-align: center;
    line-height: 1;
    padding: 14px 16px;
    font-weight: 500;
    letter-spacing: .06em;
    background: linear-gradient(90deg, #e7d9b0 0%, #ddcb9b 22%, #cdb682 45%, #b69163 70%, #7a5830 100%);
    background-size: 200% 100%;
    background-position: 200% 50%;
    color: #fff;
    transition: background-position 1.2s ease, color .2s ease, border-color .2s ease;
  }

}

/* ===== スクロール後（白背景＋濃色文字＋カラーのロゴ） ===== */
.site-header {
  background: #fff;
  color: #222;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.site-header .logo a {
  background-image: url("../../images/common/logo-color.png");
}

/* SPメニュー展開中は常に“スクロール後”の見た目 */
body.is-nav-open .site-header {
  background: #fff !important;
  color: #222 !important;
}

.site-header .logo a {
  background-image: url("../../images/common/logo-color.png");
}

/* ===== レイアウトの押し下げ対策（ヒーローだけ重ねたい場合） =====
   固定ヘッダーで本文が隠れないように body に上余白を付与し、
   先頭ヒーロー（.fv / .top-belt-single）は引き上げてヘッダー下に重ねる */
body {
  padding-top: var(--header-h);
}

/* トップや各詳細のヒーローセクション名をまとめて指定 */
.top-belt-single {
  margin-top: calc(-1 * var(--header-h));
  /* 背景画像がヘッダーの下に潜るように */
}

/* スクロール時やSPメニュー展開時の見た目制御は既存のままでOK */


/* footer */

.site-footer {
  background: #2f2f2f;
  color: #ddd;
  padding: 48px 0 24px;
  font-size: 14px;
  line-height: 1.9;
}

.site-footer a {
  color: #ddd;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

/* container */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PC: 左広め + 右2列（計3カラム） ===== */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(440px, 2.8fr) 1fr 1fr;
  /* 左をぐっと広く */
  gap: 32px 48px;
  align-items: start;
}

/* brand / 会社情報 */
.footer-logo img {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-company__name {
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 16px;
  color: #eee;
}

.footer-company__addr {
  margin: 0 0 14px;
}

.footer-company__area .label {
  color: #bfbfbf;
  font-weight: 600;
}

/* nav columns */
.footer-nav__title {
  font-size: 12px;
  letter-spacing: .2em;
  color: #a3a3a3;
  margin: 6px 0 14px;
  font-weight: 600;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__list li {
  margin: 6px 0;
  position: relative;
  padding-left: 1.2em;
}

.footer-nav__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #a3a3a3;
}

/* bottom */
.footer-bottom {
  margin-top: 28px;
}

.footer-bottom .copyright {
  text-align: right;
  color: #bdbdbd;
  font-size: 12px;
  margin: 0;
}

/* ===== 1024px以下：上段=ブランド全幅、下段=ナビ2カラム ===== */
@media (max-width:1024px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    /* 左右同幅で固定 */
    grid-template-areas:
      "brand brand"
      "nav1  nav2";
    gap: 24px 20px;
  }

  .footer-grid>* {
    min-width: 0;
  }

  /* はみ出し防止 */
  .footer-brand {
    grid-area: brand;
  }

  .footer-grid>.footer-nav:nth-of-type(1) {
    grid-area: nav1;
  }

  /* SERVICES */
  .footer-grid>.footer-nav:nth-of-type(2) {
    grid-area: nav2;
  }

  /* INFORMATION */

  .footer-logo img {
    width: 200px;
  }

  /* SPでロゴ大きめ */
  .footer-company__addr,
  .footer-company__area {
    font-size: 13px;
    line-height: 1.9;
  }

  .footer-nav__title {
    font-size: 11px;
    letter-spacing: .2em;
    margin-bottom: 10px;
  }

  .footer-nav__list a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom .copyright {
    text-align: center;
    margin-top: 16px;
  }
}

/* ===== 1024px以下：見た目微調整のみ（レイアウトは上と同じ2カラム） ===== */
@media (max-width:1024px) {
  .site-footer {
    padding: 36px 0 20px;
  }

  .footer-grid {
    gap: 20px 16px;
  }
}

/* animation */

/* ベース：最後ゆっくり着地 */
.slide-up-fade-in {
  opacity: 0;
  transform: translateY(var(--y, 60px));
  /* 200px→24〜40pxくらいが自然 */
  transition:
    opacity var(--dur, .9s) cubic-bezier(0, 0, 0.2, 1),
    transform var(--dur, .9s) cubic-bezier(0, 0, 0.2, 1);
  will-change: opacity, transform;
}

.slide-up-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* お好みのバリエーション */
.slide-up-fade-in.slow {
  --dur: 1.5s;
}

/* ゆっくり */
.slide-up-fade-in.fast {
  --dur: .5s;
}

/* 速め */

/* さらに柔らかい“とろっと着地” */
.slide-up-fade-in.soft {
  --dur: 1.1s;
  /* 少し強めの減速（お好みで） */
  transition-timing-function: cubic-bezier(.2, .8, .2, 1);
}

.is-anime.mask {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.is-anime.mask.active {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.is-anime.mask.slow {
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
}

.is-anime.fade {
  -webkit-filter: blur(20px);
  filter: blur(20px);
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.is-anime.fade.active {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* 調整ノブ */
:root {
  --reveal-duration: 2.8s;
  --reveal-ease: cubic-bezier(.2, .8, .2, 1);
}

/* 初期状態：少し下＆小さく＆薄く＆うっすらブラー */
.textanimation-reveal {
  --delay: 0ms;
  /* 個別遅延 */
  --y: 0px;
  /* 縦移動距離 */
  --scale: .98;
  /* ふわっと感 */
  --blur: 5px;
  /* ほんのりブラー */

  opacity: 0;
  transform: translateY(var(--y)) scale(var(--scale));
  filter: blur(var(--blur));
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--delay),
    transform var(--reveal-duration) var(--reveal-ease) var(--delay),
    filter var(--reveal-duration) var(--reveal-ease) var(--delay);
  will-change: opacity, transform, filter;
}

/* 表示状態 */
.textanimation-reveal.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* カード内を中央寄せ */
.works2-card a {
  display: block;
  text-align: center;
}

/* タイトルの下線アニメ（カード全体に hover で発火） */
.works2-card .title {
  position: relative;
  display: inline-block;
  margin: 28px auto 22px;
  text-decoration: none;
}

@media (max-width:1024px) {
  .works2-card .title {
    position: relative;
    display: inline-block;
    margin: 28px auto 22px;
    text-decoration: none;
    max-width: 96%;
  }
}


/* 線は疑似要素で作る（初期は0%） */
.works2-card .title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  /* 線の太さ */
  width: 100%;
  /* タイトル幅の 60% を線に */
  background: currentColor;
  /* 文字色と同じ色 */
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

/* カードのどこを hover しても線が伸びる */
.works2-card a:hover .title::after,
.works2-card .title:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* 既に付いている装飾があれば打ち消し */
.works2-card a,
.works2-card .title a {
  text-decoration: none;
  color: inherit;
}

/* （任意）動きを控えたい人向け */
@media (prefers-reduced-motion: reduce) {
  .works2-card .title::after {
    transition: none;
  }
}

/* staff Single Styles */

.top-belt {
  background-image: url("../../images/common/staff-beltbg");
}

.white-bar {
  width: 170px;
  height: 1.5px;
  background: #fff;
  margin: auto;
  margin-bottom: 22px;
}

.belt-title-archive {
  font-size: 72px;
  text-align: center;
  padding-top: 96px;
  font-family: "garamond-premier-pro-display", serif;
  font-weight: 300;
  font-style: normal;
  color: white;
}

.belt-subtitle-archive {
  font-size: 21px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 64px;
  font-family: "garamond-premier-pro", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}


.staff-single {
  background: #fff;
  color: #111;
  font-family: "Zen Old Mincho", serif;
}

/* 共通コンテナ */
.staff-hero__inner,
.staff-interview__inner,
.staff-contact__inner,
.staff-other__inner {
  width: min(920px, 92%);
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.staff-hero {
  padding: 64px 0 56px;
}

.staff-hero__inner {
  text-align: center;
}

.staff-hero__title {
  width: fit-content;
  font-size: 42px;
  margin: auto;
  margin-bottom: 12px;
  font-weight: bold;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.staff-hero__en {
  width: fit-content;
  font-size: 20px;
  margin: auto;
  margin-bottom: 60px;
  letter-spacing: .24em;
  font-family: "garamond-premier-pro-display", serif;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.staff-hero__photo {
  margin: 0 auto 18px;
}

.staff-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.staff-hero__catch {
  font-size: 30px;
  line-height: 1.9;
  margin: 14px 0 22px;
}

.staff-profile {
  margin-top: 8px;
}

.staff-profile__label {
  font-size: 22px;
  letter-spacing: .22em;
  margin: 0 0 10px;
}

.staff-profile__text {
  font-size: 16px;
  line-height: 2.2;
  width: min(680px, 100%);
  margin: 0 auto;
}

/* ---------- Interview ---------- */
.staff-interview {
  padding: 72px 0 64px;
  background: #F7F7F4;
}

.staff-interview__inner {
  text-align: center;
}

.staff-interview__heading {
  width: fit-content;
  font-size: 42px;
  margin: auto;
  letter-spacing: .24em;
  font-family: "garamond-premier-pro-display", serif;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.staff-interview__sub {
  width: fit-content;
  font-size: 16px;
  margin: auto;
  margin-bottom: 26px;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

/* インタビュー上の横長画像 */
.staff-interview__bgwrap {
  width: 100%;
  margin: 0 auto 22px;
}

.staff-interview__bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Q&A*/
.staff-interview__items {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
  text-align: center;
  /* スクショ寄せで中央 */
}

.staff-qa {
  padding: 0;
}

.staff-qa__q {
  font-size: 30px;
  letter-spacing: .12em;
  margin: 0 0 10px;
  font-weight: 500;
}

.staff-qa__a {
  font-size: 16px;
  line-height: 2.2;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Staff CONTACT ===== */

.staff-contact {
  padding: 80px 0;
  background: #fff;
}

.staff-contact__inner {
  width: min(800px, 92%);
  margin: 0 auto;
  text-align: center;
}

/* 外枠（薄いゴールド） */
.staff-contact__inner {
  border: 1px solid #A69953;
  padding: 44px 24px 44px;
}

/* CONTACT見出し */
.staff-contact__heading {
  width: fit-content;
  margin: auto;
  font-size: 42px;
  letter-spacing: .24em;
  font-family: "garamond-premier-pro-display", serif;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

/* サブ */
.staff-contact__sub {
  margin: 0 0 30px;
  font-size: 16px;
  letter-spacing: .10em;
}

/* ボタンエリア（2カラム） */
.staff-contact__buttons {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border: none;
  /* 前の枠が残ってたら消す */
  padding: 0;
  /* 前のpaddingが残ってたら消す */
  background: transparent;
}

/* ボタン */
.staff-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  height: 54px;
  padding: 0 18px;

  border: 1px solid rgba(0, 0, 0, .8);
  background: #fff;
  color: #111;
  text-decoration: none;
}

/* 左の小さいアイコン枠（スクショの四角） */
.staff-contact__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 0, 0, .35);
  font-size: 14px;
  line-height: 1;
}

/* 電話/メール文字 */
.staff-contact__txt {
  font-size: 16px;
  letter-spacing: .06em;
}


/* ---------- Other Staff ---------- */
.staff-other {
  padding: 70px 0 78px;
  background: #F7F7F4;
}

.staff-other__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.staff-other__heading {
  width: fit-content;
  font-size: 42px;
  letter-spacing: .24em;
  font-weight: 500;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.staff-other__all {
  font-size: 14px;
  letter-spacing: .10em;
  text-decoration: none;
  color: #212B36;
}

.staff-other__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.staff-card {
  text-decoration: none;
  color: #111;
  text-align: center;
}

.staff-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  /* スクショの縦写真っぽく */
  overflow: hidden;
  background: #eee;
}

.staff-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-card__name {
  margin: 2px 0 6px;
  font-size: 16px;
  letter-spacing: .08em;
  text-align: left;
}

.staff-card__en {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: .18em;
}

.staff-card__catch {
  font-size: 18px;
  line-height: 2.0;
  text-align: left;
  width: fit-content;
  font-weight: bold;
  margin-top: 4px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

/* single-staff-responsive */

@media (max-width: 640px) {
  .belt-title {
    font-size: 58px;
    padding-top: 220px;
    padding-bottom: 22px;
    font-family: "garamond-premier-pro-display", serif;
    font-weight: 300;
    font-style: normal;
  }

  .staff-hero {
    padding: 44px 0 44px;
  }

  .staff-hero__en {
    width: fit-content;
    font-size: 20px;
    margin: auto;
    margin-bottom: 30px;
    letter-spacing: .24em;
    font-family: "garamond-premier-pro-display", serif;
    background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  .staff-interview {
    padding: 54px 0 54px;
  }

  .staff-contact__buttons {
    grid-template-columns: 1fr;
  }

  .staff-other__grid {
    grid-template-columns: 1fr;
  }

  .staff-contact__inner {
    padding: 44px 16px 34px;
  }

  .staff-contact__heading {
    font-size: 40px;
  }

  .staff-contact__buttons {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .staff-hero__title {
    width: fit-content;
    font-size: 42px;
    margin: auto;
    margin-bottom: 12px;
    font-weight: 100;
    background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  .staff-hero__catch {
    font-size: 24px;
    line-height: 1.9;
    margin: 12px 0 20px;
  }

  .staff-profile__label {
    font-size: 20px;
    letter-spacing: .22em;
    margin: 0 0 10px;
  }

  .staff-profile__text {
    font-size: 14px;
    line-height: 2.2;
    margin: 0 auto;
    text-align: left;
  }

  .staff-interview__heading {
    width: fit-content;
    font-size: 42px;
    margin: auto;
    letter-spacing: .14em;
    font-family: "garamond-premier-pro-display", serif;
    background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  .staff-qa__q {
    font-size: 20px;
    letter-spacing: .12em;
    margin: 0 0 10px;
    text-align: left;
  }

  .staff-qa__a {
    font-size: 14px;
    line-height: 2.2;
    margin: 0 auto;
    text-align: left;
  }

  .staff-contact {
    padding: 54px 0;
    background: #fff;
  }

  .staff-contact__inner {
    width: min(800px, 82%);
    margin: 0 auto;
    text-align: center;
  }

  .staff-contact__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 54px;
    padding: 0px 0px;
    border: 1px solid rgba(0, 0, 0, .8);
    background: #fff;
    color: #111;
    text-decoration: none;
  }

  .staff-other {
    padding: 54px 0 54px;
    background: #F7F7F4;
  }

  .staff-other__all {
    display: none;
  }

  .top-belt {
    background-image: url(../../images/common/staff-beltbg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* ★ これが重要 */
  }

  .white-bar {
    width: 170px;
    height: 1.5px;
    background: #fff;
    margin: auto;
    margin-bottom: 0px;
  }

  .belt-title-archive {
    font-size: 48px;
    text-align: center;
    padding-top: 96px;
    font-family: "garamond-premier-pro-display", serif;
    font-weight: 300;
    font-style: normal;
    color: white;
  }

  .belt-subtitle-archive {
    font-size: 18px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 64px;
    font-family: "garamond-premier-pro", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
  }

  .staff-other__heading {
    width: fit-content;
    font-size: 42px;
    letter-spacing: 0.08em;
    font-weight: 500;
    background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  .staff-other__head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
  }

  .staff-other__heading {
    width: fit-content;
    font-size: 42px;
    letter-spacing: 0.08em;
    font-weight: 500;
    background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
  }

}


/* staff-archive */
/* ===== Staff Archive ===== */

.staff-archive__inner {
  width: 100%;
  margin: 0 auto;
}

.staff-archive__head {
  padding: 50px 0 20px;
  text-align: center;
}

.staff-archive__title {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: .22em;
  font-weight: 500;
}

.staff-archive__sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
}

.staff-archive__list {
  padding: 80px 0 80px;
}

.staff-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.staff-archive-card {
  text-decoration: none;
  color: #111;
}

.staff-archive-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee;
}

.staff-archive-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-archive-card__catch {
  margin: 8px 0 4px;
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: .08em;
  background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
  width: fit-content;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.staff-archive-card__name {
  margin: 0;
  font-size: 16px;
  letter-spacing: .08em;
}

.staff-archive__pager {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* archive-staff-responsive */

@media (max-width: 640px) {
  .staff-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    /* スマホ用に少し詰めると見やすい */
  }

  .staff-archive-card__catch {
    margin: 0px 0 4px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .08em;
    background: linear-gradient(90deg, #212B36 0%, #BCA885 100%);
    width: fit-content;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  .staff-archive__list {
    padding: 58px 0 58px;
  }

  .staff-archive-card__name {
    margin: 0;
    font-size: 14px;
    letter-spacing: .08em;
  }
}