:root {
  --bg: #f6f7f8;
  --surface: #ffffff;
  --surface-soft: #eef2f5;
  --line: #d7dde3;
  --text: #111827;
  --muted: #5e6a78;
  --navy: #10263f;
  --teal: #0f6b6e;
  --blue: #1f5c9a;
  --blue-soft: #e8f0f8;
  --shadow: 0 12px 34px rgba(16, 38, 63, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1120px;
  --page-gutter: clamp(18px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 38, 63, 0.08);
  background: rgba(246, 247, 248, 0.88);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(16, 38, 63, 0.08);
  background: rgba(246, 247, 248, 0.94);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--navy);
}

.brand-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.94rem;
  color: var(--muted);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: rgba(31, 92, 154, 0.08);
}

.site-nav a[href="#contact"] {
  color: var(--navy);
  background: rgba(31, 92, 154, 0.08);
}

.section {
  padding: clamp(48px, 7vw, 72px) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(232, 240, 248, 0.34), rgba(238, 242, 245, 0.8));
  border-top: 1px solid rgba(16, 38, 63, 0.06);
  border-bottom: 1px solid rgba(16, 38, 63, 0.06);
}

.hero {
  padding-top: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.media-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.phone-mock {
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, #f7f9fb, #edf1f5);
  border: 1px solid rgba(16, 38, 63, 0.12);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 560px;
}

.phone-frame {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f7f9fb);
  border: 1px solid rgba(16, 38, 63, 0.12);
  overflow: hidden;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(16, 38, 63, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.camera-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8194a8, #d3dce4);
}

.phone-title {
  display: grid;
  gap: 2px;
}

.phone-title strong {
  color: var(--navy);
  font-size: 0.94rem;
}

.phone-title span {
  color: var(--muted);
  font-size: 0.78rem;
}

.chat-window {
  padding: 18px;
  display: grid;
  gap: 12px;
  min-height: 520px;
  background:
    linear-gradient(rgba(16, 38, 63, 0.02), rgba(16, 38, 63, 0.02)),
    radial-gradient(circle at top left, rgba(31, 92, 154, 0.05), transparent 42%);
}

.chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.meta-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.chat-bubble {
  max-width: 88%;
  padding: 13px 14px;
  border-radius: 18px;
  font-size: 0.94rem;
  line-height: 1.6;
  box-shadow: 0 1px 0 rgba(16, 38, 63, 0.04);
}

.bubble-left {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-top-left-radius: 8px;
}

.bubble-right {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(31, 92, 154, 0.12), rgba(15, 107, 110, 0.12));
  color: var(--navy);
  border-top-right-radius: 8px;
}

.chat-card {
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 63, 0.08);
}

.chat-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
}

.chat-card-body {
  margin-top: 6px;
  color: var(--navy);
  font-weight: 700;
}

.phone-footer {
  padding: 0 18px 18px;
  display: grid;
  gap: 10px;
}

.phone-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.progress-line {
  height: 4px;
  border-radius: 999px;
  background: rgba(16, 38, 63, 0.08);
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 54%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-note {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
}

.problem-grid,
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.problem-item,
.area-item {
  padding: 18px 0 0;
  background: transparent;
  border-top: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 0;
}

.problem-item h3,
.area-item h3,
.solution-step h3,
.pricing-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.35;
}

.problem-item p,
.area-item p,
.solution-step p,
.pricing-card p,
.faq-list p,
.contact-copy {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}

.solution-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.solution-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
}

.solution-step,
.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 0 0;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(16, 38, 63, 0.12);
}

.step-index,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.solution-step p,
.process-list p {
  margin-top: 2px;
  line-height: 1.55;
}

.samples-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  margin-inline: -2px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sample-card {
  flex: 0 0 clamp(300px, 29vw, 360px);
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-radius: 22px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
}

.sample-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.sample-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.sample-copy p {
  margin: 0;
  color: var(--muted);
}

.sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sample-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(15, 107, 110, 0.08);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.sample-media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 38, 63, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 38, 63, 0.04), rgba(31, 92, 154, 0.02)),
    #f5f7fa;
}

.sample-placeholder,
.sample-video {
  position: absolute;
  inset: 0;
}

.sample-placeholder {
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(233, 240, 247, 0.98)),
    radial-gradient(circle at top, rgba(31, 92, 154, 0.09), transparent 46%);
}

.sample-placeholder strong {
  font-size: 0.94rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.sample-placeholder span {
  font-size: 0.76rem;
  color: var(--muted);
  word-break: normal;
  overflow-wrap: anywhere;
}

.placeholder-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 92, 154, 0.12);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-video {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  background: #0b1220;
}

.sample-card.is-video-ready .sample-placeholder {
  opacity: 0;
  pointer-events: none;
}

.sample-card.is-video-ready .sample-video {
  opacity: 1;
}

.areas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 940px;
}

.process-list li {
  align-items: start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-radius: 22px;
}

.pricing-card-featured {
  border-color: rgba(31, 92, 154, 0.28);
  box-shadow: 0 14px 32px rgba(31, 92, 154, 0.08);
}

.price {
  margin: 8px 0;
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 800;
}

.pricing-note {
  margin-bottom: 16px;
}

.pricing-fineprint,
.pricing-details {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-fineprint {
  margin: 14px 0 0;
}

.pricing-details {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 38, 63, 0.12);
}

.pricing-details p {
  margin: 0;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--navy);
}

.pricing-card li + li {
  margin-top: 8px;
}

.pricing-button {
  width: 100%;
  margin-top: 20px;
}

.pricing-button:hover,
.pricing-button:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  padding: 0 20px 18px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 38, 63, 0.97), rgba(31, 92, 154, 0.96));
  color: #fff;
}

.contact-panel .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel h2,
.contact-panel .contact-copy,
.contact-mail {
  color: rgba(255, 255, 255, 0.92);
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
  min-width: 0;
}

.contact-actions .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-mail {
  margin: 4px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-mail a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-mail span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 24px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-consultation-bar {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --container: 900px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand-text span {
    display: none;
  }

  .site-nav {
    flex: 1 1 auto;
    min-width: 0;
  }

  .hero-grid,
  .solution-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .problem-grid,
  .areas-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-card {
    flex-basis: clamp(320px, 46vw, 420px);
  }

  .phone-mock {
    max-width: 520px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: clamp(14px, 4.2vw, 22px);
  }

  .container {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  }

  .header-inner {
    min-height: 0;
    align-items: stretch;
    padding: 12px 0 10px;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-text span {
    display: block;
    font-size: 0.72rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    justify-content: stretch;
    font-size: 0.9rem;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }

  .site-nav a {
    min-width: 0;
    width: 100%;
    justify-content: center;
    min-height: 46px;
    padding: 0 8px;
    border: 1px solid rgba(16, 38, 63, 0.1);
    background: rgba(255, 255, 255, 0.74);
    white-space: nowrap;
    text-align: center;
    line-height: 1.25;
  }

  .site-nav a[href="#areas"],
  .site-nav a[href="#process"] {
    display: none;
  }

  .site-nav a[href="#contact"] {
    color: #fff;
    border-color: transparent;
    background: var(--navy);
  }

  .section {
    padding: 44px 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.6rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
  }

  .lead {
    font-size: 0.98rem;
  }

  .media-badges {
    gap: 8px;
  }

  .media-badges span {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: clamp(1.38rem, 6vw, 1.8rem);
    line-height: 1.32;
  }

  .problem-grid,
  .areas-grid,
  .solution-list,
  .process-list,
  .pricing-grid,
  .faq-list {
    gap: 12px;
  }

  .problem-item,
  .area-item,
  .solution-step,
  .process-list li {
    padding-top: 14px;
  }

  .samples-grid {
    gap: 14px;
    margin-inline: calc(var(--page-gutter) * -1);
    padding: 2px var(--page-gutter) 10px;
    scroll-padding-inline: var(--page-gutter);
  }

  .sample-card {
    flex-basis: min(78vw, 320px);
    padding: 12px;
    border-radius: 18px;
  }

  .phone-mock {
    max-width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .chat-window {
    min-height: 400px;
    padding: 14px;
  }

  .problem-grid,
  .areas-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .solution-step,
  .process-list li {
    grid-template-columns: auto 1fr;
  }

  .step-index,
  .process-list span {
    width: 36px;
    height: 36px;
  }

  .contact-panel {
    padding: 22px;
    align-items: flex-start;
    border-radius: 20px;
  }

  .button {
    width: 100%;
  }

  .cta-group,
  .contact-actions {
    width: 100%;
  }

  .contact-actions {
    justify-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .mobile-consultation-bar {
    position: fixed;
    left: var(--page-gutter);
    right: var(--page-gutter);
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 12px;
    align-items: center;
    padding: 14px 14px 14px 16px;
    border: 1px solid rgba(16, 38, 63, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(16, 38, 63, 0.18);
    backdrop-filter: blur(12px);
  }

  .mobile-consultation-bar.is-dismissed {
    display: none;
  }

  .mobile-consultation-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
    padding-right: 24px;
  }

  .mobile-consultation-copy strong {
    color: var(--navy);
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .mobile-consultation-copy span {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .mobile-consultation-button {
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .mobile-consultation-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: rgba(16, 38, 63, 0.06);
    color: var(--navy);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
  }

  .mobile-consultation-close:hover,
  .mobile-consultation-close:focus-visible {
    color: var(--navy);
    background: rgba(16, 38, 63, 0.06);
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 12px;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 6px;
  }

  .brand-text span {
    display: none;
  }

  .sample-card {
    flex-basis: 82vw;
  }

  .contact-panel {
    padding: 18px;
  }

}
