/* ============================================================
   AND LINKS Corporate Site — style.css
   青を基調に赤を差し色にした、シャープで信頼感のあるデザイン
   ============================================================ */

:root {
  --blue-900: #0A2C4C;
  --blue-800: #0E3B65;
  --blue-700: #124F84;
  --blue-600: #145C99;
  --blue-500: #1C74BE;
  --blue-300: #6FA3CE;
  --blue-100: #E1EDF8;
  --blue-50:  #F2F7FC;

  --red-600: #C0273E;
  --red-500: #D93A50;
  --red-100: #F8E4E7;

  --ink: #16232F;
  --ink-soft: #4C5B68;
  --ink-faint: #83919C;

  --paper: #F2F7FC;
  --white: #FFFFFF;

  --font-round: "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-soft: 0 16px 34px rgba(10, 44, 76, 0.16);
  --shadow-card: 0 6px 18px rgba(10, 44, 76, 0.08);

  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-round);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

section { position: relative; }

/* ---------- 共通: セクション見出し ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-700);
  padding: 4px 0 4px 14px;
  border-left: 4px solid var(--red-500);
  margin-bottom: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}
.section-head .section-tag { display: inline-flex; }

.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
  font-weight: 900;
}

.section-head .en {
  display: block;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 15px;
}

.underline-red {
  position: relative;
  white-space: nowrap;
}
.underline-red::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.22em;
  background: var(--red-500);
  opacity: 0.85;
  z-index: -1;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(5px); }

.btn-primary {
  background: var(--blue-800);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--blue-900); box-shadow: 0 20px 30px rgba(10,44,76,.26); }

.btn-accent {
  background: var(--red-500);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(217,58,80,.30);
}
.btn-accent:hover { transform: translateY(-2px); background: var(--red-600); box-shadow: 0 18px 32px rgba(217,58,80,.36); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--ink);
  border-color: var(--blue-800);
}
.btn-outline:hover { background: var(--blue-800); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 247, 252, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,44,76,.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  letter-spacing: 0.03em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--blue-800); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--blue-800); transition: transform .25s ease, opacity .25s ease; }

/* ---------- ヒーロー(ダーク・ネイビー) ---------- */
.hero {
  padding: 96px 0 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #22C0D6 0%, var(--blue-900) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
  color: var(--white);
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 26px; color: var(--white); font-weight: 900; }
.hero .section-tag { color: var(--blue-100); border-left-color: var(--red-500); }
.hero-lead { color: rgba(255,255,255,.78); font-size: 16px; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ヒーロー背景いっぱいに広がる巨大ロゴモチーフ */
.hero-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-art svg { width: 100%; height: 100%; display: block; }

/* スクエア出現前の「AND LINKS」タイトル演出 */
.hero-intro-title {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-intro-title span {
  font-family: var(--font-round);
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: clamp(38px, 6.4vw, 84px);
  color: var(--white);
  opacity: 0;
  animation: introTitle 3.4s ease-in-out forwards;
}
@keyframes introTitle {
  0%   { opacity: 0; transform: scale(.94); }
  38%  { opacity: 1; transform: scale(1); }
  65%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-intro-title { display: none; }
}

.page-hero {
  padding: 78px 0 96px;
  text-align: center;
  position: relative;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-700) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  color: var(--white);
}
.page-hero .en-title {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: clamp(34px, 5.4vw, 52px);
  color: var(--white);
  letter-spacing: 0.06em;
}
.page-hero .en-title span { color: var(--white); }
.page-hero .ja-title {
  margin-top: 14px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--blue-100);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.page-hero .ja-title::before,
.page-hero .ja-title::after { content: ""; width: 26px; height: 2px; background: var(--red-500); }

/* ---------- 装飾ドゥードル ---------- */
.doodle { position: absolute; z-index: 1; pointer-events: none; opacity: 0.85; }
.float-a { animation: floatA 9s ease-in-out infinite; }
.float-b { animation: floatB 10s ease-in-out infinite; }
.float-c { animation: floatC 8s ease-in-out infinite; }
.spin-slow { animation: spinSlow 30s linear infinite; }

@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes floatC { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(4px,-6px); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---------- 初回表示のダイナミックな演出 ---------- */
.text-in {
  opacity: 0;
  transform: translateY(22px);
  animation: textUp .8s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes textUp { to { opacity: 1; transform: translateY(0); } }

.pop-in {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: popIn .9s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(.4); }
  65%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.draw-in { animation: drawLine 1.1s cubic-bezier(.3,.8,.4,1) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.sweep-in {
  transform-box: fill-box;
  transform-origin: 0% 50%;
  transform: scaleX(0);
  animation: sweepIn .6s cubic-bezier(.7,0,.3,1) forwards;
}
@keyframes sweepIn { to { transform: scaleX(1); } }

.node-in {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: nodeIn .5s ease-out forwards;
}
@keyframes nodeIn { from { opacity: 0; transform: scale(.2); } to { opacity: 1; transform: scale(1); } }

.fade-in { opacity: 0; animation: fadeIn 1s ease-out forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* 散らばった状態から一点に収束するロゴモチーフ演出(ゆっくり) */
.converge-in {
  --tx: 0px;
  --ty: 0px;
  --tr: 0deg;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: convergeIn 2.3s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes convergeIn {
  0%   { opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(var(--tr)) scale(.35); }
  70%  { opacity: 1; transform: translate(calc(var(--tx) * -0.03), calc(var(--ty) * -0.03)) rotate(calc(var(--tr) * -0.06)) scale(1.06); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* 収束が終わったあと、まとまったロゴモチーフを右側へ移動 */
.cluster-shift {
  animation: shiftRight 1.3s cubic-bezier(.65,0,.35,1) forwards;
}
@keyframes shiftRight {
  from { transform: translateX(0); }
  to   { transform: translateX(280px); }
}

@media (prefers-reduced-motion: reduce) {
  .float-a, .float-b, .float-c, .spin-slow,
  .text-in, .pop-in, .draw-in, .sweep-in, .node-in, .fade-in, .converge-in, .cluster-shift {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.wave-divider { display: none; }

/* ---------- カード系 ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,44,76,.08);
  border-top: 3px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-top-color: var(--red-500);
}
.card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: var(--blue-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 32px; height: 32px; }
.card-icon svg [stroke="#1670C2"],
.card-icon svg [stroke="#135FA6"] { stroke: #FFFFFF; }

/* ---------- TOPページ: サービス詳細リスト ---------- */
.service-preview-list { display: flex; flex-direction: column; }
.service-preview-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--blue-100);
  align-items: flex-start;
}
.service-preview-row:first-child { padding-top: 0; }
.service-preview-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-preview-icon {
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-preview-icon svg { width: 120px; height: 120px; }

/* ---------- サービスアイコン(画像+グラデーションSVGマスク) ---------- */
.icon-mask-svg { display: block; width: 120px; height: 120px; }

.service-preview-content .service-index { margin-bottom: 10px; }
.service-preview-content h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.service-brand {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-800);
  background: var(--blue-100);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.service-brand.on-dark { color: #fff; background: rgba(255,255,255,.16); }

/* ---------- コーチングサービス feature ブロック ---------- */
.coach-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-lg);
  padding: 56px 48px 0;
  color: var(--white);
}
.coach-feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}
.coach-feature-text { padding-bottom: 40px; }
.coach-feature h3 {
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.55;
  margin: 18px 0 22px;
}
.coach-highlight {
  display: inline-block;
  background: var(--white);
  color: var(--blue-900);
  padding: 4px 14px;
  border-radius: 6px;
}
.coach-feature p { color: rgba(255,255,255,.82); font-size: 15px; margin-bottom: 0; }
.coach-feature-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.coach-feature-photo img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}
.coach-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 26px 0;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.coach-stat { display: flex; flex-direction: column; gap: 6px; }
.coach-stat .label { font-size: 12.5px; color: rgba(255,255,255,.65); }
.coach-stat .num { font-family: var(--font-round); font-weight: 900; font-size: 32px; color: var(--white); }
.coach-stat .num small { font-size: 15px; font-weight: 700; color: var(--red-500); margin-left: 4px; }
.coach-cta { position: relative; z-index: 2; padding: 0 0 40px; text-align: right; }

@media (max-width: 760px) {
  .coach-feature-grid { grid-template-columns: 1fr; }
  .coach-feature-photo { order: -1; max-width: 260px; margin: 0 auto; }
  .coach-feature-text { padding-bottom: 20px; text-align: left; }
  .coach-cta { text-align: center; }
}

@media (max-width: 600px) {
  .coach-feature { padding: 40px 26px 0; }
  .coach-stats { gap: 24px; }
}
.service-preview-content p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; max-width: 640px; }
.service-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-800);
  transition: color .2s ease;
}
.service-preview-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.service-preview-link:hover { color: var(--red-500); }
.service-preview-link:hover svg { transform: translateX(5px); }

@media (max-width: 600px) {
  .service-preview-row { grid-template-columns: 1fr; justify-items: center; }
  .service-preview-icon { margin: 0 auto 6px; justify-self: center; }
  .service-preview-content { width: 100%; justify-self: stretch; }
}
.card h3 { font-size: 18px; margin-bottom: 12px; font-weight: 700; }
.card p { color: var(--ink-soft); font-size: 14.5px; }

.card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 34px;
  color: var(--blue-100);
}

/* ---------- サービス概要(SERVICEページ) ---------- */
section[id] {
  scroll-margin-top: 100px;
}

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  position: relative;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block + .service-block { border-top: 1px solid var(--blue-100); }

.service-media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 240px; }
.service-media svg { width: 220px; height: 220px; }
.service-index {
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  background: var(--blue-900);
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.service-text h3 { font-size: 23px; margin-bottom: 16px; font-weight: 900; }
.service-text p { color: var(--ink-soft); margin-bottom: 10px; }

/* ---------- About / 概要ブロック ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; min-height: 320px; }
.about-copy .lead { font-size: 19px; font-weight: 700; margin-bottom: 20px; color: var(--blue-800); }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- 数字セクション ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.stat-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 20px;
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid var(--blue-900);
}
.stat-num { font-family: var(--font-round); font-weight: 900; font-size: 42px; color: var(--blue-900); }
.stat-num span { font-size: 19px; color: var(--red-500); }
.stat-label { margin-top: 8px; color: var(--ink-soft); font-size: 13.5px; }

/* ---------- CTA バナー ---------- */
.cta-banner {
  background: linear-gradient(150deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); font-size: clamp(22px, 3.4vw, 29px); margin-bottom: 30px; font-weight: 900; }
.cta-banner .btn-accent { position: relative; z-index: 2; }

/* ---------- タイムライン(COMPANY) ---------- */
.timeline { position: relative; padding-left: 32px; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--blue-300);
}
.timeline-item { position: relative; padding-bottom: 30px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 4px;
  width: 14px; height: 14px;
  background: var(--white);
  border: 3px solid var(--red-500);
  border-radius: 50%;
}
.timeline-year { font-family: var(--font-round); font-weight: 900; color: var(--blue-800); font-size: 15px; margin-bottom: 4px; }
.timeline-item p { color: var(--ink-soft); font-size: 14.5px; }

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  border-top: 3px solid var(--blue-900);
}
.profile-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--blue-900);
  overflow: hidden;
}
.profile-avatar svg { width: 68%; height: 68%; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.profile-name { font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.profile-name strong { font-family: var(--font-round); font-size: 24px; color: var(--ink); display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 4px; font-weight: 900; }
.coach-cert-badge {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-300);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0;
  white-space: nowrap;
}

/* ---------- 会社概要テーブル ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.info-table tr { border-bottom: 1px solid var(--blue-100); }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td { text-align: left; padding: 22px 28px; font-size: 15px; }
.info-table th { width: 200px; font-family: var(--font-round); color: var(--white); background: var(--blue-900); font-weight: 700; }
.info-table td { color: var(--ink-soft); line-height: 1.8; }

/* ---------- フォーム(CONTACT) ---------- */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; align-items: flex-start; }
.contact-info {
  background: var(--blue-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.contact-info h3 { color: var(--white); font-size: 19px; margin-bottom: 16px; font-weight: 900; }
.contact-info p { color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: 10px; }
.contact-info .info-row { display: flex; gap: 12px; margin-top: 22px; align-items: flex-start; }
.contact-info .info-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-card); }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-family: var(--font-round); font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.form-row label .req { color: var(--white); background: var(--red-500); font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 700; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #C9D6E2;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--blue-700); }
.form-row textarea { min-height: 150px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.form-check input { width: auto; margin-top: 3px; }
.form-privacy-note { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.form-privacy-note a { color: var(--blue-700); text-decoration: underline; }
.form-privacy-note a:hover { color: var(--red-600); }
.form-submit { text-align: center; margin-top: 20px; }
.form-submit button { border: none; }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 20px; }

.alert-box { border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 26px; font-size: 14.5px; border-left: 4px solid; }
.alert-success { background: var(--blue-50); color: var(--blue-800); border-color: var(--blue-800); }
.alert-error { background: var(--red-100); color: var(--red-600); border-color: var(--red-600); }

/* ---------- フッター ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.82); padding: 64px 0 30px; margin-top: 120px; position: relative; overflow: hidden; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 28px; filter: brightness(0) invert(1); }
.footer-desc { max-width: 320px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-nav h4 { color: var(--white); font-size: 13px; margin-bottom: 16px; letter-spacing: 0.1em; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-nav a:hover { color: var(--red-500); }
.footer-bottom { text-align: center; padding-top: 26px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.68); margin-left: 14px; transition: color .2s; }
.footer-bottom a:hover { color: var(--red-500); }
.contact-privacy-link { text-align: center; margin-top: 14px; }
.btn-sm { padding: 8px 18px; font-size: 12.5px; }

/* ---------- プライバシーポリシー ---------- */
.policy-intro { color: var(--ink-soft); margin-bottom: 40px; line-height: 1.9; }
.policy-section { margin-bottom: 40px; }
.policy-section h2 {
  font-size: 19px;
  font-weight: 900;
  color: var(--blue-900);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--blue-100);
}
.policy-section p { color: var(--ink-soft); margin-bottom: 12px; line-height: 1.9; }
.policy-section ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.policy-section ul li { color: var(--ink-soft); margin-bottom: 8px; line-height: 1.8; }
.policy-meta { text-align: right; color: var(--ink-soft); font-size: 13.5px; margin-top: 50px; }

/* ---------- スクロールフェード ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; direction: ltr !important; justify-items: center; }
  .service-block:nth-child(even) > * { direction: ltr; }
  .service-media { width: 220px; max-width: 100%; margin: 0 auto; justify-self: center; }
  .service-text { width: 100%; justify-self: stretch; }
  .contact-layout { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 130px 1fr; padding: 28px; gap: 24px; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; top: 66px; left: 0; right: 0; background: var(--paper);
    flex-direction: column; align-items: stretch; padding: 20px 24px 30px;
    box-shadow: 0 16px 30px rgba(10,44,76,.16);
    transform: translateY(-140%); opacity: 0; transition: transform .3s ease, opacity .3s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul li a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--blue-100); }
  .nav-toggle { display: flex; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 1fr; text-align: center; }
  .profile-avatar { width: 150px; margin: 0 auto; }
  .contact-info .info-row { text-align: left; }
  .info-table th { width: 120px; padding: 16px; font-size: 13px; }
  .info-table td { padding: 16px; font-size: 13px; }
  .footer-inner { flex-direction: column; }
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 600px) {
  .hide-sm { display: none; }
}
