@charset "UTF-8";
/* =========================================================
   TASTEM | 下層ページ デザインシステム
   構成：ダークヒーロー → 白ベース本文 → ダークフッター
   ブランドモチーフ：精密 / 1mm / ルーラー（目盛り）
   TOP（main.css）のヘッダー・フッター・トークンを継承
   ========================================================= */

:root {
  /* 本文（ライト） */
  --ink:        #16161a;
  --ink-2:      #3a3a40;
  --ink-sub:    #5a5a62;
  --ink-muted:  #9a9aa2;
  --paper:      #ffffff;
  --paper-2:    #f5f4f1;   /* 微温かみのあるオフホワイト */
  --paper-3:    #ecebe7;
  --line:       rgba(20, 20, 25, 0.12);
  --line-2:     rgba(20, 20, 25, 0.22);
  --orange:     #f99c00;
  --orange-d:   #e08a00;
  /* ダーク（ヒーロー / CTA） */
  --d-bg:       #0c0c0e;
  --d-line:     rgba(255, 255, 255, 0.12);
  --d-sub:      #c8c8cc;
  --d-muted:    #84848a;
  --lp-ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   BASE
   ========================================================= */
body.lp {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-base);
}
.lp ::selection { background: var(--orange); color: #000; }
.lp .main { display: block; }

/* 下層ヘッダー：初期は透過、スクロールで白地 */
.header--lower { transition: background 0.4s, box-shadow 0.4s; }
.header--lower.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

/* お知らせ詳細・お問い合わせ・サンクス・プライバシーポリシーはヘッダーのフィルタなし
   （上端の黒グラデーション・スクロール時の透過ブラーを無効化。文字色は各ページで黒に上書き済み） */
.news-detail-page .header,
.page-contact .header,
.page-thanks .header,
.page-privacy-policy .header {
  background: none;
}

.news-detail-page .header--lower.is-scrolled,
.page-contact .header--lower.is-scrolled,
.page-thanks .header--lower.is-scrolled,
.page-privacy-policy .header--lower.is-scrolled {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header--lower.is-scrolled .gnav__en,
.header--lower.is-scrolled .header__logo { color: var(--ink); }
.header--lower.is-scrolled .gnav__en { color: var(--ink); }
.header--lower.is-scrolled .gnav__jp { color: var(--ink-muted); }
.header--lower.is-scrolled .sp-hamburger__line { background: var(--ink); }
/* ロゴは背景に応じて2種を出し分け（暗背景=白抜き版／明背景=多色版：黒×グレー×オレンジ） */
.header--lower .header__logo-img--dark { display: none; }
.header--lower.is-scrolled .header__logo-img--light { display: none; }
.header--lower.is-scrolled .header__logo-img--dark { display: block; }

/* container */
.lp .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.lp .container-md { width: 100%; max-width: 920px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) {
  .lp .container, .lp .container-md { padding: 0 20px; }
}

/* PC のみ改行（SP では自然折り返し） */
@media (max-width: 768px) { .lp .br-pc { display: none; } }

/* reveal */
.lp [data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--lp-ease), transform 1s var(--lp-ease); }
.lp [data-reveal].is-in { opacity: 1; transform: none; }
.lp [data-reveal-d="1"] { transition-delay: 0.08s; }
.lp [data-reveal-d="2"] { transition-delay: 0.16s; }
.lp [data-reveal-d="3"] { transition-delay: 0.24s; }
.lp [data-reveal-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .lp [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* HERO 英字見出し：1文字ずつ下からせり上げ（parts.js で char 化） */
.lp .hero-band__en:not(.is-typed),
.lp .contact-hero__en:not(.is-typed) { opacity: 0; }   /* char 化前の生テキストちらつき防止（本サイトは JS 必須） */
.lp .ch { display: inline-block; overflow: hidden; vertical-align: bottom; }
.lp .ch > span { display: inline-block; transform: translateY(112%); opacity: 0; will-change: transform; }
.lp .is-typed .ch > span {
  animation: hero-char-in 0.72s var(--lp-ease) both;
  animation-delay: calc(0.12s + var(--i) * 0.045s);
}
@keyframes hero-char-in {
  from { transform: translateY(112%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lp .ch > span { transform: none; opacity: 1; animation: none; }
}

.lp .wf-edit { display: contents; }

/* 画像共通 */
.lp .ph { position: relative; overflow: hidden; background: var(--paper-3); }
.lp .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp .ph--reveal img { transform: scale(1.08); transition: transform 1.4s var(--lp-ease); }
.lp .ph--reveal.is-in img,
.lp [data-reveal].is-in .ph--reveal img { transform: scale(1); }

/* =========================================================
   PAGE HERO（ダーク・実写 + 巨大ワードマーク）
   写真は inline で --hero-img を指定
   ========================================================= */
.lp .page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 82vh;
  padding: 200px 0 70px;
  overflow: hidden;
  background-color: var(--d-bg);
  background-image:
    linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.62) 42%, rgba(8,8,10,0.30) 75%, rgba(8,8,10,0.45) 100%),
    linear-gradient(180deg, rgba(8,8,10,0.25) 0%, rgba(8,8,10,0.10) 35%, rgba(8,8,10,0.78) 100%),
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
  color: #fff;
}
/* 縦の精密軸 */
.lp .page-hero::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: 18%;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(249,156,0,0.5) 35%, rgba(249,156,0,0.5) 65%, transparent);
}
.lp .page-hero .container { position: relative; z-index: 2; width: 100%; }
.lp .page-hero__index {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.1em; color: var(--d-muted);
}
.lp .page-hero__index a { color: var(--d-muted); }
.lp .page-hero__index a:hover { color: var(--orange); }
.lp .page-hero__index .sep { color: rgba(255,255,255,0.25); }
.lp .page-hero__index .cur { color: var(--orange); }

.lp .page-hero__ttl { margin: 0; display: flex; flex-direction: column; line-height: 0.9; letter-spacing: -0.02em; }
.lp .page-hero__jp { order: 1; margin: 0 0 16px 6px; font-size: 15px; font-weight: 700; letter-spacing: 0.08em; color: var(--orange); }
.lp .page-hero__ttl > span:not(.page-hero__jp) {
  order: 2; display: block;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(64px, 12vw, 186px); color: #fff; text-transform: capitalize;
}
.lp .page-hero__lead {
  margin: 34px 0 0 6px; max-width: 560px;
  font-size: clamp(15px, 1.4vw, 18px); font-weight: 500; line-height: 2; color: var(--d-sub);
}
.lp .page-hero__scroll {
  position: absolute; right: 48px; bottom: 36px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.25em; color: var(--d-muted); writing-mode: vertical-rl;
}
.lp .page-hero__scroll::after { content: ""; width: 1px; height: 64px; background: linear-gradient(180deg, var(--orange), transparent); }
@media (max-width: 768px) {
  .lp .page-hero { min-height: 66vh; padding: 130px 0 46px; }
  .lp .page-hero::before { right: 8%; }
  .lp .page-hero__index { margin-bottom: 18px; }
  .lp .page-hero__scroll { display: none; }
}

/* =========================================================
   HERO ｜ページタイトル帯（共通：about / tech / news で共有）
   Figma Component 5（1440×300）準拠。背景写真＋黒36%の上に、
   EN 大見出し（Printvetica 70px）＋ JP 小（Noto Sans JP Bold 16px / #cfcfcf）
   を左下ベースライン揃え。page-hero の暗幕・縦オレンジ軸は解除。
   ========================================================= */
.lp .page-hero.hero-band {
  min-height: clamp(220px, 20.833vw, 300px);   /* 300/1440 */
  padding: 0;
  display: flex; align-items: flex-end;
  box-shadow: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),  /* 黒36%オーバーレイ */
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
}
/* JSONに無い装飾（縦オレンジ軸）を除去 */
.lp .page-hero.hero-band::before { display: none; content: none; }

.lp .hero-band__inner {
  display: flex;
  padding-bottom: clamp(24px, 2.361vw, 34px);   /* EN下端 → 帯下端まで約34px */
}
.lp .hero-band__title {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 4px 20px; margin: 0;                      /* EN↔JP 横間隔 約20px */
}
.lp .hero-band__en {
  font-family: var(--font-display);             /* Printvetica（未読込時フォールバック） */
  font-weight: 400;
  font-size: clamp(38px, 4.861vw, 80px);
  line-height: 1; letter-spacing: -0.02em;      /* -2% */
  color: #fff;
  font-kerning: normal; font-feature-settings: "palt" 1, "kern" 1; text-rendering: optimizeLegibility;
}
.lp .hero-band__jp {
  font-family: "Noto Sans JP", sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: 0; color: #cfcfcf;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  .lp .hero-band__jp { font-size: 14px; }
}

/* =========================================================
   ANCHOR NAV（白・スティッキー・scrollspy）
   ========================================================= */
.lp .page-anchor-nav {
  position: sticky; top: 90px; z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.lp .page-anchor-nav__list {
  display: flex; gap: 2px; max-width: 1280px; margin: 0 auto; padding: 0 40px;
  overflow-x: auto; scrollbar-width: none;
}
.lp .page-anchor-nav__list::-webkit-scrollbar { display: none; }
.lp .page-anchor-nav__list a {
  position: relative; display: inline-flex; align-items: center; height: 60px; padding: 0 18px;
  white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--ink-sub); transition: color 0.3s;
}
.lp .page-anchor-nav__list a::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--lp-ease);
}
.lp .page-anchor-nav__list a:hover { color: var(--ink); }
.lp .page-anchor-nav__list a.is-active { color: var(--orange); }
.lp .page-anchor-nav__list a.is-active::after { transform: scaleX(1); }
@media (max-width: 600px) {
  .lp .page-anchor-nav { top: 64px; }
  .lp .page-anchor-nav__list { padding: 0 12px; }
  .lp .page-anchor-nav__list a { height: 52px; padding: 0 12px; font-size: 12px; }
}

/* =========================================================
   汎用見出し
   ========================================================= */
.lp .m-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
}
.lp .m-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--orange); }

/* m-section-ttl（汎用：番号 + EN + 大JP） */
.lp .m-section-ttl {
  counter-increment: secnum; position: relative; margin: 0 0 44px;
  font-weight: 700; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.25; color: var(--ink);
}
.lp .m-section-ttl > span {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange);
}
.lp .m-section-ttl > span::before {
  content: counter(secnum, decimal-leading-zero);
  font-family: var(--font-display); font-size: 13px; color: var(--ink);
  padding: 2px 8px; border: 1px solid var(--line-2); border-radius: 100px;
}

/* sub-ttl */
.lp .about-sub-ttl {
  position: relative; margin: 52px 0 22px; padding-left: 20px;
  font-size: clamp(18px, 1.5vw, 22px); font-weight: 700; line-height: 1.5; color: var(--ink);
}
.lp .about-sub-ttl::before { content: ""; position: absolute; left: 0; top: 0.75em; transform: translateY(-50%); width: 4px; height: 1.05em; background: var(--orange); }

/* 本文 */
.lp .about-block p { color: var(--ink-sub); line-height: 1.95; font-size: 15px; }
.lp .about-list { margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.lp .about-list li { position: relative; padding-left: 22px; color: var(--ink-sub); font-size: 15px; line-height: 1.8; }
.lp .about-list li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 7px; background: var(--orange); transform: rotate(45deg); }
.lp .about-deflist { margin: 18px 0 0; }
.lp .about-deflist dt { margin-top: 22px; font-size: 16px; font-weight: 700; color: var(--ink); padding-left: 18px; border-left: 2px solid var(--orange); }
.lp .about-deflist dd { margin: 8px 0 0 18px; color: var(--ink-sub); font-size: 15px; line-height: 1.9; }

/* =========================================================
   TABLE
   ========================================================= */
.lp .about-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.lp .about-table th, .lp .about-table td {
  text-align: left; vertical-align: top; padding: 20px 24px;
  border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.85;
}
.lp .about-table tr:first-child th, .lp .about-table tr:first-child td { border-top: 1px solid var(--line); }
.lp .about-table th { width: 210px; font-weight: 700; color: var(--ink); background: var(--paper-2); }
.lp .about-table td { color: var(--ink-sub); }
.lp .about-table a { color: var(--orange-d); text-decoration: underline; text-underline-offset: 3px; }
.lp .about-table__note { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--ink-muted); }
.lp .about-table del { color: var(--ink-muted) !important; }
@media (max-width: 680px) {
  .lp .about-table, .lp .about-table tbody, .lp .about-table tr, .lp .about-table th, .lp .about-table td { display: block; width: 100%; }
  .lp .about-table th { border-bottom: none; padding: 14px 16px; }
  .lp .about-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .lp .about-table tr:first-child td { border-top: none; }
}

/* グリッド */
.lp .m-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 24px 0 0; }
.lp .m-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 24px 0 0; }
@media (max-width: 860px) { .lp .m-grid-3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp .m-grid-2col, .lp .m-grid-3col { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE LAYOUT
   ========================================================= */
.lp .page-layout { padding: 0 0 30px; }
.lp .page-layout__inner { width: 100%; }
.lp .page-content { counter-reset: secnum; }

/* =========================================================
   ABOUT｜導入リード + スタッツ
   ========================================================= */
.lp .about-intro {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: end;
  padding: 96px 0 64px;
}
.lp .about-intro__lead {
  margin: 0; font-size: clamp(22px, 2.7vw, 38px) !important; font-weight: 700;
  line-height: 1.6 !important; letter-spacing: 0.01em; color: var(--ink) !important;
}
.lp .about-intro__lead em { font-style: normal; color: var(--orange-d); }
.lp .about-intro__txt { margin: 0; font-size: 15px !important; line-height: 2 !important; color: var(--ink-sub) !important; }
@media (max-width: 860px) { .lp .about-intro { grid-template-columns: 1fr; gap: 24px; padding: 60px 0 44px; } }

.lp .about-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 8px; }
.lp .stat { padding: 34px 28px; border-right: 1px solid var(--line); }
.lp .stat:last-child { border-right: none; }
.lp .stat__en { display: block; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-d); margin-bottom: 12px; }
.lp .stat__num { font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 52px); line-height: 1; color: var(--ink); letter-spacing: -0.01em; }
.lp .stat__num small { font-size: 0.40em; color: var(--orange-d); margin-left: 4px; letter-spacing: 0; }
.lp .stat__label { margin-top: 12px; font-size: 12.5px; letter-spacing: 0.06em; color: var(--ink-muted); }
@media (max-width: 760px) {
  .lp .about-stats { grid-template-columns: repeat(2, 1fr); }
  .lp .stat:nth-child(2n) { border-right: none; }
  .lp .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* =========================================================
   ABOUT｜エディトリアル分割（左スティッキー見出し / 右本文）
   ========================================================= */
.lp .page-content--editorial { counter-reset: secnum; }
.lp .page-content--editorial .about-block {
  display: grid; grid-template-columns: 288px 1fr; gap: 72px; align-items: start;
  padding: 104px 0; border-top: 1px solid var(--line);
}
.lp .page-content--editorial .about-block:first-child { border-top: none; }
.lp .page-content--editorial .m-section-ttl {
  counter-increment: secnum; position: sticky; top: 150px; display: block; margin: 0; font-size: clamp(24px, 2.1vw, 30px);
}
.lp .page-content--editorial .m-section-ttl::before {
  content: counter(secnum, decimal-leading-zero); display: block;
  font-family: var(--font-display); font-size: clamp(56px, 6vw, 92px); line-height: 0.9;
  color: var(--paper-3); -webkit-text-stroke: 1px var(--line-2);
  border: none; padding: 0; border-radius: 0; margin-bottom: 16px;
}
.lp .page-content--editorial .m-section-ttl > span { display: block; margin-bottom: 10px; }
.lp .page-content--editorial .m-section-ttl > span::before { display: none; }
.lp .page-content--editorial .about-block__body { min-width: 0; }
.lp .page-content--editorial .about-block__body > *:first-child { margin-top: 0; }

/* フルブリード・ステートメント */
.lp .page-content--editorial .about-block--full { display: block; text-align: center; padding: 116px 0; }
.lp .page-content--editorial .about-block--full .m-section-ttl { position: static; margin: 0 0 40px; }
.lp .page-content--editorial .about-block--full .m-section-ttl::before { margin: 0 auto 16px; }
.lp .page-content--editorial .about-block--full .m-section-ttl > span { justify-content: center; }
.lp .about-block--full .about-block__body { max-width: 880px; margin: 0 auto; }
.lp .about-block--full .about-philosophy__main { border: none; padding: 0; text-align: center; font-size: clamp(24px, 3.4vw, 44px) !important; }
.lp .about-block--full .about-sub-grid { text-align: left; margin-top: 56px; }

@media (max-width: 900px) {
  .lp .page-content--editorial .about-block { grid-template-columns: 1fr; gap: 26px; padding: 64px 0; }
  .lp .page-content--editorial .m-section-ttl { position: static; top: auto; }
  .lp .page-content--editorial .m-section-ttl::before { font-size: 52px; margin-bottom: 8px; }
  .lp .page-content--editorial .about-block--full { padding: 64px 0; }
}

/* ごあいさつ */
.lp .about-greeting { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: start; }
.lp .about-greeting__img .ph { aspect-ratio: 3/4; }
.lp .about-greeting__img { position: sticky; top: 150px; }
.lp .about-greeting__body p { margin-bottom: 18px; }
.lp .about-greeting__sign { margin-top: 26px; font-size: 17px; font-weight: 700; color: var(--ink) !important; letter-spacing: 0.04em; }
@media (max-width: 820px) { .lp .about-greeting { grid-template-columns: 1fr; gap: 24px; } .lp .about-greeting__img { position: static; } }

/* 経営理念 */
.lp .about-philosophy__main { font-size: clamp(20px, 2.4vw, 30px) !important; font-weight: 700; line-height: 1.7 !important; color: var(--ink) !important; }
.lp .about-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; }
@media (max-width: 700px) { .lp .about-sub-grid { grid-template-columns: 1fr; } }
.lp .about-dept__lead { font-size: 16px !important; }

/* 部署ビジュアル */
.lp .about-dept__img { margin-top: 28px; }
.lp .about-dept__img .ph { aspect-ratio: 16/7; }

/* TASTEMの意味 */
.lp .about-tastem__list { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 32px; }
.lp .tastem-item {
  flex: 1 1 0; min-width: 140px; padding: 30px 20px; text-align: center;
  background: var(--paper-2); border: 1px solid var(--line); transition: border-color 0.4s, transform 0.4s var(--lp-ease), box-shadow 0.4s;
}
.lp .tastem-item:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.lp .tastem-item__letter { display: block; font-family: var(--font-display); font-size: 54px; line-height: 1; color: var(--orange); }
.lp .tastem-item__letter-sub { color: var(--ink); }
.lp .tastem-item__word { display: block; margin-top: 12px; font-family: var(--font-en); font-weight: 600; font-size: 15px; color: var(--ink); }
.lp .tastem-item__jp { display: block; margin-top: 4px; font-size: 12px; color: var(--ink-muted); }
.lp .tastem-item--plus { flex: 0 0 56px; min-width: 0; display: flex; align-items: center; justify-content: center; background: none; border: none; }
.lp .tastem-item--plus .tastem-item__letter { font-size: 30px; color: var(--ink-muted); }
.lp .about-tastem__text { font-size: 16px; }
@media (max-width: 700px) { .lp .tastem-item { padding: 20px 10px; } .lp .tastem-item__letter { font-size: 40px; } .lp .tastem-item--plus { flex-basis: 100%; } }

/* 社訓 */
.lp .about-motto__list { gap: 20px; }
.lp .motto-card { position: relative; padding: 38px 30px; background: var(--paper-2); border: 1px solid var(--line); overflow: hidden; transition: transform 0.4s var(--lp-ease), box-shadow 0.4s; }
.lp .motto-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.lp .motto-card::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--orange); }
.lp .motto-card__kanji { font-size: clamp(28px, 3vw, 38px); font-weight: 700; letter-spacing: 0.12em; color: var(--ink) !important; line-height: 1.3; }
.lp .motto-card__read { margin-top: 10px; font-size: 13px !important; color: var(--orange-d) !important; font-weight: 700; }
.lp .motto-card__text { margin-top: 18px; font-size: 13.5px !important; line-height: 1.9 !important; color: var(--ink-sub) !important; }

/* アクセス（マップを上・住所表を下にスタック） */
.lp .about-access { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.lp .about-access__map { position: relative; }
.lp .about-access__map .ph, .lp .about-access__map iframe { width: 100%; aspect-ratio: 16/7; border: 0; display: block; }
.lp .about-access__table th { width: 120px; }
.lp .about-access__map-label { position: absolute; left: 16px; bottom: 14px; font-family: var(--font-en); letter-spacing: 0.2em; color: #fff; background: rgba(0,0,0,0.6); padding: 4px 12px; font-size: 11px; }
.lp .ph--map {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 40px),
    var(--paper-2);
}
.lp .ph--map .pin { width: 18px; height: 18px; border-radius: 50% 50% 50% 0; background: var(--orange); transform: rotate(-45deg); box-shadow: 0 0 0 6px rgba(249,156,0,0.18); }
@media (max-width: 820px) { .lp .about-access { grid-template-columns: 1fr; } }

/* 会社概要 リード写真 */
.lp .about-feature-img { margin: 0 0 32px; }
.lp .about-feature-img .ph { aspect-ratio: 16/7; }

/* 沿革 */
.lp .about-history { margin-top: 4px; }
.lp .history-row { display: grid; grid-template-columns: 150px 1fr; gap: 32px; position: relative; padding: 30px 0 30px 28px; border-top: 1px solid var(--line); }
.lp .history-row:last-child { border-bottom: 1px solid var(--line); }
.lp .history-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line); }
.lp .history-row::after { content: ""; position: absolute; left: -3px; top: 38px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(249,156,0,0.18); }
.lp .history-row__date { font-family: var(--font-en); font-size: 15px; font-weight: 600; color: var(--orange-d); letter-spacing: 0.04em; }
.lp .history-row__head { font-size: 16px !important; font-weight: 700; color: var(--ink) !important; margin-bottom: 8px; }
.lp .history-row__body p:not(.history-row__head) { font-size: 14px !important; }
@media (max-width: 680px) { .lp .history-row { grid-template-columns: 1fr; gap: 8px; } }

/* SDGs */
.lp .about-sdgs__about { padding: 28px 30px; background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--orange); margin-bottom: 28px; }
.lp .about-sdgs__about .about-sub-ttl { margin-top: 0; }
.lp .about-sdgs__lead { font-size: 17px !important; color: var(--ink) !important; font-weight: 600; }
.lp .sdgs-award__img img { width: 100%; display: block; border: 1px solid var(--line); background: #fff; }
.lp .sdgs-card { padding: 32px 28px; background: var(--paper-2); border: 1px solid var(--line); }
.lp .sdgs-card__ttl { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 14px; padding-left: 16px; border-left: 3px solid var(--orange); }
.lp .sdgs-card__text { font-size: 14px !important; }
.lp .sdgs-card__sub { margin-top: 16px; font-size: 13px !important; color: var(--orange-d) !important; font-weight: 700; }
.lp .sdgs-card .about-list li { font-size: 13.5px; }

/* =========================================================
   下層共通CTA（ダーク・フッター前）
   ========================================================= */
.lp .page-cta {
  position: relative; padding: 116px 0; text-align: center;
  background-color: var(--d-bg);
  background-image:
    linear-gradient(rgba(12,12,14,0.66), rgba(12,12,14,0.56)),                     /* 可読性確保の暗幕（弱め・写真を見せる） */
    radial-gradient(100% 130% at 50% 0%, rgba(249,156,0,0.14), transparent 60%),    /* オレンジグロー */
    url('../img/recruit/cta-bg.webp');                                        /* スタッフ集合写真（最下層） */
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  color: #fff;
}
.lp .page-cta__en { font-family: var(--font-display); font-size: clamp(40px, 6vw, 88px); line-height: 1; color: #fff; letter-spacing: -0.02em; }
.lp .page-cta__jp { margin-top: 14px; font-size: 14px; color: var(--orange); font-weight: 700; letter-spacing: 0.08em; }
.lp .page-cta__btns { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 40px; }
.lp .page-cta__btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; font-family: var(--font-en); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; transition: transform 0.4s var(--lp-ease), background 0.3s, border-color 0.3s; }
.lp .page-cta__btn--primary { background: var(--orange); color: #000; }
.lp .page-cta__btn--primary:hover { background: var(--orange-d); transform: translateY(-3px); }
.lp .page-cta__btn--ghost { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.lp .page-cta__btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

/* =========================================================
   CUT LAYOUT（断裁テーマ：about_v3）
   - スクロールで「裁断されて現れる」クリップリビール
   - 見出し下を走るオレンジの裁断ライン
   - 斜めにシャー（剪断）した全幅フォト帯
   - 角を断ち落としたカード
   scope: body.lp.cutpage
   ========================================================= */

/* リビールを「断裁」クリップに置換 */
.lp.cutpage [data-reveal] { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 0.85s var(--lp-ease); }
.lp.cutpage [data-reveal].is-in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .lp.cutpage [data-reveal] { clip-path: none; transition: none; }
}

/* 本文ラッパ */
.lp .cut-main { padding: 0; }
.lp .cut-section { position: relative; padding: clamp(72px, 8vw, 128px) 0; }
.lp .cut-section + .cut-section { border-top: 1px solid var(--line); }

/* セクション見出し（全幅・大ナンバー・裁断ライン） */
.lp .cut-head { position: relative; margin-bottom: clamp(40px, 5vw, 72px); padding-bottom: 26px; }
.lp.cutpage .cut-head[data-reveal] { clip-path: none; }   /* 見出しはライン演出のみ */
.lp .cut-head__no {
  display: block; font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 132px); line-height: 0.78; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px var(--line-2);
}
.lp .cut-head__en {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 18px;
  font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
}
.lp .cut-head__en::before { content: ""; width: 30px; height: 1px; background: var(--orange); }
.lp .cut-head__jp { margin: 10px 0 0; font-size: clamp(28px, 4.4vw, 56px); font-weight: 700; line-height: 1.08; letter-spacing: 0.01em; color: var(--ink); }
/* 裁断ライン：左から走る + 先端のスリット */
.lp .cut-head::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.9s var(--lp-ease) 0.12s;
}
.lp .cut-head.is-in::after { transform: scaleX(1); }
.lp .cut-head--light .cut-head__no { -webkit-text-stroke-color: rgba(255,255,255,0.25); }
.lp .cut-head--light .cut-head__jp { color: #fff; }

/* 全幅・斜めシャーのフォト帯（断裁された鋼板） */
.lp .cut-band {
  position: relative; margin: clamp(40px, 6vw, 96px) 0; height: clamp(260px, 40vw, 560px);
  overflow: hidden; background: var(--d-bg);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.lp.cutpage .cut-band[data-reveal] { clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); } /* シャー形状を維持 */
.lp .cut-band img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transform: scale(1.08); transition: transform 1.8s var(--lp-ease); }
.lp .cut-band.is-in img { transform: scale(1); }
/* 断裁ワイプ（白い未裁断シート → 右へ消えて像が現れる） */
.lp .cut-band::before { content: ""; position: absolute; inset: 0; z-index: 2; background: var(--paper); transform-origin: right; transition: transform 1s var(--lp-ease); }
.lp .cut-band.is-in::before { transform: scaleX(0); }
/* オレンジの裁断刃 */
.lp .cut-band::after { content: ""; position: absolute; top: 0; bottom: 0; right: 100%; z-index: 3; width: 3px; background: var(--orange); box-shadow: 0 0 24px 2px rgba(249,156,0,0.6); opacity: 0; }
.lp .cut-band.is-in::after { animation: cut-blade 1s var(--lp-ease) forwards; }
@keyframes cut-blade {
  0% { right: 100%; opacity: 1; }
  85% { opacity: 1; }
  100% { right: 0; opacity: 0; }
}
.lp .cut-band__cap { position: absolute; left: 28px; bottom: 24px; z-index: 4; font-family: var(--font-en); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.lp .cut-band__cap::before { content: ""; display: inline-block; width: 22px; height: 1px; background: var(--orange); margin-right: 10px; vertical-align: middle; }

/* 角を断ち落としたカード */
.lp.cutpage .motto-card,
.lp.cutpage .sdgs-card,
.lp.cutpage .tastem-item,
.lp.cutpage .edu-card { clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px); }

/* 経営理念：ダーク全幅ステートメント */
.lp .cut-quote { position: relative; padding: clamp(90px, 10vw, 150px) 0; background: var(--d-bg); color: #fff; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.lp .cut-quote .cut-section { padding: 0; }
.lp .cut-quote__main {
  margin: 0; font-size: clamp(26px, 4vw, 56px); font-weight: 700; line-height: 1.5; letter-spacing: 0.01em; color: #fff;
  max-width: 18em;
}
.lp .cut-quote__main .slash { color: var(--orange); }
.lp .cut-quote .about-sub-grid { margin-top: 64px; }
.lp .cut-quote .about-sub-ttl { color: #fff; }
.lp .cut-quote .about-list li { color: var(--d-sub); }
.lp .cut-quote .about-deflist dt { color: #fff; }
.lp .cut-quote .about-deflist dd { color: var(--d-sub); }
.lp .cut-quote .cut-head__jp { color: #fff; }

/* greeting：画像を大きく振った非対称 */
.lp.cutpage .about-greeting { grid-template-columns: 1.05fr 1fr; gap: 60px; }
.lp.cutpage .about-greeting__img { position: sticky; top: 130px; }
.lp.cutpage .about-greeting__img .ph { aspect-ratio: 4/5; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%); }
@media (max-width: 820px) { .lp.cutpage .about-greeting { grid-template-columns: 1fr; } .lp.cutpage .about-greeting__img { position: static; } }

/* TASTEM：大きく */
.lp.cutpage .tastem-item__letter { font-size: clamp(48px, 6vw, 72px); }

/* 部署：プレースホルダを抑制表示 */
.lp .cut-section .about-dept__lead { font-size: 16px !important; max-width: 52em; }

/* 沿革・SDGs などはライト既存コンポーネントを流用 */
.lp .cut-section .m-grid-2col,
.lp .cut-section .m-grid-3col { margin-top: 8px; }

/* =========================================================
   CONTACT（お問い合わせ）
   左：直接の連絡手段（sticky）／右：入力フォーム
   ルーラー・1mm・オレンジ差し色の下層トンマナを継承
   ========================================================= */

/* ヘッダー補正：白基調ヒーローのため初期状態から黒文字ロゴに固定
   （スクロール後の frosted 白地は既存 is-scrolled がそのまま担う） */
.lp.contact-page .header--lower .gnav__en,
.lp.contact-page .header--lower .header__logo { color: var(--ink); }
.lp.contact-page .header--lower .gnav__jp { color: var(--ink-muted); }
.lp.contact-page .header--lower .sp-hamburger__line { background: var(--ink); }
.lp.contact-page .header--lower .header__logo-img--light { display: none; }
.lp.contact-page .header--lower .header__logo-img--dark { display: block; }

/* HERO（白基調・余白広め／大和文タイトル＋英字ラベル） */
.lp .contact-hero { position: relative; background: var(--paper); padding: 184px 0 68px; overflow: hidden; }
.lp .contact-hero .container { position: relative; z-index: 2; }
.lp .contact-hero__index {
  display: flex; align-items: center; gap: 14px; margin-bottom: 40px;
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.1em; color: var(--ink-muted);
}
.lp .contact-hero__index a:hover { color: var(--orange-d); }
.lp .contact-hero__index .sep { color: var(--line-2); }
.lp .contact-hero__index .cur { color: var(--orange-d); }

/* タイトル：英字を主役に大きく／和文は小さなラベル（英字優位の階層） */
.lp .contact-hero__ttl { margin: 0; display: flex; flex-direction: column; }
.lp .contact-hero__jp {
  order: 1; display: inline-block; margin: 0 0 14px 4px;
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 700; letter-spacing: 0.14em; color: var(--orange-d);
}
.lp .contact-hero__en {
  order: 2; display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 6.4vw, 88px); line-height: 0.92; letter-spacing: -0.02em; color: var(--ink);
}
.lp .contact-hero__lead {
  margin: 34px 0 0 4px; max-width: 620px;
  font-size: clamp(15px, 1.4vw, 18px); font-weight: 500; line-height: 2; color: var(--ink-sub);
}
@media (max-width: 768px) {
  .lp .contact-hero { padding: 118px 0 44px; }
  .lp .contact-hero__index { margin-bottom: 24px; }
}

/* 導入リード */
.lp .contact-intro { padding: 72px 0 88px; max-width: 940px; }
.lp .contact-intro__txt { margin: 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 2.1; color: var(--ink-2); }
.lp .contact-intro__txt em { font-style: normal; font-weight: 700; color: var(--orange-d); padding: 0 2px; }
@media (max-width: 768px) { .lp .contact-intro { padding: 52px 0 60px; } }

/* 2カラム */
.lp .contact-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
  padding-bottom: 130px;
}
@media (max-width: 960px) { .lp .contact-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; } }

/* ---- 左：連絡手段（sticky） ---- */
.lp .contact-aside { position: sticky; top: 128px; }
@media (max-width: 960px) { .lp .contact-aside { position: static; } }

.lp .contact-tel {
  position: relative; padding: 32px 30px 30px; background: var(--d-bg); color: #fff; overflow: hidden;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.lp .contact-tel::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--orange); }
.lp .contact-tel__label { display: block; font-size: 12px; letter-spacing: 0.06em; color: var(--d-sub); }
.lp .contact-tel__num {
  display: inline-block; margin: 12px 0 10px; white-space: nowrap; font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 33px); font-weight: 700; line-height: 1; letter-spacing: 0.01em; color: #fff;
}
.lp .contact-tel__num small { font-size: 0.42em; font-weight: 400; color: var(--d-sub); margin-left: 5px; letter-spacing: 0.02em; }
.lp .contact-tel__num:hover { color: var(--orange); }
.lp .contact-tel__hours { display: block; font-size: 12.5px; line-height: 1.7; color: var(--d-sub); }

.lp .contact-info { margin: 4px 0 0; border-bottom: 1px solid var(--line); }
.lp .contact-info__row { display: grid; grid-template-columns: 68px 1fr; gap: 16px; padding: 18px 4px; border-top: 1px solid var(--line); }
.lp .contact-info__row dt { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--orange-d); padding-top: 2px; }
.lp .contact-info__row dd { margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--ink-sub); }
.lp .contact-aside__note { margin: 20px 0 0; font-size: 12px; line-height: 1.85; color: var(--ink-muted); }

/* ---- 右：フォーム ---- */
.lp .contact-form { display: grid; gap: 0; }
/* ラベルを上、入力欄はコンテンツ幅いっぱい */
.lp .form-row { display: grid; gap: 12px; padding: 24px 0; border-top: 1px solid var(--line); }
.lp .form-row:first-child { border-top: none; padding-top: 0; }
.lp .form-row__head { display: flex; align-items: center; gap: 10px; }
.lp .form-label { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
@media (max-width: 700px) {
  .lp .form-row { padding: 22px 0; }
}

/* 必須 / 任意 バッジ */
.lp .form-badge { display: inline-flex; align-items: center; height: 20px; padding: 0 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; border-radius: 2px; }
.lp .form-badge--req { background: var(--orange); color: #000; }
.lp .form-badge--any { color: var(--ink-muted); border: 1px solid var(--line-2); }

/* テキスト入力（グレー背景・枠線なし） */
.lp .form-input {
  width: 100%; padding: 16px 18px; font-family: var(--font-base); font-size: 15px; color: var(--ink);
  background: var(--paper-2); border: none; border-radius: 2px; line-height: 1.6;
  transition: box-shadow 0.3s, background 0.3s;
}
.lp .form-input::placeholder { color: var(--ink-muted); }
.lp .form-input:hover { background: var(--paper-3); }
.lp .form-input:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 1.5px var(--orange), 0 0 0 3px rgba(249,156,0,0.14); }
.lp .form-textarea { resize: vertical; min-height: 176px; }

/* セレクト */
.lp .form-select { position: relative; }
.lp .form-select::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; pointer-events: none;
  border-right: 2px solid var(--orange-d); border-bottom: 2px solid var(--orange-d); transform: translateY(-70%) rotate(45deg);
}
.lp .form-select select {
  -webkit-appearance: none; appearance: none; width: 100%; padding: 16px 44px 16px 18px; cursor: pointer;
  font-family: var(--font-base); font-size: 15px; color: var(--ink);
  background: var(--paper-2); border: none; border-radius: 2px;
  transition: box-shadow 0.3s, background 0.3s;
}
.lp .form-select select:invalid { color: var(--ink-muted); }
.lp .form-select select:hover { background: var(--paper-3); }
.lp .form-select select:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 1.5px var(--orange), 0 0 0 3px rgba(249,156,0,0.14); }

/* 種別セグメント（総合 / 採用） */
.lp .form-segment { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .lp .form-segment { grid-template-columns: 1fr; } }
.lp .seg { position: relative; cursor: pointer; }
.lp .seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.lp .seg__box {
  display: flex; flex-direction: column; padding: 18px;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 2px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s var(--lp-ease);
}
.lp .seg__jp { font-size: 14px; font-weight: 700; color: var(--ink); }
.lp .seg:hover .seg__box { border-color: var(--ink-muted); }
.lp .seg input:checked ~ .seg__box { border-color: var(--orange); background: rgba(249,156,0,0.07); box-shadow: inset 0 0 0 1px var(--orange); }
.lp .seg input:focus-visible ~ .seg__box { box-shadow: 0 0 0 3px rgba(249,156,0,0.22); }

/* 同意 + 送信 */
.lp .form-foot { margin-top: 20px; padding-top: 40px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; }
.lp .form-agree { display: inline-flex; align-items: flex-start; gap: 10px; cursor: pointer; text-align: left; }
.lp .form-agree input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.lp .form-agree__box {
  flex: none; width: 20px; height: 20px; margin-top: 1px; background: var(--paper);
  border: 1px solid var(--line-2); border-radius: 2px; position: relative; transition: border-color 0.25s, background 0.25s;
}
.lp .form-agree__box::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 6px; height: 11px;
  border-right: 2px solid #000; border-bottom: 2px solid #000; transform: rotate(45deg) scale(0); transition: transform 0.2s var(--lp-ease);
}
.lp .form-agree input:checked ~ .form-agree__box { background: var(--orange); border-color: var(--orange); }
.lp .form-agree input:checked ~ .form-agree__box::after { transform: rotate(45deg) scale(1); }
.lp .form-agree input:focus-visible ~ .form-agree__box { box-shadow: 0 0 0 3px rgba(249,156,0,0.22); }
.lp .form-agree__txt { font-size: 14px; line-height: 1.5; color: var(--ink-sub); }
.lp .form-agree__txt a { color: var(--orange-d); text-decoration: underline; text-underline-offset: 3px; }

.lp .form-submit {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 30px; padding: 20px 52px; cursor: pointer;
  background: var(--orange); color: #000; border: none; border-radius: 2px;
  font-family: var(--font-base); font-size: 16px; font-weight: 700; letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.4s var(--lp-ease), box-shadow 0.3s;
}
.lp .form-submit:hover { background: var(--orange-d); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(249,156,0,0.28); }
.lp .form-submit:active { transform: translateY(-1px); }
.lp .form-submit__icon { position: relative; width: 26px; height: 8px; }
.lp .form-submit__icon::before { content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 1.5px; background: #000; transform: translateY(-50%); }
.lp .form-submit__icon::after { content: ""; position: absolute; right: 0; top: 50%; width: 8px; height: 8px; border-top: 1.5px solid #000; border-right: 1.5px solid #000; transform: translateY(-50%) rotate(45deg); }

/* =========================================================
   送信完了（/thanks/）
   ========================================================= */
.lp .thanks-actions {
  display: flex;
  justify-content: center;
  padding: 16px 0 96px;
}

.lp .thanks-actions__btn {
  text-decoration: none;
}
