/*
Theme Name: KAKERU Theme
Theme URI: https://kakerugroup.com
Author: KAKERU
Description: Classic WordPress theme for 株式会社 翔.
Version: 1.0.6
Text Domain: kakeru-theme
*/

:root {
  --navy: #082b59;
  --navy-deep: #021a38;
  --blue: #0f4fa8;
  --blue-bright: #2e78d2;
  --ice: #d9e6f5;
  --off-white: #f7f9fc;
  --ink: #10213d;
  --muted: #60708a;
  --line: #d7e0ec;
  --wood: #b48755;
  --shadow: 0 18px 55px rgba(6, 29, 66, .16);
  --site-header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height, 76px);
  overflow-x: hidden;
  background: var(--navy-deep);
}

body {
  margin: 0;
  padding: var(--site-header-height, 76px) 0 0;
  min-width: 100%;
  min-height: 100%;
  color: var(--ink);
  background: var(--navy-deep);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body > *:first-child {
  margin-top: 0;
}

body > *:last-child {
  margin-bottom: 0;
}

main {
  background: var(--off-white);
}

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

a {
  color: inherit;
  text-decoration: 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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(2, 26, 56, .94);
  border-bottom: 1px solid rgba(217, 230, 245, .22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin: 0;
  width: 100%;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .26);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand,
.footer-brand {
  display: inline-grid;
  gap: 2px;
  min-width: 148px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.brand__ja {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand__en {
  color: var(--ice);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  flex: 1;
  font-size: .92rem;
  font-weight: 700;
}

.global-nav__list,
.footer-nav__list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 0;
  color: rgba(255, 255, 255, .86);
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: #fff;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 700;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, .22);
}

.section-dark {
  color: #fff;
  background: var(--navy-deep);
}

.section-light {
  background: linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.section-white {
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 88px) clamp(64px, 8vw, 96px);
  overflow: hidden;
}

.hero::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(132deg, rgba(46, 120, 210, .55) 0 18%, transparent 18.2%),
    linear-gradient(314deg, rgba(15, 79, 168, .48) 0 22%, transparent 22.2%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 26, 56, .98) 0%, rgba(2, 26, 56, .78) 38%, rgba(2, 26, 56, .18) 72%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-bright);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  line-height: 1.22;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.hero__lead {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 12px 26px rgba(15, 79, 168, .28);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .06);
}

.hero__info {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 28px;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
}

.about,
.services,
.works,
.news,
.contact {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 30px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(24px, 5vw, 62px);
  width: min(1080px, 100%);
  margin: 0 auto;
}

.about__copy {
  font-size: 1.02rem;
}

.company-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--muted);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  font-weight: 700;
}

.about__card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(142deg, rgba(15, 79, 168, .95), rgba(2, 26, 56, .96)),
    var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about__card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(217, 230, 245, .28);
  transform: rotate(45deg);
}

.about__card p {
  position: relative;
  margin: 0 0 22px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.45;
}

.about__card span {
  position: relative;
  color: rgba(255, 255, 255, .82);
}

.service-grid,
.post-grid {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.service-card {
  min-height: 260px;
  padding: 30px 24px 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--blue);
  background: transparent;
}

.service-card__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 16px rgba(15, 79, 168, .12));
}

.service-card__icon line[x1="9"][x2="9"],
.service-card__icon line[x1="12"][x2="12"],
.service-card__icon line[x1="15"][x2="15"] {
  stroke-width: 3.2;
}

.service-card h3,
.work-card h3 {
  margin: 0 0 10px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.service-card p,
.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  color: var(--blue);
  font-weight: 800;
  border: 1px solid var(--blue-bright);
  background: #fff;
}

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

.work-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(6, 29, 66, .08);
}

.work-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ice);
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.work-card:hover .work-card__image img {
  transform: scale(1.04);
}

.work-card__body {
  padding: 18px;
}

.post-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  background: var(--blue);
}

.news-list {
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 110px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-item time {
  color: var(--muted);
  font-weight: 700;
}

.news-item .post-label {
  margin: 0;
  justify-content: center;
}

.news-item a {
  font-weight: 700;
}

.navigation.pagination {
  width: min(1080px, 100%);
  margin: 34px auto 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--blue);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
}

.page-numbers.current {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 500px) minmax(0, 680px);
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
  overflow: hidden;
}

.contact__visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(217, 230, 245, .25);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.contact__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(2, 26, 56, .84) 100%),
    linear-gradient(135deg, rgba(46, 120, 210, .28) 0 20%, transparent 20.3%);
  pointer-events: none;
}

.contact__visual-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  padding: 18px 20px;
  color: #fff;
  background: rgba(2, 26, 56, .82);
  border-left: 3px solid var(--blue-bright);
  backdrop-filter: blur(10px);
}

.contact__visual-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--ice);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact__visual-panel p {
  margin: 0;
  font-weight: 700;
  line-height: 1.65;
}

.contact__body {
  max-width: 680px;
}

.contact__body p {
  color: rgba(255, 255, 255, .86);
  font-size: 1.02rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 12px 0;
  color: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(217, 230, 245, .18);
}

.contact-list span {
  color: var(--ice);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 88px) max(34px, env(safe-area-inset-bottom));
  color: #fff;
  background: #03172f;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .6);
}

.single-main,
.archive-main {
  background: var(--off-white);
}

.archive-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

.archive-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 79, 168, .9), rgba(2, 26, 56, .96)),
    var(--navy-deep);
}

.archive-hero__inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 88px);
}

.archive-hero h1 {
  margin: 0 0 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
}

.archive-hero p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.archive-works-grid {
  width: min(1080px, 100%);
}

.single-article {
  padding: 0;
  background:
    linear-gradient(180deg, #eaf2fb 0%, #f7f9fc 46%, #fff 100%);
}

.single-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 79, 168, .9), rgba(2, 26, 56, .96)),
    var(--navy-deep);
}

.single-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(217, 230, 245, .18);
  transform: rotate(45deg);
}

.single-hero__inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 88px);
}

.single-hero h1 {
  margin: 0 0 14px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.28;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-meta time {
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.single-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 6vw, 88px);
}

.single-content-card {
  position: relative;
  padding: clamp(34px, 5.2vw, 64px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(6, 29, 66, .14);
}

.single-content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.single-thumbnail {
  display: grid;
  place-items: center;
  margin: 0 0 36px;
  padding: clamp(14px, 3vw, 24px);
  overflow: hidden;
  background: #eef4fb;
  border: 1px solid var(--line);
}

.single-thumbnail img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto !important;
  max-height: 520px;
  object-fit: contain;
}

.single-content {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.95;
  max-width: 760px;
  margin: 0 auto;
}

.single-content > *:first-child {
  margin-top: 0;
}

.single-content h2,
.single-content h3 {
  margin: 2em 0 .75em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.35;
}

.single-content h2 {
  padding-left: 16px;
  border-left: 4px solid var(--blue-bright);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.single-content p,
.single-content ul,
.single-content ol {
  margin-bottom: 1.35em;
}

.single-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  color: var(--ink);
  background: #eef4fb;
  border-left: 4px solid var(--blue);
}

.single-content img {
  height: auto;
}

.single-footer {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  padding: 0 clamp(4px, 2vw, 16px);
}

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

.post-nav-item {
  min-height: 96px;
}

.post-nav-item:empty {
  display: none;
}

.post-nav-item a,
.single-back-link {
  display: grid;
  gap: 5px;
  height: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(6, 29, 66, .08);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.post-nav-item a:hover,
.post-nav-item a:focus-visible,
.single-back-link:hover,
.single-back-link:focus-visible {
  border-color: var(--blue-bright);
  box-shadow: 0 16px 34px rgba(6, 29, 66, .14);
  transform: translateY(-2px);
}

.post-nav-item span {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.post-nav-item strong {
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.post-nav-item--prev a::before,
.post-nav-item--next a::before,
.single-back-link::before {
  color: var(--blue-bright);
  font-weight: 900;
}

.post-nav-item--prev a::before {
  content: "<";
}

.post-nav-item--next a::before {
  content: ">";
}

.single-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  height: auto;
  padding: 12px 18px;
  color: var(--blue);
  font-weight: 900;
}

.single-back-link::before {
  content: "<";
  display: inline;
}

@media (max-width: 920px) {
  :root {
    --site-header-height: 82px;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .global-nav {
    order: 3;
    display: none;
    flex: 0 0 100%;
    justify-content: stretch;
    flex-direction: column;
    width: 100%;
    max-height: calc(100svh - var(--site-header-height, 86px));
    overflow-y: auto;
    gap: 0;
    padding: 8px 0 0;
    border-top: 0;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav .global-nav__list {
    display: grid;
    width: 100%;
    gap: 6px;
  }

  .global-nav .global-nav__list li {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav a {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    font-size: 1rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, .07);
    border: 0;
  }

  .global-nav a:hover,
  .global-nav a:focus-visible {
    background: rgba(255, 255, 255, .13);
  }

  .header-contact {
    order: 2;
  }

  .about__grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .post-grid--works {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact__visual {
    width: min(520px, 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --site-header-height: 120px;
  }

  .site-header {
    min-height: 0;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .header-contact {
    order: 4;
    width: 100%;
    min-height: 42px;
  }

  .hero {
    min-height: 720px;
    padding-top: 72px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(2, 26, 56, .96) 0%, rgba(2, 26, 56, .66) 100%);
  }

  .hero__info {
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 4px;
  }

  .section-heading--row {
    display: grid;
    align-items: start;
  }

  .company-list div,
  .news-item,
  .contact-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-grid,
  .post-grid--works {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .single-content-card {
    padding: 24px 18px;
  }

  .single-thumbnail {
    margin: 0 0 28px;
    padding: 10px;
  }

  .single-thumbnail img {
    width: auto;
    max-width: 100%;
    height: auto !important;
    max-height: none;
  }
}
