@charset "UTF-8";

:root {
  --color-bg: #fff;
  --color-text: #111;
  --color-sub: #666;
  --color-line: #ededed;
  --max-width: 1120px;
  --content-width: 840px;
  --header-height: 76px;
  --font-en: "Plus Jakarta Sans", sans-serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --radius-subtle: 3px;
  --arrow-shape: polygon(0 45%, 78% 45%, 78% 10%, 100% 50%, 78% 90%, 78% 55%, 0 55%);
  --text-glow: 0 0 8px rgba(255,255,255,.96), 0 0 16px rgba(255,255,255,.9), 0 0 24px rgba(255,255,255,.82);
  --dark-text-glow: 0 0 8px rgba(0,0,0,.42), 0 1px 1px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ja);
  letter-spacing: .04em;
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
main { overflow: hidden; }
h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: .055em;
  font-weight: 600;
}

h2 {
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: 1.35;
  letter-spacing: .07em;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

h3 { font-weight: 500; }

p {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 2;
  font-weight: 400;
}

.section {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
}

.section-wide {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section-label {
  margin: 0 0 18px;
  color: #111;
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .22em;
  font-weight: 400;
  white-space: nowrap;
}

.sp-only { display: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

/* Buttons / Links */
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-en);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .12em;
}

.button::after,
.text-link::after {
  content: "";
  background-color: currentColor;
  clip-path: var(--arrow-shape);
  transform: translateY(-1px);
  transition: width .2s ease, transform .2s ease;
}

.button {
  justify-content: center;
  gap: 16px;
  min-width: 204px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--radius-subtle);
  background: #111;
  color: #fff;
  font-size: 13px;
  letter-spacing: .14em;
  transition: background .2s ease;
}

.button::after {
  width: 32px;
  height: 10px;
}

.button:hover {
  background: #333;
}

.button:hover::after {
  width: 40px;
  transform: translate(3px, -1px);
}

.text-link {
  gap: 9px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(17,17,17,.24);
  color: #111;
  font-size: 10.5px;
  font-weight: 400;
  opacity: .86;
  transition: gap .2s ease, opacity .2s ease, border-color .2s ease;
}

.text-link::after {
  width: 24px;
  height: 7px;
}

.is-link-card:hover .text-link,
.text-link:hover {
  gap: 13px;
  opacity: 1;
  border-bottom-color: rgba(17,17,17,.72);
}

.is-link-card:hover .text-link::after,
.text-link:hover::after {
  width: 32px;
  transform: translate(3px, -1px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: rgba(255,255,255,.30);
  border-bottom: 0;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.14)),
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 42%, rgba(255,255,255,.08));
  pointer-events: none;
}

.breadcrumb-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 18;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(232,232,232,.46);
  background: rgba(255,255,255,.30);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}

.breadcrumb-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,.14)),
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 42%, rgba(255,255,255,.08));
  pointer-events: none;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(100% - 40px, var(--max-width));
  min-height: 38px;
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  color: #777;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  scrollbar-width: none;
}

.breadcrumb-list::-webkit-scrollbar {
  display: none;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 9px;
  color: #b5b5b5;
}

.breadcrumb-item a {
  color: #555;
  transition: color .2s ease;
}

.breadcrumb-item a:hover {
  color: #111;
}

.breadcrumb-item span {
  color: #999;
}

.header-inner {
  width: min(100% - 40px, var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.global-nav {
  order: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #111;
  font-family: var(--font-en);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .08em;
}

.global-nav a {
  opacity: .86;
  text-shadow: 0 0 1px rgba(255,255,255,.95), 0 0 8px rgba(255,255,255,.82), 0 1px 1px rgba(0,0,0,.08);
  transition: opacity .2s ease;
}

.global-nav a:hover {
  opacity: 1;
}

.site-logo {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 180px;
}

.site-logo img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: var(--radius-subtle);
  background: rgba(255,255,255,.68);
  color: #111;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .12em;
  cursor: pointer;
}

/* Header Service Dropdown - PC only */
@media (min-width: 901px) {
  .global-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .global-nav .nav-item > a {
    display: inline-flex;
    align-items: center;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    z-index: 30;
    min-width: 188px;
    padding: 14px 16px;
    display: grid;
    gap: 2px;
    border: 1px solid rgba(232,232,232,.62);
    border-radius: var(--radius-subtle);
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
      linear-gradient(90deg, rgba(255,255,255,.36), transparent 42%, rgba(255,255,255,.28));
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 19px;
  }

  .nav-dropdown a {
    min-height: 30px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .12em;
    white-space: nowrap;
    opacity: .86;
  }

  .nav-dropdown a:hover {
    opacity: 1;
    color: #111;
  }

  .nav-item--service:hover .nav-dropdown,
  .nav-item--service:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-dropdown {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 19;
  padding: 26px 28px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    linear-gradient(90deg, rgba(255,255,255,.36), transparent 42%, rgba(255,255,255,.28));
  border-top: 1px solid rgba(232,232,232,.62);
  border-bottom: 1px solid rgba(232,232,232,.62);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
}

.mobile-menu.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: 100%;
  font-family: var(--font-ja);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-align: left;
}

.mobile-nav-group {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17,17,17,.1);
}

.mobile-nav-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mobile-service-list {
  display: grid;
  gap: 4px;
  margin: -2px 0 4px 14px;
  color: #888;
  font-size: 10px;
  letter-spacing: .06em;
}

.mobile-service-list a {
  min-height: 30px;
}

.mobile-menu .mobile-social-link {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  margin-top: 4px;
  padding: 0;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .12em;
  overflow: hidden;
}

.mobile-menu .mobile-social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 34px;
  color: #666;
  text-shadow: 0 0 1px rgba(255,255,255,.95), 0 0 8px rgba(255,255,255,.82), 0 1px 1px rgba(0,0,0,.08);
  transition: opacity .2s ease;
}

.mobile-menu a:hover {
  opacity: .62;
}

/* Designed Cards */
.design-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-subtle);
  background: #fff;
}

.design-card::before,
.design-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity .2s ease;
}

.design-card::before {
  opacity: .82;
}

.design-card::after {
  opacity: .58;
}

.design-card > * {
  position: relative;
  z-index: 1;
}

.is-link-card {
  color: inherit;
  cursor: pointer;
  transition: background .2s ease;
}

.is-link-card:hover {
  background: #fcfcfc;
}

.is-link-card:hover::before {
  opacity: .96;
}

.is-link-card:hover::after {
  opacity: .72;
}

.pattern-line::before {
  background:
    linear-gradient(90deg, transparent 0 64%, rgba(17,17,17,.09) 64.2%, transparent 64.4%),
    linear-gradient(90deg, transparent 0 78%, rgba(17,17,17,.06) 78.2%, transparent 78.4%),
    linear-gradient(180deg, transparent 0 28%, rgba(17,17,17,.09) 28.2%, transparent 28.4%),
    linear-gradient(180deg, transparent 0 76%, rgba(17,17,17,.06) 76.2%, transparent 76.4%);
}

.pattern-line::after {
  background:
    linear-gradient(125deg, transparent 0 72%, rgba(17,17,17,.08) 72.2%, transparent 72.4%),
    linear-gradient(90deg, rgba(17,17,17,.026) 1px, transparent 1px);
  background-size: auto, 12px 12px;
}

.pattern-grid::before {
  background:
    linear-gradient(90deg, rgba(17,17,17,.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17,17,17,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17,17,17,.028) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px, 8px 8px, 8px 8px;
  background-position: right top;
}

.pattern-grid::after {
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(17,17,17,.095) 58.2%, transparent 58.4%),
    radial-gradient(circle at 78% 24%, rgba(17,17,17,.11) 0 1px, transparent 1.2px),
    radial-gradient(circle at 84% 36%, rgba(17,17,17,.09) 0 1px, transparent 1.2px);
}

.pattern-flow::before {
  background:
    linear-gradient(104deg, transparent 0 50%, rgba(17,17,17,.08) 50.2%, transparent 50.4%),
    linear-gradient(104deg, transparent 0 63%, rgba(17,17,17,.09) 63.2%, transparent 63.4%),
    linear-gradient(104deg, transparent 0 76%, rgba(17,17,17,.06) 76.2%, transparent 76.4%);
}

.pattern-flow::after {
  background:
    linear-gradient(180deg, transparent 0 64%, rgba(17,17,17,.09) 64.2%, transparent 64.4%),
    linear-gradient(90deg, rgba(17,17,17,.024) 1px, transparent 1px);
  background-size: auto, 10px 10px;
}

.pattern-cross::before {
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(17,17,17,.1) 50.2%, transparent 50.4%),
    linear-gradient(180deg, transparent 0 50%, rgba(17,17,17,.085) 50.2%, transparent 50.4%),
    linear-gradient(90deg, transparent 0 74%, rgba(17,17,17,.055) 74.2%, transparent 74.4%);
}

.pattern-cross::after {
  background:
    linear-gradient(68deg, transparent 0 72%, rgba(17,17,17,.09) 72.2%, transparent 72.4%),
    linear-gradient(112deg, transparent 0 72%, rgba(17,17,17,.07) 72.2%, transparent 72.4%);
}

/* Final Contact */
.final-contact {
  padding: 76px 0;
  text-align: center;
}

.final-contact h2 {
  margin-bottom: 20px;
}

.final-contact p {
  max-width: 560px;
  margin: 0 auto;
}

.final-contact .button {
  margin-top: 28px;
}

/* 404 */
.not-found-section {
  position: relative;
  isolation: isolate;
  min-height: min(680px, calc(100svh - var(--header-height) - 96px));
  padding: 112px 0 104px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.not-found-section::before {
  content: "";
  position: absolute;
  inset: 44px 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(17,17,17,.07) 50.05%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 50%, rgba(17,17,17,.04) 50.05%, transparent 50.1%),
    linear-gradient(90deg, rgba(17,17,17,.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17,17,17,.025) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  opacity: .52;
  pointer-events: none;
}

.not-found-code {
  margin: 0 0 28px;
  color: rgba(17,17,17,.055);
  font-family: var(--font-en);
  font-size: clamp(72px, 17vw, 168px);
  line-height: .78;
  letter-spacing: .08em;
  font-weight: 700;
}

.not-found-section .section-label {
  margin-bottom: 16px;
}

.not-found-section h1 {
  margin-bottom: 22px;
  font-size: clamp(26px, 3.8vw, 44px);
}

.not-found-section p {
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.pre-footer-back {
  background: #fff;
}

.pre-footer-back-inner {
  width: min(100% - 40px, var(--max-width));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-back-link {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(17,17,17,.24);
  color: #111;
  font-family: var(--font-en);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 400;
  opacity: .86;
  transition: gap .2s ease, opacity .2s ease, border-color .2s ease;
}

.footer-back-link::after {
  content: "";
  width: 24px;
  height: 7px;
  background-color: currentColor;
  clip-path: var(--arrow-shape);
  transform: translateY(-1px) rotate(180deg);
  transition: width .2s ease, transform .2s ease;
}

.footer-back-link:hover {
  gap: 13px;
  opacity: 1;
  border-bottom-color: rgba(17,17,17,.72);
}

.footer-back-link:hover::after {
  width: 32px;
  transform: translate(-3px, -1px) rotate(180deg);
}

.site-footer {
  padding: 64px 0 52px;
  border-top: 1px solid var(--color-line);
}

.footer-inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "brand nav"
    "copyright copyright";
  align-items: start;
  gap: 40px 56px;
}

.footer-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-box,
.footer-social-link {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-subtle);
  background: #fff;
  color: #111;
  font-family: var(--font-en);
  line-height: 1;
  overflow: hidden;
}

.footer-logo-box {
  width: 96px;
  font-size: 24px;
  letter-spacing: .08em;
}

.footer-logo-box img,
.footer-social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-social-link {
  width: 72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  transition: background .2s ease, opacity .2s ease;
}

.footer-social-link:hover {
  background: transparent;
  opacity: .72;
}

.footer-nav {
  grid-area: nav;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 48px;
  color: #666;
  font-family: var(--font-ja);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-align: left;
}

.footer-nav-group {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-service-list {
  display: grid;
  gap: 10px;
  margin: -2px 0 4px 14px;
  color: #888;
  font-size: 10px;
  letter-spacing: .06em;
}

.footer-nav a {
  width: fit-content;
  transition: opacity .2s ease;
}

.footer-nav a:hover {
  opacity: .62;
}

.footer-legal {
  grid-area: copyright;
  justify-self: center;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #999;
  font-family: var(--font-en);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .12em;
  white-space: nowrap;
}

.footer-legal a {
  transition: opacity .2s ease;
}

.footer-legal a:hover {
  opacity: .62;
}

.copyright {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .breadcrumb-nav {
    position: relative;
    top: auto;
  }

  h2 {
    font-size: clamp(21px, 4.2vw, 30px);
  }

  .header-inner {
    position: relative;
    justify-content: flex-start;
  }

  .site-logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 156px;
    text-align: center;
    z-index: 1;
  }

  .site-logo img {
    width: 156px;
    max-height: 24px;
  }

  .global-nav {
    display: none;
  }

  .menu-toggle {
    order: 1;
    display: inline-flex;
    z-index: 2;
  }

  .mobile-menu {
    display: block;
  }

  .final-contact {
    padding: 60px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "copyright";
    gap: 28px;
  }

  .footer-logo-box {
    width: 80px;
  }

  .footer-social-link {
    width: 60px;
  }

  .footer-nav {
    justify-self: stretch;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-nav-group {
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(17,17,17,.1);
  }

  .footer-nav-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-service-list {
    gap: 4px;
    margin: -2px 0 4px 14px;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 34px;
  }

  .footer-service-list a {
    min-height: 30px;
  }

  .footer-legal {
    justify-self: center;
  }
}

/* Large mobile / tablet footer */
@media (min-width: 521px) and (max-width: 900px) {
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 48px;
  }

  .footer-nav-group {
    gap: 8px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-service-list {
    gap: 4px;
    margin: -2px 0 4px 14px;
  }

  .footer-nav a {
    min-height: 32px;
  }

  .footer-service-list a {
    min-height: 28px;
  }
}

/* Small mobile */
@media (max-width: 520px) {
  .header-inner,
  .section,
  .section-wide,
  .footer-inner {
    width: min(100% - 28px, var(--content-width));
  }

  h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .site-logo {
    width: 146px;
  }

  .site-logo img {
    width: 146px;
    max-height: 22px;
  }

  .mobile-menu {
    padding: 24px 22px 28px;
  }

  .mobile-menu nav {
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .sp-only {
    display: block;
  }
}
