/*
Theme Name: UZU Theme
Theme URI: https://uzuinc.co.jp/
Author: UZU Inc.
Description: 株式会社UZU コーポレートサイト用オリジナルテーマ（AI × Growth Hack Company）
Version: 1.0.1
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: uzu
*/

/* ============================================================
   AFTERGLOW Inc. — sample corporate site (monochrome edition)
   オリジナルCSS／フレームワーク不使用
   ============================================================ */

:root {
  --ink: #1e1e1e;          /* チャコール */
  --ink-deep: #16222e;   /* ネイビーチャコール */
  --gray: #8a8a8a;
  --gray-light: #eef3f7;
  --line: #d9d9d9;
  --accent: #188dc8;       /* メインブルー */
  --accent2: #0d3b66;      /* 濃紺（信頼感） */
  --accent3: #5ec3ea;      /* ライトブルー */
  --grad: linear-gradient(135deg, #5ec3ea 0%, #188dc8 45%, #0d3b66 100%);
  --font-en: "Red Hat Display", sans-serif;
  --font-ja: "Roboto", "Noto Sans JP", sans-serif;
  --pad: clamp(20px, 5vw, 78px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-ja);
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 2;            /* 32px */
  letter-spacing: 1.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
figure { margin: 0; }

/* ------------------------------------------------------------
   フェードイン（唯一のスクロール演出・控えめ）
------------------------------------------------------------ */
.fade {
  opacity: 0; translate: 0 24px;
  transition: opacity .9s ease, translate .9s ease;
}
.fade.is-in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; translate: 0 0; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; }
}

/* ------------------------------------------------------------
   ロゴ（フォント不使用・CSS図形でU/Z/Uを描画）
------------------------------------------------------------ */
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.logo__mark {
  width: 36px; height: 36px; flex: none;
  border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center;
}
.logo__body { display: flex; flex-direction: column; gap: 4px; }
.logo__word { display: inline-flex; align-items: flex-start; gap: 5px; }
.lg { display: block; }
.lg-u {
  width: 15px; height: 19px;
  border: 3px solid currentColor; border-top: 0;
  border-radius: 0 0 9px 9px;
}
.lg-mini { width: 10px; height: 12px; border-width: 2px; border-radius: 0 0 6px 6px; }
.lg-z {
  width: 15px; height: 19px; position: relative;
  border-top: 3px solid currentColor; border-bottom: 3px solid currentColor;
}
.lg-z::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 3px; height: 18px; background: currentColor;
  translate: -50% -50%; rotate: 43deg;
}
/* 手描き風の払い（参考サイトのロゴの斜線に相当） */
.lg-swash {
  display: block;
  width: 2px; height: 26px; background: currentColor;
  rotate: 28deg; margin: -4px 0 0 4px; border-radius: 2px;
}
.logo__en {
  font-family: var(--font-en); font-weight: 400;
  font-size: 10px; letter-spacing: 4px;
  color: var(--gray); line-height: 1;
}
.logo--white { color: #fff; }
.logo--white .logo__en { color: #8a8a8a; }

/* ------------------------------------------------------------
   ヘッダー
------------------------------------------------------------ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  height: 80px;
  padding-left: clamp(16px, 2.5vw, 28px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}
.logo { margin-right: auto; }

.gnav__list { display: flex; }
.gnav__list a, .header__contact {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 clamp(12px, 1.6vw, 24px);
  height: 80px;
}
.gnav__list b {
  font-family: var(--font-en); font-weight: 700;
  font-size: 18px; letter-spacing: 1px;
}
.gnav__list small, .header__contact small {
  font-size: 13px; color: var(--gray); letter-spacing: 1px;
  line-height: 1.4;
}
.gnav__list a { position: relative; }
.gnav__list a::after {
  content: ""; position: absolute; left: 22%; right: 22%; bottom: 10px;
  height: 1px; background: var(--ink);
  scale: 0 1; transition: scale .3s ease;
}
.gnav__list a:hover::after { scale: 1 1; }

.header__contact {
  background: var(--grad); color: #fff;
  min-width: 170px;
}
.header__contact b {
  font-family: var(--font-en); font-weight: 700;
  font-size: 18px; letter-spacing: 1px;
}
.header__contact small { color: rgba(255, 255, 255, .85); }
.header__contact { transition: opacity .3s; }
.header__contact:hover { opacity: .85; }

.menu-btn { display: none; }

/* ------------------------------------------------------------
   見出し共通
------------------------------------------------------------ */
.sec-title {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px; line-height: 1.1;
  display: flex; flex-direction: column;
  position: relative;
}
.news .sec-title { font-size: clamp(36px, 4vw, 48px); }
.sec-title small {
  font-family: var(--font-ja); font-weight: 700;
  font-size: 14px; color: var(--accent); letter-spacing: 2px;
  margin-top: 6px;
}
/* 遊び心：下線はブランドグラデーションでわずかに傾ける */
.sec-title::after {
  content: ""; display: block;
  width: 46px; height: 6px; background: var(--grad);
  border-radius: 3px; rotate: -2deg;
  margin-top: 16px;
}
.sec-title--center { align-items: center; text-align: center; }

/* 白抜き（ストローク）見出し＋グラデーション矩形 */
.sec-title--outline {
  align-items: center; text-align: center;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #b9c6d1;
}
.sec-title--outline::after { background: var(--grad); }
.sec-title__block {
  position: absolute; top: 58%; left: 52%;
  width: .95em; height: .5em;
  background: var(--grad);
  z-index: -1;
  rotate: 3deg;
}

/* 遊び心パーツ */
.mk {  /* マーカー風ハイライト（薄墨） */
  background: linear-gradient(transparent 62%, rgba(24, 141, 200, .28) 62%);
  padding: 0 .08em;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* 枠線ボタン */
.btn-line {
  display: block;
  width: min(300px, 80%);
  padding: 12px 10px;      /* 高さ約56px */
  border: 2px solid var(--ink);
  text-align: center;
  font-size: 16px; font-weight: 700; letter-spacing: 2px;
  transition: background .3s, color .3s, rotate .3s, scale .3s;
}
/* 遊び心：ホバーで少し傾く */
.btn-line:hover { background: var(--ink); color: #fff; rotate: -1.5deg; scale: 1.03; }
.btn-line--center { margin-inline: auto; }

/* ------------------------------------------------------------
   画像プレースホルダー（差し替え箇所）
------------------------------------------------------------ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .045) 0 10px, transparent 10px 20px),
    #ececec;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 10px; bottom: 10px;
  font-family: var(--font-en); font-size: 10px;
  letter-spacing: .12em; color: #999;
  background: rgba(255, 255, 255, .85);
  padding: 4px 10px;
}
.ph--mono { filter: grayscale(1); }

/* ------------------------------------------------------------
   ヒーロー
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: min(100svh, 880px);
  padding: 80px 0 0;
  overflow: hidden;
}
/* ファーストビューの動き：ゆっくり漂うカラーブロブ */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0;
  border-radius: 50%; pointer-events: none;
}
.hero::before {
  width: 46vw; aspect-ratio: 1;
  left: -12%; top: 4%;
  background: radial-gradient(circle, rgba(24, 141, 200, .16), transparent 66%);
  animation: blobDrift 12s ease-in-out infinite alternate;
}
.hero::after {
  width: 40vw; aspect-ratio: 1;
  right: -8%; bottom: -12%;
  background: radial-gradient(circle, rgba(13, 59, 102, .12), transparent 66%);
  animation: blobDrift 14s ease-in-out -6s infinite alternate-reverse;
}
@keyframes blobDrift {
  to { transform: translate(5%, 7%) scale(1.15); }
}
.hero__copy {
  position: absolute;
  top: clamp(120px, 22vh, 200px);
  left: clamp(24px, 24vw, 24%);
  z-index: 3;
}
.hero__title {
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 900; letter-spacing: 4px; line-height: 1.7;
}
/* 遊び心：文末にグラデーションの丸（鼓動する） */
.hero__title::after {
  content: ""; display: inline-block;
  width: .3em; height: .3em; border-radius: 50%;
  background: var(--grad); margin-left: .12em;
  animation: dotPop 2.2s ease-in-out infinite;
}
@keyframes dotPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}
/* 遊び心：英字サブは回転させたピルバッジ（ゆらゆら） */
.hero__sub {
  display: inline-block;
  margin-top: 22px; padding: 6px 22px;
  border: 3px solid var(--ink); border-radius: 999px;
  font-family: var(--font-en); font-weight: 900;
  font-size: 19px; letter-spacing: 1px; line-height: 1.8;
  color: var(--ink); background: #fff;
  animation: pillSwing 3.6s ease-in-out infinite alternate;
}
@keyframes pillSwing {
  from { rotate: -2.5deg; }
  to { rotate: 1.5deg; }
}

/* 右側：縦長テクスチャパネル×4（CSS製・画像不要） */
.hero__panels {
  position: absolute;
  top: 0; right: clamp(16px, 6vw, 120px);
  display: flex; gap: clamp(12px, 1.4vw, 22px);
  align-items: flex-start;
  z-index: 2;
}
.tex { width: clamp(64px, 6.2vw, 96px); }
.tex--1 { height: 330px; margin-top: 240px; }
.tex--2 { height: 340px; margin-top: 185px; }
.tex--3 { height: 400px; margin-top: 130px; }
.tex--4 { height: 330px; margin-top: 90px; }

/* CSSだけの抽象テクスチャ（銅×群青の岩絵具風／黒の年輪風 など） */
.tex--1 {
  background:
    radial-gradient(140% 60% at 20% 15%, rgba(24, 141, 200, .9), transparent 55%),
    radial-gradient(120% 50% at 85% 75%, rgba(13, 59, 102, .9), transparent 60%),
    radial-gradient(90% 40% at 40% 55%, rgba(160, 215, 240, .45), transparent 60%),
    #0a1420;
}
.tex--2 {
  background:
    repeating-radial-gradient(circle at 120% 110%, rgba(255, 255, 255, .13) 0 2px, transparent 2px 14px),
    radial-gradient(120% 120% at 100% 100%, #33404e, #0b1117 70%);
}
.tex--3 {
  background:
    linear-gradient(118deg, #46525f 0 26%, #131a22 26% 44%, #d7e0e8 44% 52%, #1b2530 52% 78%, #3c4956 78%),
    #131a22;
}
.tex--4 {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .16) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #2a3644, #0a1016 60%, #364453);
}
/* ファーストビューの動き：パネルがゆっくり上下する */
.tex { animation: texFloat 6s ease-in-out infinite alternate; }
.tex--2 { animation-delay: -1.5s; }
.tex--3 { animation-delay: -3s; }
.tex--4 { animation-delay: -4.5s; }
@keyframes texFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-14px); }
}

/* 全パネル共通の粒子ノイズ */
.tex::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.tex { position: relative; }

/* ヒーロー背面の矩形 */
.hero__rect { position: absolute; z-index: 1; }
.hero__rect--gray {
  background: #aebbc6;
  top: 470px; right: 0;
  width: 65%; height: 200px;
}
.hero__rect--dark {
  background: var(--ink-deep);
  top: 496px; right: 0;
  width: 61%; height: 300px;
}

/* 等高線オーナメント（JSでパス生成） */
.contour {
  position: absolute; z-index: 0;
  stroke: #8f8f8f; stroke-width: .6; fill: none; opacity: .7;
}
.contour--hero {
  left: -40px; bottom: -30px;
  width: min(46vw, 620px); height: auto;
}

/* ------------------------------------------------------------
   NEWS
------------------------------------------------------------ */
.news {
  position: relative;
  padding: clamp(70px, 10vw, 130px) var(--pad);
  background: #fff;
}
.news__inner {
  max-width: 980px; margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px 60px;
}
.news__list { display: flex; flex-direction: column; gap: 20px; }
.news__list li {
  display: flex; gap: 34px; align-items: baseline;
  font-size: 16px;
}
.news__list time {
  font-family: var(--font-ja); font-weight: 700;
  color: var(--gray);
  letter-spacing: 1.5px; white-space: nowrap;
}
.news__list p { font-weight: 500; }
.news .btn-line { grid-column: 2; margin-top: 16px; }

/* ------------------------------------------------------------
   ABOUT US
------------------------------------------------------------ */
.about {
  padding: clamp(80px, 11vw, 150px) var(--pad);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.about__statement {
  margin-top: clamp(36px, 5vw, 60px);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900; letter-spacing: 2px; line-height: 1.6;
  color: var(--ink);
}
.about__text {
  margin-top: 18px;
  font-size: 16px; line-height: 2;
  color: #4a4a4a; letter-spacing: 1.5px;
}

/* ------------------------------------------------------------
   MISSION
------------------------------------------------------------ */
.mission {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  max-width: 1200px; margin-inline: auto;
  padding: clamp(60px, 8vw, 110px) var(--pad);
}
.mission__blobs { width: 100%; height: auto; }
.blob-shape { fill: var(--ink-deep); }
.blob-label {
  fill: #fff; font-family: var(--font-en);
  font-size: 15px; letter-spacing: .06em; text-anchor: middle;
}
.blob-label-ja { font-family: var(--font-ja); font-size: 8px; fill: #bbb; letter-spacing: .2em; }
.dot-grad  { fill: url(#gradDot); }
.dot-grad2 { fill: url(#gradDot); opacity: .8; }
.blob-line { stroke: #c9c9c9; stroke-width: 1; }

.mission__statement {
  margin-top: clamp(28px, 3.5vw, 44px);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900; letter-spacing: 2px; line-height: 1.6;
}
.mission__text {
  margin-top: 16px;
  font-size: 16px; line-height: 2;
  color: #474747; letter-spacing: 1.5px;
  max-width: 44em;
}
.mission .btn-line { margin-top: 34px; }

/* 斜めの区切り */
.skew-divider {
  height: clamp(90px, 12vw, 170px);
  background: #f2f6f9;
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

/* ------------------------------------------------------------
   SERVICE
------------------------------------------------------------ */
.service {
  position: relative;
  background: #f2f6f9;
  padding: clamp(40px, 6vw, 80px) var(--pad) clamp(80px, 10vw, 130px);
}
.service .sec-title--center { margin-inline: auto; }
.orbit {
  position: absolute;
  stroke: #cfcfcf; fill: none; stroke-width: 1;
}
.orbit--service {
  top: 0; right: clamp(10px, 12vw, 220px);
  width: clamp(160px, 20vw, 260px); height: auto;
}

.sv {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  max-width: 1080px; margin: clamp(56px, 7vw, 90px) auto 0;
}
.ph--illust {
  aspect-ratio: 5 / 4; max-width: 440px; width: 100%;
  margin-inline: auto;
  background:
    repeating-linear-gradient(45deg, rgba(0, 0, 0, .04) 0 10px, transparent 10px 20px),
    #fff;
}
.sv__num {
  font-family: var(--font-en); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; line-height: 1.2;
  display: flex; flex-direction: column; position: relative;
}
/* 遊び心：番号は白抜きの太字 */
.sv__num b {
  font-size: 58px; font-weight: 900;
  color: transparent; -webkit-text-stroke: 2.5px var(--ink);
}
.sv__slash {
  position: absolute; left: 74px; top: 6px;
  width: 1px; height: 84px; background: var(--ink);
  rotate: 38deg; transform-origin: top left;
}
.sv__title {
  margin-top: 20px; padding-left: clamp(20px, 3vw, 44px);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900; letter-spacing: 3px; line-height: 1.8;
}
.sv__text {
  margin-top: 26px;
  font-size: 16px; line-height: 2;
  color: #474747; letter-spacing: 1.5px;
}
.service .btn-line--center { margin-top: clamp(60px, 8vw, 90px); }

/* 斜めのダークテクスチャ帯（CSS製） */
.tex-band {
  height: clamp(160px, 24vw, 300px);
  clip-path: polygon(0 22%, 100% 0, 100% 78%, 0 100%);
  background:
    repeating-radial-gradient(ellipse 140% 60% at 50% 130%,
      rgba(255, 255, 255, .07) 0 3px, transparent 3px 26px),
    linear-gradient(100deg, #191715, #2e2a26 45%, #14120f 80%);
}

/* ------------------------------------------------------------
   RECRUIT
------------------------------------------------------------ */
.recruit {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  max-width: 1240px; margin-inline: auto;
  padding: clamp(80px, 10vw, 130px) var(--pad);
}
.recruit__body { position: relative; }
.orbit--recruit {
  top: -60px; left: -80px;
  width: clamp(180px, 22vw, 280px); height: auto;
  z-index: -1;
}
.recruit__title {
  margin-top: clamp(24px, 3vw, 40px);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900; letter-spacing: 3px; line-height: 1.8;
}
.recruit__text {
  margin-top: 18px;
  font-size: 16px; line-height: 2;
  color: #474747; letter-spacing: 1.5px;
}
.recruit .btn-line { margin-top: 34px; }

.recruit__media {
  position: relative;
  min-height: clamp(320px, 34vw, 480px);
}
.recruit__rect {
  position: absolute; top: 18%; right: -1 * var(--pad);
  right: calc(var(--pad) * -1);
  width: 96%; height: 55%;
  background: var(--ink-deep);
}
.recruit__rect::after {
  content: ""; position: absolute; inset: 14% 8% auto auto;
  width: 60%; height: 46%;
  border: 1px solid #fff; opacity: .9;
}
.ph--rec1 {
  position: absolute; top: 0; left: 14%;
  width: 34%; aspect-ratio: 3 / 4;
  z-index: 2;
}
.ph--rec2 {
  position: absolute; top: 22%; left: 52%;
  width: 34%; aspect-ratio: 3 / 4;
  z-index: 2;
}
.contour--recruit {
  right: -60px; bottom: -50px; left: auto;
  width: 70%;
}

/* ------------------------------------------------------------
   PARTNERS
------------------------------------------------------------ */
.partners { padding-bottom: clamp(80px, 10vw, 120px); }
.partners__head { position: relative; min-height: 200px; }
.partners__photo {
  position: absolute; top: 0; right: 0;
  width: 44%; height: 200px;
}
.partners__card {
  position: relative; z-index: 2;
  background: #fff;
  max-width: 900px;
  margin-top: 50px;
  padding: clamp(24px, 4vw, 48px) var(--pad) clamp(24px, 3vw, 40px) clamp(60px, 22vw, 350px);
}
.partners__logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(36px, 6vw, 90px);
  max-width: 1100px; margin: clamp(40px, 6vw, 70px) auto 0;
  padding: 0 var(--pad);
  align-items: center;
}
/* 取引先ロゴ（テキスト＋CSSによる簡易表現。正式ロゴ画像に差し替え可） */
.plogo { font-family: var(--font-en); line-height: 1.1; letter-spacing: 0; }
.plogo--google { font-weight: 700; font-size: 30px; }
.plogo--google b { font-weight: 700; }
.cb { color: #4285f4; } .cr { color: #ea4335; }
.cy { color: #fbbc05; } .cg { color: #34a853; }
.plogo--yahoo {
  font-weight: 700; font-style: italic;
  font-size: 24px; color: #ff0033;
}
.plogo--yahoo b { font-style: normal; }
.plogo--bytedance { font-weight: 700; font-size: 24px; color: #325ab4; }
.plogo--line {
  font-weight: 900; font-size: 20px;
  background: #06c755; color: #fff;
  padding: 10px 14px; border-radius: 10px;
  letter-spacing: 1px;
}
.plogo--meta { font-weight: 700; font-size: 26px; color: #0668e1; }

/* ------------------------------------------------------------
   CONTACT
------------------------------------------------------------ */
.contact {
  position: relative;
  padding: clamp(70px, 9vw, 110px) var(--pad);
  /* 岩絵具風の抽象背景（CSS製・画像不要） */
  background:
    radial-gradient(90% 120% at 12% 20%, rgba(60, 60, 60, .8), transparent 55%),
    radial-gradient(70% 110% at 88% 70%, rgba(13, 59, 102, .75), transparent 55%),
    radial-gradient(60% 90% at 55% 100%, rgba(94, 195, 234, .4), transparent 60%),
    #171126;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.contact__card {
  position: relative;
  max-width: 720px; margin-inline: auto;
  background: rgba(244, 244, 244, .94);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 60px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.contact__text {
  margin-top: 24px;
  font-size: 16px; line-height: 2;
  color: #474747; letter-spacing: 1.5px;
}
.contact .btn-line { margin-top: 28px; background: #fff; }
.contact .btn-line:hover { background: var(--ink); }

/* ------------------------------------------------------------
   フッター
------------------------------------------------------------ */
.footer {
  background: var(--ink-deep); color: #fff;
  padding: clamp(48px, 6vw, 70px) var(--pad) 24px;
}
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: space-between;
  max-width: 1100px; margin-inline: auto;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 38px); }
.footer__nav a {
  font-family: var(--font-en); font-weight: 400;
  font-size: 16px; letter-spacing: 1px;
  opacity: .9; transition: opacity .3s;
}
.footer__nav a:hover { opacity: .55; }
.footer__privacy {
  max-width: 1100px; margin: 26px auto 0; text-align: right;
}
.footer__privacy a {
  font-family: var(--font-en); font-size: 12px;
  color: #8a8a8a; letter-spacing: 1px;
}
.footer__hr {
  max-width: 1100px; margin: 14px auto 0;
  border: 0; border-top: 1px solid #4a4a4a;
}
.footer__copy {
  margin-top: 16px; text-align: center;
  font-size: 10px; color: #9a9a9a; letter-spacing: .14em;
}

/* ------------------------------------------------------------
   レスポンシブ
------------------------------------------------------------ */
@media (max-width: 960px) {
  .hero__copy { left: var(--pad); }
  .hero__panels { right: var(--pad); opacity: .85; }
  .tex { width: 52px; }
  .tex--1 { height: 200px; margin-top: 170px; }
  .tex--2 { height: 210px; margin-top: 120px; }
  .tex--3 { height: 200px; margin-top: 80px; }
  .tex--4 { height: 210px; margin-top: 40px; }
}

@media (max-width: 768px) {
  .gnav { display: none; }
  .gnav.is-open {
    display: block;
    position: fixed; top: 80px; left: 0; right: 0;
    background: #fff; box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
  }
  .gnav.is-open .gnav__list { flex-direction: column; }
  .gnav.is-open .gnav__list a { height: 60px; }
  .header__contact { min-width: 120px; }
  .menu-btn {
    display: flex; flex-direction: column; gap: 6px;
    align-items: center; justify-content: center;
    width: 56px; height: 80px;
    background: none; border: 0; cursor: pointer;
  }
  .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); transition: .3s; }
  .menu-btn.is-open span:nth-child(1) { translate: 0 3.75px; rotate: 45deg; }
  .menu-btn.is-open span:nth-child(2) { translate: 0 -3.75px; rotate: -45deg; }

  .hero { min-height: auto; padding-bottom: 40px; }
  .hero__copy { position: static; margin: 90px var(--pad) 0; }
  .hero__panels {
    position: static; margin: 40px var(--pad) 0;
    justify-content: center;
  }
  .tex { margin-top: 0 !important; }
  .tex--1, .tex--3 { margin-top: 24px !important; }
  .hero__rect--gray { top: auto; bottom: 120px; height: 140px; }
  .hero__rect--dark { top: auto; bottom: 0; height: 200px; }

  .news__inner { grid-template-columns: 1fr; }
  .news .btn-line { grid-column: 1; margin-inline: auto; }

  .mission { grid-template-columns: 1fr; }
  .sv { grid-template-columns: 1fr; }
  .sv--imgright .ph--illust { order: -1; }

  .recruit { grid-template-columns: 1fr; }
  .recruit__media { min-height: 300px; }

  .partners__photo { width: 70%; height: 140px; }
  .partners__card { margin-top: 90px; padding-left: var(--pad); }
}

/* ============================================================
   下層ページ共通
   ============================================================ */
.page-hero {
  position: relative;
  padding: 150px var(--pad) 64px;
  background: var(--gray-light);
  overflow: hidden;
}
.page-hero__crumb {
  font-family: var(--font-en); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; color: var(--gray);
  margin-bottom: 18px;
}
.page-hero__crumb a:hover { color: var(--ink); }
.page-hero .orbit {
  top: -40px; right: clamp(10px, 8vw, 140px);
  width: clamp(160px, 18vw, 240px); height: auto;
}

.sect {
  padding: clamp(64px, 9vw, 110px) var(--pad);
  max-width: 1060px; margin-inline: auto;
}
.sect--wide { max-width: 1240px; }
.sect__lead {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900; letter-spacing: 2px; line-height: 1.7;
}
.sect__text {
  margin-top: 22px;
  font-size: 16px; line-height: 2;
  color: #474747; letter-spacing: 1.5px;
}

/* 3つの価値観カード */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}
.value-card {
  border: 2px solid var(--ink);
  padding: 28px 24px 30px;
  position: relative;
  background: #fff;
  transition: rotate .3s, scale .3s, box-shadow .3s;
}
.value-card:hover { rotate: -1deg; scale: 1.02; box-shadow: 8px 8px 0 rgba(43, 43, 43, .12); }
.value-card b {
  font-family: var(--font-en); font-weight: 900;
  font-size: 44px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--ink);
}
.value-card h3 {
  margin-top: 14px;
  font-size: 20px; font-weight: 900; letter-spacing: 2px;
}
.value-card p {
  margin-top: 10px;
  font-size: 14px; line-height: 1.9; color: #474747;
}

/* 会社概要テーブル */
.c-table { margin-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line); }
.c-table dl {
  display: grid; grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.c-table dt {
  padding: 20px 10px; font-weight: 900; letter-spacing: 2px;
  font-size: 15px;
}
.c-table dd { padding: 20px 10px; font-size: 15px; color: #333; }

/* サービス詳細ブロック */
.sv-detail { margin-top: clamp(48px, 6vw, 72px); }
.sv-detail + .sv-detail { border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); }
.sv-detail__head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.sv-detail__num {
  font-family: var(--font-en); font-weight: 900; font-size: 52px;
  color: transparent; -webkit-text-stroke: 2.5px var(--ink);
  line-height: 1;
}
.sv-detail__title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; letter-spacing: 3px; }
.sv-detail__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 14px; rotate: -1deg;
}
.tag:nth-child(2n) { rotate: 1.5deg; }

/* フロー */
.flow { margin-top: clamp(36px, 5vw, 56px); counter-reset: step; }
.flow li {
  position: relative; counter-increment: step;
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  padding: 24px 0; border-bottom: 1px dashed var(--line);
  align-items: center;
}
.flow li::before {
  content: "0" counter(step);
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-family: var(--font-en); font-weight: 900; font-size: 18px;
  rotate: -6deg;
}
.flow h3 { font-size: 18px; font-weight: 900; letter-spacing: 2px; }
.flow p { font-size: 14px; color: #474747; line-height: 1.9; }

/* 採用：職種カード */
.job-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 30px);
  margin-top: clamp(36px, 5vw, 56px);
}
.job-card {
  border: 2px solid var(--ink); background: #fff;
  padding: 28px;
  transition: rotate .3s, box-shadow .3s;
}
.job-card:hover { rotate: 1deg; box-shadow: 8px 8px 0 rgba(43, 43, 43, .12); }
.job-card h3 { font-size: 21px; font-weight: 900; letter-spacing: 2px; }
.job-card .en {
  display: block; font-family: var(--font-en); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; color: var(--gray);
  margin-bottom: 8px;
}
.job-card p { margin-top: 12px; font-size: 14px; color: #474747; line-height: 1.9; }
.job-card .job-meta { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; }

/* フォーム */
.form { margin-top: clamp(32px, 4vw, 48px); display: grid; gap: 26px; }
.form label { display: block; font-weight: 900; letter-spacing: 2px; font-size: 15px; }
.form .req {
  display: inline-block; margin-left: 10px;
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--grad); border-radius: 4px;
  padding: 1px 8px; vertical-align: 2px; rotate: -2deg;
}
.form input, .form textarea, .form select {
  width: 100%; margin-top: 10px;
  border: 2px solid var(--ink); background: #fff;
  padding: 14px 16px; font-size: 16px;
  font-family: var(--font-ja); letter-spacing: 1px;
}
.form input:focus, .form textarea:focus { outline: 3px solid rgba(61, 90, 128, .35); }
.form textarea { min-height: 180px; resize: vertical; }
.form button {
  cursor: pointer; background: var(--ink); color: #fff;
  border: 2px solid var(--ink);
  width: min(300px, 80%); margin-inline: auto;
  padding: 16px 10px;
  font-size: 16px; font-weight: 700; letter-spacing: 2px;
  font-family: var(--font-ja);
  transition: rotate .3s, scale .3s, background .3s;
}
.form button:hover { rotate: -1.5deg; scale: 1.03; background: #000; }
.form .note { font-size: 12px; color: var(--gray); text-align: center; }

/* NEWS一覧 */
.news-page { border-top: 1px solid var(--line); margin-top: clamp(28px, 4vw, 40px); }
.news-page li { border-bottom: 1px solid var(--line); }
.news-page a {
  display: flex; gap: 30px; align-items: baseline;
  padding: 24px 8px; font-size: 16px;
  transition: background .3s, padding-left .3s;
}
.news-page a:hover { background: rgba(43, 43, 43, .04); padding-left: 20px; }
.news-page time { font-weight: 700; color: var(--gray); white-space: nowrap; letter-spacing: 1.5px; }
.news-page p { font-weight: 500; }

/* プライバシーポリシー */
.policy h3 {
  margin-top: 40px; font-size: 19px; font-weight: 900; letter-spacing: 2px;
  padding-left: 14px; border-left: 5px solid;
  border-image: var(--grad) 1;
}
.policy p { margin-top: 12px; font-size: 15px; color: #333; line-height: 2; }

/* CTAバンド（下層ページ下部） */
.cta-band {
  text-align: center;
  padding: clamp(56px, 8vw, 90px) var(--pad);
  background: var(--gray-light);
}
.cta-band .sect__lead { margin-bottom: 10px; }
.cta-band .btn-line { margin: 28px auto 0; }

@media (max-width: 768px) {
  .value-grid { grid-template-columns: 1fr; }
  .job-grid { grid-template-columns: 1fr; }
  .c-table dl { grid-template-columns: 1fr; }
  .c-table dt { padding-bottom: 0; }
}

/* ============================================================
   マーケティングソリューション一覧
   ============================================================ */
.sol { max-width: 1080px; margin: clamp(56px, 7vw, 84px) auto 0; }
.sol__title {
  text-align: center;
  font-weight: 900; font-size: clamp(17px, 2vw, 21px); letter-spacing: 2px;
}
.sol__title::before, .sol__title::after { content: "＼"; margin: 0 14px; color: var(--gray); }
.sol__title::after { content: "／"; }
.sol-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: 30px;
}
.sol-grid li {
  border: 2px solid var(--ink); background: #fff;
  text-align: center; padding: 20px 8px 16px;
  font-weight: 900; font-size: clamp(15px, 1.6vw, 18px); letter-spacing: 1px;
  line-height: 1.5;
  transition: rotate .3s, box-shadow .3s, translate .3s;
}
.sol-grid li small {
  display: block; margin-top: 4px;
  font-family: var(--font-en); font-weight: 700;
  font-size: 11px; letter-spacing: 2px; color: var(--gray);
}
/* 遊び心：ホバーで互い違いに傾く */
.sol-grid li:hover { box-shadow: 6px 6px 0 rgba(43, 43, 43, .15); translate: 0 -3px; }
.sol-grid li:nth-child(odd):hover { rotate: -2deg; }
.sol-grid li:nth-child(even):hover { rotate: 2deg; }

@media (max-width: 768px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   下層ページの背景・カラー強化
   ============================================================ */
.page-hero {
  background: #f2f6f9;
}
/* 遊び心：ページ名の横で静かに揺れるグラデーションの粒 */
.page-hero::after {
  content: ""; position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad);
  right: clamp(60px, 18vw, 300px); bottom: 56px;
  animation: dotPop 2.6s ease-in-out infinite;
  pointer-events: none;
}
.page-hero .sec-title { position: relative; z-index: 1; }

/* セクションの色付き装飾 */
.sect { position: relative; }
.sect__lead .grad-text { display: inline-block; }

/* 番号・カードの色分け */
.value-card:nth-child(1) b { -webkit-text-stroke-color: var(--accent); }
.value-card:nth-child(2) b { -webkit-text-stroke-color: var(--accent3); }
.value-card:nth-child(3) b { -webkit-text-stroke-color: var(--accent2); }
.value-card:hover { box-shadow: 8px 8px 0 rgba(13, 59, 102, .18); }
.value-card:nth-child(odd):hover { box-shadow: 8px 8px 0 rgba(24, 141, 200, .25); }

.sv-detail:nth-of-type(3n+1) .sv-detail__num { -webkit-text-stroke-color: var(--accent); }
.sv-detail:nth-of-type(3n+2) .sv-detail__num { -webkit-text-stroke-color: var(--accent3); }
.sv-detail:nth-of-type(3n)   .sv-detail__num { -webkit-text-stroke-color: var(--accent2); }

.sv-detail__tags .tag:nth-child(3n+1) { border-color: var(--accent); color: var(--accent); }
.sv-detail__tags .tag:nth-child(3n+2) { border-color: var(--accent3); color: var(--accent3); }
.sv-detail__tags .tag:nth-child(3n)   { border-color: var(--accent2); color: var(--accent2); }

.job-card:hover { box-shadow: 8px 8px 0 rgba(24, 141, 200, .25); }
.job-card:nth-child(even):hover { box-shadow: 8px 8px 0 rgba(13, 59, 102, .18); }
.job-card .en { color: var(--accent); }

.sol-grid li:nth-child(odd):hover { box-shadow: 6px 6px 0 rgba(24, 141, 200, .3); }
.sol-grid li:nth-child(even):hover { box-shadow: 6px 6px 0 rgba(13, 59, 102, .25); }

/* トップのサービス番号もカラーに */
.sv__num b { -webkit-text-stroke-color: var(--accent); }

/* CTAバンド：カラフルな暗色バンドに */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 130% at 8% 10%, rgba(60, 60, 60, .5), transparent 55%),
    radial-gradient(80% 130% at 92% 90%, rgba(13, 59, 102, .45), transparent 55%),
    #15121c;
  color: #fff;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .btn-line { border-color: #fff; color: #fff; }
.cta-band .btn-line:hover { background: #fff; color: var(--ink); }
.cta-band .mk { background: linear-gradient(transparent 62%, rgba(255, 255, 255, .35) 62%); }

/* 会社概要テーブルの見出しに色 */
.c-table dt { border-left: 4px solid; border-image: var(--grad) 1; padding-left: 16px; }

/* フローの見出し色 */
.flow h3 { color: var(--ink); }
.flow li:hover::before { rotate: 6deg; transition: rotate .3s; }

/* ============================================================
   背景の賑やかし（ドットグリッド・巨大アウトライン文字）
   ============================================================ */
.footer { position: relative; }

/* セクション背面の巨大アウトライン英字 */
.mission { position: relative; overflow: hidden; }
.mission::before {
  content: "GROWTH"; position: absolute; z-index: -1;
  right: -3%; top: 4%;
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(90px, 15vw, 220px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(30, 30, 30, .07);
  pointer-events: none; user-select: none;
}
.about { position: relative; overflow: hidden; }
.about::before {
  content: "VISION"; position: absolute; z-index: -1;
  left: -2%; bottom: 2%;
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(90px, 16vw, 240px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(30, 30, 30, .07);
  pointer-events: none; user-select: none;
}
.partners { position: relative; overflow: hidden; }
.partners::before {
  content: "PARTNERS"; position: absolute; z-index: -1;
  left: 50%; translate: -50% 0; bottom: -2%;
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(70px, 12vw, 180px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(30, 30, 30, .07);
  pointer-events: none; user-select: none; white-space: nowrap;
}

/* トップ：NEWS とRECRUITに淡いカラー背景 */

/* 下層：セクションを交互に色付け（フルブリード帯） */
main > .sect:nth-of-type(even) {
  max-width: none;
  background: #f2f6f9;
}
main > .sect:nth-of-type(even) > * { max-width: 1060px; margin-inline: auto; }
main > .sect:nth-of-type(even).sect--wide > * { max-width: 1240px; }

/* 下層セクションにも巨大英字 */
.sect { overflow: visible; }
.sect[data-bg] { position: relative; overflow: hidden; }
.sect[data-bg]::before {
  content: attr(data-bg); position: absolute; z-index: 0;
  right: -2%; top: 0;
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(80px, 13vw, 190px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(30, 30, 30, .07);
  pointer-events: none; user-select: none;
}
.sect[data-bg] > * { position: relative; z-index: 1; }

/* ドットグリッド（好評につき復活・背景色のあるセクションでは隠れる） */
body {
  background-image: radial-gradient(rgba(30, 30, 30, .06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

/* ============================================================
   流体アート背景（CSS+SVGフィルターのみ・画像ファイル不要）
   ============================================================ */
:root {
  --marble: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'1600'%20height%3D'600'%20viewBox%3D'0%200%201600%20600'%20preserveAspectRatio%3D'xMidYMid%20slice'%3E%3Cdefs%3E%3Cfilter%20id%3D'm'%20x%3D'-50%25'%20y%3D'-50%25'%20width%3D'200%25'%20height%3D'200%25'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.0022%200.011'%20numOctaves%3D'5'%20seed%3D'4'%2F%3E%3CfeDisplacementMap%20in%3D'SourceGraphic'%20scale%3D'330'%2F%3E%3C%2Ffilter%3E%3Cfilter%20id%3D'm2'%20x%3D'-50%25'%20y%3D'-50%25'%20width%3D'200%25'%20height%3D'200%25'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.004%200.016'%20numOctaves%3D'4'%20seed%3D'19'%2F%3E%3CfeDisplacementMap%20in%3D'SourceGraphic'%20scale%3D'260'%2F%3E%3C%2Ffilter%3E%3Cfilter%20id%3D'g'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.9'%20numOctaves%3D'2'%2F%3E%3CfeColorMatrix%20type%3D'saturate'%20values%3D'0'%2F%3E%3C%2Ffilter%3E%3ClinearGradient%20id%3D'sh'%20x1%3D'0'%20y1%3D'0'%20x2%3D'0'%20y2%3D'1'%3E%3Cstop%20offset%3D'0'%20stop-color%3D'%23000'%20stop-opacity%3D'0.35'%2F%3E%3Cstop%20offset%3D'0.45'%20stop-color%3D'%23000'%20stop-opacity%3D'0'%2F%3E%3Cstop%20offset%3D'1'%20stop-color%3D'%23000'%20stop-opacity%3D'0.4'%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D'1600'%20height%3D'600'%20fill%3D'%23070d15'%2F%3E%3Cg%20filter%3D'url(%23m)'%3E%3Cellipse%20cx%3D'470'%20cy%3D'300'%20rx%3D'620'%20ry%3D'270'%20fill%3D'%230f4a75'%20transform%3D'rotate(-8%20470%20300)'%2F%3E%3Cellipse%20cx%3D'420'%20cy%3D'210'%20rx%3D'430'%20ry%3D'130'%20fill%3D'%23188dc8'%20transform%3D'rotate(-12%20420%20210)'%2F%3E%3Cellipse%20cx%3D'530'%20cy%3D'390'%20rx%3D'340'%20ry%3D'85'%20fill%3D'%237fc6e8'%20opacity%3D'0.7'%20transform%3D'rotate(-6%20530%20390)'%2F%3E%3Cellipse%20cx%3D'340'%20cy%3D'330'%20rx%3D'430'%20ry%3D'42'%20fill%3D'%23081120'%20transform%3D'rotate(-10%20340%20330)'%2F%3E%3Cellipse%20cx%3D'620'%20cy%3D'170'%20rx%3D'310'%20ry%3D'32'%20fill%3D'%23070d15'%20transform%3D'rotate(-14%20620%20170)'%2F%3E%3Cellipse%20cx%3D'90'%20cy%3D'520'%20rx%3D'300'%20ry%3D'190'%20fill%3D'%230b1b2e'%2F%3E%3Cellipse%20cx%3D'820'%20cy%3D'100'%20rx%3D'260'%20ry%3D'85'%20fill%3D'%238fa6b8'%20opacity%3D'0.4'%20transform%3D'rotate(-5%20820%20100)'%2F%3E%3Cellipse%20cx%3D'1000'%20cy%3D'360'%20rx%3D'240'%20ry%3D'180'%20fill%3D'%23060a10'%2F%3E%3Cellipse%20cx%3D'1340'%20cy%3D'250'%20rx%3D'330'%20ry%3D'240'%20fill%3D'%230d3b66'%20transform%3D'rotate(10%201340%20250)'%2F%3E%3Cellipse%20cx%3D'1520'%20cy%3D'470'%20rx%3D'270'%20ry%3D'210'%20fill%3D'%230a2744'%2F%3E%3Cellipse%20cx%3D'1430'%20cy%3D'150'%20rx%3D'220'%20ry%3D'90'%20fill%3D'%232f6ea3'%20opacity%3D'0.6'%20transform%3D'rotate(12%201430%20150)'%2F%3E%3Cellipse%20cx%3D'1180'%20cy%3D'560'%20rx%3D'280'%20ry%3D'120'%20fill%3D'%23050b13'%20opacity%3D'0.9'%2F%3E%3C%2Fg%3E%3Cg%20filter%3D'url(%23m2)'%20opacity%3D'0.8'%3E%3Cellipse%20cx%3D'500'%20cy%3D'260'%20rx%3D'400'%20ry%3D'16'%20fill%3D'%2306101c'%20transform%3D'rotate(-9%20500%20260)'%2F%3E%3Cellipse%20cx%3D'430'%20cy%3D'420'%20rx%3D'360'%20ry%3D'14'%20fill%3D'%23a5d8f0'%20opacity%3D'0.55'%20transform%3D'rotate(-7%20430%20420)'%2F%3E%3Cellipse%20cx%3D'650'%20cy%3D'330'%20rx%3D'300'%20ry%3D'12'%20fill%3D'%230c2e4d'%20transform%3D'rotate(-11%20650%20330)'%2F%3E%3Cellipse%20cx%3D'260'%20cy%3D'150'%20rx%3D'260'%20ry%3D'12'%20fill%3D'%231477ab'%20opacity%3D'0.8'%20transform%3D'rotate(-13%20260%20150)'%2F%3E%3Cellipse%20cx%3D'1380'%20cy%3D'350'%20rx%3D'260'%20ry%3D'14'%20fill%3D'%23081527'%20transform%3D'rotate(9%201380%20350)'%2F%3E%3Cellipse%20cx%3D'1300'%20cy%3D'180'%20rx%3D'220'%20ry%3D'10'%20fill%3D'%234d94c4'%20opacity%3D'0.5'%20transform%3D'rotate(11%201300%20180)'%2F%3E%3C%2Fg%3E%3Crect%20width%3D'1600'%20height%3D'600'%20fill%3D'url(%23sh)'%2F%3E%3Crect%20width%3D'1600'%20height%3D'600'%20filter%3D'url(%23g)'%20opacity%3D'0.18'%2F%3E%3C%2Fsvg%3E");
  --splash: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'1600'%20height%3D'700'%20viewBox%3D'0%200%201600%20700'%20preserveAspectRatio%3D'xMidYMid%20slice'%3E%3Cdefs%3E%3Cfilter%20id%3D'm'%20x%3D'-50%25'%20y%3D'-50%25'%20width%3D'200%25'%20height%3D'200%25'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.003%200.009'%20numOctaves%3D'5'%20seed%3D'7'%2F%3E%3CfeDisplacementMap%20in%3D'SourceGraphic'%20scale%3D'280'%2F%3E%3C%2Ffilter%3E%3Cfilter%20id%3D'g'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.9'%20numOctaves%3D'2'%2F%3E%3CfeColorMatrix%20type%3D'saturate'%20values%3D'0'%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Crect%20width%3D'1600'%20height%3D'700'%20fill%3D'%23eef5fa'%2F%3E%3Cg%20filter%3D'url(%23m)'%3E%3Cellipse%20cx%3D'150'%20cy%3D'150'%20rx%3D'340'%20ry%3D'260'%20fill%3D'%230d3b66'%2F%3E%3Cellipse%20cx%3D'100'%20cy%3D'580'%20rx%3D'300'%20ry%3D'220'%20fill%3D'%230f2c4a'%2F%3E%3Cellipse%20cx%3D'330'%20cy%3D'380'%20rx%3D'260'%20ry%3D'130'%20fill%3D'%23188dc8'%20opacity%3D'0.85'%20transform%3D'rotate(-18%20330%20380)'%2F%3E%3Cellipse%20cx%3D'420'%20cy%3D'640'%20rx%3D'330'%20ry%3D'150'%20fill%3D'%235ec3ea'%20opacity%3D'0.8'%20transform%3D'rotate(-8%20420%20640)'%2F%3E%3Cellipse%20cx%3D'290'%20cy%3D'70'%20rx%3D'220'%20ry%3D'95'%20fill%3D'%23188dc8'%20opacity%3D'0.8'%20transform%3D'rotate(-14%20290%2070)'%2F%3E%3Cellipse%20cx%3D'1540'%20cy%3D'580'%20rx%3D'300'%20ry%3D'220'%20fill%3D'%230d3b66'%2F%3E%3Cellipse%20cx%3D'1580'%20cy%3D'100'%20rx%3D'200'%20ry%3D'140'%20fill%3D'%235ec3ea'%20opacity%3D'0.7'%2F%3E%3Cellipse%20cx%3D'860'%20cy%3D'360'%20rx%3D'430'%20ry%3D'260'%20fill%3D'%23e2eef6'%20opacity%3D'0.8'%2F%3E%3Cellipse%20cx%3D'1070'%20cy%3D'650'%20rx%3D'240'%20ry%3D'100'%20fill%3D'%2314507c'%20opacity%3D'0.75'%20transform%3D'rotate(6%201070%20650)'%2F%3E%3C%2Fg%3E%3Crect%20width%3D'1600'%20height%3D'700'%20filter%3D'url(%23g)'%20opacity%3D'0.1'%2F%3E%3C%2Fsvg%3E");
}

/* 下層FV：銅×濃紺のダークマーブル */
.page-hero {
  background: var(--marble) center / cover no-repeat, #070d15;
}
.page-hero .sec-title { color: #fff; }
.page-hero .sec-title small { color: #9fd4ee; }
.page-hero__crumb { color: rgba(255, 255, 255, .65); }
.page-hero__crumb a:hover { color: #fff; }
.page-hero .orbit { stroke: rgba(255, 255, 255, .28); }

/* トップのCONTACT帯も同じマーブルに（参考サイトと同じ質感） */
.contact {
  background: var(--marble) center / cover no-repeat, #070d15;
}
.contact::before { display: none; }

/* CTA帯：ビビッドなスプラッシュ×濃紺テキスト */
.cta-band {
  background: var(--splash) center / cover no-repeat, #eef5fa;
  color: #0d2b45;
}
.cta-band::before { display: none; }
.cta-band .btn-line {
  border-color: #0d2b45; color: #0d2b45;
  background: rgba(255, 255, 255, .5);
}
.cta-band .btn-line:hover { background: #0d2b45; color: #fff; }
.cta-band .mk { background: linear-gradient(transparent 62%, rgba(255, 255, 255, .6) 62%); }

/* 公式ロゴ */
.logo-img { height: 38px; width: auto; display: block; }
.logo--white .logo-img { filter: brightness(0) invert(1); }

/* 余白の微調整 */
.sect { padding: clamp(76px, 10vw, 130px) var(--pad); }
.sect__text { margin-top: 26px; max-width: 46em; }
.page-hero { padding: 170px var(--pad) 76px; }
.cta-band { padding: clamp(72px, 9vw, 110px) var(--pad); }
.c-table dt, .c-table dd { padding-top: 22px; padding-bottom: 22px; }
.form { max-width: 720px; }

/* ============================================================
   ファーストビュー強化（行のせり上がり・パネル入場・回転リング）
   ============================================================ */
.hline { display: block; overflow: hidden; }
.hline > span {
  display: inline-block; translate: 0 115%;
  animation: lineUp 1s cubic-bezier(.22, 1, .36, 1) .15s forwards;
}
.hline:nth-child(2) > span { animation-delay: .35s; }
@keyframes lineUp { to { translate: 0 0; } }

/* グラデ丸は2行目の行末に付ける */
.hero__title::after { content: none; }
.hero__title .hline:last-child > span::after {
  content: ""; display: inline-block;
  width: .3em; height: .3em; border-radius: 50%;
  background: var(--grad); margin-left: .12em;
  animation: dotPop 2.2s ease-in-out infinite;
}

/* 「創造」のグラデーションが流れる */
.grad-text {
  background-size: 220% 100%;
  animation: gradShift 4.5s ease-in-out infinite alternate;
}
@keyframes gradShift {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

/* タイトル背後でゆっくり回る破線リング */
.hero__copy::before {
  content: ""; position: absolute; z-index: -1;
  width: clamp(240px, 26vw, 360px); aspect-ratio: 1;
  left: -70px; top: -80px;
  border: 2px dashed rgba(24, 141, 200, .45);
  border-radius: 50%;
  animation: spin 36s linear infinite;
}
@keyframes spin { to { rotate: 360deg; } }

/* パネルは右から滑り込んで、その後ふわふわ浮く */
.tex {
  opacity: 0;
  animation:
    texIn .9s cubic-bezier(.22, 1, .36, 1) forwards,
    texFloat 6s ease-in-out 1.6s infinite alternate;
}
.tex--1 { animation-delay: .55s, 1.6s; }
.tex--2 { animation-delay: .7s, 2.1s; }
.tex--3 { animation-delay: .85s, 2.6s; }
.tex--4 { animation-delay: 1s, 3.1s; }
@keyframes texIn {
  from { opacity: 0; transform: translate(70px, 0); }
  to { opacity: 1; transform: translate(0, 0); }
}

/* NEWS一覧：非リンク行（記事ページ作成後は a に戻す） */
.news-page .news-row {
  display: flex; gap: 30px; align-items: baseline;
  padding: 24px 8px; font-size: 16px;
}
.news-page .news-row time { font-weight: 700; color: var(--gray); white-space: nowrap; letter-spacing: 1.5px; }
.news-page .news-row p { font-weight: 500; }

/* 404ページ */
.notfound {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 140px var(--pad) 80px;
}
.notfound__code {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(90px, 16vw, 180px); line-height: 1;
  color: transparent; -webkit-text-stroke: 3px var(--accent);
}
.notfound p { margin: 20px 0 32px; color: #474747; }

/* スパム対策：ハニーポットを画面外へ（display:noneはボットに検知されやすいため使わない） */
.hp-field {
  position: absolute !important;
  left: -9999px !important; top: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ============================================================
   下層FV：Big Sur風・青のレイヤーウェーブ（CSS+SVGのみ）
   ============================================================ */
:root { --waves: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'1600'%20height%3D'600'%20viewBox%3D'0%200%201600%20600'%20preserveAspectRatio%3D'xMidYMid%20slice'%3E%3Cdefs%3E%3ClinearGradient%20id%3D'gTop'%20x1%3D'0'%20y1%3D'0'%20x2%3D'1'%20y2%3D'1'%3E%3Cstop%20offset%3D'0'%20stop-color%3D'%2345b7e8'%2F%3E%3Cstop%20offset%3D'1'%20stop-color%3D'%231687c2'%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D'gWhite'%20x1%3D'0'%20y1%3D'0'%20x2%3D'0'%20y2%3D'1'%3E%3Cstop%20offset%3D'0'%20stop-color%3D'%23ffffff'%2F%3E%3Cstop%20offset%3D'1'%20stop-color%3D'%23dff0fa'%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D'gCyan'%20x1%3D'0'%20y1%3D'0'%20x2%3D'1'%20y2%3D'1'%3E%3Cstop%20offset%3D'0'%20stop-color%3D'%239adcf5'%2F%3E%3Cstop%20offset%3D'1'%20stop-color%3D'%234fb6e5'%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D'gDeep'%20x1%3D'0'%20y1%3D'0'%20x2%3D'1'%20y2%3D'1'%3E%3Cstop%20offset%3D'0'%20stop-color%3D'%231a90cc'%2F%3E%3Cstop%20offset%3D'0.55'%20stop-color%3D'%230f5d94'%2F%3E%3Cstop%20offset%3D'1'%20stop-color%3D'%230d3b66'%2F%3E%3C%2FlinearGradient%3E%3Cfilter%20id%3D'soft'%20x%3D'-10%25'%20y%3D'-10%25'%20width%3D'120%25'%20height%3D'120%25'%3E%3CfeGaussianBlur%20stdDeviation%3D'4'%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Crect%20width%3D'1600'%20height%3D'600'%20fill%3D'url(%23gTop)'%2F%3E%3Cpath%20filter%3D'url(%23soft)'%20fill%3D'url(%23gWhite)'%20d%3D'M0%2C60%20C260%2C20%20420%2C110%20700%2C90%20C980%2C70%201200%2C170%201420%2C220%20C1500%2C240%201560%2C300%201600%2C330%20L1600%2C600%20L0%2C600%20Z'%2F%3E%3Cpath%20filter%3D'url(%23soft)'%20fill%3D'url(%23gCyan)'%20d%3D'M0%2C100%20C240%2C70%20430%2C160%20720%2C150%20C1010%2C140%201230%2C260%201450%2C330%20C1520%2C352%201570%2C400%201600%2C430%20L1600%2C600%20L0%2C600%20Z'%2F%3E%3Cpath%20filter%3D'url(%23soft)'%20fill%3D'url(%23gDeep)'%20d%3D'M0%2C130%20C250%2C110%20460%2C210%20760%2C215%20C1060%2C220%201280%2C340%201480%2C440%20C1540%2C470%201580%2C520%201600%2C560%20L1600%2C600%20L0%2C600%20Z'%2F%3E%3Cpath%20filter%3D'url(%23soft)'%20fill%3D'%2308243f'%20opacity%3D'0.8'%20d%3D'M0%2C600%20L0%2C430%20C180%2C430%20360%2C480%20560%2C530%20C760%2C580%20900%2C600%201000%2C600%20Z'%2F%3E%3C%2Fsvg%3E"); }
.page-hero {
  background: var(--waves) center bottom / cover no-repeat, #0d3b66;
}

/* ============================================================
   ABOUT / SERVICE 追加コンテンツ用
   ============================================================ */
/* テキスト×画像の2カラム */
.media-split {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
  margin-top: clamp(32px, 4vw, 48px);
}
.msg-lead {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900; letter-spacing: 2px; line-height: 1.8;
  margin-bottom: 8px;
}
.msg-name { margin-top: 24px; font-weight: 900; letter-spacing: 2px; }
.msg-name small {
  display: block; font-family: var(--font-en); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; color: var(--accent);
}

/* 画像プレースホルダーのバリエーション */
.ph--portrait { aspect-ratio: 3 / 4; max-width: 400px; width: 100%; }
.ph--wide { aspect-ratio: 21 / 9; margin-top: clamp(32px, 5vw, 56px); }

/* 数字タイル */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  margin-top: clamp(32px, 4vw, 48px);
}
.stat-tile {
  border: 2px solid var(--ink); background: #fff;
  text-align: center; padding: 28px 10px 22px;
  transition: rotate .3s, box-shadow .3s, translate .3s;
}
.stat-tile:hover { translate: 0 -3px; box-shadow: 6px 6px 0 rgba(24, 141, 200, .3); }
.stat-tile:nth-child(odd):hover { rotate: -2deg; }
.stat-tile:nth-child(even):hover { rotate: 2deg; }
.stat-tile b {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(36px, 4vw, 52px); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-tile b i { font-style: normal; font-size: .45em; }
.stat-tile span {
  display: block; margin-top: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; color: #474747;
}

/* 写真ギャラリー */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(28px, 4vw, 44px);
}
.gallery .ph { aspect-ratio: 4 / 3; }

/* SOLUTIONS：画像つき2カラム（偶数は左右反転） */
.sv-detail {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px); align-items: start;
}
.sv-detail__media { aspect-ratio: 4 / 3; }
.sv-detail:nth-of-type(even) .sv-detail__media { order: 2; }

/* 支援事例カード */
.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(32px, 4vw, 48px);
}
.case-card {
  border: 2px solid var(--ink); background: #fff;
  padding: 0 0 22px;
  transition: rotate .3s, box-shadow .3s;
}
.case-card:hover { rotate: -1deg; box-shadow: 8px 8px 0 rgba(24, 141, 200, .25); }
.case-card .ph { aspect-ratio: 16 / 10; }
.case-card h3 {
  margin: 18px 20px 0;
  font-size: 18px; font-weight: 900; letter-spacing: 1.5px;
}
.case-metric {
  margin: 6px 20px 0;
  font-weight: 900; letter-spacing: 1px; color: var(--accent2);
}
.case-metric b {
  font-family: var(--font-en); font-size: 30px;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.case-card p:not(.case-metric) {
  margin: 8px 20px 0;
  font-size: 13px; line-height: 1.9; color: #474747;
}

@media (max-width: 768px) {
  .media-split { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .sv-detail { grid-template-columns: 1fr; }
  .sv-detail:nth-of-type(even) .sv-detail__media { order: 0; }
  .case-grid { grid-template-columns: 1fr; }
}

/* MISSION画像プレースホルダー */
.ph--mission { aspect-ratio: 13 / 12; border-radius: 8px; }

/* テキストロゴ（Red Hat Display 900・太く大きく力強く） */
.logo-type {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--ink);
}
.logo:hover .logo-type { color: var(--accent); transition: color .3s; }
.logo--white .logo-type { color: #fff; }
.logo--white:hover .logo-type { color: var(--accent3); }

/* ============================================================
   サブ差し色（コーラルオレンジ＆マーカーイエロー）
   青メインを引き締める遊び心アクセント
   ============================================================ */
:root {
  --sub: #ff8a3d;        /* コーラルオレンジ */
  --sub2: #ffc531;       /* マーカーイエロー */
}

/* マーカーは蛍光ペンの黄色に */
.mk { background: linear-gradient(transparent 60%, rgba(255, 197, 49, .6) 60%); }
.cta-band .mk { background: linear-gradient(transparent 60%, rgba(255, 197, 49, .5) 60%); }

/* 見出し下線：青→紺→オレンジの3色バー */
.sec-title::after {
  background: linear-gradient(90deg, #188dc8 0%, #0d3b66 62%, #ff8a3d 62%);
}

/* ヒーローの鼓動ドットと下層FVの揺れる粒はオレンジ */
.hero__title .hline:last-child > span::after { background: var(--sub); }
.page-hero::after { background: var(--sub); }

/* ナビのホバー下線・フッターホバー */
.gnav__list a::after { background: var(--sub); height: 2px; }
.footer__nav a:hover { opacity: 1; color: var(--sub2); }

/* フォームの「必須」バッジ */
.form .req { background: var(--sub); }

/* カード類：2番目はオレンジ系に */
.value-card:nth-child(2) b { -webkit-text-stroke-color: var(--sub); }
.value-card:nth-child(2):hover { box-shadow: 8px 8px 0 rgba(255, 138, 61, .3); }
.stat-tile:nth-child(2) b, .stat-tile:nth-child(4) b {
  background: linear-gradient(135deg, #ffc531, #ff8a3d);
  -webkit-background-clip: text; background-clip: text;
}
.stat-tile:nth-child(even):hover { box-shadow: 6px 6px 0 rgba(255, 138, 61, .35); }
.case-card:nth-child(2):hover { box-shadow: 8px 8px 0 rgba(255, 138, 61, .3); }
.case-card:nth-child(2) .case-metric b {
  background: linear-gradient(135deg, #ffc531, #ff8a3d);
  -webkit-background-clip: text; background-clip: text;
}

/* タグ・ソリューション枠にもときどきオレンジ */
.sv-detail__tags .tag:nth-child(3n+2) { border-color: var(--sub); color: #e2701f; }
.sol-grid li:nth-child(even):hover { box-shadow: 6px 6px 0 rgba(255, 138, 61, .35); }
.sol-grid li:nth-child(3n) small { color: var(--sub); }

/* 職種カードの英字ラベルは交互に */
.job-card:nth-child(even) .en { color: var(--sub); }
.job-card:hover { box-shadow: 8px 8px 0 rgba(255, 138, 61, .3); }
.job-card:nth-child(even):hover { box-shadow: 8px 8px 0 rgba(24, 141, 200, .25); }

/* 404も遊ぶ */
.notfound__code { -webkit-text-stroke-color: var(--sub); }

/* ABOUT USアウトライン見出しの矩形にもオレンジをひとさじ */
.sec-title__block { background: linear-gradient(135deg, #188dc8 55%, #ff8a3d); }

/* ============================================================
   下層FV：波背景をゆっくり漂わせる／CONTACTボタンをオレンジに
   ============================================================ */
/* 波は疑似要素に移して、ドリフト（横流れ＋わずかな拡大）を無限ループ */
.page-hero {
  background: #0d3b66;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; z-index: 0;
  inset: -10% -8%;
  background: var(--waves) center bottom / cover no-repeat;
  animation: waveDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes waveDrift {
  from { transform: translateX(0) translateY(0) scale(1.03); }
  to   { transform: translateX(-3%) translateY(1.5%) scale(1.1); }
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero::after { z-index: 1; }

/* ヘッダー右上のCONTACTは差し色のオレンジグラデーションに */
.header__contact {
  background: linear-gradient(135deg, #ffb35c 0%, #ff8a3d 45%, #f2661f 100%);
}
.header__contact small { color: rgba(255, 255, 255, .9); }

/* ============================================================
   仕上げ：段落の間隔とスマホの可読性
   ============================================================ */
.sect__text + .sect__text { margin-top: 14px; }

@media (max-width: 768px) {
  body { font-size: 15px; letter-spacing: 1px; }
  .logo-type { font-size: 26px; letter-spacing: 2px; }
  .hero__title { font-size: clamp(30px, 8.4vw, 38px); letter-spacing: 2px; line-height: 1.8; }
  .hero__sub { font-size: 15px; padding: 5px 16px; border-width: 2px; }
  .sec-title { letter-spacing: 1px; }
  .sect__lead { font-size: clamp(23px, 6.4vw, 30px); letter-spacing: 1px; line-height: 1.75; }
  .sect__text { font-size: 15px; line-height: 2; letter-spacing: .8px; }
  .msg-lead { font-size: clamp(20px, 5.8vw, 26px); }
  .sv__title, .recruit__title { font-size: clamp(21px, 5.8vw, 26px); letter-spacing: 2px; }
  .sv-detail__title { font-size: clamp(20px, 5.4vw, 26px); letter-spacing: 1.5px; }
  .mission__statement, .about__statement { font-size: clamp(23px, 6.4vw, 30px); letter-spacing: 1px; }
  .c-table dt { padding: 16px 10px 0; }
  .c-table dd { padding: 4px 10px 16px; }
  .news__list li { flex-direction: column; gap: 2px; }
  .btn-line { font-size: 15px; }
  .page-hero { padding: 130px var(--pad) 56px; }
  .sect { padding: 56px var(--pad); }
}

/* スマホ：下層FVをコンパクトに（波が大きくなりすぎないように） */
@media (max-width: 768px) {
  .page-hero { padding: 104px var(--pad) 40px; }
  .page-hero::before {
    inset: -3% -2%;
    animation: waveDriftSp 18s ease-in-out infinite alternate;
  }
  .page-hero .sec-title { font-size: clamp(28px, 8vw, 38px); }
  .page-hero .sec-title small { font-size: 12px; }
  .page-hero__crumb { font-size: 10px; margin-bottom: 10px; }
  .page-hero .orbit { width: 130px; top: -20px; right: 6%; }
  .page-hero::after { width: 10px; height: 10px; bottom: 28px; right: 40px; }
}
@keyframes waveDriftSp {
  from { transform: translateX(0) scale(1.02); }
  to   { transform: translateX(-1.5%) scale(1.05); }
}

/* 下層FVの縦幅をコンパクトに */
.page-hero { padding: 124px var(--pad) 44px; }
.page-hero .sec-title { font-size: clamp(34px, 4vw, 52px); }
.page-hero::after { bottom: 36px; }

/* NEWS：一覧ボタン削除後の余白調整 */
.news { padding: clamp(60px, 8vw, 104px) var(--pad); }
.news__inner { align-items: start; }

/* ============================================================
   トップのCONTACT帯を下層FVと同じ波に統一（シリーズ感）
   ============================================================ */
.contact {
  background: #0d3b66;
  overflow: hidden;
}
.contact::before {
  content: ""; display: block;   /* 旧ノイズ用のdisplay:noneを上書き */
  position: absolute; z-index: 0;
  inset: -10% -8%;
  background: var(--waves) center bottom / cover no-repeat;
  animation: waveDrift 18s ease-in-out infinite alternate;
  mix-blend-mode: normal;
  pointer-events: none;
}
.contact__card { position: relative; z-index: 1; }

/* ============================================================
   遊び心の動き 追加パック
   ============================================================ */

/* 1. カード類は「ポンッ」と時間差で登場（バウンス付き） */
.value-grid > .fade, .stats-grid > .fade, .case-grid > .fade,
.job-grid > .fade, .gallery > .fade {
  translate: 0 34px; rotate: -1.5deg;
  transition: opacity .7s ease, translate .7s cubic-bezier(.34, 1.56, .64, 1), rotate .7s cubic-bezier(.34, 1.56, .64, 1);
}
.value-grid > .fade.is-in, .stats-grid > .fade.is-in, .case-grid > .fade.is-in,
.job-grid > .fade.is-in, .gallery > .fade.is-in { rotate: 0deg; }
.value-grid > :nth-child(2), .stats-grid > :nth-child(2), .case-grid > :nth-child(2),
.job-grid > :nth-child(2), .gallery > :nth-child(2) { transition-delay: .12s; }
.value-grid > :nth-child(3), .stats-grid > :nth-child(3), .case-grid > :nth-child(3),
.job-grid > :nth-child(3), .gallery > :nth-child(3) { transition-delay: .24s; }
.stats-grid > :nth-child(4), .job-grid > :nth-child(4) { transition-delay: .36s; }

/* ソリューション8枠も順番にポップ */
.sol-grid li { opacity: 0; translate: 0 24px; transition: opacity .55s ease, translate .55s cubic-bezier(.34, 1.56, .64, 1), rotate .3s, box-shadow .3s; }
.sol.is-in .sol-grid li { opacity: 1; translate: 0 0; }
.sol.is-in .sol-grid li:nth-child(2) { transition-delay: .07s; }
.sol.is-in .sol-grid li:nth-child(3) { transition-delay: .14s; }
.sol.is-in .sol-grid li:nth-child(4) { transition-delay: .21s; }
.sol.is-in .sol-grid li:nth-child(5) { transition-delay: .28s; }
.sol.is-in .sol-grid li:nth-child(6) { transition-delay: .35s; }
.sol.is-in .sol-grid li:nth-child(7) { transition-delay: .42s; }
.sol.is-in .sol-grid li:nth-child(8) { transition-delay: .49s; }

/* 2. 蛍光マーカーは「後からシュッと引かれる」 */
.fade .mk {
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size .7s cubic-bezier(.22, 1, .36, 1) .55s;
}
.fade.is-in .mk { background-size: 100% 100%; }

/* 3. 見出しのグラデ下線は左から伸びる */
.sec-title.fade::after {
  scale: 0 1; transform-origin: left center;
  transition: scale .6s cubic-bezier(.34, 1.56, .64, 1) .35s;
}
.sec-title.fade.is-in::after { scale: 1 1; }

/* 4. ボタンの矢印がスッと動く */
.btn-line::after {
  content: " →"; display: inline-block;
  translate: 0 0; transition: translate .3s cubic-bezier(.34, 1.56, .64, 1);
}
.btn-line:hover::after { translate: 7px 0; }

/* 5. ナビは英字がぴょこんと跳ねる */
@keyframes hop {
  0% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
.gnav__list a:hover b { display: inline-block; animation: hop .35s ease; }

/* 6. ロゴはホバーでちょっと傾く */
.logo-type { display: inline-block; transition: rotate .3s cubic-bezier(.34, 1.56, .64, 1), color .3s; }
.logo:hover .logo-type { rotate: -5deg; }

/* 7. パートナーロゴもホバーでポップ */
.plogo { transition: rotate .3s cubic-bezier(.34, 1.56, .64, 1), scale .3s; }
.plogo:hover { scale: 1.12; rotate: -3deg; }
.plogo:nth-child(even):hover { rotate: 3deg; }

/* 8. 背景の巨大英字はゆっくり漂う */
.sect[data-bg]::before { animation: bgWordFloat 9s ease-in-out infinite alternate; }
@keyframes bgWordFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(-24px, 10px); }
}

/* 9. スクロール進捗バー（対応ブラウザのみ・3色グラデ） */
@supports (animation-timeline: scroll()) {
  body::before {
    content: ""; position: fixed; top: 0; left: 0; z-index: 300;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #188dc8, #0d3b66 62%, #ff8a3d);
    transform-origin: left center; scale: 0 1;
    animation: pageProgress linear forwards;
    animation-timeline: scroll(root);
    pointer-events: none;
  }
}
@keyframes pageProgress { to { scale: 1 1; } }

/* 10. ヒーローのSCROLLキュー */
.scroll-cue {
  position: absolute; left: var(--pad); bottom: 30px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-weight: 700;
  font-size: 11px; letter-spacing: 4px; color: var(--accent2);
}
.scroll-cue i {
  width: 56px; height: 2px; background: rgba(13, 59, 102, .25);
  position: relative; overflow: hidden; border-radius: 2px;
}
.scroll-cue i::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #188dc8, #ff8a3d);
  animation: cueSlide 1.8s cubic-bezier(.22, 1, .36, 1) infinite;
}
@keyframes cueSlide {
  from { translate: -100% 0; }
  to { translate: 100% 0; }
}

/* 11. CONTACTボタン（ヘッダー）は小さく脈打つ */
.header__contact b { display: inline-block; animation: pulseSoft 3s ease-in-out infinite; }
@keyframes pulseSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ============================================================
   常時動き続ける遊び心（アンビエントアニメーション）
   ============================================================ */

/* 同心円オーナメントは永遠にゆっくり回る（ドットが公転する） */
.orbit { animation: spin 70s linear infinite; transform-origin: center; }
.page-hero .orbit { animation-duration: 50s; }

/* トップページの巨大英字も漂う */
.mission::before, .about::before, .partners::before {
  animation: bgWordFloat 10s ease-in-out infinite alternate;
}

/* 見出し下線：オレンジの区画が行ったり来たりする */
.sec-title::after {
  background-size: 170% 100%;
  animation: barSlide 3.4s ease-in-out infinite alternate;
}
@keyframes barSlide {
  from { background-position: 0% 0; }
  to { background-position: 100% 0; }
}

/* 漂う小さな図形（JSで各セクションに配置） */
.deco {
  position: absolute; z-index: 0;
  pointer-events: none; opacity: .85;
}
.deco--dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad);
  animation: decoBob 5s ease-in-out infinite alternate;
}
.deco--ring {
  width: 26px; height: 26px; border-radius: 50%;
  border: 3px solid var(--accent);
  animation: decoBob 7s ease-in-out -2s infinite alternate;
}
.deco--cross {
  width: 18px; height: 18px;
  background:
    linear-gradient(var(--sub), var(--sub)) center / 100% 3px no-repeat,
    linear-gradient(var(--sub), var(--sub)) center / 3px 100% no-repeat;
  animation: decoSpinBob 9s ease-in-out infinite alternate;
}
.deco--tri {
  width: 20px; height: 18px;
  background: var(--accent2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: decoBob 6s ease-in-out -3.5s infinite alternate;
}
@keyframes decoBob {
  from { transform: translateY(0) rotate(-6deg); }
  to { transform: translateY(-22px) rotate(8deg); }
}
@keyframes decoSpinBob {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-18px) rotate(150deg); }
}

/* 配置バリエーション（セクションの端に置く） */
.deco--p1 { top: 12%; right: 6%; }
.deco--p2 { bottom: 14%; left: 5%; }
.deco--p3 { top: 20%; left: 8%; }
.deco--p4 { bottom: 10%; right: 10%; }

/* decoを置くセクションに座標基準を持たせる */
.news, .about, .mission, .partners { position: relative; }

/* ソリューション6件：3列×2段のバランスに */
.sol-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }
@media (max-width: 768px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RECRUIT拡充：FAQ・メンバーの声・職種内リスト
   ============================================================ */
/* 職種カード内の条件リスト */
.job-list { margin-top: 12px; }
.job-list li {
  position: relative; padding-left: 18px;
  font-size: 13.5px; line-height: 1.9; color: #474747;
}
.job-list li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
}

/* FAQ（開閉式・常時使えるインタラクション） */
.faq { margin-top: clamp(28px, 4vw, 44px); max-width: 860px; }
.faq details {
  border: 2px solid var(--ink); background: #fff;
  margin-bottom: 14px;
  transition: box-shadow .3s;
}
.faq details[open] { box-shadow: 6px 6px 0 rgba(24, 141, 200, .2); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  font-weight: 900; font-size: 15px; letter-spacing: 1px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; flex: none;
  font-family: var(--font-en); font-weight: 900;
  color: var(--accent); font-size: 20px;
}
.faq summary::after {
  content: "+"; margin-left: auto;
  font-family: var(--font-en); font-weight: 700; font-size: 24px;
  color: var(--sub); line-height: 1;
  transition: rotate .3s cubic-bezier(.34, 1.56, .64, 1);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq .a {
  position: relative;
  padding: 0 20px 18px 52px;
  font-size: 14px; line-height: 2; color: #474747;
}
.faq .a::before {
  content: "A"; position: absolute; left: 21px;
  font-family: var(--font-en); font-weight: 900;
  color: var(--sub); font-size: 20px;
}

/* メンバーの声 */
.voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(32px, 4vw, 48px);
}
.voice-card {
  border: 2px solid var(--ink); background: #fff;
  padding: 24px;
  transition: rotate .3s, box-shadow .3s;
}
.voice-card:hover { rotate: -1deg; box-shadow: 8px 8px 0 rgba(24, 141, 200, .2); }
.voice-card:nth-child(2):hover { rotate: 1deg; box-shadow: 8px 8px 0 rgba(255, 138, 61, .3); }
.voice-card__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.voice-card__ph {
  width: 64px; height: 64px; flex: none;
  border-radius: 50%; overflow: hidden;
}
.voice-card__ph::after { display: none; }  /* 丸が小さいのでラベル非表示 */
.voice-card__head b { display: block; font-size: 15px; letter-spacing: 1px; }
.voice-card__head small { color: var(--accent); font-weight: 700; font-size: 12px; }
.voice-card p { font-size: 13.5px; line-height: 2; color: #474747; }

@media (max-width: 768px) {
  .voice-grid { grid-template-columns: 1fr; }
}

/* 代表メッセージ：写真なしの1カラム（読みやすい幅に） */
.msg-body { max-width: 760px; margin-top: clamp(28px, 4vw, 44px); }

/* ============================================================
   ブログ（一覧・詳細）とページネーション
   ============================================================ */
.post-list { border-top: 1px solid var(--line); margin-top: clamp(28px, 4vw, 40px); }
.post-list li { border-bottom: 1px solid var(--line); }
.post-list a {
  display: flex; gap: 30px; align-items: baseline;
  padding: 24px 8px; font-size: 16px;
  transition: background .3s, padding-left .3s;
}
.post-list a:hover { background: rgba(24, 141, 200, .06); padding-left: 20px; }
.post-list time { font-weight: 700; color: var(--gray); white-space: nowrap; letter-spacing: 1.5px; }
.post-list .ttl { font-weight: 500; }

.entry-meta { color: var(--gray); font-weight: 700; letter-spacing: 1.5px; margin-top: 10px; }
.entry-body { margin-top: clamp(24px, 4vw, 40px); max-width: 46em; }
.entry-body h2 {
  margin: 40px 0 12px; font-size: 22px; font-weight: 900; letter-spacing: 2px;
  padding-left: 14px; border-left: 5px solid var(--accent);
}
.entry-body h3 { margin: 28px 0 10px; font-size: 18px; font-weight: 900; }
.entry-body p { margin: 12px 0; font-size: 15px; line-height: 2; color: #333; }
.entry-body img { max-width: 100%; height: auto; }
.entry-body a { color: var(--accent); text-decoration: underline; }

.navigation.pagination { margin-top: clamp(32px, 5vw, 48px); }
.navigation.pagination .nav-links { display: flex; gap: 10px; justify-content: center; }
.navigation.pagination .page-numbers {
  display: grid; place-items: center;
  min-width: 44px; height: 44px; padding: 0 10px;
  border: 2px solid var(--ink); background: #fff;
  font-family: var(--font-en); font-weight: 700;
  transition: background .3s, color .3s, rotate .3s;
}
.navigation.pagination .page-numbers.current { background: var(--ink); color: #fff; }
.navigation.pagination .page-numbers:hover:not(.current) { rotate: -3deg; background: var(--gray-light); }

/* ============================================================
   お問い合わせ：受付停止のお知らせ
   ============================================================ */
.notice {
  max-width: 720px; margin: clamp(28px, 4vw, 44px) auto 0;
  border: 2px solid var(--ink); background: #fff;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  text-align: center;
  box-shadow: 8px 8px 0 rgba(24, 141, 200, .18);
}
.notice__badge {
  display: inline-block;
  font-family: var(--font-en); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; color: #fff;
  background: var(--grad);
  padding: 5px 16px; border-radius: 999px; rotate: -2deg;
  margin-bottom: 22px;
}
.notice__title {
  font-size: clamp(20px, 3vw, 28px); font-weight: 900;
  letter-spacing: 1.5px; line-height: 1.7; margin-bottom: 22px;
}
.notice__text {
  font-size: 15px; line-height: 2; color: #474747;
  letter-spacing: .8px; margin-bottom: 14px;
}
.notice__text strong { font-weight: 900; color: var(--ink); }
.notice__sign {
  margin-top: 24px;
  font-family: var(--font-en); font-weight: 700;
  letter-spacing: 2px; color: var(--accent2);
}
