@charset "UTF-8";
/* ==========================================================================
   AKENO — 導線をつくるマーケター
   テーマ: 紫がかった朝焼け（夜の青紫 → 朝のピンク・オレンジ）
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 変数
   -------------------------------------------------------------------------- */

:root {
  /* 朝焼けのカラーランプ（上＝夜、下＝朝） */
  --dawn-0: #1b2a5e;
  --dawn-1: #3d2b6b;
  --dawn-2: #6b3f8f;
  --dawn-3: #9c4f97;
  --dawn-4: #c75f8e;
  --dawn-5: #ea7f7f;
  --dawn-6: #f7a76c;
  --dawn-7: #ffd9a0;

  /* 本文エリア */
  --paper: #fdfaf7;
  --paper-2: #f6f1ee;
  --ink: #2a2338;
  --ink-soft: #5d5470;
  --ink-mute: #8b8199;

  --accent: #c75f8e;
  --accent-hover: #ea7f7f;
  --line: rgba(42, 35, 56, 0.12);
  --line-strong: rgba(42, 35, 56, 0.22);

  --font: -apple-system, "system-ui", "Helvetica Neue", "Segoe UI",
          "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;

  --wrap: 1080px;
  --radius: 10px;
  --header-h: 84px;

  /* 朝焼けグラデーション（上下方向・上が暗く下が明るい） */
  --dawn-gradient: linear-gradient(to bottom,
    var(--dawn-0) 0%,
    var(--dawn-1) 14%,
    var(--dawn-2) 30%,
    var(--dawn-3) 45%,
    var(--dawn-4) 60%,
    var(--dawn-5) 74%,
    var(--dawn-6) 88%,
    var(--dawn-7) 100%);
}

/* --------------------------------------------------------------------------
   2. ベース
   -------------------------------------------------------------------------- */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.5; margin: 0; }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 32px;
}

.wrap-narrow { max-width: 760px; }

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

/* --------------------------------------------------------------------------
   3. ヘッダー（固定UI）
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header > .wrap > * { pointer-events: auto; }

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.brand .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.brand .brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 4px;
  transition: color 0.3s ease;
}

/* ヒーロー上（暗い背景）と、メニューを開いているあいだはロゴを白に反転 */
.is-over-dark .brand .brand-name,
.is-locked .brand .brand-name { color: #ffffff; }

.is-over-dark .brand .brand-tag,
.is-locked .brand .brand-tag { color: rgba(255, 255, 255, 0.78); }

.header-actions { display: flex; gap: 10px; }

.icon-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  gap: 3px;
  border: 0;
  border-radius: 4px;
  background: rgba(42, 35, 56, 0.55);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.icon-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.icon-btn svg { width: 20px; height: 20px; }

.menu-btn .bars {
  width: 22px;
  display: grid;
  gap: 5px;
}

.menu-btn .bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   4. 全画面メニュー
   -------------------------------------------------------------------------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dawn-gradient);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow-y: auto;
}

.nav-overlay.is-open { opacity: 1; visibility: visible; }

.nav-overlay .nav-inner {
  width: 100%;
  max-width: 520px;
  padding: 120px 32px 60px;
}

.global-nav { list-style: none; }

.global-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(16px);
}

.nav-overlay.is-open .global-nav li {
  animation: nav-in 0.6s ease forwards;
}

.nav-overlay.is-open .global-nav li:nth-child(1) { animation-delay: 0.10s; }
.nav-overlay.is-open .global-nav li:nth-child(2) { animation-delay: 0.16s; }
.nav-overlay.is-open .global-nav li:nth-child(3) { animation-delay: 0.22s; }
.nav-overlay.is-open .global-nav li:nth-child(4) { animation-delay: 0.28s; }
.nav-overlay.is-open .global-nav li:nth-child(5) { animation-delay: 0.34s; }
.nav-overlay.is-open .global-nav li:nth-child(6) { animation-delay: 0.40s; }
.nav-overlay.is-open .global-nav li:nth-child(7) { animation-delay: 0.46s; }

@keyframes nav-in {
  to { opacity: 1; transform: none; }
}

.global-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 6px;
  text-decoration: none;
  color: #fff;
  transition: gap 0.3s ease, color 0.3s ease;
}

.global-nav a:hover { gap: 28px; color: var(--dawn-7); }

.global-nav .en {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.global-nav .ja {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

.global-nav a[aria-current="page"] .en { color: var(--dawn-7); }

/* --------------------------------------------------------------------------
   5. ヒーロー（朝焼け）
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--dawn-gradient);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles i {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: twinkle 5s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50%      { opacity: 1;    transform: scale(1); }
}

/* 流れ星：ヒーロー最上部の青い帯（夜が残る領域）にだけ、ときどき流す。
   下端はマスクでぼかし、紫に変わる手前で自然に消えるようにする。 */
.hero-meteors {
  position: absolute;
  inset: 0 0 auto 0;
  height: 24%;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}

.hero-meteors i {
  position: absolute;
  width: var(--len, 150px);
  height: 1px;
  border-radius: 1px;
  /* 左端が頭、右へ向かって尾が消える */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  opacity: 0;
  animation: meteor var(--dur, 10s) linear infinite;
}

/* 頭の光点 */
.hero-meteors i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(255, 233, 201, 0.75);
  transform: translate(-1px, -50%);
}

/* 1周のうち最初の1割だけ流れ、残りは消えている＝散発的に見せる */
@keyframes meteor {
  0% {
    opacity: 0;
    transform: rotate(var(--angle, 208deg)) translateX(0);
  }
  2%   { opacity: 1; }
  9%   { opacity: 1; }
  12% {
    opacity: 0;
    transform: rotate(var(--angle, 208deg)) translateX(calc(var(--travel, 440px) * -1));
  }
  100% {
    opacity: 0;
    transform: rotate(var(--angle, 208deg)) translateX(calc(var(--travel, 440px) * -1));
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 40px) 32px 120px;
}

.hero-lead {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--dawn-7);
}

/* スマホでのみ改行させる（狭い画面で語の途中で折り返さないように） */
.br-sp { display: none; }

.hero-desc {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.1;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: rgba(42, 35, 56, 0.6);
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(42, 35, 56, 0.5), transparent);
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 下層ページ用の小さめヒーロー */
.page-hero {
  position: relative;
  background: var(--dawn-gradient);
  padding: calc(var(--header-h) + 88px) 0 96px;
  text-align: center;
  overflow: hidden;
}

.page-hero .en {
  display: block;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1.2;
}

.page-hero .ja {
  display: block;
  margin-top: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  color: var(--dawn-7);
}

.page-hero .page-desc {
  margin-top: 22px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.86);
}

/* --------------------------------------------------------------------------
   6. セクション共通
   -------------------------------------------------------------------------- */

.section { padding: 104px 0; }

.section-tight { padding: 72px 0; }

.section-alt { background: var(--paper-2); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head .en {
  display: block;
  font-size: clamp(1.8rem, 4.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.section-head .ja {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.section-head .desc {
  margin-top: 24px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.section-foot {
  margin-top: 56px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. ボタン
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 17px 34px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
              box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn svg { width: 15px; height: 15px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(199, 95, 142, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
  background: #fff;
  color: var(--dawn-3);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   8. カード（汎用）
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 34px 28px;
  list-style: none;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(42, 35, 56, 0.14);
}

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img { transform: scale(1.06); }

.card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(42, 35, 56, 0.68);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.card-title {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.card:hover .card-title { color: var(--accent); }

.card-text {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

.card-meta .ext {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
}

.card-meta .ext svg { width: 12px; height: 12px; }

/* --------------------------------------------------------------------------
   9. サービス（番号付き）
   -------------------------------------------------------------------------- */

.service-grid {
  display: grid;
  /* 5サービス＋「その他」の6項目。3 / 2 / 1 列すべてで割り切れ、空きセルが出ない */
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-item {
  background: var(--paper);
  padding: 40px 30px 44px;
  transition: background 0.35s ease;
}

.service-item:hover { background: var(--paper-2); }

.service-num {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.06rem;
  margin-bottom: 12px;
}

.service-item p {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.service-item .more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--accent);
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-item .more-link:hover { gap: 13px; color: var(--accent-hover); }

.service-item .more-link svg { width: 13px; height: 13px; }

/* 詳細ページ用の横並びサービス */
.service-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:first-of-type { border-top: 1px solid var(--line); }

.service-detail .lead-num {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1;
}

.service-detail .lead-label {
  display: block;
  margin-top: 12px;
  font-size: 0.94rem;
  font-weight: 700;
}

.service-detail p { font-size: 0.92rem; color: var(--ink-soft); }

.check-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* --------------------------------------------------------------------------
   10. お客様の声（トップの抜粋）
   -------------------------------------------------------------------------- */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  list-style: none;
}

.voice-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.voice-item .quote {
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.voice-item .who {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.voice-item .who img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   11. Instagram グリッド（トップの抜粋・プレースホルダー）
   -------------------------------------------------------------------------- */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  list-style: none;
}

.insta-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.insta-grid a:hover img { transform: scale(1.08); opacity: 0.82; }

.insta-account {
  text-align: center;
  margin-bottom: 26px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   12. プロフィール / 定義リスト
   -------------------------------------------------------------------------- */

.profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.profile-photo img { border-radius: var(--radius); width: 100%; }

.profile-grid p + p { margin-top: 18px; }

.profile-grid p { color: var(--ink-soft); font-size: 0.94rem; }

.def-list { list-style: none; }

.def-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.def-list li:first-child { border-top: 1px solid var(--line); }

.def-list .k {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.def-list .v { color: var(--ink-soft); }

/* 沿革 */
.timeline { list-style: none; }

.timeline li {
  position: relative;
  padding: 0 0 32px 34px;
  border-left: 1px solid var(--line);
}

.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }

.timeline li::before {
  content: "";
  position: absolute;
  left: -5.5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline .year {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline p { font-size: 0.9rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   13. フォーム
   -------------------------------------------------------------------------- */

.form-note {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.form-note strong { color: var(--ink); }

.form-field { margin-bottom: 26px; }

.form-field label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field textarea { min-height: 180px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199, 95, 142, 0.14);
}

.form-submit { text-align: center; margin-top: 36px; }

.contact-direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-direct .item {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-direct .k {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-direct .v {
  font-size: 1rem;
  text-decoration: none;
  word-break: break-all;
}

.contact-direct a.v:hover { color: var(--accent); }

.contact-direct .sub {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  color: var(--ink-mute);
}

/* --------------------------------------------------------------------------
   14. 記事本文（プライバシーポリシー等）
   -------------------------------------------------------------------------- */

.prose h2 {
  font-size: 1.16rem;
  margin: 52px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  line-height: 1.6;
}

.prose h2:first-child { margin-top: 0; }

.prose p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; }

.prose ul { margin: 0 0 16px; padding-left: 22px; }

.prose li { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 8px; }

.prose .updated {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* --------------------------------------------------------------------------
   15. CTA バンド
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  background: var(--dawn-gradient);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}

.cta .en {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: var(--dawn-7);
  margin-bottom: 18px;
}

.cta h2 {
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  color: #fff;
  margin-bottom: 20px;
}

.cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
}

/* --------------------------------------------------------------------------
   16. フッター
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--dawn-0);
  color: rgba(255, 255, 255, 0.78);
  padding: 66px 0 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}

.footer-brand .brand-tag {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  list-style: none;
}

.footer-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--dawn-7); }

.footer-bottom {
  padding-top: 26px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   17. ページトップへ戻る
   -------------------------------------------------------------------------- */

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, visibility 0.35s ease,
              transform 0.35s ease, background 0.3s ease;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

.to-top:hover { background: var(--accent-hover); }

.to-top svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   18. スクロール表示アニメーション
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-particles i,
  .scroll-cue::after { animation: none; }
}

/* --------------------------------------------------------------------------
   19. レスポンシブ
   -------------------------------------------------------------------------- */

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

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 16px; padding: 34px 0; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .wrap { padding-inline: 20px; }
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .brand .brand-name { font-size: 1.24rem; }
  .icon-btn { width: 48px; height: 48px; }
  .card-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .def-list li { grid-template-columns: 1fr; gap: 4px; }
  .btn { width: 100%; min-width: 0; }
  .footer-top { flex-direction: column; }
  .global-nav .en { font-size: 1.24rem; }
  .nav-overlay .nav-inner { padding-top: 100px; }
  .br-sp { display: inline; }
}
