/* =========================================================
   AXIS NETWORK SOLUTION — スタイルシート
   IIS静的配信対応 / システムフォントのみ / CDN不使用
   ========================================================= */

/* ----- カスタムプロパティ ----- */
:root {
  --primary:       #0a3a8a;
  --primary-dark:  #061f4f;
  --accent:        #0096d6;
  --text:          #0a2447;
  --text-muted:    rgba(10,36,71,0.80);
  --text-faint:    rgba(10,36,71,0.45);
  --bg:            #f6f4ef;
  --bg-white:      #ffffff;
  --border:        rgba(10,36,71,0.12);
  --border-light:  rgba(10,36,71,0.08);
  --error:         #c62331;
  --font-en: 'Helvetica Neue', Arial, sans-serif;
  --font-ja: 'Yu Gothic', 'YuGothic', 'Meiryo', 'メイリオ',
             'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}

/* ----- リセット & ベース ----- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0; padding: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 64px;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: rgba(10,36,71,0.08);
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header.menu-open {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(10,36,71,0.1);
}

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

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: color 0.25s;
  line-height: 1;
}

.site-header.is-scrolled .header-logo,
.site-header.menu-open .header-logo {
  color: var(--text);
}

.header-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s;
}

.site-header.is-scrolled .header-logo-img,
.site-header.menu-open .header-logo-img {
  filter: none;
}

.header-logo-divider {
  width: 1px;
  height: 20px;
  background: currentColor;
  opacity: 0.3;
}

.header-logo-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.85;
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.header-nav-link {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.2s;
}

.header-nav-link:hover { color: #fff; }

.site-header.is-scrolled .header-nav-link {
  color: #0a2447;
}
.site-header.is-scrolled .header-nav-link:hover {
  color: var(--primary);
}

.header-nav-cta {
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.site-header.is-scrolled .header-nav-cta {
  border-color: var(--primary);
  color: var(--primary);
}

.header-nav-cta:hover {
  background: var(--accent);
  color: #fff;
}
.site-header.is-scrolled .header-nav-cta:hover {
  background: var(--primary);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  color: #fff;
  transition: color 0.2s;
}
.site-header.is-scrolled .hamburger,
.site-header.menu-open .hamburger {
  color: var(--text);
}

.hamburger-bar {
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(10,36,71,0.08);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-nav-link {
  text-decoration: none;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(10,36,71,0.08);
}

.mobile-nav-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* 3層合成: 左遮蔽(可読性) + 青カラーグレード + 写真 */
  background:
    linear-gradient(to right,
      rgba(4,15,43,0.94) 0%,
      rgba(4,15,43,0.90) 38%,
      rgba(4,15,43,0.55) 62%,
      rgba(4,15,43,0.32) 100%),
    linear-gradient(to bottom,
      rgba(10,58,138,0.35) 0%,
      rgba(0,5,25,0.50)   100%),
    url('../images/hero-datacenter.jpg') center / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* ---- Cyber scan line ----------------------------------------- */
@keyframes scan-sweep {
  0%   { top: -2px; opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 0.55; }
  100% { top: 100%; opacity: 0; }
}

.hero-scan-line {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent          0%,
    rgba(0,150,214,0.5) 20%,
    rgba(0,150,214,1)   50%,
    rgba(0,150,214,0.5) 80%,
    transparent         100%
  );
  box-shadow: 0 0 10px 2px rgba(0,150,214,0.55);
  animation: scan-sweep 7s linear infinite;
  pointer-events: none;
  z-index: 3;
}


/* ---- Editorial background wordmark ----------------------- */
.hero-editorial-bg {
  position: absolute;
  bottom: 80px;
  left: -12px;
  font-family: var(--font-en);
  font-size: clamp(100px, 17vw, 240px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.065);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Subtle grid — full screen */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}

/* Topology right side */
.hero-topology {
  position: absolute;
  top: 0; right: -60px;
  width: 50%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 4;
}

.topology-svg {
  position: absolute;
  top: 0; right: 0;
  width: 800px;
  height: 900px;
}

/* Hero body */
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 64px 120px;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

/* Kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 0;
}

.kicker--dark {
  color: var(--primary);
}

/* Badge variant — hero用 */
.kicker--badge {
  background: rgba(0,150,214,0.12);
  border: 1px solid rgba(0,150,214,0.50);
  padding: 7px 16px;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #0096d6;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: kicker-blink 2.5s ease-in-out infinite;
}

@keyframes kicker-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.kicker-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.kicker-line--accent { background: var(--accent); }
.kicker-line--primary { background: var(--primary); }

/* Headline */
.hero-headline {
  font-size: clamp(72px, 6.5vw, 104px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 28px 0 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 28px;
}

/* 左アクセントライン — 疑似要素でテキスト幅に影響させない */
.hero-headline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,150,214,0.75);
}

/* リビールラッパー — 縦方向のみクリップ（横ははみ出し許容） */
.hero-reveal-wrap {
  display: block;
  overflow-x: visible;
  overflow-y: clip;
}

.hero-reveal-wrap > span {
  display: block;
  white-space: nowrap;
}

/* リビールアニメーション */
@keyframes hero-reveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero-headline .hero-reveal-wrap:nth-child(1) > span {
  animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}
.hero-headline .hero-reveal-wrap:nth-child(2) > span {
  animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.56s both;
}


/* テキスト登場アニメーション */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.hero-content .kicker        { animation: hero-rise 0.7s ease 0.15s both; }
.hero-content .hero-headline { animation: hero-rise 0.8s ease 0.40s both; }
.hero-content .hero-sub      { animation: hero-rise 0.7s ease 0.65s both; }
.hero-content .hero-ctas     { animation: hero-rise 0.7s ease 0.88s both; }

/* Sub copy */
.hero-sub {
  font-size: 21px;
  line-height: 1.85;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
}

.hero-sub span { display: block; }

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 32px -6px rgba(0,150,214,0.55);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary-lg:hover {
  background: #007db5;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -4px rgba(0,150,214,0.70);
}

.hero-link-underline {
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 6px;
  opacity: 0.9;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Note link */
.hero-links {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.hero-note-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.hero-note-link:hover { color: #fff; }

.note-icon { flex-shrink: 0; transition: opacity 0.2s; height: 28px; width: auto; }
.hero-note-link:hover .note-icon { opacity: 0.9; }

/* Trust strip */
.hero-trust {
  position: relative;
  z-index: 1;
  padding: 24px 64px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.trust-stats {
  display: flex;
  gap: 56px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}

.trust-text {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  pointer-events: none;
}

.scroll-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.scroll-text { white-space: nowrap; }


/* =========================================================
   COMMON SECTION STYLES
   ========================================================= */

.section {
  position: relative;
  overflow: hidden;
}

.section--white  { background: var(--bg-white); }
.section--ivory  { background: var(--bg); }

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 64px 160px;
}

.section-number-tag {
  position: absolute;
  top: 64px; right: 64px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: rgba(10,36,71,0.25);
  pointer-events: none;
}

.section-number-tag--dark {
  color: rgba(10,58,138,0.45);
}

/* Section header */
.section-header {
  max-width: 900px;
  margin-bottom: 80px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 20px 0 0;
  text-wrap: pretty;
  word-break: keep-all;
}

.section-lede {
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
  color: var(--text-muted);
  margin: 20px 0 0;
  max-width: 700px;
}

/* Scroll fade-in animation */
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: none;
}


/* =========================================================
   SERVICE — Pillar cards
   ========================================================= */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 0;
}

.pillar-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 460px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pillar-card:hover {
  box-shadow: 0 8px 40px -10px rgba(10,36,71,0.15);
  transform: translateY(-2px);
}

.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pillar-icon { flex-shrink: 0; }

.pillar-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text-faint);
}

.pillar-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: 0.01em;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
  color: var(--text-muted);
}

.pillar-items {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(10,36,71,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-items li {
  font-size: 13px;
  color: rgba(10,36,71,0.78);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Integration callout */
.integration-callout {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.integration-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.integration-tag {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent);
}

.integration-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
}


/* =========================================================
   REASONS — Editorial list
   ========================================================= */

.reasons-list {
  display: flex;
  flex-direction: column;
}

.reason-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.reason-row:first-child { border-top: 1px solid var(--border); }

.reason-row:hover { background: rgba(10,36,71,0.025); }

.reason-num {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.reason-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.reason-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: 0.01em;
  text-wrap: pretty;
  margin-bottom: 14px;
}

.reason-text {
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
  color: var(--text-muted);
}



/* =========================================================
   CASES — Card grid
   ========================================================= */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.case-card {
  border: 1px solid var(--border);
  background: var(--bg-white);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.case-card:hover {
  box-shadow: 0 8px 40px -10px rgba(10,36,71,0.15);
  transform: translateY(-2px);
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent);
}

.case-span {
  color: var(--text-faint);
}

.case-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  background: rgba(10,36,71,0.06);
  color: var(--text);
  letter-spacing: 0.06em;
}

.case-tag--primary {
  background: var(--primary);
  color: #fff;
}

.case-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.01em;
}

.case-body {
  font-size: 14px;
  line-height: 1.85;
  font-weight: 500;
  color: var(--text-muted);
  flex: 1;
}

.case-link {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(10,36,71,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.15s;
}

.case-link:hover {
  color: var(--primary);
}

.case-arrow {
  color: var(--text);
  font-size: 16px;
  transition: transform 0.15s;
}

.case-link:hover .case-arrow { transform: translateX(4px); }

.cases-note {
  font-size: 12px;
  color: var(--text-faint);
}


/* =========================================================
   PROCESS — 5-step flow
   ========================================================= */

.process-track {
  position: relative;
  margin-bottom: 0;
}

.process-connector {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(10,36,71,0.18);
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Step column */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.2s, border-color 0.2s;
}

.process-step:hover .step-circle {
  background: var(--accent);
}

.step-label {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-faint);
  line-height: 1;
}

.process-step:hover .step-label {
  color: rgba(255,255,255,0.85);
}

.step-num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
}

.process-step:hover .step-num { color: #fff; }

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  transition: box-shadow 0.2s;
}

.process-step:hover .step-card {
  box-shadow: 0 4px 20px -6px rgba(10,36,71,0.15);
}

.step-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent);
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: 0.01em;
}

.step-body {
  font-size: 13px;
  line-height: 1.85;
  font-weight: 500;
  color: var(--text-muted);
  flex: 1;
}

.step-duration {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(10,36,71,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.step-duration-label { color: var(--text-faint); font-weight: 600; }

.step-duration-value { color: var(--text); font-weight: 700; }

/* Process note callout */
.process-note {
  margin-top: 72px;
  padding: 24px 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.process-note-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.process-note-tag {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent);
}

.process-note-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}


/* =========================================================
   FAQ — Accordion + filter
   ========================================================= */

.faq-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-top: 56px;
  margin-bottom: 0;
}

.faq-filter {
  appearance: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(10,36,71,0.2);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.faq-filter.is-active,
.faq-filter:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* FAQ items */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item.is-hidden { display: none; }

.faq-q {
  appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 40px 70px 1fr 32px;
  gap: 24px;
  align-items: center;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.faq-q-label {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.faq-cat-badge {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-faint);
}

.faq-q-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.01em;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10,36,71,0.2);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  justify-self: end;
}

.faq-q[aria-expanded="true"] .faq-toggle {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Accordion answer */
.faq-a {
  display: grid;
  grid-template-columns: 40px 70px 1fr 32px;
  gap: 24px;
  padding-bottom: 32px;
}

.faq-a-label {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  color: rgba(10,36,71,0.3);
}

.faq-a p {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  color: rgba(10,36,71,0.78);
  max-width: 800px;
  grid-column: 3;
  grid-row: 1;
}

/* FAQ bottom CTA */
.faq-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
}

.faq-cta-text { color: var(--text-muted); }

.faq-cta-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.04em;
}

.faq-cta-link:hover { color: var(--primary); }


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,58,138,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,58,138,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.8;
  pointer-events: none;
}

.section-inner { position: relative; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-pitch {}

.contact-form-wrap {
  min-width: 0; /* グリッド子要素の overflow を防止 */
  display: flex;
  flex-direction: column;
}

.contact-headline {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 20px 0 28px;
  word-break: keep-all;
}

.contact-lede {
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 48px;
  max-width: 420px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,58,138,0.18);
}

.contact-info-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.contact-info-key {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--text);
  width: 64px;
  flex-shrink: 0;
}

.contact-info-val {
  font-size: 15px;
  color: rgba(10,36,71,0.85);
}

/* Form card */
.form-card {
  background: #fff;
  border: 1px solid rgba(10,58,138,0.12);
  box-shadow: 0 32px 64px -32px rgba(10,58,138,0.18);
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row { display: flex; flex-direction: column; gap: 0; }
.form-row--2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(10,36,71,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.required-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  background: var(--error);
  color: #fff;
  letter-spacing: 0.05em;
}

.form-input {
  appearance: none;
  width: 100%;
  background: #fafaf7;
  border: 1px solid rgba(10,58,138,0.18);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.form-input:focus {
  border-color: var(--primary);
  background: #fff;
}

.form-input.has-error { border-color: var(--error); }

.form-textarea {
  padding: 14px;
  resize: vertical;
  line-height: 1.7;
  min-height: 120px;
}

.form-error {
  font-size: 12px;
  color: var(--error);
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 1em;
}

/* Radio grid */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(10,58,138,0.18);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  color: rgba(10,36,71,0.85);
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}

.radio-option:has(input:checked) {
  background: rgba(10,58,138,0.06);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.radio-option input {
  accent-color: var(--primary);
  margin: 0;
}

/* Agree row */
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(10,36,71,0.85);
  cursor: pointer;
  line-height: 1.7;
}

.agree-check {
  accent-color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.agree-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.required-star {
  color: var(--error);
  margin-left: 4px;
}

/* Submit */
.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-submit {
  appearance: none;
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 20px 56px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(10,58,138,0.4);
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-submit-arrow { font-size: 18px; }

/* Contact CTA card (フォーム実装前の暫定表示) */
.contact-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  min-height: 320px;
}

.contact-cta-lead {
  font-size: 16px;
  line-height: 2;
  color: var(--text-muted);
}

.contact-cta-btn {
  align-self: flex-start;
  text-decoration: none;
  font-size: 17px;
}

.contact-cta-note {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* Form success */
.form-success {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.success-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.01em;
}

.success-body {
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 480px;
}

.success-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-ja);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 64px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-col--service {
  display: flex;
  flex-direction: column;
}

.footer-links.footer-links--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

.footer-logo-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.85;
}

.footer-desc {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}


/* =========================================================
   RESPONSIVE — Tablet (768px – 1023px)
   ========================================================= */

@media (max-width: 1023px) {
  /* Header */
  .site-header { padding: 18px 40px; }
  .site-header.is-scrolled { padding: 12px 40px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-body { padding: 140px 40px 100px; }
  .hero-headline { font-size: clamp(52px, 6vw, 72px); padding-left: 20px; }
  .hero-sub { font-size: 17px; }
  .hero-trust { padding: 20px 40px; }
  .trust-stats { gap: 32px; }
  .trust-num { font-size: 18px; }
  .hero-scroll-cue { display: none; }
  .hero-topology { opacity: 0.5; }

  /* Sections */
  .section-inner { padding: 100px 40px 120px; }
  .section-number-tag { display: none; }
  .section-title { font-size: 34px; }
  .section-lede { font-size: 15px; }
  .section-header { margin-bottom: 56px; }

  /* Pillar grid */
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cases */
  .cases-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-connector { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Reasons */
  .reason-row { grid-template-columns: 80px 1fr; gap: 24px; }
  .reason-title { font-size: 22px; }
  .reason-text { font-size: 14px; }
  .reason-num { font-size: 40px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 36px 28px; }
  .contact-headline { font-size: 34px; }

  /* Footer */
  .footer-inner { padding: 56px 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* =========================================================
   RESPONSIVE — Mobile (< 768px)
   ========================================================= */

@media (max-width: 767px) {
  /* Header */
  .site-header { padding: 14px 20px; }
  .site-header.is-scrolled { padding: 10px 20px; }
  .header-logo-img { height: 26px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-body { padding: 100px 24px 80px; }
  .hero-content { width: 100%; min-width: 0; }
  .hero-headline {
    --hero-mobile-title-size: calc((100vw - 72px) / 10.5);
    display: block;
    font-size: 0;
  }
  .hero-reveal-wrap {
    display: inline;
    overflow: visible;
  }
  .hero-reveal-wrap > span {
    display: inline;
    font-size: var(--hero-mobile-title-size);
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 16px; width: 100%; }
  .btn-primary-lg {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 20px 16px;
    font-size: 17px;
    text-align: center;
    white-space: nowrap;
  }
  .hero-topology { display: none; }
  .hero-grid { display: none; }
  .hero-trust {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
    width: 100%;
  }
  .trust-num { font-size: 18px; }
  .hero-scroll-cue { display: none; }
  .hero-scan-line    { display: none; }
  .hero-editorial-bg { display: none; }

  /* Sections */
  .section-inner { padding: 80px 24px 88px; }
  .section-title {
    font-size: 26px;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .section-lede { font-size: 14px; }
  .section-header { margin-bottom: 40px; }

  /* Pillar grid */
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; }

  /* Integration */
  .integration-callout { flex-direction: column; align-items: flex-start; padding: 24px; }
  .integration-text { font-size: 16px; }

  /* Reasons */
  .reason-row {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .reason-num { font-size: 36px; }
  .reason-title { font-size: 19px; }
  .reason-text { font-size: 14px; }

  /* Cases */
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Process */
  .process-connector { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-circle { width: 56px; height: 56px; }
  .step-num { font-size: 18px; }
  .step-title { font-size: 17px; }
  .process-note { flex-direction: column; align-items: flex-start; padding: 24px; }
  .btn-primary { width: 100%; justify-content: center; }

  /* FAQ */
  .faq-q {
    grid-template-columns: 1fr 28px;
    padding: 20px 0;
  }
  .faq-q-label { display: none; }
  .faq-cat-badge { display: none; }
  .faq-q-text { font-size: 15px; }
  .faq-toggle { width: 28px; height: 28px; font-size: 16px; }
  .faq-a {
    grid-template-columns: 1fr 28px;
    padding-bottom: 24px;
  }
  .faq-a-label { display: none; }
  .faq-a p {
    font-size: 14px;
    grid-column: 1;
    grid-row: 1;
  }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 32px 24px 28px; }
  .form-row--2 { grid-template-columns: 1fr; gap: 20px; }
  .radio-grid { grid-template-columns: 1fr; }
  .contact-headline {
    font-size: 28px;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .form-submit-row { justify-content: stretch; }
  .btn-submit { width: 100%; justify-content: center; padding: 20px 32px; }
  .form-success { padding: 56px 24px; }
  .success-title { font-size: 24px; }

  /* Footer */
  .footer-inner { padding: 56px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-tagline { display: none; }
}


/* =========================================================
   2026 revision — corporate copy / direct CTA / tech column
   ========================================================= */

/* 追加ナビゲーションに合わせて、デスクトップ時の詰まりを抑える */
.header-nav {
  gap: 24px;
  font-size: 15px;
}

.header-nav-cta {
  white-space: nowrap;
}

/* ヒーローのCTAをフォーム直行・技術コラム誘導に整理 */
.hero-link-underline {
  font-size: 15px;
  font-weight: 700;
}

/* 数字ではなく「多数」等を使う場合も見た目が崩れないようにする */
.trust-num {
  min-height: 24px;
}

.trust-text {
  max-width: 160px;
}

/* 技術コラムセクション */
.section--tech {
  background:
    linear-gradient(135deg, rgba(6,31,79,0.96) 0%, rgba(10,58,138,0.94) 62%, rgba(0,150,214,0.72) 100%);
  color: #fff;
}

.section-number-tag--light {
  color: rgba(255,255,255,0.28);
}

.tech-inner {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section--tech .kicker {
  color: #8bd8ff;
}

.section--tech .kicker-line {
  background: #8bd8ff;
}

.tech-title {
  color: #fff;
}

.tech-lede {
  color: rgba(255,255,255,0.84);
}

.tech-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 48px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tech-panel-body {
  max-width: 760px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(139,216,255,0.45);
  color: #8bd8ff;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.tech-panel-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 12px;
  color: #fff;
}

.tech-panel-text {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.84);
}

.btn-tech-column {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
  padding: 18px 30px;
  background: #fff;
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-tech-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -8px rgba(0,0,0,0.35);
}

.btn-tech-arrow {
  font-size: 18px;
}

/* CASEの期間表記が長くなっても崩れないように調整 */
.case-top {
  gap: 16px;
}

.case-span {
  text-align: right;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* CONTACTの説明文が長くなったため可読性を少し調整 */
.contact-lede {
  max-width: 620px;
}

/* 外部フォーム直行CTAでもカード感を維持 */
.contact-cta-card {
  min-height: 180px;
}

/* モバイル最適化 */
@media (max-width: 1180px) {
  .header-nav {
    gap: 18px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .tech-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 32px 28px;
  }

  .btn-tech-column {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .tech-inner {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .section--tech .section-header {
    overflow-wrap: anywhere;
  }

  .tech-title {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .tech-panel-title {
    font-size: 23px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .tech-panel-text {
    font-size: 14px;
  }

  .case-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .case-span {
    text-align: left;
  }
}
