:root {
  --navy: #031e22;
  --navy-light: #0a3038;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-pale: #dbeafe;
  --blue-50: #eff6ff;
  --bb-gradient: linear-gradient(90deg, #3661e1 0%, #23448d 52%, #10263a 100%);
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f5f6f7;
  --white: #ffffff;
  --green: #10b981;
  --red: #ef4444;
  --radius: 16px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(3, 30, 34, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
}
h1, h2 { color: var(--navy); font-weight: 400; letter-spacing: normal; line-height: 1.5; }
h3 { color: var(--navy); font-weight: 700; letter-spacing: normal; line-height: 1.4; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header — reservation実測: fixed・透明・ロゴ白抜き */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0; background: transparent;
  transition: background 0.3s;
}
.header.scrolled { background: linear-gradient(to right, #2563eb 0%, #031e22 60%, #031e22 100%); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header-logo img { height: 52px; width: auto; display: block; filter: brightness(0) invert(1); }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-nav a { text-decoration: none; color: rgba(255, 255, 255, 0.6); font-size: 12px; font-weight: 400; }
.header-nav a:hover { color: rgba(255, 255, 255, 0.95); }
.header-cta {
  color: var(--white) !important; font-weight: 500;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px; padding: 8px 20px;
}
.header-cta:hover { background: rgba(255, 255, 255, 0.25); }

/* Hero — reservation実測のグラデーション・字組 */
.hero {
  background: linear-gradient(to right, #2563eb 0%, #031e22 60%, #031e22 100%);
  color: var(--white); padding: 118px 0 64px; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center; }
.hero h1 {
  color: var(--white); font-size: 44px; font-weight: 500;
  letter-spacing: normal; line-height: 1.45; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub { font-size: 16px; font-weight: 400; line-height: 1.9; color: var(--white); margin-bottom: 30px; }
.hero-sub strong { font-weight: 400; color: var(--blue-light); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--white); color: var(--blue);
  border: none; border-radius: 100px; padding: 12px 28px;
  font-family: inherit; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); }
.btn-ghost {
  display: inline-block; color: var(--white);
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px; padding: 12px 24px; font-size: 13px; font-weight: 500; text-decoration: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); }

/* Hero mockup */
.mock-window {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg);
  overflow: hidden; color: var(--gray-700); font-size: 12px;
  transform: rotate(0.5deg);
}
.mock-titlebar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.mock-title { font-weight: 600; color: var(--navy); font-size: 12.5px; }
.mock-updated { color: var(--gray-500); font-size: 11px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px 16px 6px; }
.mock-kpi { background: var(--gray-50); border-radius: 10px; padding: 8px 10px; display: flex; flex-direction: column; }
.k-label { font-size: 10px; color: var(--gray-500); }
.k-value { font-size: 14px; font-weight: 700; color: var(--navy); }
.k-value .num { font-weight: 900; }
.k-sub { font-size: 10px; color: var(--green); }
.mock-chart { padding: 8px 16px 4px; }
.mock-chart svg { width: 100%; height: 86px; display: block; }
.line-now { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; }
.line-last { fill: none; stroke: var(--gray-300); stroke-width: 2; stroke-dasharray: 4 4; }
.mock-chart-legend { display: flex; gap: 14px; padding: 4px 0 6px; }
.lg { font-size: 10px; color: var(--gray-500); display: inline-flex; align-items: center; gap: 5px; }
.lg::before { content: ""; width: 14px; height: 3px; border-radius: 2px; background: var(--gray-300); }
.lg.now::before { background: var(--blue); }
.mock-ai { border-top: 1px solid var(--gray-100); padding: 10px 16px 14px; display: flex; flex-direction: column; gap: 7px; }
.mock-ai-row { display: flex; gap: 8px; align-items: baseline; font-size: 11.5px; color: var(--gray-600); }
.mock-ai-row.done { color: var(--gray-400, #94a3b8); }
.ai-time { flex-shrink: 0; font-size: 10px; font-weight: 700; color: var(--blue); background: var(--blue-50); border-radius: 4px; padding: 1px 6px; }

/* Sections */
.section { padding: 64px 0 56px; }
.section-alt { background: var(--gray-50); }
.eyebrow {
  font-family: "Outfit", "Noto Sans JP", sans-serif; font-size: 20px; font-weight: 400;
  letter-spacing: 1.6px; color: var(--blue); margin-bottom: 8px; line-height: 1.8;
}
.eyebrow.light { color: var(--blue-light); }
.section h2 { font-size: 30px; font-weight: 400; letter-spacing: normal; margin-bottom: 14px; line-height: 1.5; }
.section-lead { color: var(--gray-500); margin-bottom: 40px; line-height: 1.9; }

/* 数値だけ明朝(Noto Serif JP)にする — 日本語はゴシックのまま */
.num { font-family: "Noto Serif JP", serif; font-weight: 900; font-feature-settings: "palt"; }

/* Before / After */
.ba-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 10px; align-items: stretch; margin-top: 40px; }
.ba-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow); }
.ba-card.after { border-color: var(--blue); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12); }
.ba-title { font-size: 13px; font-weight: 600; color: var(--gray-500); margin-bottom: 8px; }
.ba-card.after .ba-title { color: var(--blue); }
.ba-big { font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 18px; line-height: 1.4; }
.ba-big .num { font-size: 40px; margin-right: 2px; }
.ba-card.after .ba-big { color: var(--blue); }
.ba-unit { font-size: 15px; font-weight: 500; color: var(--gray-500); margin-left: 6px; }
.ba-steps { padding-left: 0; list-style: none; counter-reset: ba; }
.ba-steps li { counter-increment: ba; position: relative; padding: 6px 0 6px 34px; font-size: 14px; border-bottom: 1px dashed var(--gray-100); }
.ba-steps li::before {
  content: counter(ba); position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-100); color: var(--gray-500);
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.ba-card.after .ba-steps li::before { background: var(--blue-pale); color: var(--blue); }
.ba-note { margin-top: 16px; font-size: 13.5px; color: var(--blue); font-weight: 500; }
.ba-vs { display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gray-300); font-size: 18px; }

/* Benefits */
.benefit-list { display: flex; flex-direction: column; gap: 56px; margin-top: 50px; }
.benefit { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.benefit.reverse { direction: rtl; }
.benefit.reverse > * { direction: ltr; }
.benefit h3 { font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.benefit p { color: var(--gray-600); font-size: 15px; }
.mini-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 18px 20px; max-width: 380px; margin: 0 auto;
}
.section-alt .mini-card, .benefit .mini-card { background: var(--white); }
.mini-title { font-size: 12px; font-weight: 700; color: var(--navy); border-left: 3px solid var(--blue); padding-left: 8px; margin-bottom: 10px; }
.mini-line { font-size: 12.5px; color: var(--gray-600); margin-bottom: 6px; }
.mini-line.accent { color: var(--blue); background: var(--blue-50); border-radius: 8px; padding: 7px 10px; }
.mini-bars { display: flex; align-items: flex-end; gap: 7px; height: 74px; margin: 8px 0 10px; }
.mini-bars span { flex: 1; background: var(--gray-200); border-radius: 4px 4px 0 0; }
.mini-bars span.now { background: var(--blue); }
.mini-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.mini-table td { padding: 7px 4px; border-bottom: 1px solid var(--gray-100); }
.mini-table td:last-child { text-align: right; font-weight: 600; }
.mini-table .ok { color: var(--green); }
.mini-table .soldout { color: var(--red); }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow);
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; padding-left: 10px; border-left: 3px solid var(--blue); }
.feature-card p { font-size: 14px; color: var(--gray-600); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 0; margin: 44px 0 40px; }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: var(--white); font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center; font-family: "Outfit", sans-serif;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; display: inline-block; margin-right: 10px; }
.step p { font-size: 14.5px; color: var(--gray-600); }
.step-tag { display: inline-block; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 2px 10px; vertical-align: 2px; }
.step-tag.auto { background: var(--blue-50); color: var(--blue); }
.step-tag.manual { background: var(--gray-100); color: var(--gray-500); }
.pms-note { background: var(--blue-50); border: 1px solid var(--blue-pale); border-radius: var(--radius); padding: 30px 34px; }
.pms-note h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pms-note p { font-size: 14.5px; margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding: 4px 0 4px 28px; font-size: 14.5px; }
.check-list li::before { content: "✓"; position: absolute; left: 4px; color: var(--blue); font-weight: 700; }
.check-list.light li { color: rgba(255, 255, 255, 0.85); }
.check-list.light li::before { color: var(--blue-light); }

/* Feature card visuals */
.card-visual {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 16px; font-size: 12px; min-height: 96px;
}
.cv-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 4px 0; border-bottom: 1px dashed var(--gray-200); color: var(--gray-600); }
.cv-row:last-child { border-bottom: none; }
.cv-row.cv-head { font-weight: 700; color: var(--gray-500); font-size: 11px; border-bottom: 1px solid var(--gray-200); }
.cv-good { color: var(--green); font-weight: 700; font-style: normal; }
.cv-warn { color: var(--red); font-weight: 700; font-style: normal; }
.cv-cxl { color: var(--red); font-style: normal; font-size: 11px; }
.cv-line { width: 100%; height: 64px; display: block; }
.cv-line .now { fill: none; stroke: var(--blue); stroke-width: 2.5; }
.cv-line .last { fill: none; stroke: var(--gray-300); stroke-width: 2; stroke-dasharray: 4 4; }
.cv-line .goal { stroke: #f59e0b; stroke-width: 1.5; stroke-dasharray: 2 4; }
.cv-caption { display: flex; gap: 12px; font-size: 10.5px; color: var(--gray-500); padding-top: 6px; }
.dot { display: inline-block; width: 12px; height: 3px; border-radius: 2px; background: var(--gray-300); vertical-align: middle; margin-right: 4px; }
.dot.now { background: var(--blue); }
.dot.goal { background: #f59e0b; }
.cv-chat .cv-q { background: var(--blue); color: var(--white); border-radius: 12px 12px 2px 12px; padding: 6px 12px; display: inline-block; margin-bottom: 8px; font-size: 12px; }
.cv-chat .cv-a { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px 12px 12px 2px; padding: 6px 12px; font-size: 11.5px; color: var(--gray-600); margin-bottom: 8px; }
.cv-fb { display: flex; gap: 6px; }
.cv-fb span { font-size: 10.5px; border: 1px solid var(--gray-300); border-radius: 999px; padding: 1px 10px; color: var(--gray-500); background: var(--white); }
.cv-badge { font-style: normal; font-size: 10.5px; font-weight: 700; border-radius: 5px; padding: 1px 8px; }
.cv-badge.soldout { background: #fee2e2; color: var(--red); }
.cv-badge.up { background: #ffedd5; color: #c2410c; }
.cv-badge.csv { background: var(--blue-50); color: var(--blue); }
.cv-rank-kw { display: block; font-size: 11px; font-weight: 700; color: var(--gray-500); margin-bottom: 6px; }
.cv-rank-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed var(--gray-200); }
.cv-rank-row:last-child { border-bottom: none; }
.cv-stamp { background: #fefce8; border-radius: 6px; padding: 4px 8px !important; border-bottom: none !important; color: #854d0e; }
.feature-card p strong { color: var(--navy); }

/* Updates */
.updates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.update-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow); text-align: center; }
.update-voice { font-size: 13.5px; font-weight: 600; color: var(--gray-700); min-height: 3.6em; }
.update-voice::before { content: ""; }
.update-arrow { color: var(--blue); font-weight: 700; margin: 6px 0; }
.update-result { font-size: 13px; color: var(--blue); font-weight: 600; }

/* Why Business Brain */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.why-num { font-family: "Noto Serif JP", serif; font-size: 26px; font-weight: 900; color: var(--blue); display: block; margin-bottom: 10px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-600); }

/* Mid CTA band */
.cta-band { background: linear-gradient(to right, #2563eb 0%, #031e22 60%, #031e22 100%); color: var(--white); padding: 52px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: 26px; font-weight: 400; margin-bottom: 6px; }
.cta-band p { color: rgba(255, 255, 255, 0.75); font-size: 14.5px; }

/* Simulation */
.sim-tabs { display: flex; gap: 8px; margin-bottom: 26px; }
.sim-tab {
  font: inherit; font-size: 14px; padding: 9px 22px; border-radius: 999px;
  border: 1px solid var(--gray-300); background: var(--white); color: var(--gray-600); cursor: pointer;
}
.sim-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sim-body { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 38px 40px; box-shadow: var(--shadow); }
.sim-formula { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 28px; }
.sim-item { display: flex; flex-direction: column; }
.sim-num { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.4; }
.sim-num .num { font-size: 30px; margin-right: 1px; }
.sim-label { font-size: 12.5px; color: var(--gray-500); }
.sim-op { font-size: 20px; color: var(--gray-300); font-weight: 700; }
.sim-result { border-top: 2px dashed var(--gray-200); padding-top: 24px; }
.sim-result p:first-child { font-size: 14px; color: var(--gray-500); }
.sim-big { font-size: 20px; font-weight: 500; color: var(--blue); margin: 4px 0 8px; line-height: 1.4; }
.sim-big .num { font-size: 44px; margin-right: 2px; }
.sim-note { font-size: 12px; color: var(--gray-400, #94a3b8); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.price-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 34px 34px 30px; box-shadow: var(--shadow); }
.price-card:first-child { border-color: var(--blue); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1); }
.price-plan { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.price-value { font-size: 24px; font-weight: 500; color: var(--navy); line-height: 1.4; }
.price-sub { font-size: 13.5px; color: var(--gray-500); margin: 4px 0 18px; }
.pricing-note { margin-top: 20px; font-size: 13px; color: var(--gray-500); }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.tl-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow); }
.tl-week { display: inline-block; font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); background: var(--blue-50); border-radius: 999px; padding: 3px 12px; margin-bottom: 12px; }
.tl-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.tl-item p { font-size: 13.5px; color: var(--gray-600); }

/* FAQ — reservation実測に準拠(カードなし・区切り線・Qバッジ・丸チェブロン) */
.faq-list { max-width: 700px; margin-top: 36px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  display: flex; align-items: center; gap: 12px; padding: 20px 0;
  font-size: 15px; font-weight: 400; color: var(--navy); cursor: pointer;
}
.q-badge {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
}
.expand {
  flex-shrink: 0; margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--blue); color: var(--blue); font-size: 12px;
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s;
}
.faq-item.open .expand { transform: rotate(90deg); }
.faq-a {
  font-size: 14px; line-height: 1.8; color: var(--gray-500);
  padding: 0 0 0 40px; max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 20px 40px; }
.faq-more { margin-top: 24px; }
.faq-more a { color: var(--blue); text-decoration: none; font-weight: 500; font-size: 14px; }

/* Contact */
.section-contact { background: linear-gradient(to right, #2563eb 0%, #031e22 60%, #031e22 100%); color: var(--white); }
.section-contact h2 { color: var(--white); font-weight: 400; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-copy .check-list { margin-top: 26px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 34px 34px 28px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--gray-700); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-size: 14.5px; font-weight: 400; padding: 10px 14px;
  border: 1px solid var(--gray-300); border-radius: 10px; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-pale); }
.contact-form .btn-primary { background: var(--blue); color: var(--white); margin-top: 4px; }
.form-note { font-size: 12px; color: var(--gray-500); font-weight: 400; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.6); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 13.5px; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12.5px; letter-spacing: 0.04em; }

/* Mobile */
@media (max-width: 860px) {
  .hero { padding: 104px 0 56px; }
  .hero-grid, .benefit, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .benefit.reverse { direction: ltr; }
  .hero h1 { font-size: 28px; line-height: 1.45; }
  .hero-sub { font-size: 15px; }
  .header-nav a:not(.header-cta) { display: none; }
  .header-logo img { height: 44px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-vs { padding: 4px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .update-voice { min-height: 0; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0 56px; }
  .section h2 { font-size: 30px; }
  .eyebrow { font-size: 18px; }
  .sim-formula { gap: 14px; }
}
