@charset "UTF-8";
/*
Theme Name: VIRTUS PAYMENT
Theme URI: https://virtuspayment.com/
Author: Virtus Web Team
Description: VIRTUS PAYMENT corporate theme (manasys.shop style).
Version: 1.0
*/
/* ═══════════════════════════════════════════════════════════════════
   CSS Reset（Tailwind Preflight 相当）
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: var(--color-gray-200); }
html { font-size: 62.5%; line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; }
body { margin: 0; line-height: inherit; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: inherit; }
button { background: none; padding: 0; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
img, svg, video { display: block; }
img, video { max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }
table { border-collapse: collapse; }

/* ─── font-family utility ─── */
.font-en { font-family: var(--font-roboto), 'Roboto', sans-serif; }

/* ─── ScrollProgress ─── */
.scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  transform-origin: left;
}

/* ─── TiltCard ─── */
.tiltCard { height: 100%; }
.tiltCard-inner { position: relative; height: 100%; }
.tiltCard-glare {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 10;
}

/* ─── ParticleField ─── */
.particleField { pointer-events: none; }

/* ─── CursorGlow ─── */
.cursorGlow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}
@media screen and (max-width: 768px) { .cursorGlow { display: none; } }

/* Lenis smooth scroll */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

:root {
  --color-navy: #0a1628;
  --color-blue: #2d7dff;
  --color-tiffany: #81d8d0;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-white: #ffffff;

  /* RGB（rgba() 用） */
  --color-blue-rgb: 45, 125, 255;
  --color-tiffany-rgb: 129, 216, 208;
  --color-navy-rgb: 10, 22, 40;
  --color-success-rgb: 16, 185, 129;

  /* グレースケール */
  --color-gray-900: #111827;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  --color-bg-sub: #f8fbff;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  --duration-instant: 100ms;
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 400ms;

  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Conic gradient animation variable */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  color: #1E293B;
  background: #FFFFFF;
  font-family: var(--font-noto), var(--font-roboto), sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(var(--color-blue-rgb), 0.2);
  color: inherit;
}

/* Gradient utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--color-blue), var(--color-tiffany));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-animated {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-tiffany) 25%, var(--color-blue) 50%, var(--color-tiffany) 75%, var(--color-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Card styles */
.card {
  background: #FFFFFF;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.card-accent-blue { border-top: 3px solid var(--color-blue); }
.card-accent-tiffany { border-top: 3px solid var(--color-tiffany); }

/* Glass (dark sections) */
.glass {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-premium {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Mask for marquee edges */
.mask-edges {
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Geometric shape utility */

.text-balance {
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  .gradient-text-animated {
    animation: none !important;
  }
  .animate-marquee,
  .animate-shimmer {
    animation: none !important;
  }
}

/* Custom override: md:py-24 を非対称パディングに */
@media (min-width: 768px) {
  .md\:py-24 {
    padding-top: 1rem;
    padding-bottom: 10rem;
  }
}

/* ─── 共通：セクション本体（上下 padding + relative + overflow） ───── */
.section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.section--white { background: #fff; }

/* ─── 共通：セクションの内側コンテナ ──────────────────────────────── */
/* PC (>=1280px) は padding なし、それ未満は端に当たらないよう左右 24px */
.section-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ─── 共通：セクション見出し ──────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading--left {
  text-align: left;
  margin-bottom: 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-roboto), "Roboto", sans-serif;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-label { font-size: 1.8rem; margin-bottom: 10px; }
}

.section-title {
  font-size: 4.8rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 40px;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.8rem;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
/* About だけ大見出しが 2 行に分かれるので行間を広めに */
.about-text .section-title {
  line-height: 1.5;
}

/* スマホのみ改行する <br>（PCでは改行しない） */
.sp-br { display: none; }
@media (max-width: 767px) { .sp-br { display: inline; } }

.section-desc {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 40px;
}

/* ─── About セクション ───────────────────────────────────────────────
   Figma: 左テキスト(max 600px) + 右画像(画面の右半分・右端まで突き抜け)
   ────────────────────────────────────────────────────────────────── */
.about-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.about-decor__left {
  position: absolute;
  top: 40px;
  left: -60px;
  width: 393px;
  height: auto;
  transform-origin: center;
  animation: decor-float-a 7.5s ease-in-out infinite;
}
.about-decor__right {
  position: absolute;
  bottom: 80px;
  right: -100px;
  width: 397px;
  height: auto;
  transform-origin: center;
  animation: decor-float-b 9s ease-in-out infinite;
  animation-delay: -1.5s;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .about { padding-top: 0; padding-bottom: 0; }
}
.about-text {
  max-width: 600px;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .about-text { padding-top: 120px; padding-bottom: 120px; }
}
/* 1025〜1280px：2カラムでテキストが左端に張り付くので左余白を足す（トップ・about共通） */
@media (min-width: 1025px) and (max-width: 1280px) {
  .about-text { padding-left: 40px; }
}

.about-body {
  font-size: 1.6rem;
  line-height: 2;
  color: #475569;
  margin: 0 0 16px;
}
.about-body--last { margin-bottom: 40px; }

.about-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.about-grid { align-items: stretch; }
.about-image__img {
  object-fit: cover;
}
.about-image__reveal {
  position: absolute;
  inset: 0;
  background: var(--color-blue);
  z-index: 3;
}
/* 左から右の白フェード（画像の左端を背景に馴染ませる） */
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 30%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .about-image::before { display: none; }
  .about-text .section-label { display: block; text-align: center; }
  .about-text .section-title { text-align: center; }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about {
    padding-top: 0;
    padding-bottom: 0;
  }
  .about-text {
    max-width: none;
    margin: 0 auto;
    padding: 0px 15px 30px;
  }
  .about-image {
    height: 300px;
    min-height: 0;
  }
}
/* タブレット(768〜1024px)：about テキスト上余白＋画像を大きく */
@media (min-width: 768px) and (max-width: 1024px) {
  .about-text { padding-top: 60px; }
  .about-image { height: 400px; }
}

/* ─── PaymentServices セクション 装飾 ─────────────────────────────── */
.services-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.services .section-inner {
  position: relative;
  z-index: 1;
}
.services-decor__left {
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 320px;
  height: auto;
  transform: rotate(45deg);
  animation: decor-float-c 8.5s ease-in-out infinite;
  animation-delay: -3s;
}
.services-decor__right {
  position: absolute;
  top: 60px;
  right: -80px;
  width: 280px;
  height: auto;
  transform: rotate(-25deg);
  animation: decor-float-a 9s ease-in-out infinite;
  animation-delay: -2s;
}

/* 決済サービスカード（3列） */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) { .services-cards { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 640px)  { .services-cards { grid-template-columns: 1fr; } }

.services-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
a.services-card {
  text-decoration: none;
  color: inherit;
}
a.services-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.services-card .services-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: #EAF2FF;
  border-radius: 50%;
}
.services-card .services-card-iconImg {
  max-width: 80px;
  max-height: 80px;
}

.services-card .services-card-title {
  margin: 0 0 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

.services-card .services-card-desc {
  flex: 1;
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #475569;
}

.services-card .services-card-recommend {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-200);
}
.services-card .services-card-recommend-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.services-card .services-card-recommend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.services-card .services-card-recommend-list li {
  font-size: 1.4rem;
  color: var(--color-gray-600);
  background: var(--color-bg-sub);
  padding: 4px 12px;
  border-radius: 999px;
}

.services-card .services-card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-top: auto;
}
.services-card .services-card-recommend + .services-card-link {
  margin-top: 20px;
}
.services-card .services-card-link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  transition: margin-left 0.2s;
}
a.services-card:hover .services-card-link::after {
  margin-left: 10px;
}

/* ─── Features ───────────────────────────────────────────────────── */
.features {
  background: radial-gradient(ellipse at top right, rgba(236, 242, 252, 1) 0%, rgba(248, 250, 252, 0.7) 100%);
}
.features-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.features .section-inner {
  position: relative;
  z-index: 1;
}
.features-decor__right {
  position: absolute;
  top: 40px;
  right: -60px;
  width: 260px;
  height: auto;
  transform: rotate(70deg);
  animation: decor-float-b 11s ease-in-out infinite;
  animation-delay: -1s;
}
.features-decor__left {
  position: absolute;
  bottom: 80px;
  left: -80px;
  width: 380px;
  height: auto;
  transform: rotate(-50deg);
  animation: decor-float-c 9.5s ease-in-out infinite;
  animation-delay: -4s;
}
.features-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) { .features-cards { grid-template-columns: 1fr; gap: 24px; } }

.features-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .features-card { flex-direction: row-reverse; align-items: stretch; }
}

.features-card .features-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.features-card .features-card-title {
  margin: 0 0 12px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
@media screen and (max-width: 768px) { .features-card .features-card-title { font-size: 2.0rem; } }
.features-card .features-card-desc {
  flex: 1;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.features-card .features-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.features-card .features-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-blue);
  background: #f8fafc;
  border: 1px solid var(--color-blue);
  border-radius: 999px;
}

.features-card .features-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .features-card .features-card-image { width: 240px; height: auto; }
}
.features-card .features-card-image img {
  object-fit: cover;
}

/* ─── Solutions ──────────────────────────────────────────────────── */
.solutions-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.solutions .section-inner {
  position: relative;
  z-index: 1;
}
.solutions-decor__left {
  position: absolute;
  top: 50%;
  left: -80px;
  width: 300px;
  height: auto;
  transform: rotate(120deg);
  animation: decor-float-a 10s ease-in-out infinite;
  animation-delay: -2s;
}
.solutions-decor__right {
  position: absolute;
  bottom: 60px;
  right: -80px;
  width: 240px;
  height: auto;
  transform: rotate(-65deg);
  animation: decor-float-b 8.5s ease-in-out infinite;
  animation-delay: -5s;
}

.solutions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) { .solutions-cards { grid-template-columns: 1fr; gap: 24px; } }

.solutions-card {
  position: relative;
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.solutions-card--static { cursor: default; }
.solutions-card--static:hover { transform: none; }

.solutions-card .solutions-card-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}
.solutions-card .solutions-card-image img {
  object-fit: cover;
  transition: transform 0.5s;
}
.solutions-card--static:hover .solutions-card-image img { transform: none; }

.solutions-card .solutions-card-icon {
  position: absolute;
  left: 11px;
  top: 195px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--color-blue);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}
.solutions-card .solutions-card-iconImg { width: 28px; height: 28px; }
@media (max-width: 768px) {
  .solutions-card .solutions-card-icon { top: 170px; }
}
.solutions-card .solutions-card-svgIcon svg { width: 28px; height: 28px; stroke: var(--color-blue); }
.solutions-card .solutions-card-checkIcon { width: 16px; height: 16px; }

.solutions-card .solutions-card-body {
  padding: 40px 30px 30px;
}
.solutions-card .solutions-card-title {
  margin: 0 0 12px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
}
.solutions-card .solutions-card-desc {
  margin: 0 0 24px;
  min-height: 66px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #475569;
}
.solutions-card .solutions-card-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-blue);
}
.solutions-card .solutions-card-stats svg { width: 16px; height: 16px; }

.solutions-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

/* ─── News (トップ お知らせ) ────────────────────────────────────── */
.newsSection {
  background: var(--color-bg-sub);
  padding-top: 80px;
  padding-bottom: 80px;
}
.newsSection .section-inner {
  max-width: 1080px;
}
.newsSection-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas:
    "left list"
    "cta  list";
  column-gap: 48px;
  row-gap: 0;
  align-items: start;
}
.newsSection-left  { grid-area: left; }
.newsSection-right { grid-area: list; }
.newsSection-cta   { grid-area: cta; margin-top: 40px; }
.newsSection-left .section-title { text-align: left; margin-bottom: 0; }
@media screen and (max-width: 768px) {
  .newsSection-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "list" "cta";
    gap: 32px;
  }
  .newsSection-left { text-align: center; }
  .newsSection-left .section-title { margin-bottom: 0; text-align: center; }
  .newsSection-cta { margin-top: 0; }
}

.newsSection-right {}
.newsSection-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
}
.newsSection-item:first-child { border-top: 1px solid var(--color-gray-200); }
@media screen and (max-width: 768px) {
  .newsSection-item { flex-direction: column; gap: 4px; padding: 20px 30px 20px 0; }
}
.newsSection-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  transition: color 0.2s, transform 0.2s;
}
.newsSection-item:hover .newsSection-arrow {
  color: var(--color-blue);
  transform: translateY(-50%) translateX(3px);
}
.newsSection-date {
  font-size: 1.4rem;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  color: var(--color-gray-400);
  flex-shrink: 0;
  white-space: nowrap;
}
.newsSection-title {
  font-size: 1.6rem;
  color: var(--color-gray-900);
  line-height: 1.6;
  transition: color 0.2s;
}
.newsSection-item:hover .newsSection-title { color: var(--color-blue); }

/* ─── Beam（縦/横の光線エフェクト） ─────────────────────────────── */
.beam {
  position: absolute;
  pointer-events: none;
  animation: beam-pulse 3s ease-out infinite;
  --beam-color: rgba(var(--color-blue-rgb), 0.4); /* 既定: blue */
}
.beam--tiffany    { --beam-color: rgba(var(--color-tiffany-rgb), 0.4); }
.beam--vertical   { width: 2px;  height: 100%; background: linear-gradient(to bottom, transparent, var(--beam-color), transparent); }
.beam--horizontal { width: 100%; height: 2px;  background: linear-gradient(to right,  transparent, var(--beam-color), transparent); }
@keyframes beam-pulse {
  0%   { opacity: 0;   transform: scaleY(0); }
  30%  { opacity: 0.6; transform: scaleY(1); }
  100% { opacity: 0;   transform: scaleY(1.2); }
}

/* CTA セクションの beam 位置（左右対称） */
.cta-beam        { top: 0; }
.cta-beam--left  { left: 15%; }
.cta-beam--right { right: 15%; }

/* ─── CTA セクション ─────────────────────────────────────────────── */
.cta .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(164deg, rgb(10, 22, 40) 0%, rgb(26, 45, 74) 100%);
}
.cta .cta-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  mix-blend-mode: screen;
}
.cta .cta-bg-image img { object-fit: cover; }

.cta .cta-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta .cta-content {
  position: relative;
  text-align: center;
}

.cta .cta-title {
  margin: 0 0 24px;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) { .cta .cta-title { font-size: 4.0rem; } }
@media screen and (max-width: 768px)  { .cta .cta-title { font-size: 2.8rem; line-height: 1.4; } }

.cta .cta-desc {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #94a3b8;
}
@media screen and (max-width: 768px) { .cta .cta-desc { font-size: 1.6rem; } }

.cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.cta .cta-contact-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.cta .cta-contact-link:hover {
  color: var(--color-blue);
  text-decoration: none;
}

.cta .cta-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.cta .cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #94a3b8;
  background: #162943;
  border-radius: 999px;
}
.cta .cta-pill svg {
  width: 16px;
  height: 16px;
  color: var(--color-tiffany);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-gray-900);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 0;
}
@media screen and (max-width: 1280px) { .footer .footer-inner { padding: 64px 40px; } }
@media screen and (max-width: 960px)  { .footer .footer-inner { padding: 48px 24px; } }

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer .footer-grid .footer-brand { grid-column: 1 / -1; margin-bottom: 16px; }
}
@media screen and (max-width: 640px) {
  .footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer .footer-grid .footer-brand { grid-column: 1 / -1; }
}

.footer .footer-brand .footer-brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer .footer-brand .footer-brand-tagline {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-gray-500);
  margin: 0;
}
.footer .footer-brand .footer-brand-license {
  margin-top: 30px;
  width: auto;
  height: auto;
  max-width: 200px;
}

.footer .footer-col .footer-col-title {
  margin: 0 0 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gray-300);
}
.footer .footer-col .footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer-col .footer-col-list a {
  font-size: 1.4rem;
  color: var(--color-gray-500);
  transition: color 0.2s;
}
.footer .footer-col .footer-col-list a:hover { color: var(--color-tiffany); }

.footer .footer-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
.footer .footer-bottom .footer-bottom-company {
  font-size: 1.2rem;
  color: var(--color-gray-600);
}
.footer .footer-bottom .footer-bottom-company p { margin: 0; }
.footer .footer-bottom .footer-bottom-copy {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-gray-600);
}

/* ============================================================
   SubPageHero (templates)
   ============================================================ */
.subHero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.subHero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 0;
  pointer-events: none;
}
.subHero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}
.subHero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.subHero-decor__right {
  position: absolute;
  bottom: 20px;
  right: -60px;
  width: 220px;
  height: auto;
  transform: rotate(155deg);
  animation: decor-float-c 9s ease-in-out infinite;
}
.subHero-decor__left {
  position: absolute;
  top: 40px;
  left: -60px;
  width: 180px;
  height: auto;
  transform: rotate(-85deg);
  animation: decor-float-a 11s ease-in-out infinite;
  animation-delay: -3s;
}
.subHero .section-inner { position: relative; z-index: 2; }
.subHero .subHero-slug {
  margin: 0 0 12px;
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.05em;
}
.subHero .subHero-title {
  margin: 0;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: 1.2;
}
@media screen and (max-width: 1024px) { .subHero .subHero-title { font-size: 3.6rem; } }
@media screen and (max-width: 768px)  { .subHero .subHero-title { font-size: 2.8rem; } }

.breadcrumb {
  padding: 16px 0;
  background: var(--color-bg-sub);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--color-gray-500);
}
.breadcrumb-item a {
  color: var(--color-gray-500);
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: var(--color-blue);
}
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--color-gray-400);
}

/* ============================================================
   LegalPageLayout (templates)
   ============================================================ */
.legalPage { padding: 64px 0; }
.legalPage .legalPage-inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .legalPage .legalPage-inner { padding: 0 24px; }
}
.legalPage .legalPage-updated {
  margin: 0 0 32px;
  font-size: 1.6rem;
  color: var(--color-gray-500);
}
.legalPage .legalPage-content {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #475569;
}
.legalPage .legalPage-content > * + * { margin-top: 24px; }

/* ============================================================
   ProductPageLayout (templates)
   ============================================================ */
/* イントロ（左:説明文 / 右:画像） */
.productPage-intro { padding: 80px 0 40px; }
.productPage-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .productPage-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}
.productPage-intro-title {
  margin: 0 0 24px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0f172a;
}
@media screen and (min-width: 768px) { .productPage-intro-title { font-size: 4.0rem; } }
.productPage-intro-desc {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-gray-700);
}
.productPage-intro-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.productPage-features { padding: 0; }

.productPage-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1024px) { .productPage-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 768px)  { .productPage-features-grid { grid-template-columns: 1fr; } }

.productPage-feature {
  height: 100%;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.productPage-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: rgba(var(--color-blue-rgb), 0.1);
  border-radius: 999px;
  color: var(--color-blue);
}
.productPage-feature-title {
  margin: 0 0 8px;
  font-size: 2.0rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}
.productPage-feature-desc {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #475569;
}

.productPage-section-title {
  margin: 0 0 64px;
  font-size: 4.8rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}
@media screen and (max-width: 768px) { .productPage-section-title { font-size: 3.0rem; } }

.productPage-howItWorks { padding: 120px 0; }

.productPage-steps { position: relative; }
.productPage-steps-line {
  display: none;
  position: absolute;
  top: 24px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 1px;
  background: #d1d5db;
}
@media screen and (min-width: 768px) { .productPage-steps-line { display: block; } }

.productPage-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .productPage-steps-grid { grid-template-columns: 1fr; gap: 48px; }
}

.productPage-step { text-align: center; }
.productPage-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-blue);
  background: linear-gradient(rgba(var(--color-blue-rgb), 0.1), rgba(var(--color-blue-rgb), 0.1)), #fff;
  border: 1px solid rgba(var(--color-blue-rgb), 0.2);
  border-radius: 999px;
}
.productPage-step-title {
  margin: 0 0 12px;
  font-size: 2.0rem;
  font-weight: 700;
  color: #0f172a;
}
.productPage-step-desc {
  max-width: 360px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #475569;
}

.productPage-useCases { padding: 120px 0; background: var(--color-bg-sub); }
/* 活用シーンのカードはアイコンを外したので body を均一 30px に（トップ・業種ページのカードには影響させない） */
.productPage-useCases .solutions-card-body { padding: 30px; }

/* ============================================================
   404 Not Found
   ============================================================ */
.notFoundPage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #fff;
}
.notFoundPage .notFoundPage-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.notFoundPage .notFoundPage-logo {
  width: 80px;
  height: 60px;
  margin-bottom: 40px;
}
.notFoundPage .notFoundPage-code {
  margin: 0 0 24px;
  font-size: 9.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) { .notFoundPage .notFoundPage-code { font-size: 12.8rem; } }
.notFoundPage .notFoundPage-text {
  margin: 0 0 40px;
  font-size: 1.8rem;
  color: #475569;
}
@media screen and (min-width: 768px) { .notFoundPage .notFoundPage-text { font-size: 2.0rem; } }

/* ─── 装飾の三角形の共通ふわふわアニメ ──────────────────────────── */
@keyframes decor-float-a {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-12px); }
}
@keyframes decor-float-b {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-14px); }
}
@keyframes decor-float-c {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .about-decor__left,
  .about-decor__right,
  .services-decor__left,
  .services-decor__right { animation: none; }
}

/* ─── KPI セクション ─────────────────────────────────────────────────── */
.kpi-section {
  position: relative;
  z-index: 20;
  margin-top: -3rem;
  background: var(--color-bg-sub);
}
.kpi-section .section-inner {
  max-width: 1440px;
}

.kpi-inner {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  background: linear-gradient(90deg, #3767a9 0%, #162943 100%);
}

.kpi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .kpi-cards { gap: 30px; }
}

.kpi-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) { .kpi-card { padding: 24px; } }

.kpi-value {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kpi-cards > *:nth-child(1) .kpi-value { background: linear-gradient(90deg, #2d7dff, #4da0f0); -webkit-background-clip: text; background-clip: text; }
.kpi-cards > *:nth-child(2) .kpi-value { background: linear-gradient(90deg, #4da0f0, #65bce0); -webkit-background-clip: text; background-clip: text; }
.kpi-cards > *:nth-child(3) .kpi-value { background: linear-gradient(90deg, #65bce0, #81d8d0); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@media (min-width: 768px) { .kpi-value { font-size: 5.2rem; } }

.kpi-label {
  font-size: 1.4rem;
  color: #475569;
  white-space: nowrap;
}
@media (min-width: 768px) { .kpi-label { font-size: 1.6rem; } }

.kpi-note {
  margin-top: 15px;
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Custom override: LinkButton size="lg" の左右パディングを縮小 */
.px-8 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Hide scrollbars for carousels (News section etc.) */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ─── Hero セクション（Figma 1920px ベース、vw でスケール）─────────────── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: #f8fafc;
}
@media (min-width: 768px) {
  .hero { min-height: 100vh; padding: 100px 0 80px; }
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hero-decor__left   { position: absolute; top: -2%;  left:  -3%; width: 18vw; min-width: 240px; max-width: 360px; height: auto; transform-origin: center; }
.hero-decor__right  { position: absolute; top: 14%;  right: -3%; width: 18vw; min-width: 240px; max-width: 360px; height: auto; transform-origin: center; }
.hero-decor__bottom { position: absolute; bottom: 8%; left: 58%; width: 26vw; min-width: 340px; max-width: 500px; height: auto; transform-origin: center; }

@keyframes float-left-triangle { 0%,100%{transform:rotate(10deg) translateY(0);} 50%{transform:rotate(13deg) translateY(-14px);} }
@keyframes spin-right-triangle { 0%{transform:rotate(-8deg);} 100%{transform:rotate(352deg);} }
@keyframes float-trapezoid    { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(10px) rotate(3deg);} }
.hero-decor-left   { animation: float-left-triangle 8s ease-in-out infinite; }
.hero-decor-right  { animation: spin-right-triangle 32s linear infinite; }
.hero-decor-bottom { animation: float-trapezoid 10s ease-in-out infinite; }
.hero-decor__center {
  position: absolute;
  top: 2%;
  left: 35%;
  width: 12vw;
  min-width: 160px;
  max-width: 240px;
  height: auto;
  transform-origin: center;
}
.hero-decor-center { animation: float-center-triangle 9s ease-in-out infinite; }
@keyframes float-center-triangle {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-decor-left, .hero-decor-right, .hero-decor-bottom, .hero-decor-center { animation: none; }
}
/* スマホ：FVの動画に白30%を重ねる＋装飾三角を半分のサイズに */
@media (max-width: 767px) {
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
    pointer-events: none;
  }
  .hero-decor__left   { width: 120px; min-width: 0; left: 0; top: 10%; }
  .hero-decor__right  { width: 120px; min-width: 0; right: 0; top: 38%; }
  .hero-decor__bottom { width: 170px; min-width: 0; left: auto; right: 0; bottom: 0; }
  .hero-decor__center { width: 90px; min-width: 0; left: 30%; top: 10%; }
}

/* 中央コンテナ：vw で Figma 1920 比率を維持 */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 34vw 44vw;
    column-gap: 2vw;
    padding: 0 10vw 0 10vw;
    align-items: center;
    flex-direction: unset;
  }
}

/* 左：テキストとボタン */
.hero-left { max-width: 720px; position: relative; z-index: 3; }

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #162943;
  letter-spacing: -0.02em;
}
.hero-title > span + span { margin-top: 10px; }
@media (min-width: 768px)  { .hero-title { font-size: 4.8rem; line-height: 1.1; } .hero-title > span + span { margin-top: 25px; } }
@media (min-width: 1280px) { .hero-title { font-size: 7.0rem; line-height: 1.0; white-space: nowrap; } }
@media (max-width: 1440px) and (min-width: 1280px) { .hero-title { font-size: 6.0rem; } }

.hero-desc {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 1.55;
  color: #475569;
}
@media (min-width: 1024px) { .hero-desc { font-size: 1.8rem; line-height: 28px; } }

.hero-buttons { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 30px; }
/* ボタンの幅・折り返しは cta-buttons と同一仕様（btn-lg のまま。スマホのみ下の @media で 100%/80%） */

.hero-pills { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff4fc;
  color: #475569;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
}
.hero-pill__icon { color: var(--color-tiffany); width: 20px; height: 20px; }

/* 右：V シールド + 4 つのフローティングアイコン */
.hero-right {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 842 / 660;
  margin-top: 60px;
  perspective: 1000px; /* 子の rotateX/Y を 3D に見せるため */
}
@media (min-width: 1024px) {
  .hero-right { margin-top: 0; }
}

.hero-img {
  position: absolute;
  height: auto;
  user-select: none;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-img--main { left: 19%; top: 1%; width: 62%; filter: drop-shadow(0 0 25px rgba(0,0,0,0.05)); animation: float-3d-main 8s ease-in-out infinite; }
.hero-img--fv5  { left:  3.6%; top:  8.6%; width: 17.8%; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08)); animation: float-3d-a 5.5s ease-in-out infinite; }
.hero-img--fv4  { left:  0%;   top: 53.9%; width: 15.2%; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08)); animation: float-3d-b 6.2s ease-in-out infinite; animation-delay: -1.8s; }
.hero-img--fv3  { left: 75.5%; top: 19.7%; width: 15.7%; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08)); animation: float-3d-c 5.0s ease-in-out infinite; animation-delay: -0.7s; }
.hero-img--fv2  { left: 83.8%; top: 58.3%; width: 16.2%; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08)); animation: float-3d-d 6.8s ease-in-out infinite; animation-delay: -2.5s; }

/* メイン画像はふわふわだけ */
@keyframes float-3d-main {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* それぞれ別の動き（上下＋3D 回転、強め） */
@keyframes float-3d-a {
  0%, 100% { transform: translateY(0)     rotateY(0deg)   rotateX(0deg)   rotateZ(0deg); }
  50%      { transform: translateY(-12px) rotateY(20deg)  rotateX(-12deg) rotateZ(-3deg); }
}
@keyframes float-3d-b {
  0%, 100% { transform: translateY(0)     rotateY(0deg)   rotateX(0deg)   rotateZ(0deg); }
  50%      { transform: translateY(10px)  rotateY(-18deg) rotateX(10deg)  rotateZ(4deg); }
}
@keyframes float-3d-c {
  0%, 100% { transform: translateY(0)     rotateY(0deg)   rotateX(0deg)   rotateZ(0deg); }
  50%      { transform: translateY(-8px)  rotateY(16deg)  rotateX(-9deg)  rotateZ(-2deg); }
}
@keyframes float-3d-d {
  0%, 100% { transform: translateY(0)     rotateY(0deg)   rotateX(0deg)   rotateZ(0deg); }
  50%      { transform: translateY(8px)   rotateY(-22deg) rotateX(12deg)  rotateZ(5deg); }
}

@media (max-width: 767px) {
  .hero { padding: 80px 0 60px; }
  .hero-left { margin-top: 40px; }
  .hero-right { margin-top: 0; }
  .hero-desc { margin-top: 20px; }
  .hero-buttons { margin-top: 30px; gap: 20px; justify-content: center; }
  .hero-buttons > * { width: 100%; max-width: 80%; }
  .hero-buttons .btn-wrap { width: 100%; }
  .hero-buttons .btn.btn-lg { width: 100%; } /* .btn.btn-lg{width:200px} に詳細度で勝つ */
  .hero-img--main { left: 15%; top: 2%; width: 70%; }
  .hero-img--fv5  { left:  2%; top:  6%; width: 18%; }
  .hero-img--fv4  { left:  0%; top: 56%; width: 16%; }
  .hero-img--fv3  { left: 76%; top: 16%; width: 16%; }
  .hero-img--fv2  { left: 78%; top: 60%; width: 16%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img--main, .hero-img--fv5, .hero-img--fv4, .hero-img--fv3, .hero-img--fv2 { animation: none; }
}

/* ─── Hero エントランスアニメーション（初回表示） ─────────────────────── */
.hero-title__line { display: block; }

/* タイトル 1 文字ずつ表示 */
.hero-title__char {
  display: inline-block;
  opacity: 0;
  animation: hero-char-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hero-char-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* タイトル 2 行目（グラデーション）はまるごとフェード */
.hero-title__line--gradient {
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 3.1s forwards;
}

/* 説明文・ボタン すべて同時に */
.hero-desc        { opacity: 0; animation: hero-fade-up 0.6s ease-out 4.0s forwards; }
.hero-buttons > * { opacity: 0; animation: hero-fade-up 0.6s ease-out 4.0s forwards; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 右側の画像：メインは hero-desc と同時、周り4枚は 0.1s 刻みで順番に */
.hero-img--main { animation: hero-img-fade 0.7s ease-out 4.0s both, float-3d-main 8s ease-in-out infinite; }
.hero-img--fv5  { animation: hero-img-fade 0.7s ease-out 4.2s both, float-3d-a 5.5s ease-in-out infinite; }
.hero-img--fv3  { animation: hero-img-fade 0.7s ease-out 4.3s both, float-3d-c 5.0s ease-in-out -0.7s infinite; }
.hero-img--fv4  { animation: hero-img-fade 0.7s ease-out 4.4s both, float-3d-b 6.2s ease-in-out -1.8s infinite; }
.hero-img--fv2  { animation: hero-img-fade 0.7s ease-out 4.5s both, float-3d-d 6.8s ease-in-out -2.5s infinite; }

@keyframes hero-img-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title__char,
  .hero-title__line--gradient,
  .hero-desc,
  .hero-buttons > *,
  .hero-pills > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* スクロールインジケーター（右端） */
.hero-scroll {
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-scroll { display: none; }
}
.hero-scroll__text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-scroll__line {
  position: relative;
  width: 1px;
  height: 140px;
  background: #162943;
  /* 縦方向だけクリップ（横は青ボーダーがはみ出して見える） */
  clip-path: inset(0 -10px);
}
.hero-scroll__indicator {
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px); /* 3px 幅を細い線の上に中央配置 */
  width: 3px;
  height: 30px;
  background: var(--color-blue);
  animation: scroll-indicator 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scroll-indicator {
  0%   { transform: translateY(-30px); }   /* 線の上端より外 */
  100% { transform: translateY(140px); }   /* 線の下端より外 → 即ループ */
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll__indicator { animation: none; }
}

/* ============================================================
   Button / LinkButton (atoms)
   ============================================================ */
.btn-wrap { display: inline-block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* 折り返した英語等の各行を中央揃えに */
  font-weight: 500;
  text-decoration: none;
  background-size: 200% 100%;
  background-position: 0% 0%;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-position 0.4s ease, color 0.4s ease, box-shadow 0.2s ease;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* バリアント */
.btn.btn-primary {
  background-image: linear-gradient(135deg, var(--color-navy) 50%, var(--color-blue) 50%);
  background-size: 300% 300%;
  background-position: 100% 100%;
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(var(--color-blue-rgb), 0.15);
}
.btn.btn-primary:hover  { background-position: 0% 0%; }
.btn.btn-primary:active { background-position: 0% 0%; }

.btn.btn-secondary {
  background-image: linear-gradient(135deg, var(--color-blue) 50%, var(--color-white) 50%);
  background-size: 300% 300%;
  background-position: 100% 100%;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
.btn.btn-secondary:hover  { background-position: 0% 0%; color: var(--color-white); }
.btn.btn-secondary:active { background-position: 0% 0%; color: var(--color-white); }

.btn.btn-ghost {
  background: transparent;
  color: var(--color-gray-700);
}
.btn.btn-ghost:hover { background: var(--color-gray-100); color: var(--color-gray-900); }

.btn.btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}
.btn.btn-danger:hover  { background: rgba(239, 68, 68, 0.2); }
.btn.btn-danger:active { background: rgba(239, 68, 68, 0.3); }

/* サイズ */
.btn.btn-sm {
  height: 50px;
  padding: 0 16px;
  font-size: 1.2rem;
  gap: 6px;
}
.btn.btn-md {
  height: 50px;
  padding: 0 24px;
  font-size: 1.4rem;
  gap: 8px;
}
.btn.btn-lg {
  height: 50px;
  width: 200px;
  padding: 0;
  font-size: 1.6rem;
  gap: 10px;
}

/* 矢印 */
.btn .arrow {
  margin-left: 6px;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* スピナー */
.btn-spinner {
  width: 16px;
  height: 16px;
  animation: btn-spin 1s linear infinite;
}
.btn-spinner circle { opacity: 0.25; }
.btn-spinner path { opacity: 0.75; }
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.header.scroll-nav,
.header.header--sub {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header .headerRow {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 104px;
  transition: height 0.3s;
}
.header.header--sub .headerRow { height: 90px; }
.header.scroll-nav .headerRow { height: 70px; }
@media screen and (max-width: 768px)  { .header .headerRow { padding: 0 16px; height: 64px; } }
/* スマホ版：常にスクロール時の形（白背景・コンパクト）で固定、高さ60px */
@media screen and (max-width: 640px) {
  .header,
  .header.header--sub {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  .header .headerRow,
  .header.scroll-nav .headerRow,
  .header.header--sub .headerRow {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header .logo img { height: 28px; width: auto; }
}

.header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding: 0 85px 0 30px;
  margin-left: -30px;
  align-self: stretch;
  z-index: 1;
}
.header .logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  transform-origin: left top;
  transform: skewX(-30deg);
  z-index: -1;
}
/* スマホ：ロゴ右余白を圧縮（ベース定義より後ろに置いて確実に上書き） */
@media screen and (max-width: 640px) {
  .header .logo { padding: 0 50px 0 30px; }
}

.header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.header .navList {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .navList .navItem a {
  font-size: 1.6rem;
  color: var(--color-navy);
  transition: color 0.2s;
}
.header .navList .navItem a:hover { color: var(--color-blue); }

.header .rightGroup {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 1025〜1279px：PCナビが収まらず折り返すので、ロゴ縮小＋余白圧縮（PC/モバイルは不変） */
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .header .headerRow { padding: 0 16px; gap: 8px; }
  .header .logo { padding: 0 65px 0 16px; margin-left: -16px; }
  .header .logo img { height: 30px; width: auto; }
  .header .nav { gap: 16px; }
  .header .navList { gap: 20px; }
  .header .navList .navItem a { white-space: nowrap; font-size: 1.4rem; }
  .header .rightGroup { gap: 8px; }
}

/* 言語切替（Google Language Translator）を元のデザイン（地球アイコン＋枠＋シェブロン）に合わせる */
.header .langSwitcher { position: relative; display: inline-flex; align-items: center; min-width: 120px; min-height: 34px; } /* 幅120px固定。selectがJS注入されるまで場所を確保 */
.header .langSwitcher-globe {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--color-navy);
  pointer-events: none;
  z-index: 1;
}
/* Google翻訳ウィジェットのブランディング/アイコン/余分なテキストを隠す */
.header .langSwitcher .goog-te-gadget { margin: 0; font-size: 0; line-height: 0; color: transparent; }
.header .langSwitcher .goog-te-gadget > span,
.header .langSwitcher .goog-te-gadget img,
.header .langSwitcher .goog-logo-link { display: none !important; }
/* 言語セレクトを元のピル型に */
.header .langSwitcher .goog-te-combo {
  margin: 0;
  padding: 6px 26px 6px 28px;
  font-size: 1.2rem;
  font-family: inherit;
  line-height: 1.3;
  color: var(--color-navy);
  background-color: transparent;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%230f172a'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px auto;
  transition: color 0.2s, border-color 0.2s;
}
.header .langSwitcher .goog-te-combo:hover { color: var(--color-blue); border-color: var(--color-gray-400); }

/* プラグイン外部CSS（#google_language_translator select.goog-te-combo、border/padding/radius が !important）に勝つため、
   全プロパティを #id詳細度 + !important で総上書きして元のピル型にする */
.header .langSwitcher #google_language_translator .goog-te-combo {
  width: 120px !important;
  box-sizing: border-box !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px 26px 6px 30px !important;
  font-size: 1.2rem !important;
  font-family: inherit !important;
  line-height: 1.3 !important;
  color: var(--color-navy) !important;
  border: 1px solid var(--color-gray-300) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%230f172a'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 10px auto !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.header .langSwitcher #google_language_translator .goog-te-combo:hover {
  color: var(--color-blue) !important;
  border-color: var(--color-gray-400) !important;
}
@media screen and (max-width: 1024px) {
  .header .nav .langSwitcher #google_language_translator .goog-te-combo {
    width: 100% !important;
    height: 50px !important;
    padding: 0 44px 0 42px !important;
    font-size: 1.6rem !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%23ffffff'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E") !important;
    background-position: right 16px center !important;
    background-size: 12px auto !important;
  }
}
/* プラグインのフローティング言語ボタン（オレンジ・左下）は使わないので非表示 */
#glt-translate-trigger { display: none !important; }

/* gadget（selectの入れ物）の余白・行高をリセットし、selectを縦中央そろえ → ピルの縦位置と地球アイコンを合わせる */
.header .langSwitcher #google_language_translator,
.header .langSwitcher #google_language_translator .goog-te-gadget,
.header .langSwitcher #google_language_translator .goog-te-gadget > div {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: normal !important;
  vertical-align: middle !important;
}
.header .langSwitcher #google_language_translator .goog-te-combo { vertical-align: middle !important; display: block !important; }

/* selectがJS注入されるまでの静的プレースホルダー（pillと同じ見た目）。注入後はJSが .has-select を付けて隠す */
.header .langSwitcher-placeholder {
  display: inline-flex;
  align-items: center;
  width: 120px;
  box-sizing: border-box;
  padding: 6px 26px 6px 30px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--color-navy);
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%230f172a'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px auto;
}
.header .langSwitcher.has-select .langSwitcher-placeholder { display: none; }
/* selectは整う（has-select）まで隠し、プレースホルダーと二重に出ないようにする */
.header .langSwitcher:not(.has-select) #google_language_translator { display: none !important; }
@media screen and (max-width: 1024px) {
  .header .nav .langSwitcher-placeholder {
    width: 100%;
    height: 50px;
    padding: 0 44px 0 42px;
    font-size: 1.6rem;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%23ffffff'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: right 16px center;
    background-size: 12px auto;
  }
}

/* モバイルメニューボタン（ハンバーガー） */
.header .menuBtn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1024px) { .header .menuBtn { display: flex; } }
.header .menuBtn span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: all 0.2s;
}
.header .menuBtn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header .menuBtn.open span:nth-child(2) { opacity: 0; }
.header .menuBtn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ≤1024px：ハンバーガー表示、ナビは紺背景オーバーレイ（top:100% でバー直下に展開） */
@media screen and (max-width: 1024px) {
  .header .menuBtn { display: flex; }

  .header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 24px;
    background: var(--color-navy);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
  }
  .header.menu-open .nav { display: flex; }

  .header .nav .navList { flex-direction: column; align-items: stretch; gap: 4px; margin: 0 0 40px; }
  .header .nav .navList .navItem a {
    display: block;
    padding: 12px 0;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .header .nav .navList .navItem a:hover { color: var(--color-tiffany); }

  .header .nav .rightGroup { flex-direction: column; align-items: stretch; gap: 20px; }
  .header .nav .rightGroup .btn-wrap { width: 100%; }
  .header .nav .langSwitcher { width: 100%; margin-bottom: 20px; }
  .header .nav .langSwitcher-globe { left: 16px; color: #fff; }
  .header .nav .langSwitcher .goog-te-combo {
    width: 100%;
    height: 50px;
    padding: 0 44px 0 42px;
    font-size: 1.6rem;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%23ffffff'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: right 16px center;
    background-size: 12px auto;
  }
  .header .nav .langSwitcher .goog-te-combo option { color: #0f172a; }

  .header .nav .signIn {
    width: 100%;
    height: 50px;
    justify-content: center;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .header .nav .signIn:hover { color: var(--color-navy); background: #fff; }
  .header .nav .ctaPrimary { width: 100%; height: 50px; justify-content: center; }
}

/* サインインボタン（LinkButton ghost を上書き：navItem と同じ色） */
.header .signIn {
  height: 44px;
  padding: 0 16px;
  font-size: 1.6rem;
  color: var(--color-navy);
  background: transparent;
}
.header .signIn:hover {
  color: var(--color-blue);
  background: transparent;
}

/* 「今すぐ始める」ボタン（LinkButton primary の高さ・font 調整） */
.header .ctaPrimary {
  height: 44px;
  padding: 0 20px;
  font-size: 1.6rem;
}

/* ═══════════════════════════════════════════════════════════════════
   productPage-feature-icon SVG サイズ
   ═══════════════════════════════════════════════════════════════════ */
.productPage-feature-icon svg { width: 40px; height: 40px; }

/* ═══════════════════════════════════════════════════════════════════
   共通：サブページセクション（py-16 md:py-24 相当）
   ═══════════════════════════════════════════════════════════════════ */
.subSection {
  padding: 64px 0;
}
@media screen and (min-width: 768px) {
  .subSection { padding: 120px 0; }
}
.subSection--short {
  padding: 64px 0;
}
@media screen and (min-width: 768px) {
  .subSection--short { padding: 80px 0; }
}
.subSection--top {
  padding-top: 32px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .subSection--top { padding-top: 48px; }
}
.subSection--bottom {
  padding-top: 0;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .subSection--bottom { padding-bottom: 96px; }
}

/* ハッシュアンカー（#merits / #flow）で飛んだ際に固定ヘッダーにタイトルが隠れないようオフセット */
#merits,
#flow {
  scroll-margin-top: 100px;
}

/* ─── 共通：サブページ用ナロー inner ─── */
.subSection-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .subSection-narrow { padding-left: 24px; padding-right: 24px; }
}
.subSection-narrow--md {
  max-width: 1080px;
}

/* ═══════════════════════════════════════════════════════════════════
   共通：チェックリスト（flow / careers / overview）
   ═══════════════════════════════════════════════════════════════════ */
.checkList { display: flex; flex-direction: column; gap: 8px; }
.checkList-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--color-gray-600);
}
.checkList-icon {
  width: 16px;
  height: 16px;
  color: var(--color-tiffany);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   meritPage（/about）
   ═══════════════════════════════════════════════════════════════════ */
.aboutPage-philosophy { position: relative; overflow: hidden; }
.aboutPage-philosophy-decor { pointer-events: none; }
.aboutPage-philosophy-decor__top {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 300px;
  height: auto;
  transform: scaleX(-1);
  animation: decor-float-b 9s ease-in-out infinite;
}
.aboutPage-philosophy-decor__bottom {
  position: absolute;
  bottom: -20px;
  right: 120px;
  width: 200px;
  height: auto;
  animation: decor-float-c 11s ease-in-out infinite;
  animation-delay: -3s;
}

.aboutPage-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .aboutPage-philosophy-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
@media (max-width: 1023px) {
  .aboutPage-philosophy-grid { display: flex; flex-direction: column-reverse; }
}
.aboutPage-philosophy-image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .aboutPage-philosophy-image { min-height: 300px; }
}
.aboutPage-philosophy-image__img {
  object-fit: cover;
}
.aboutPage-philosophy-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 30%);
  z-index: 2;
  pointer-events: none;
}
.aboutPage-philosophy-image__reveal {
  position: absolute;
  inset: 0;
  background: var(--color-blue);
  z-index: 3;
}
.aboutPage-philosophy-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}
@media screen and (max-width: 1023px) {
  .aboutPage-philosophy-text { padding: 40px 24px; }
}
.aboutPage-philosophyItem + .aboutPage-philosophyItem {
  margin-top: 32px;
}

.aboutPage-sectionTitle {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section.aboutPage-philosophy { padding-top: 0; }
  .aboutPage-sectionTitle { text-align: center; }
}
.aboutPage-philosophyLabel {
  font-size: 1.6rem;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  color: var(--color-blue);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.aboutPage-philosophyHeading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.aboutPage-philosophyDesc {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.aboutPage-messageSection {
  background: var(--color-bg-sub);
}
.aboutPage-messageCard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .aboutPage-messageCard { padding: 32px 24px; }
}
.aboutPage-messageBody p {
  font-size: 1.6rem;
  color: var(--color-gray-700);
  line-height: 2.0;
}
.aboutPage-messageBody p + p { margin-top: 20px; }
.aboutPage-messageSigner {
  margin-top: 40px;
  text-align: right;
}
.aboutPage-messageCompany {
  font-size: 1.4rem;
  color: var(--color-gray-600);
}
.aboutPage-messageName {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 4px;
}

.meritPage-heading { margin-bottom: 40px; text-align: center; }
@media screen and (min-width: 768px) { .meritPage-heading { margin-bottom: 48px; } }
.meritPage-label {
  font-size: 1.4rem;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  color: var(--color-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.meritPage-title {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
}
@media screen and (max-width: 768px) { .meritPage-title { font-size: 3.0rem; } }

.meritPage-headingDesc {
  margin-top: 16px;
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.meritPage-grid {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px)  { .meritPage-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 1024px) { .meritPage-grid { grid-template-columns: repeat(3, 1fr); } }

.meritPage-tilt { height: 100%; }
.meritPage-card {
  position: relative;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.meritPage-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--color-bg-sub);
}
.meritPage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meritPage-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-blue);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(var(--color-blue-rgb), 0.3);
}
.meritPage-cardTitle {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}
.meritPage-cardDesc {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  margin-bottom: 16px;
}
.meritPage-cardDetail {
  font-size: 1.2rem;
  color: var(--color-gray-500);
  line-height: 1.625;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-200);
}

/* ═══════════════════════════════════════════════════════════════════
   flowPage（/flow）
   ═══════════════════════════════════════════════════════════════════ */
.flowPage-steps { display: flex; flex-direction: column; gap: 32px; }

.flowPage-stepCard {
  border-radius: 16px;
  padding: 32px;
}
@media screen and (min-width: 768px) { .flowPage-stepCard { padding: 40px; } }

.flowPage-stepInner {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .flowPage-stepInner { grid-template-columns: auto 1fr; gap: 40px; }
}

.flowPage-stepNum {
  display: flex;
  align-items: center;
  gap: 16px;
}
.flowPage-stepNum span {
  font-size: 4.8rem;
  font-weight: 700;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  background: linear-gradient(135deg, var(--color-blue), var(--color-tiffany));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 768px) { .flowPage-stepNum span { font-size: 6.0rem; } }

.flowPage-stepTitle {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) { .flowPage-stepTitle { font-size: 2.4rem; } }
.flowPage-stepDesc {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  margin-bottom: 20px;
}

/* FAQ (flow page) */
.flowPage-faqTitle {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) { .flowPage-faqTitle { font-size: 3.0rem; } }
.flowPage-faqs { display: flex; flex-direction: column; gap: 16px; }
.flowPage-faqCard { border-radius: 12px; padding: 24px; }
.flowPage-faqQ {
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.flowPage-faqQ .q-mark {
  color: var(--color-blue);
  font-family: var(--font-roboto), 'Roboto', sans-serif;
}
.flowPage-faqA {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 4px;
}
.flowPage-faqA .a-mark {
  color: var(--color-tiffany);
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 700;
}
.flowPage-faqFooter {
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-gray-600);
  margin-top: 32px;
}
.flowPage-faqFooter a {
  color: var(--color-blue);
}
.flowPage-faqFooter a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   industryPage（/industry）
   ═══════════════════════════════════════════════════════════════════ */
.industryPage-grid {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 640px)  { .industryPage-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 1024px) { .industryPage-grid { grid-template-columns: repeat(3, 1fr); } }

.industryPage-tilt { height: 100%; }
.industryPage-card {
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.industryPage-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(var(--color-tiffany-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-tiffany);
  margin-bottom: 20px;
}
.industryPage-icon svg { width: 28px; height: 28px; }
.industryPage-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}
.industryPage-desc {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  flex: 1;
  margin-bottom: 16px;
}
.industryPage-services {
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-200);
}
.industryPage-servicesLabel {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.industryPage-cards {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) { .industryPage-cards { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 768px) { .industryPage-cards { grid-template-columns: 1fr; } }

.industryPage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.industryPage-tag {
  font-size: 1.4rem;
  color: var(--color-blue);
  background: rgba(var(--color-blue-rgb), 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   serviceOverview（/service）
   ═══════════════════════════════════════════════════════════════════ */
.serviceOverview-grid {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 640px)  { .serviceOverview-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 1024px) { .serviceOverview-grid { grid-template-columns: repeat(3, 1fr); } }

.serviceOverview-item { height: 100%; }
.serviceOverview-card {
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.serviceOverview-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }

.serviceOverview-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(var(--color-blue-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  margin-bottom: 20px;
}
.serviceOverview-icon svg { width: 28px; height: 28px; }

.serviceOverview-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}
.serviceOverview-desc {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  margin-bottom: 20px;
  flex: 1;
}
.serviceOverview-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.serviceOverview-highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.2rem;
  color: var(--color-gray-600);
}
.serviceOverview-highlight svg {
  width: 14px;
  height: 14px;
  color: var(--color-tiffany);
  margin-top: 2px;
  flex-shrink: 0;
}
.serviceOverview-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-blue);
  padding-top: 12px;
  border-top: 1px solid var(--color-gray-200);
  transition: gap 0.2s;
}
.serviceOverview-card:hover .serviceOverview-more { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   newsPage（/news）
   ═══════════════════════════════════════════════════════════════════ */
.newsPage-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .newsPage-inner { padding-left: 24px; padding-right: 24px; }
}

.newsFilter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.newsFilter-btn {
  font-size: 1.2rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-gray-200);
  color: var(--color-gray-600);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.newsFilter-btn:hover { border-color: var(--color-gray-400); }
.newsFilter-btn.active {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

.newsList { display: flex; flex-direction: column; gap: 24px; }
.newsCard {
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--color-gray-200);
  display: block;
  cursor: pointer;
  transition: border-color 0.2s;
}
@media screen and (min-width: 768px) { .newsCard { padding: 32px; } }
.newsCard:hover { border-color: rgba(var(--color-blue-rgb), 0.2); }

.newsCard-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.newsCard-date {
  font-size: 1.2rem;
  color: var(--color-gray-400);
  font-family: var(--font-roboto), 'Roboto', sans-serif;
}
.newsCard-badge {
  font-size: 1.2rem;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--color-blue);
  background: rgba(var(--color-blue-rgb), 0.1);
}
.newsCard-badge--tiffany {
  color: var(--color-tiffany);
  background: rgba(var(--color-tiffany-rgb), 0.1);
}
.newsCard-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.newsCard:hover .newsCard-title { color: var(--color-blue); }
.newsCard-summary {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
}
.newsEmpty {
  text-align: center;
  color: var(--color-gray-400);
  padding: 48px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   newsListPage（/news 一覧）
   ═══════════════════════════════════════════════════════════════════ */
.newsListPage-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1279px) { .newsListPage-inner { padding-left: 24px; padding-right: 24px; } }

.newsListPage-list {
  display: flex;
  flex-direction: column;
}
.newsListPage-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-200);
  transition: background 0.2s;
}
.newsListPage-item:hover { background: var(--color-gray-50); }
@media screen and (max-width: 768px) {
  .newsListPage-item { flex-direction: column; gap: 4px; }
}
.newsListPage-date {
  font-size: 1.4rem;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  color: var(--color-gray-400);
  flex-shrink: 0;
  white-space: nowrap;
}
.newsListPage-title {
  font-size: 1.6rem;
  color: var(--color-gray-900);
  line-height: 1.6;
}
.newsListPage-item:hover .newsListPage-title { color: var(--color-blue); }

/* ═══════════════════════════════════════════════════════════════════
   newsDetail（/news/[id] 詳細）
   ═══════════════════════════════════════════════════════════════════ */
.newsDetail-breadcrumb { padding-top: 106px; }
@media screen and (max-width: 768px) { .newsDetail-breadcrumb { padding-top: 76px; } }
.newsDetail-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1279px) { .newsDetail-inner { padding-left: 24px; padding-right: 24px; } }

.newsDetail-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-gray-200);
}
.newsDetail-date {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gray-500);
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  margin-bottom: 16px;
}
.newsDetail-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-navy);
}
@media (max-width: 768px) { .newsDetail-title { font-size: 2.4rem; } }

.newsDetail-body {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  overflow-wrap: break-word;
}
.newsDetail-body p + p { margin-top: 24px; }

.newsDetail-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-200);
}
.newsDetail-backLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  color: var(--color-blue);
  transition: gap 0.2s;
}
.newsDetail-backLink:hover { gap: 12px; }

/* ═══════════════════════════════════════════════════════════════════
   recruitPage（/recruit）
   ═══════════════════════════════════════════════════════════════════ */
.recruitPage-block { margin-bottom: 80px; }
.recruitPage-blockTitle {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 40px;
  text-align: center;
}

/* Values */
/* 働く環境・カルチャー（トップの solutions-card を流用、番号は左上の白背景ボックス） */
.recruitPage-cultureNum {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 56px;
  padding: 0 18px;
  background: #fff;
  border-radius: 0 0 12px 0;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
}
.recruitPage-cultureCard .solutions-card-body { padding: 30px; }
.recruitPage-cultureCard .solutions-card-title {
  font-size: 2.0rem;
  text-align: center;
}

/* Benefits */
.recruitPage-benefitsGrid {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 640px)  { .recruitPage-benefitsGrid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 1024px) { .recruitPage-benefitsGrid { grid-template-columns: repeat(3, 1fr); } }

/* Positions（募集要項テーブル） */
.recruitPage-jobsSection .section-inner { max-width: 1080px; }
.recruitPage-jobs {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.recruitPage-jobTitle {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-blue);
}
@media (max-width: 768px) {
  .recruitPage-jobTitle { font-size: 2.4rem; }
}
.recruitPage-jobTable {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
}
.recruitPage-jobTable tr {
  border-bottom: 1px solid var(--color-gray-200);
}
.recruitPage-jobTable tr:first-child {
  border-top: 1px solid var(--color-gray-200);
}
.recruitPage-jobTable th {
  width: 180px;
  padding: 24px 32px 24px 0;
  text-align: left;
  vertical-align: top;
  font-weight: 700;
  color: var(--color-navy);
}
.recruitPage-jobTable td {
  padding: 24px 0;
  vertical-align: top;
  color: var(--color-gray-700);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .recruitPage-jobTable th,
  .recruitPage-jobTable td { display: block; width: 100%; }
  .recruitPage-jobTable th { padding: 20px 0 8px; }
  .recruitPage-jobTable td { padding: 0 0 20px; }
  .recruitPage-jobTable tr { border-bottom: 1px solid var(--color-gray-200); }
  .recruitPage-jobTable tr:first-child { border-top: 1px solid var(--color-gray-200); }
}
/* 応募資格・技術要件 内のリスト */
.recruitPage-reqLabel {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 8px;
}
.recruitPage-reqLabel:not(:first-child) { margin-top: 20px; }
.recruitPage-reqList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recruitPage-reqList li {
  position: relative;
  padding-left: 18px;
  font-size: 1.6rem;
  color: var(--color-gray-700);
  line-height: 1.7;
}
.recruitPage-reqList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}
.recruitPage-techLabel { font-weight: 700; color: var(--color-navy); }
.recruitPage-salaryNote {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gray-500);
  margin-top: 6px;
}

/* ── 採用ページ 追加デザイン ── */
.recruitPage-cultureSection,
.recruitPage-benefitsSection { background: var(--color-bg-sub); }

/* blockTitle のモバイル時サイズ（基本サイズは上部の定義で 4.8rem） */
@media screen and (max-width: 768px) { .recruitPage-blockTitle { font-size: 3.0rem; } }

/* イントロは about-grid を流用（globals.css 上部の .about-* 定義を共用） */

/* 福利厚生（カードは productPage-feature を流用） */

/* エントリーフォーム セクション */
#entry.subSection { padding: 80px 0 120px; }

/* エントリーフォーム リード文 */
.recruitPage-entryHead {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.recruitPage-entryLead {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}
/* ═══════════════════════════════════════════════════════════════════
   companyPage（/company）
   ═══════════════════════════════════════════════════════════════════ */
.companyPage-sectionTitle {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) { .companyPage-sectionTitle { font-size: 3.0rem; } }

/* History Timeline */
.companyPage-timeline { position: relative; }
.companyPage-timelineLine {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(45,125,255,0.3), rgba(129,216,208,0.3), transparent);
}
@media screen and (min-width: 768px) { .companyPage-timelineLine { left: 50%; } }

.companyPage-timelineItems {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.companyPage-timelineItem {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (min-width: 768px) { .companyPage-timelineItem { gap: 0; } }
@media screen and (min-width: 768px) { .companyPage-timelineItem--left { flex-direction: row; } }
@media screen and (min-width: 768px) { .companyPage-timelineItem--right { flex-direction: row-reverse; } }

.companyPage-timelineDot {
  position: absolute;
  left: 24px;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-blue);
  border: 2px solid rgba(45,125,255,0.5);
  box-shadow: 0 0 12px rgba(59,130,246,0.2);
  z-index: 10;
}
@media screen and (min-width: 768px) { .companyPage-timelineDot { left: 50%; } }

.companyPage-timelineContent {
  margin-left: 56px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .companyPage-timelineContent { margin-left: 0; width: calc(50% - 32px); }
}
.companyPage-timelineItem--left .companyPage-timelineContent {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .companyPage-timelineItem--left .companyPage-timelineContent { text-align: right; padding-right: 0; }
}
.companyPage-timelineItem--right .companyPage-timelineContent {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .companyPage-timelineItem--right .companyPage-timelineContent { text-align: left; padding-left: 0; }
}

.companyPage-timelineCard {
  border-radius: 12px;
  padding: 24px;
  display: inline-block;
}
.companyPage-timelineYear {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 1.8rem;
}
.companyPage-timelineEvent {
  color: var(--color-gray-600);
  margin-top: 4px;
  font-size: 1.6rem;
}

.companyPage-timelineSpacer { display: none; }
@media screen and (min-width: 768px) {
  .companyPage-timelineSpacer { display: block; width: calc(50% - 32px); }
}

/* Company Info Table */
.companyPage-infoSection {
  background: var(--color-bg-sub);
}
.companyPage-infoWrap {
  max-width: 1080px;
  margin: 0 auto;
}
.companyPage-infoTable {
  border-radius: 16px;
  overflow: hidden;
  padding: 50px;
  border: none;
}
.companyPage-infoTable table {
  width: 100%;
  font-size: 1.6rem;
}
.companyPage-infoTable tr {
  border-bottom: 1px solid var(--color-gray-200);
}
.companyPage-infoTable tr:first-child { border-top: 1px solid var(--color-gray-200); }
.companyPage-infoTable th {
  padding: 25px 80px 25px 0;
  text-align: left;
  color: var(--color-gray-600);
  font-weight: 700;
  width: 144px;
  vertical-align: top;
  white-space: nowrap;
}
.companyPage-infoTable td {
  padding: 20px 0;
  color: var(--color-gray-600);
}

/* 代表プロフィール */
.companyPage-profileCard { padding: 40px; }
.companyPage-profileRole {
  font-size: 1.4rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.companyPage-profileName {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.companyPage-profileNameEn {
  font-size: 1.4rem;
  color: var(--color-gray-500);
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  margin-bottom: 24px;
}
.companyPage-profileSection {
  margin-top: 24px;
}
.companyPage-profileLabel {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.companyPage-profileBio {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════
   contactPage（/contact）
   ═══════════════════════════════════════════════════════════════════ */
.contactPage-section {
  background: var(--color-bg-sub);
}
.contactPage-formWrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Success */
.contactPage-success {
  max-width: 960px;
  margin: 0 auto;
}
.contactPage-successCard {
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.contactPage-successIcon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(var(--color-tiffany-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactPage-successIcon svg { width: 32px; height: 32px; color: var(--color-tiffany); }
.contactPage-successTitle {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
}
.contactPage-successMsg { color: var(--color-gray-600); }

/* Form */
.contactPage-form {
  border-radius: 12px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contactPage-formRow {
  display: grid;
  gap: 40px;
}
.contactPage-label {
  display: block;
  font-size: 2.0rem;
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: 15px;
}
.contactPage-required { color: var(--color-error); }
.contactPage-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--color-gray-900);
  font-size: 1.6rem;
  transition: all 0.2s;
}
.contactPage-input::placeholder { color: var(--color-gray-500); }
.contactPage-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-blue-rgb), 0.5);
  border-color: transparent;
}
select.contactPage-input {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%23334155'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px auto;
}
select.contactPage-input option { background: #fff; }
textarea.contactPage-input { resize: none; }

/* ── WPForms をお問い合わせ/エントリーの contactPage デザインに合わせる（.card contactPage-form 配下。WPFormsの高詳細度CSSに勝つため !important） ── */
.contactPage-form .wpforms-container { margin: 0 !important; }
.contactPage-form .wpforms-field-container { display: flex !important; flex-direction: column !important; gap: 40px !important; }
.contactPage-form .wpforms-field { padding: 0 !important; margin: 0 !important; }
.contactPage-form .wpforms-field input,
.contactPage-form .wpforms-field select,
.contactPage-form .wpforms-field textarea,
.contactPage-form .wpforms-field .wpforms-field-row,
.contactPage-form .wpforms-field-large,
.contactPage-form .wpforms-field-medium {
  width: 100% !important;
  max-width: 100% !important;
}
.contactPage-form .wpforms-field-label,
.contactPage-form .wpforms-field legend.wpforms-field-label {
  display: block !important;
  font-size: 2.0rem !important;
  font-weight: 500 !important;
  color: var(--color-gray-700) !important;
  margin: 0 0 15px !important;
  line-height: 1.4 !important;
}
.contactPage-form .wpforms-required-label { color: var(--color-error) !important; border: none !important; background: none !important; }
.contactPage-form .wpforms-field input[type="text"],
.contactPage-form .wpforms-field input[type="email"],
.contactPage-form .wpforms-field input[type="tel"],
.contactPage-form .wpforms-field input[type="url"],
.contactPage-form .wpforms-field input[type="number"],
.contactPage-form .wpforms-field select,
.contactPage-form .wpforms-field textarea {
  background-color: #fff !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  color: var(--color-gray-900) !important;
  font-size: 1.6rem !important;
  line-height: 1.6 !important;
  box-shadow: none !important;
  height: auto !important;
}
.contactPage-form .wpforms-field input::placeholder,
.contactPage-form .wpforms-field textarea::placeholder { color: var(--color-gray-500) !important; }
.contactPage-form .wpforms-field input:focus,
.contactPage-form .wpforms-field select:focus,
.contactPage-form .wpforms-field textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(var(--color-blue-rgb), 0.5) !important;
  border-color: transparent !important;
}
.contactPage-form .wpforms-field textarea { resize: none !important; min-height: 140px !important; }
.contactPage-form .wpforms-field select {
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 44px !important;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='13'%20height='8'%20viewBox='0%200%2013%208'%20fill='%23334155'%3E%3Cg%20transform='rotate(90%206.5%206.5)'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 12px auto !important;
}
.contactPage-form .wpforms-field-checkbox ul,
.contactPage-form .wpforms-field-radio ul {
  display: flex !important; flex-wrap: wrap !important; gap: 12px 30px !important;
  grid-template-columns: none !important; margin: 0 !important; padding: 0 !important; list-style: none !important;
}
.contactPage-form .wpforms-field-checkbox ul li,
.contactPage-form .wpforms-field-radio ul li { margin: 0 !important; width: auto !important; }
.contactPage-form .wpforms-field-checkbox ul li label,
.contactPage-form .wpforms-field-radio ul li label {
  font-size: 1.6rem !important; color: var(--color-gray-700) !important; line-height: 1.4 !important;
}
.contactPage-form .wpforms-field-checkbox ul li input,
.contactPage-form .wpforms-field-radio ul li input {
  width: 16px !important; min-width: 16px !important; height: 16px !important; accent-color: #3b82f6 !important;
}
.contactPage-form .wpforms-submit-container { margin-top: 40px !important; text-align: right !important; padding: 0 !important; }
.contactPage-form button.wpforms-submit {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  width: auto !important; min-width: 200px !important; max-width: 100% !important; height: 50px !important; padding: 0 32px !important;
  font-size: 1.6rem !important; font-weight: 500 !important; color: #fff !important;
  background-image: linear-gradient(135deg, var(--color-navy) 50%, var(--color-blue) 50%) !important;
  background-size: 300% 300% !important; background-position: 100% 100% !important; background-color: transparent !important;
  border: none !important; border-radius: 999px !important; cursor: pointer !important;
  box-shadow: 0 4px 6px rgba(var(--color-blue-rgb), 0.15) !important;
  transition: background-position 0.4s ease !important;
}
.contactPage-form button.wpforms-submit:hover { background-position: 0% 0% !important; }
.contactPage-form button.wpforms-submit::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-left: 10px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='8'%20height='13'%20viewBox='0%200%208%2013'%20fill='%23ffffff'%3E%3Cpath%20d='M0.00015089%201.41421L1.41436%200L7.77833%206.36396L6.36411%207.77817L0.00015089%201.41421Z'/%3E%3Cpath%20d='M1.41421%2012.7279L0%2011.3137L6.36396%204.94976L7.77833%206.36396L1.41421%2012.7279Z'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s ease;
  flex: none;
}
.contactPage-form button.wpforms-submit:hover::after { transform: translateX(4px); }
@media screen and (max-width: 640px) {
  .contactPage-form .wpforms-field-container { gap: 24px !important; }
  .contactPage-form .wpforms-field-label,
  .contactPage-form .wpforms-field legend.wpforms-field-label { font-size: 1.6rem !important; }
  .contactPage-form .wpforms-submit-container { text-align: center !important; }
  .contactPage-form button.wpforms-submit { width: 80% !important; }
}
/* サービス選択チェックボックス群 */
.contactPage-checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}
.contactPage-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  color: var(--color-gray-700);
  cursor: pointer;
}
.contactPage-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
  cursor: pointer;
}

.contactPage-consent {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  padding: 16px;
}
.contactPage-consentLabel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.contactPage-consentLabel input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
  cursor: pointer;
}
.contactPage-consentTitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-gray-700);
}
.contactPage-consentDetail {
  display: block;
  font-size: 1.2rem;
  color: var(--color-gray-500);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   faqPage（/faq）
   ═══════════════════════════════════════════════════════════════════ */
/* Support box */
.faqPage-supportWrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .faqPage-supportWrap { padding-left: 24px; padding-right: 24px; }
}
.faqPage-supportCard {
  border-radius: 16px;
  padding: 24px;
}
@media screen and (min-width: 768px) { .faqPage-supportCard { padding: 32px; } }

.faqPage-supportTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) { .faqPage-supportTitle { font-size: 2.0rem; } }
.faqPage-supportIntro {
  font-size: 1.4rem;
  color: var(--color-gray-600);
  margin-bottom: 24px;
}
.faqPage-supportGrid {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 640px) { .faqPage-supportGrid { grid-template-columns: repeat(3, 1fr); } }

.faqPage-supportItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faqPage-supportIcon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faqPage-supportIcon svg { width: 20px; height: 20px; }
.faqPage-supportIcon--blue { background: rgba(var(--color-blue-rgb), 0.1); color: var(--color-blue); }
.faqPage-supportIcon--tiffany { background: rgba(var(--color-tiffany-rgb), 0.1); color: var(--color-tiffany); }
.faqPage-supportIcon--green { background: rgba(var(--color-success-rgb), 0.1); color: var(--color-success); }

.faqPage-supportLabel {
  font-size: 1.2rem;
  color: var(--color-gray-500);
  margin-bottom: 4px;
}
.faqPage-supportValue {
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
}
.faqPage-supportValue--lg {
  font-size: 1.8rem;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
}
.faqPage-supportNote {
  font-size: 1.2rem;
  color: var(--color-gray-500);
  margin-top: 4px;
}
.faqPage-supportCta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-blue);
  margin-top: 8px;
  transition: gap 0.2s;
}
.faqPage-supportCta:hover { gap: 6px; }

/* Q&A list */
.faqPage-section {
  background: var(--color-bg-sub);
}
.faqPage-qaWrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .faqPage-qaWrap { padding-left: 24px; padding-right: 24px; }
}
.faqPage-category { margin-bottom: 80px; }
.faqPage-category:last-child { margin-bottom: 0; }
.faqPage-catTitle {
  font-size: 3.0rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 30px;
}
.faqPage-items { display: flex; flex-direction: column; gap: 25px; }

.faqPage-item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.faqPage-questionRow {
  display: flex;
  cursor: pointer;
}
.faqPage-answerRow {
  display: flex;
}
.faqPage-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.faqPage-marker--q {
  background: var(--color-blue);
  border-radius: 12px 0 0 12px;
  transition: border-radius 0.3s;
}
.faqPage-item.is-open .faqPage-marker--q {
  border-radius: 12px 0 0 0;
}
.faqPage-marker--a {
  background: var(--color-navy);
  border-radius: 0 0 0 12px;
}
.faqPage-question {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faqPage-questionText {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gray-900);
  padding-right: 16px;
}
.faqPage-questionArrow {
  width: 20px;
  height: 20px;
  color: var(--color-gray-600);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faqPage-questionArrow.open { transform: rotate(180deg); }

.faqPage-answerWrap {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.faqPage-answerRow {
  display: flex;
}
.faqPage-answer {
  flex: 1;
  padding: 20px 24px;
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  border-top: 1px solid var(--color-gray-200);
}

/* ═══════════════════════════════════════════════════════════════════
   legalPage 内部コンテンツ（LegalContent.tsx）
   ═══════════════════════════════════════════════════════════════════ */
.legalPage-content h2 {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-top: 32px;
  margin-bottom: 16px;
}
.legalPage-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gray-500);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legalPage-content ul {
  list-style: disc inside;
  margin-top: 12px;
}
.legalPage-content ul li { margin-bottom: 4px; }
.legalPage-content p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-gray-700);
}
.legalPage-content .legalPage-lead { color: var(--color-gray-600); }
.legalPage-content .legalPage-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--color-gray-50);
  border-radius: 6px;
  font-size: 1.4rem;
  color: var(--color-gray-500);
}
.legalPage-content .legalPage-sign {
  margin-top: 40px;
  text-align: right;
  font-weight: 500;
  color: var(--color-gray-700);
  line-height: 1.8;
}
.legalPage-content .legalPage-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.legalPage-content .legalPage-table th,
.legalPage-content .legalPage-table td {
  font-size: 1.6rem;
  text-align: left;
  vertical-align: top;
  padding: 18px 16px;
  border-bottom: 1px solid var(--color-gray-200);
  line-height: 1.7;
}
.legalPage-content .legalPage-table th {
  width: 30%;
  white-space: nowrap;
  font-weight: 700;
  color: var(--color-gray-900);
}
.legalPage-content .legalPage-table td { color: var(--color-gray-700); }
@media screen and (max-width: 640px) {
  .legalPage-content .legalPage-table tr { display: block; border-bottom: 1px solid var(--color-gray-200); padding: 8px 0; }
  .legalPage-content .legalPage-table th,
  .legalPage-content .legalPage-table td { display: block; width: 100%; padding: 6px 0; border-bottom: none; white-space: normal; }
}

.legalIntro {
  background: var(--color-gray-50);
  border: 1px solid rgba(var(--color-tiffany-rgb), 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}
.legalIntro p { font-size: 1.6rem; color: var(--color-gray-600); line-height: 1.625; }

.legalInfoBox {
  margin-top: 32px;
  padding: 16px;
  border-radius: 8px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
}
.legalInfoBox p { font-size: 1.6rem; color: var(--color-gray-500); }
.legalInfoBox p + p { margin-top: 4px; }
.legalInfoBox--sm p { font-size: 1.2rem; }

.legalPdfBox {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}
.legalPdfBox-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.legalPdfBox-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(var(--color-blue-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legalPdfBox-icon svg { width: 24px; height: 24px; color: var(--color-blue); }
.legalPdfBox-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 4px;
}
.legalPdfBox-link {
  font-size: 1.4rem;
  color: var(--color-tiffany);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.legalPdfBox-link:hover { text-decoration: underline; }
.legalPdfBox-link svg { width: 16px; height: 16px; }

.legalTable { width: 100%; font-size: 1.6rem; border-collapse: collapse; }
.legalTable tr { border-bottom: 1px solid var(--color-gray-200); }
.legalTable th {
  padding: 12px 16px 12px 0;
  text-align: left;
  color: var(--color-gray-500);
  font-weight: 400;
  width: 160px;
  vertical-align: top;
}
.legalTable td {
  padding: 12px 0;
  color: var(--color-gray-700);
}

.legalArticles { display: flex; flex-direction: column; gap: 12px; }
.legalArticle {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-200);
}
.legalArticle:last-child { border-bottom: none; }
.legalArticle-num {
  font-size: 1.4rem;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  color: var(--color-blue);
  flex-shrink: 0;
  width: 56px;
}
.legalArticle-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gray-900);
}
.legalArticle-desc {
  font-size: 1.6rem;
  color: var(--color-gray-500);
  margin-top: 4px;
}

.legalSignature {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-200);
}
.legalSignature p {
  font-size: 1.6rem;
  color: var(--color-gray-500);
}

/* ═══════════════════════════════════════════════════════════════════
   loadingScreen
   ═══════════════════════════════════════════════════════════════════ */
.loadingScreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1528 50%, #091020 100%);
}
.loadingScreen-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.loadingScreen-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loadingScreen-logo { width: 110px; height: 90px; }
.loadingScreen-text {
  height: 30px;
  width: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   cookieBanner
   ═══════════════════════════════════════════════════════════════════ */
.cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-gray-200);
  padding: 20px 24px;
}
.cookieBanner-close {
  position: absolute;
  top: 12px;
  right: 16px;
  color: var(--color-gray-400);
  transition: color 0.2s;
}
.cookieBanner-close:hover { color: var(--color-gray-900); }
.cookieBanner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .cookieBanner-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}
.cookieBanner-msg {
  font-size: 1.6rem;
  color: var(--color-gray-600);
  line-height: 1.625;
  flex: 1;
  padding-right: 24px;
}
.cookieBanner-accept {
  padding: 10px 28px;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 999px;
  background: var(--color-blue);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookieBanner-accept:hover { background: rgba(var(--color-blue-rgb), 0.9); }

/* ═══════════════════════════════════════════════════════════════════
   applyPage（/careers/apply）
   ═══════════════════════════════════════════════════════════════════ */
.applyPage-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1279px) { .applyPage-inner { padding-left: 24px; padding-right: 24px; } }
.applyPage-privacy { font-size: 1.2rem; color: var(--color-gray-500); }
.applyPage-privacyLink { color: var(--color-tiffany); }
.applyPage-privacyLink:hover { text-decoration: underline; }
.applyPage-backBtn { margin-top: 24px; }
.applyPage-fallback { min-height: 100vh; }
.contactPage-submit { align-self: flex-end; width: auto; }
@media (max-width: 767px) {
  .contactPage-form .contactPage-submit { align-self: center; width: 80%; }
}

/* ═══════════════════════════════════════════════════════════════════
   レスポンシブ対応（全ページ追加分）
   1024px: タブレット, 768px: モバイル, 640px: 小型スマホ
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Contact ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contactPage-form { padding: 28px; }
}
@media (max-width: 768px) {
  .contactPage-form { padding: 30px; }
  .contactPage-formRow { gap: 16px; }
  .contactPage-successCard { padding: 28px 20px; }
  .contactPage-successTitle { font-size: 1.8rem; }
}
@media (max-width: 640px) {
  .contactPage-form { padding: 30px; }
  .contactPage-input { font-size: 1.6rem; padding: 10px 12px; }
  .contactPage-consent { padding: 12px; }
  .contactPage-consentLabel { gap: 8px; }
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .faqPage-supportGrid { gap: 20px; }
  .faqPage-category { margin-bottom: 60px; }
}
@media (max-width: 768px) {
  .faqPage-supportCard { padding: 20px; }
  .faqPage-supportGrid { grid-template-columns: 1fr; gap: 16px; }
  .faqPage-supportTitle { font-size: 1.7rem; }
  .faqPage-catTitle { font-size: 2.4rem; margin-bottom: 20px; }
  .faqPage-category { margin-bottom: 50px; }
  .faqPage-items { gap: 16px; }
  .faqPage-marker { width: 40px; min-width: 40px; font-size: 1.6rem; }
  .faqPage-question { padding: 18px 16px; }
  .faqPage-questionText { font-size: 1.5rem; padding-right: 8px; }
  .faqPage-answer { padding: 16px 18px; font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .faqPage-catTitle { font-size: 2.0rem; }
  .faqPage-marker { width: 36px; min-width: 36px; font-size: 1.4rem; }
  .faqPage-question { padding: 16px 12px; }
  .faqPage-questionText { font-size: 1.4rem; }
  .faqPage-questionArrow { width: 16px; height: 16px; }
  .faqPage-answer { padding: 14px 14px; font-size: 1.4rem; }
}

/* ─── Company ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .companyPage-infoTable th { padding: 20px 30px 20px 0 !important; }
  .companyPage-infoTable td { padding: 20px 0 !important; }
}
@media (max-width: 768px) {
  .companyPage-sectionTitle { font-size: 3.2rem; }
  .companyPage-infoTable { padding: 28px 24px; }
  .companyPage-infoTable table,
  .companyPage-infoTable tbody,
  .companyPage-infoTable tr,
  .companyPage-infoTable th,
  .companyPage-infoTable td {
    display: block;
    width: 100%;
  }
  .companyPage-infoTable th {
    padding: 16px 0 4px !important;
    border-bottom: none !important;
    font-size: 1.4rem;
    width: 100%;
    white-space: normal;
    color: var(--color-gray-600);
  }
  .companyPage-infoTable td {
    padding: 0 0 16px !important;
    border-top: none !important;
    font-size: 1.5rem;
  }
  .companyPage-infoTable tr {
    border-top: 1px solid var(--color-gray-200);
    padding: 8px 0;
  }
  .companyPage-infoTable tr:first-child { border-top: none; }
}
@media (max-width: 640px) {
  .companyPage-sectionTitle { font-size: 2.6rem; }
  .companyPage-infoTable { padding: 24px 15px; }
}

/* ─── スマホ版：本文コンテナの左右ガターを 15px に ───────────────── */
@media (max-width: 640px) {
  .section-inner,
  .subSection-narrow,
  .newsPage-inner,
  .newsListPage-inner,
  .newsDetail-inner,
  .faqPage-supportWrap,
  .faqPage-qaWrap,
  .applyPage-inner,
  .legalPage .legalPage-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ─── スマホ：下マージン 40px → 30px ─────────────────────────────── */
@media (max-width: 768px) {
  .section-title,
  .section-desc,
  .about-body--last,
  .notFoundPage .notFoundPage-logo,
  .notFoundPage .notFoundPage-text,
  .aboutPage-sectionTitle,
  .meritPage-heading,
  .newsFilter,
  .newsDetail-header,
  .recruitPage-blockTitle,
  .recruitPage-entryLead,
  .legalIntro,
  .legalPdfBox {
    margin-bottom: 30px;
  }
}

/* ─── About / Merit ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aboutPage-philosophyGrid { gap: 32px; }
  .meritPage-grid { gap: 24px; }
}
@media (max-width: 768px) {
  .aboutPage-sectionTitle,
  .meritPage-title { font-size: 2.8rem; }
  .aboutPage-philosophyGrid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .aboutPage-philosophyLabel { display: block; text-align: center; }
  .aboutPage-philosophyHeading { font-size: 2.0rem; text-align: center; }
  .meritPage-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .meritPage-card { padding: 28px 20px; }
  .meritPage-cardTitle { font-size: 1.8rem; }
  .meritPage-headingDesc { font-size: 1.5rem; }
  .aboutPage-messageCard {
    padding: 40px 20px !important;
    max-width: 100% !important;
  }
  .aboutPage-messageText { font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .meritPage-card { padding: 24px 18px; }
}

/* ─── Industry ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .industryPage-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .industryPage-cards { grid-template-columns: 1fr; gap: 16px; }
  .industryPage-card { padding: 20px; }
  .industryPage-cardTitle { font-size: 1.8rem; }
}

/* ─── Careers ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .recruitPage-benefitsGrid { gap: 16px; }
}
@media (max-width: 768px) {
  .recruitPage-positions { gap: 24px; }
  .recruitPage-positionCard { padding: 24px 20px; }
  .recruitPage-positionTitle { font-size: 2.0rem; }
  .recruitPage-benefitsGrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .recruitPage-benefitCard { padding: 14px; font-size: 1.4rem; }
  .recruitPage-sectionTitle { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .recruitPage-benefitsGrid { grid-template-columns: 1fr; }
  .recruitPage-positionCard { padding: 20px 16px; }
}

/* ─── Apply form ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .applyPage-form { padding: 24px 20px; }
  .applyPage-fieldRow { grid-template-columns: 1fr !important; gap: 16px; }
}

/* ─── News ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .newsPage-inner { padding: 0 24px; }
  .newsPage-item { padding: 20px 0; }
}
@media (max-width: 768px) {
  .newsPage-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 18px 0;
  }
  .newsPage-itemTitle { font-size: 1.5rem; }
  .newsPage-itemDate { font-size: 1.3rem; }
  .newsPage-detailTitle { font-size: 2.4rem !important; line-height: 1.4; }
  .newsPage-detailMeta { font-size: 1.3rem; }
  .newsPage-detailBody { font-size: 1.5rem; }
  .newsPage-detailBody h2 { font-size: 1.8rem; }
  .newsPage-detailBody h3 { font-size: 1.6rem; }
}
@media (max-width: 640px) {
  .newsPage-detailTitle { font-size: 2.0rem !important; }
}

/* ─── Legal ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .legalPage-content h2 { font-size: 1.8rem; margin-top: 24px; }
  .legalPage-content h3 { font-size: 1.5rem; }
  .legalPage-content p,
  .legalPage-content li { font-size: 1.5rem; }
}


/* ─── Service product detail ─────────────────────────────────────── */
@media (max-width: 768px) {
  .productPage-features,
  .productPage-cases,
  .productPage-scenes { grid-template-columns: 1fr !important; gap: 16px !important; }
  .productPage-flowSteps { gap: 16px; }
  .productPage-kpi { grid-template-columns: 1fr !important; }
}

/* ─── Service overview meritsセクション ──────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .meritPage-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ─── 共通: SubPageHero / breadcrumb / footer ────────────────────── */
@media (max-width: 768px) {
  .subHero { padding: 120px 0 60px !important; }
  .subHero-title { font-size: 3.2rem !important; }
  .breadcrumb { padding: 12px 0; font-size: 1.2rem; }
}

/* ─── 装飾の縮小 (モバイル) ──────────────────────────────────────── */
@media (max-width: 768px) {
  .services-decor__left,
  .services-decor__right,
  .features-decor__left,
  .features-decor__right,
  .solutions-decor__left,
  .solutions-decor__right,
  .about-decor__left,
  .about-decor__right {
    width: 200px !important;
  }
  /* 画面外に出ないよう端に寄せる（スマホ） */
  .services-decor__left,
  .features-decor__left,
  .solutions-decor__left,
  .about-decor__left { left: -10px !important; }
  .services-decor__right,
  .features-decor__right,
  .solutions-decor__right,
  .about-decor__right { right: -10px !important; }
  .about-decor__left { left: -40px !important; }
  .about-decor__right { bottom: 400px !important; }
  .solutions-decor__left { top: 3% !important; }
  .features-decor__right { left: -30px !important; right: auto !important; }
  .subHero-decor__left,
  .subHero-decor__right { width: 120px !important; }
  .subHero-decor__left { left: -30px !important; }
  .subHero-decor__right { right: -30px !important; }
}

/* ─── Solutions 画像 ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .solutions-card-image { height: 200px !important; }
  .solutions-card-body { padding: 20px; }
  .solutions-card-title { font-size: 1.8rem; }
}

/* ─── KPI セクション padding ─────────────────────────────────────── */
@media (max-width: 768px) {
  .kpi-section { padding: 0; }
  .kpi-section .section-inner { padding-left: 0; padding-right: 0; }
  .kpi-inner { padding: 15px; border-radius: 0; }
  .kpi-card { padding: 15px 5px; border-radius: 8px; gap: 10px; }
  .kpi-value { font-size: 2.8rem; white-space: normal; line-height: 1.2; }
  .kpi-label { font-size: 1.2rem; white-space: normal; }
}

/* ─── Section padding (全体) ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding-top: 80px; padding-bottom: 80px; }
  .section-heading { margin-bottom: 30px; }
}

/* ─── スマホ：主要CTAボタンを 80%幅・中央揃え ────────────────────────
   対象: Hero(別途) / CTAセクション / About「詳しく見る」/ 業種「もっと見る」
        / お知らせ「もっと見る」/ ハンバーガー内ボタン
   除外: フォーム送信・カード内右寄せボタン                              */
@media (max-width: 767px) {
  /* 単独ボタン系（直下が .btn-wrap） */
  .solutions-more,
  .newsSection-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header .nav .rightGroup { align-items: center; }
  .solutions-more .btn-wrap,
  .newsSection-cta .btn-wrap,
  .header .nav .rightGroup .btn-wrap {
    width: 100%;
    max-width: 80%;
  }
  .solutions-more .btn,
  .newsSection-cta .btn,
  .header .nav .rightGroup .btn {
    width: 100%;
  }

  /* CTAセクション（StaggerItem 包み） */
  .cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons > * {
    width: 100%;
    max-width: 80%;
  }
  .cta-buttons .btn-wrap,
  .cta-buttons .btn {
    width: 100%;
  }

  /* About「詳しく見る」（テキスト列内の単独ボタン） */
  .about-text > .btn-wrap {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-text .btn { width: 100%; }
}

/* ─── スマホ(≤640px)：フォーム・カード等の左右paddingを15pxに統一 ─────
   ※モバイル専用。PCには影響しない                                      */
@media (max-width: 640px) {
  .contactPage-form,
  .contactPage-successCard,
  .contactPage-consent,
  .applyPage-form,
  .faqPage-supportCard,
  .faqPage-question,
  .faqPage-answer,
  .meritPage-card,
  .industryPage-card,
  .recruitPage-positionCard,
  .recruitPage-benefitCard,
  .legalIntro,
  .legalPdfBox,
  .legalInfoBox,
  .newsCard,
  .flowPage-faqCard,
  .flowPage-stepCard,
  .aboutPage-philosophy-text,
  .companyPage-profileCard,
  .solutions-card-body,
  .productPage-useCases .solutions-card-body,
  .recruitPage-cultureCard .solutions-card-body {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ============================================================
   WordPress 用の調整（テンプレートのDOM差異に対応）
   ============================================================ */
/* ハンバーガーメニューの開閉は .header .nav の ≤1024px メディアクエリで処理（JSが .menu-open をトグル） */

/* ============================================================
   アニメーション再構築（framer-motion 代替 / 純JS・CSS）
   ============================================================ */

/* ── ローディング画面：パス描画 → 塗り → 自動フェードアウト ── */
.loadingScreen { animation: vp-load-out .5s ease 1.7s forwards; }
@keyframes vp-load-out { to { opacity: 0; visibility: hidden; } }
.loadingScreen-logo path,
.loadingScreen-text path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  fill-opacity: 0;
  animation: vp-draw .6s ease forwards, vp-fill .3s ease forwards .55s;
}
@keyframes vp-draw { to { stroke-dashoffset: 0; } }
@keyframes vp-fill { to { fill-opacity: 1; } }
.loadingScreen-logo path:nth-child(2) { animation-delay: .12s, .67s; }
.loadingScreen-logo path:nth-child(3) { animation-delay: .22s, .77s; }
.loadingScreen-text path:nth-child(1) { animation-delay: .30s, .85s; }
.loadingScreen-text path:nth-child(2) { animation-delay: .33s, .88s; }
.loadingScreen-text path:nth-child(3) { animation-delay: .36s, .91s; }
.loadingScreen-text path:nth-child(4) { animation-delay: .39s, .94s; }
.loadingScreen-text path:nth-child(5) { animation-delay: .42s, .97s; }
.loadingScreen-text path:nth-child(6) { animation-delay: .45s, 1.00s; }

/* ── スクロール出現（whileInView 代替）。JS有効時のみ初期非表示にする ── */
.js .section-heading,
.js .kpi-inner,
.js .about-text,
.js .about-image,
.js .services-card,
.js .features-card,
.js .solutions-card,
.js .solutions-more,
.js .newsSection-left,
.js .newsSection-item,
.js .newsSection-cta,
.js .meritPage-card,
.js .industryPage-card,
.js .recruitPage-jobTable,
.js .recruitPage-cultureCard,
.js .productPage-feature,
.js .productPage-useCases .solutions-card,
.js .companyPage-infoTable,
.js .faqPage-category,
.js .aboutPage-messageCard,
.js .aboutPage-philosophy-text,
.js .aboutPage-philosophy-image,
.js .newsListPage-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.js .is-inview { opacity: 1; transform: none; }
/* productPage-useCases の非表示ルールは3クラス(0,3,0)で .js .is-inview(0,2,0)に勝ってしまうため、同等以上の詳細度で表示を上書き */
.js .productPage-useCases .solutions-card.is-inview { opacity: 1; transform: none; }
/* グリッド内カードは少しずつ遅らせる */
.js .services-card:nth-child(2), .js .features-card:nth-child(2), .js .solutions-card:nth-child(2), .js .industryPage-card:nth-child(2) { transition-delay: .1s; }
.js .services-card:nth-child(3), .js .features-card:nth-child(3), .js .solutions-card:nth-child(3), .js .industryPage-card:nth-child(3) { transition-delay: .2s; }
.js .features-card:nth-child(4), .js .industryPage-card:nth-child(4) { transition-delay: .3s; }

/* ── FAQ アコーディオン（開閉） ── */
.faqPage-answerWrap { overflow: hidden; transition: height .3s ease; }
.faqPage-questionArrow { transition: transform .3s ease; }
.faqPage-questionArrow.open { transform: rotate(180deg); }

/* ── About画像の青リビール（斜めワイプ）＝framerリビールの代替 ── */
/* 画像コンテナ自体はフェードアップさせず、青被せのワイプのみ行う */
.js .about-image, .js .aboutPage-philosophy-image { opacity: 1; transform: none; }

.about-image__reveal {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1) .3s;
}
.about-image.is-inview .about-image__reveal { clip-path: polygon(100% 0, 100% 0, 100% 100%, 70% 100%); }
@media (max-width: 767px) {
  .about-image.is-inview .about-image__reveal { clip-path: polygon(100% 0, 100% 0, 100% 100%, 80% 100%); }
}

.aboutPage-philosophy-image__reveal {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1) .3s;
}
.aboutPage-philosophy-image.is-inview .aboutPage-philosophy-image__reveal { clip-path: polygon(0 0, 0 0, 30% 100%, 0 100%); }
@media (max-width: 767px) {
  .aboutPage-philosophy-image.is-inview .aboutPage-philosophy-image__reveal { clip-path: polygon(0 0, 0 0, 20% 100%, 0 100%); }
}

/* ── ScrollProgress / CursorGlow / CookieBanner（グローバル要素の補完） ── */
.scrollProgress { background: linear-gradient(to right, #2D7DFF, #81D8D0); transform: scaleX(0); }
.cursorGlow {
  top: 0; left: 0;
  width: 400px; height: 400px;
  margin-left: -200px; margin-top: -200px;
  background: radial-gradient(circle, rgba(45,125,255,0.04) 0%, transparent 70%);
  transform: translate(-100px, -100px);
  will-change: transform;
}
.cookieBanner { transform: translateY(120%); opacity: 0; transition: transform .4s ease, opacity .4s ease; }
.cookieBanner.is-show { transform: none; opacity: 1; }

/* features-card 画像をカード高さいっぱいに（WPの素imgはfillしないため補完） */
.features-card .features-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CTA 背景画像を埋める＋粒子canvasサイズ（WPの素img/canvas補完） */
.cta .cta-bg-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.particleField { width: 100%; height: 100%; display: block; }

/* ============================================================
   Next.js <Image fill> 相当：素imgをコンテナいっぱいに（高さズレ防止）
   ============================================================ */
.about-image__img,
.aboutPage-philosophy-image__img,
.solutions-card-image img,
.features-card-image img,
.meritPage-image img,
.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ヘッダーロゴ：スクロールで 40→28px（Next.jsの size プロップ切替の代替） */
@media screen and (min-width: 1280px) {
  .header .logo img { transition: height .3s ease; }
  .header.scroll-nav .logo img { height: 28px; width: auto; }
}

/* News「もっと見る」上の余白：grid化で相殺が効かず二重になった分を解消し、元のタイトル下40pxに戻す */
.newsSection-cta { margin-top: 0; }
