@charset "utf-8";
/* =========================================================
   common.css — 全ページ共通（ホログラム版）
   リセット（destyle.css v3.0.0）／ヘッダー／ナビ／フッター／
   パンくず／セクション見出し／ガラスカード／ボタン／光の円／
   fadein／404・thanks
   色は DESIGN.md（メイン／サブ）に対応。SCSSは使わず直接編集する。
   ========================================================= */

:root{
  /* --- メインカラー（DESIGN.md）--- */
  --blue:#5BACE0;
  --teal:#4E93A6;
  --coral:#F39F80;
  --mint:#7DCACA;
  --text:#1A1311;       /* テキスト標準色 */
  --gray-k20:#D9D9D9;
  --white:#fff;

  /* --- サブカラー（補助色。既存実装との整合が必要な場面に限る）--- */
  --sub-text:#969696;      /* 日付・補足など弱めたい文字 */
  --sub-gray-lt:#ACACAC;
  --sub-gray-mid:#707070;
  --sub-bg:#F5F5F5;
  --sub-bg-dark:#F0F0F0;
  --sub-blue-lt:#A0DAFF;
  --sub-coral-lt:#FFC7B2;

  /* --- ホログラム版でのみ使う派生色 --- */
  --holo-peach:#FBE3DA;
  --holo-periwinkle:#A9C9F0;
  --holo-canvas:#FAFBFD;
  --border-soft:rgba(26,19,17,.12);

  /* --- ホログラムの署名となるグラデーションと、ガラス面 --- */
  --holo:linear-gradient(120deg,#5BACE0 0%,#7DCACA 30%,#FBE3DA 52%,#F39F80 72%,#A9C9F0 100%);
  --holo-bg:
    radial-gradient(60% 30% at 15% 0%, rgba(91,172,224,.22), rgba(255,255,255,0) 70%),
    radial-gradient(50% 25% at 95% 8%, rgba(243,159,128,.18), rgba(255,255,255,0) 70%),
    #FAFBFD;
  --glass:rgba(255,255,255,.72);
  --glass-strong:rgba(255,255,255,.85);
  --glass-border:rgba(255,255,255,.95);
  --glass-section:rgba(255,255,255,.45);

  /* --- 影・イージング --- */
  --shadow-glass:0 24px 60px -32px rgba(78,147,166,.45), inset 0 1px 0 rgba(255,255,255,1);
  --shadow-cta:0 16px 36px -14px rgba(91,172,224,.7);
  --shadow-cta-hover:0 20px 40px -12px rgba(243,159,128,.7);
  --blur-glow:20px;
  --dur:200ms;
  --ease:ease;

  /* --- フォント（DESIGN.md）--- */
  --font-ja:"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","游ゴシック Medium",YuGothic,YuGothicM,メイリオ,Meiryo,sans-serif;
  --font-en:"Cabin",var(--font-ja);
  --font-accent:"Poppins",var(--font-en);   /* 図形に重ねる英字などのアクセント。Light(300)のみ */
  --font-mono:ui-monospace,Menlo,monospace;

  /* --- レイアウト --- */
  --pad-x:80px;      /* セクションの左右余白（PC） */
  --sec-y:96px;      /* セクションの上下（PC） */
  --sec-y-lg:128px;  /* 大セクションの上下（PC） */
  --header-h:88px;

  /* --- アニメーション --- */
  --ease-line:cubic-bezier(0.51,0.2,0.31,0.91);      /* 見出し罫 */
  --ease-reveal:cubic-bezier(.25,.46,.45,.94);       /* fadein本体 */
  --fade-duration:1.3s;
  --fade-delay:.3s;
  --fade-distance:20px;
}

/* アンカーリンクのスムーススクロール */
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
}
/* 停止位置はスティッキーヘッダーの高さ（88px）＋24pxの余白 */
#about,#profile,#service,#flow,#news,#contact{scroll-margin-top:112px;}
/* ハンバーガー表示幅ではヘッダー64px＋16px */
@media screen and (max-width:900px){
  #about,#profile,#service,#flow,#news,#contact{scroll-margin-top:80px;}
}

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0; }

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/ }

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/* Vertical rhythm */
/* ============================================ */
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0; }

/* Headings */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
  margin: 0; }

/* Lists (enumeration) */
/* ============================================ */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal; }

dd {
  margin-left: 0; }

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */ }

address {
  font-style: inherit; }

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg, img, embed, object, iframe {
  vertical-align: bottom; }

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */ }

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox; }

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio; }

/**
 * Correct cursors for clickable elements.
 */
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer; }

button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default; }

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto; }

select:disabled {
  opacity: inherit; }

/**
 * Remove padding
 */
option {
  padding: 0; }

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0; }

legend {
  padding: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer; }

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto; }

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse; }

caption {
  text-align: left; }

td, th {
  vertical-align: top;
  padding: 0; }

th {
  text-align: left;
  font-weight: normal; }

/*==================================
Site default
==================================*/
body {
  font-family: var(--font-ja);
  color: var(--text);
  font-size: 15px;
  background: var(--holo-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  word-break: break-word; }
body a, body button {
  cursor: pointer; }
body a, body a:before, body a:after, body button, body button:before, body button:after {
  transition: all 0.3s ease; }
body a:hover {
  text-decoration: none; }

/* ページ全体の外枠。position:sticky のヘッダーが効かなくなるため overflow は持たせない
   （横スクロールの抑止は各セクションの overflow:clip が担う） */
.container {
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
  min-width: 100%; }

/*== input tag initialization =======================*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  text-align: left;
  line-height: inherit;
  font-family: inherit; }

select::-ms-expand {
  display: none; }

/*== CSS for hiding device display =======================*/
/*= Desktop =*/
.tb:not(br), br.tb {
  display: none !important; }

.sp:not(br), br.sp {
  display: none !important; }

.pc:not(br) {
  display: block !important; }

br.pc {
  display: inline-block !important; }

/*= Tablet(iPad) =*/
@media screen and (max-width: 900px) {
  .pc:not(br), br.pc {
    display: none !important; }

  .sp:not(br), br.sp {
    display: none !important; }

  .tb:not(br) {
    display: block !important; }

  br.tb {
    display: inline-block !important; } }
/*= Mobile(~600px) =*/
@media screen and (max-width: 600px) {
  .pc:not(br), br.pc {
    display: none !important; }

  .tb:not(br), br.tb {
    display: none !important; }

  .sp:not(br) {
    display: block !important; }

  br.sp {
    display: inline-block !important; } }

/* =========================================================
   共通パーツ（ホログラム）
   ========================================================= */
.inner { max-width: 1120px; margin: 0 auto; }

/* 矢印は英字書体で出すと線が細く、和文と並べたときに軽く見える */
.arrow { font-family: var(--font-en); }

/* グラデーションを文字に流す共通クラス */
.holo-text {
  background: var(--holo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; }

/* ガラス面。カード類はすべてこれを土台にする */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass); }

/* 見出し下の細いグラデーション罫。見出しの語幅に合わせて長さを変える */
.holo-rule {
  height: 1px;
  width: 320px;
  max-width: 100%;
  background: var(--holo);
  margin-top: 16px; }
.holo-rule--w280 { width: 280px; }
.holo-rule--w300 { width: 300px; }
.holo-rule--w360 { width: 360px; }
.holo-rule--full { width: 100%; }

/* 装飾のぼかし円。position は個別クラスが持つ */
.glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(var(--blur-glow)); }

/* セクション共通 */
.sec {
  position: relative;
  isolation: isolate;   /* ぼかし円の z-index:-1 をこのセクション内に閉じ込める */
  /* 【試行・2026-09-05】縦方向のクリップを外す。overflow:clip だとセクション上端で光の円が
     切られ、下層ページの右上に横一直線の段差が見えるため。横スクロールの抑止は overflow-x だけで足りる。
     戻すときは下の2行を `overflow: clip;` の1行に置き換える */
  overflow-x: clip;
  overflow-y: visible;
  padding: var(--sec-y) var(--pad-x); }
.sec--lg { padding-top: var(--sec-y-lg); padding-bottom: var(--sec-y-lg); }
/* 白を薄く敷いて、背景のグラデーションを一段落ち着かせる帯 */
.sec--glass {
  background: var(--glass-section);
  border-top: 1px solid rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.9); }

.sec-head { margin-bottom: 64px; }
.sec-head--sm { margin-bottom: 48px; }
.sec-head__row { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.sec-head__en {
  font-family: var(--font-en);
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4; }
.sec-head__ja { font-size: 12px; letter-spacing: 0.1em; line-height: 1.6; color: var(--sub-gray-mid); }

/* 下層ページの大見出し（h1） */
.page-ttl {
  font-family: var(--font-en);
  font-size: 55px;
  letter-spacing: 0.2em;
  line-height: 1.4; }
@media screen and (max-width: 600px) {
  .sec-head__en { font-size: 28px; }
  .page-ttl { font-size: 40px; letter-spacing: 0.15em; } }

/* =========================================================
   ボタン・リンク
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.07em;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease); }

.btn--primary {
  height: 56px;
  padding: 0 36px;
  background: var(--holo);
  color: var(--white);
  box-shadow: var(--shadow-cta); }
.btn--primary:hover { color: var(--white); box-shadow: var(--shadow-cta-hover); }

.btn--glass {
  height: 56px;
  padding: 0 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  color: var(--text); }
.btn--glass:hover { color: var(--teal); background: var(--glass-strong); }

/* 枠だけグラデーションにする。padding-box と border-box の2枚重ねで作る */
.btn--outline-holo {
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  border: 1px solid transparent;
  background: linear-gradient(#FFFFFF,#FFFFFF) padding-box, var(--holo) border-box;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.05em; }
.btn--outline-holo:hover {
  color: var(--text);
  background: linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)) padding-box, var(--holo) border-box; }

/* 黒地セクションの上に置くボタン2種（白ベタ／枠だけ） */
.btn--white {
  width: 288px;
  height: 56px;
  background: var(--white);
  color: var(--text); }
.btn--white:hover { color: var(--teal); }

.btn--ghost {
  width: 288px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  color: var(--white); }
.btn--ghost:hover { color: var(--white); background: rgba(255,255,255,.18); border-color: var(--white); }

@media screen and (max-width: 600px) {
  .btn--white, .btn--ghost { width: 100%; } }

/* 「View all」等の英字リンク。矢印は装飾なのでCSSで足す（原稿には含めない） */
.link a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--dur) var(--ease); }
.link a::after { content: "\2192"; font-family: var(--font-en); }
.link a:hover { color: var(--teal); }
@media screen and (max-width: 900px) {
  .link a { font-size: 14px; } }

/* =========================================================
   ヘッダー / ナビ
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  border-bottom: 1px solid rgba(255,255,255,.9);
  /* backdrop-filter は付けない。付けると .header が固定配置の包含ブロックになり、
     中の .nav（position:fixed の全画面メニュー）がヘッダーの高さに閉じ込められる */
  background: var(--glass-strong);
  transition: box-shadow var(--dur) var(--ease); }
/* スクロールし始めたら、下のコンテンツとの境目を薄い影で示す */
.header.is-scroll { box-shadow: 0 8px 24px -18px rgba(78,147,166,.6); }
/* メニューは header の中にあるため、ロゴを前面に出しておかないと overlay に隠れる */
.header__logo { position: relative; z-index: 1110; line-height: 0; }
.header__logo img { width: 170px; }
@media screen and (min-width: 1091px) {
  .header__logo a:hover { opacity: .6; } }

.nav { display: flex; align-items: center; gap: 40px; }
.nav__logo { display: none; }
.nav__list { display: flex; align-items: center; gap: 40px; }
.nav__list-item {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.6; }
.nav__list-item a { transition: color var(--dur) var(--ease); }
@media screen and (min-width: 1091px) {
  .nav__list-item a:hover { color: var(--teal); } }
/* --sp はSPメニュー専用の項目（Home・Contact・note）。PCのトップバーには出さない */
.nav__list-item--sp { display: none; }
/* CTAはPCのトップバーだけに置く。SPメニューでは Contact の項目が同じ役割を持つ */
.nav__cta { flex-shrink: 0; }

/* ハンバーガーは900px以下でのみ出す */
.nav-bar { display: none; }

/* ハンバーガーメニューを開いている間：背景をスクロールさせない。
   top は main.js が退避したスクロール位置(-scrollY)を入れて見た目を保つ。 */
/* body を position:fixed にするとページの overflow が消えてスクロールバーも消えるため、
   その幅ぶん（約15px）画面が広がる。開いている間だけ領域を確保して打ち消す。
   scrollbar-gutter は、スクロールするボックス＝html に当てる必要がある。 */
html.is-menu-open {
  overflow: hidden;          /* scrollbar-gutter は overflow が visible だと無視されるため必須 */
  scrollbar-gutter: stable; }
body.is-menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden; }

@media screen and (max-width: 900px) {
  :root { --header-h: 64px; }
  .header__logo img { width: 152px; }

  .nav-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1110;
    width: 44px;
    height: 44px;
    padding: 0 8px;
    border: 0;
    background: none;
    cursor: pointer; }
  .nav-bar span {
    display: block;
    height: 2px;          /* 1.5px だと iPhone Safari で描画が薄く見えない（2026-09-05） */
    border-radius: 2px;
    /* --holo の4色のうち、白に近いピーチ（#FBE3DA）を外した3色で線を引く（白地で消えないように） */
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--coral));
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
  .nav-bar.is-active span:first-child { transform: translateY(4px) rotate(20deg); }
  .nav-bar.is-active span:last-child { transform: translateY(-4px) rotate(-20deg); }

  /* display はトランジションできないため、opacity + visibility でフェードさせる。
     開閉は main.js が .is-open を付け外しする。 */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1090;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 88px 20px 40px;
    background: var(--holo-bg);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease); }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 28px; }
  .nav__list-item { font-size: 20px; letter-spacing: 0.1em; }
  .nav__list-item--sp { display: block; }
  .nav__list-item--home { line-height: 0; }
  .nav__list-item--home a img { width: 57px; }
  /* note アイコン。項目の並びからは離して置く。
     ロゴは色・形の変更が禁止されているため、hover は opacity だけで表現する */
  /* 配布データの横型ロゴタイプ。ロゴタイプには囲みの規定が無いため枠や円は付けない。
     幅65pxはモニター上の最小サイズ30pxを十分に満たす。
     height も必ず書くこと（615:232 の比率で65px→24.5px） */
  .nav__cta { display: none; } }

/* =========================================================
   フッター
   ========================================================= */
.footer {
  position: relative;
  isolation: isolate;
  padding: 64px var(--pad-x) 32px;
  background: rgba(255,255,255,.6);
  border-top: 1px solid rgba(255,255,255,.9); }
.footer__row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft); }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.footer__logo { line-height: 0; }
.footer__logo img { width: 112px; }   /* 2026-09-05 に128→102→112px（PC） */
@media screen and (min-width: 1091px) {
  .footer__logo a:hover { opacity: .6; } }
.footer__links { display: flex; gap: 96px; }
.footer__col { display: flex; flex-direction: column; gap: 16px; }
.footer__col a { font-size: 13px; letter-spacing: 0.05em; line-height: 1.6; color: var(--text); transition: color var(--dur) var(--ease); }
@media screen and (min-width: 1091px) {
  .footer__col a:hover { color: var(--teal); } }
/* © は左、プライバシーポリシーは右の1行 */
.footer__bottom {
  max-width: 1120px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px; }
.footer__copy {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2;   /* 320px級の端末で折り返したとき行が重ならないように */
  color: var(--sub-text); }
.footer__privacy a {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: var(--sub-text);
  transition: color var(--dur) var(--ease); }
@media screen and (min-width: 1091px) {
  .footer__privacy a:hover { color: var(--teal); } }
@media screen and (max-width: 600px) {
  .footer { padding: 48px 20px 24px; }
  /* SPはロゴとメニューを中央に置く（2026-09-05） */
  .footer__row { flex-direction: column; align-items: center; gap: 32px; }
  .footer__brand { align-items: center; }
  .footer__logo img { width: 102px; }   /* PCと同じ2割縮小後の値 */
  .footer__links { gap: 32px; justify-content: center; }
  /* SPも © 左・プライバシーポリシー右の1行（11pxなら375px幅に収まる。2026-09-05） */
  .footer__bottom { gap: 12px; }
  .footer__privacy { flex-shrink: 0; }
  .footer__copy { letter-spacing: .05em; white-space: nowrap; }   /* 0.1em だと375pxで折り返すため詰める */
  .footer__copy, .footer__privacy a { font-size: 11px; } }

/* =========================================================
   パンくず
   ========================================================= */
.pnkz { padding: 32px var(--pad-x) 0; }
.pnkz__inner { max-width: 1120px; margin: 0 auto; }
.pnkz__list { display: flex; flex-wrap: wrap; }
.pnkz__list-item {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--text); }
.pnkz__list-item:after { content: '>'; color: var(--sub-gray-lt); }
.pnkz__list-item:last-child { color: var(--sub-gray-lt); }
.pnkz__list-item:last-child:after { display: none; }
@media screen and (min-width: 1091px) {
  .pnkz__list-item a:hover { color: var(--teal); } }

/* =========================================================
   スクロール時のfadein演出（2段構え）

   発火は main.js（IntersectionObserver / 20%見えたら）が担当し、
   .is-show-before（グラデーション罫）と .is-show（本体）を付ける。

   「ゆったり」見せたいので速度は1.3s・角の立たないカーブに設定。
   ========================================================= */

/* 第1段：ブロック本体 */
.fadein {
  opacity: 0;
  transform: translateY(var(--fade-distance));
  transition: none; }

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--fade-duration) var(--ease-reveal) var(--fade-delay),
              transform var(--fade-duration) var(--ease-reveal) var(--fade-delay); }

/* 第2段：見出し下のグラデーション罫が左から伸びる（600ms / 800ms遅れ） */
.fadein .holo-rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--ease-line) 0.8s; }

.fadein.is-show-before .holo-rule { transform: scaleX(1); }

/* 動きを減らす設定の利用者には、演出せず最初から表示する */
@media (prefers-reduced-motion: reduce) {
  .fadein {
    opacity: 1;
    transform: none;
    transition: none; }
  .fadein .holo-rule {
    transform: scaleX(1);
    transition: none; } }

/* =========================================================
   共通CTA（黒地のContactセクション）
   トップの #contact と、News一覧・カテゴリ別・News詳細で共用する。
   下層では id を付けず、クラスだけで同じ見た目にする。

   fadein は「面」ではなく中身（.corp__inner）に掛ける。
   セクションごと translateY させると、発火前に黒帯が20px下がって
   帯の下に背景（明るい帯）が覗いてしまうため。
   ========================================================= */
.corp { background: var(--text); overflow: hidden; }
.glow--contact-1 {
  left: -100px; top: -160px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,172,224,.55) 0%, rgba(255,255,255,0) 70%); }
.glow--contact-2 {
  right: -80px; bottom: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(243,159,128,.5) 0%, rgba(255,255,255,0) 70%); }
.glow--contact-3 {
  left: 45%; top: -220px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(125,202,202,.5) 0%, rgba(255,255,255,0) 70%); }

/* 左に文章・右にボタン2つ。900px以下は縦積み */
.corp__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px; }
.corp__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0; }

.corp__en {
  margin-bottom: 16px;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .05em;
  line-height: 1.75; }
.corp__ja { margin-bottom: 24px; font-size: 20px; font-weight: 500; letter-spacing: .1em; line-height: 1.4; color: var(--white); }
/* リード文（黒地の上なので白）。index.css を読まない下層でも同じ見え方にする */
.corp__body .cform__lead {
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 2.6;
  color: var(--white);
  margin-bottom: 0; }

/* PC専用の改行（CTAのリード文）。SPでは無効にする */
.cform__br-pc { display: inline; }

@media screen and (max-width: 900px) {
  .corp__inner { flex-direction: column; align-items: flex-start; gap: 40px; } }

@media screen and (max-width: 600px) {
  .corp__ja { font-size: 18px; }
  .corp__actions { width: 100%; }
  .corp__body .cform__lead { font-size: 14px; line-height: 2; }
  .cform__br-pc { display: none; } }

/* =========================================================
   404 / thanks
   ========================================================= */
.error {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 96px var(--pad-x); }
.error__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.glow--error-1 {
  left: -140px; top: -80px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(91,172,224,.3) 0%, rgba(255,255,255,0) 70%); }
.glow--error-2 {
  right: -120px; bottom: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(243,159,128,.28) 0%, rgba(255,255,255,0) 70%); }

.error__ttl { margin-bottom: 32px; }
.error__ttl .sec-ttl__en {
  font-family: var(--font-en);
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.4; }
/* 404 のみ、見出しを一段大きなグラデーション文字で見せる */
.error--404 .error__ttl .sec-ttl__en { font-size: 48px; letter-spacing: 0.08em; }
.error__ttl .sec-ttl__ja {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4; }
.error__txt {
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 2; }
.error__txt + .error__txt { margin-top: 20px; }
.error__link { margin-top: 40px; }
/* 404 のボタンだけグラデーションのベタ塗り。thanks は .btn--outline-holo をそのまま使う */
.error--404 .error__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  background: var(--holo);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.07em;
  box-shadow: var(--shadow-cta); }
.error--404 .error__link a:hover { color: var(--white); box-shadow: var(--shadow-cta-hover); }
/* PC専用の改行（thanks の2段落目）。SPでは無効化する */
@media screen and (max-width: 600px) {
  .error { padding: 64px 20px; }
  .error__ttl .sec-ttl__en { font-size: 28px; }
  .error--404 .error__ttl .sec-ttl__en { font-size: 34px; }
  .error__ttl .sec-ttl__ja { font-size: 18px; }
  .error--404 .error__link a { width: 100%; } }

/* =========================================================
   レスポンシブ（共通）
   1200px以下: 左右余白を詰める / 900px以下: タブレット・SP / 600px以下: スマホ
   ========================================================= */
@media screen and (max-width: 1200px) {
  :root { --pad-x: 40px; }
  .footer__row { gap: 40px; }
  .footer__links { gap: 48px; } }

@media screen and (max-width: 600px) {
  :root { --pad-x: 20px; --sec-y: 64px; --sec-y-lg: 64px; }   /* 左右余白は 2026-09-05 に 15→20px */
  .pnkz { padding-top: 24px; } }

/* =========================================================
   動きを減らす設定
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  /* 個別要素の transition / animation 指定より優先させて確実に止めるため !important にする */
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important; } }
