/* ============================================================
 * サイトについて（About）ページ
 * 黒×青のサイバー感、パーティクル背景レイヤー込み
 * ============================================================ */

/* ===== 背景：固定パーティクルcanvas ===== */
.pokeca-about-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
  background: radial-gradient(ellipse at center, #0a1a2e 0%, #050912 60%, #02050b 100%);
  pointer-events: none;
}

/* About本体はパーティクルbg上に置く → ダークテーマに */
.pokeca-about {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #e8eef5;
}

/* body自体の背景も暗くしないと、headerやfooterの白との段差がでる */
body.page-template-default.page.pokeca-about-page,
body.page-about,
body.about-dark {
  background: #050912;
}

/* ===== 共通：ABOUTヘッダー ===== */
.pokeca-about-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 80px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}
.pokeca-about-num {
  font-family: var(--pokeca-mono);
  font-size: 11px;
  color: #5fc4ee;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.pokeca-about-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1;
  color: #fff;
}
.pokeca-about-title-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-family: var(--pokeca-mono);
  text-transform: uppercase;
}

/* ===== HERO ===== */
.pokeca-about-hero {
  text-align: center;
  padding: 40px 0 96px;
}
.pokeca-about-hero-main {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 32px;
  font-family: 'Georgia', 'Noto Sans JP', serif;
  font-style: italic;
  color: #fff;
  text-shadow: 0 0 30px rgba(95, 196, 238, 0.3);
}
.pokeca-about-hero-sub {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto;
}

/* HEROの1文字フェードイン */
.js-type-in .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-type-in.is-visible .char {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-rise {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-rise.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-line-grow {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #5fc4ee, rgba(95, 196, 238, 0));
  margin-top: 18px;
  transition: width 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js-section.is-visible .js-line-grow {
  width: 100%;
}

/* ===== セクション見出し ===== */
.pokeca-about-section-head {
  margin-bottom: 48px;
}
.pokeca-about-section-num {
  display: block;
  font-family: var(--pokeca-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #5fc4ee;
  font-weight: 500;
  margin-bottom: 8px;
}
.pokeca-about-section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}

/* ===== MISSION：3ポイント ===== */
.pokeca-about-points {
  padding: 56px 0;
}
.pokeca-about-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pokeca-about-point {
  padding: 28px 24px;
  background: rgba(15, 30, 50, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0.5px solid rgba(95, 196, 238, 0.2);
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pokeca-about-point:hover {
  border-color: rgba(95, 196, 238, 0.6);
  box-shadow: 0 8px 32px rgba(95, 196, 238, 0.12);
  transform: translateY(-2px);
}
.pokeca-about-point-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.pokeca-about-point-num {
  font-family: var(--pokeca-mono);
  font-size: 32px;
  font-weight: 700;
  color: #5fc4ee;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(95, 196, 238, 0.4);
}
.pokeca-about-point-label {
  font-family: var(--pokeca-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.pokeca-about-point-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.5;
  color: #fff;
}
.pokeca-about-point-body {
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ===== NUMBERS：3つの数字 ===== */
.pokeca-about-stats {
  padding: 56px 0;
}
.pokeca-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.pokeca-about-stat {
  padding: 32px 16px;
  background: rgba(15, 30, 50, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0.5px solid rgba(95, 196, 238, 0.2);
  border-radius: 4px;
  transition: border-color 0.25s;
}
.pokeca-about-stat:hover {
  border-color: rgba(95, 196, 238, 0.5);
}
.pokeca-about-stat-num {
  font-family: var(--pokeca-mono);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(95, 196, 238, 0.35);
}
.pokeca-about-stat-suffix {
  color: #5fc4ee;
  margin-left: 2px;
}
.pokeca-about-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ===== EDITOR：運営者 ===== */
.pokeca-about-author {
  padding: 56px 0;
}
.pokeca-about-author-card {
  padding: 36px 32px;
  background: rgba(15, 30, 50, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  border: 0.5px solid rgba(95, 196, 238, 0.25);
}
.pokeca-about-author-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
}
.pokeca-about-author-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.pokeca-about-author-role {
  font-family: var(--pokeca-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.pokeca-about-author-bio {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.pokeca-about-author-bio a {
  color: #5fc4ee;
  text-decoration: none;
  border-bottom: 1px solid rgba(95, 196, 238, 0.4);
  transition: color 0.2s, border-bottom-color 0.2s;
}
.pokeca-about-author-bio a:hover {
  color: #8dd6f3;
  border-bottom-color: #8dd6f3;
}

/* ===== CTA ===== */
.pokeca-about-cta {
  padding: 56px 0 96px;
  text-align: center;
}
.pokeca-about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #050912;
  background: #5fc4ee;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(95, 196, 238, 0.25);
}
.pokeca-about-cta-btn:hover {
  background: #8dd6f3;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(95, 196, 238, 0.45);
}
.pokeca-about-cta-btn i {
  transition: transform 0.2s;
}
.pokeca-about-cta-btn:hover i {
  transform: translateX(4px);
}

/* ===== レスポンシブ ===== */
@media (max-width: 760px) {
  .pokeca-about-header {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
  }
  .pokeca-about-title { font-size: 22px; }
  .pokeca-about-hero { padding: 24px 0 64px; }
  .pokeca-about-hero-main { font-size: clamp(28px, 8vw, 38px); }

  .pokeca-about-points-grid,
  .pokeca-about-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pokeca-about-stat-num { font-size: 38px; }
  .pokeca-about-author-card { padding: 24px 20px; }
}

/* アクセシビリティ：モーション低減 */
@media (prefers-reduced-motion: reduce) {
  .js-fade-in, .js-rise, .js-type-in .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .js-line-grow { width: 100% !important; transition: none !important; }
}
