@charset "utf-8";

/* =========================================================
   TATSUGUMI / theme.css  ver.2
   既存のカスタムCSSと丸ごと差し替えて使用します。
   ベースCSS（up-*ユーティリティ）はそのまま残してください。
   Breakpoint : 1024px / 599px
   ========================================================= */

/* ---------------------------------------------------------
   Design Token
   --------------------------------------------------------- */
:root {
  /* Color ------------------------------------------------ */
  --c-ink:        #0b1721;   /* 基本文字・最も濃い面 */
  --c-navy:       #14324f;   /* 主役の紺 */
  --c-steel:      #5a6b78;   /* 補助文字 */
  --c-line:       #dde1e5;   /* 罫線 */
  --c-paper:      #f4f6f7;   /* 淡い面 */
  --c-white:      #ffffff;
  --c-accent:     #0f6fb8;   /* 差し色（リンク・強調） */

  /* Font ------------------------------------------------- */
  --f-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --f-en:   "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Layout ----------------------------------------------- */
  --sec-py: 140px;
  --gutter: 40px;
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------
   Base
   --------------------------------------------------------- */
body {
  background: var(--c-white);
  color: var(--c-ink);
  font-family: var(--f-base);
  font-size: 15px;
  font-feature-settings: "palt" 1;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

#wrapper { min-width: 320px; overflow: hidden; }

img { vertical-align: top; }

a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
a:hover { opacity: .65; }

[class*="up-ofi"] { height: 100%; overflow: hidden; }
[class*="up-ofi"] img { transition: transform 1s var(--ease); }

::selection { background: var(--c-navy); color: #fff; }

:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 旧テーマの装飾クラスを無効化（CMS側に残っていても出ないように） */
.deco-wrap, [class*="top-hero-deco"], .bg01::before, .footer::after,
.header-cmn::after { display: none !important; content: none !important; }

/* ---------------------------------------------------------
   Section common
   --------------------------------------------------------- */
.sec { padding-top: var(--sec-py); padding-bottom: var(--sec-py); }
.sec-service { background: var(--c-paper); }
.sec-qa      { background: var(--c-paper); }

/* 見出し：英字ラベル＋縦罫 が本サイトのシグネチャ */
.sec-head { margin-bottom: 64px; }

.sec-en {
  display: block;
  color: var(--c-accent);
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
}
.sec-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--c-accent);
}

.sec-ja {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.5;
}

/* ---------------------------------------------------------
   Button
   --------------------------------------------------------- */
.btn { display: flex; }
.btn > * {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .1em;
  line-height: 1;
  min-width: 260px;
  padding: 20px 24px;
  position: relative;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn > *::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  margin-left: 24px;
  transition: transform .3s var(--ease);
}
.btn > *:hover { opacity: 1; }
.btn > *:hover::after { transform: translateX(6px); }

.btn-line > * { border: 1px solid var(--c-navy); color: var(--c-navy); }
.btn-line > *:hover { background: var(--c-navy); color: #fff; }

.btn-solid > * { background: var(--c-navy); color: #fff; border: 1px solid var(--c-navy); }
.btn-solid > *:hover { background: transparent; color: var(--c-navy); }

.btn-text > * { min-width: 0; padding: 0; color: var(--c-steel); font-size: 13px; }
.btn-text > *::after { margin-left: 14px; }

.btn-sm > * { min-width: 200px; padding: 14px 20px; font-size: 13px; }
.btn-center { justify-content: center; margin-top: 60px; }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-catch {
  color: var(--c-steel);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  padding: 10px 0;
}

.header { background: var(--c-white); position: relative; z-index: 100; }

.header-cmn {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--c-line);
  padding: 16px 0;
  position: relative;
}
.header-cmn.fixed {
  backdrop-filter: blur(8px);
  left: 0; top: 0; width: 100%;
  padding: 10px 0;
  position: fixed;
}
.header .top { margin-bottom: 0; }
.header-logo { max-width: 220px; width: 100%; }

.header .menu li a {
  border: none;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 0 18px;
  position: relative;
  text-align: center;
}
.header .menu li a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -6px;
  height: 1px;
  background: var(--c-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.header .menu li a:hover { opacity: 1; }
.header .menu li a:hover::after { transform: scaleX(1); }
.header .menu li:first-child a { border-left: none; }

/* ハンバーガー */
.toggle { background: none; display: none; height: 18px; position: relative; width: 30px; z-index: 260; }
.toggle .bar { background: var(--c-ink); height: 1px; left: 0; position: absolute; transition: .4s var(--ease); width: 100%; }
.toggle .bar:nth-of-type(1) { top: 0; }
.toggle .bar:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
.toggle .bar:nth-of-type(3) { bottom: 0; }
.toggle.active .bar:nth-of-type(1) { transform: translateY(8px) rotate(-45deg); }
.toggle.active .bar:nth-of-type(2) { opacity: 0; }
.toggle.active .bar:nth-of-type(3) { transform: translateY(-9px) rotate(45deg); }

.berger-body {
  background: var(--c-ink);
  height: 100vh; width: 100%;
  opacity: 0; visibility: hidden; pointer-events: none;
  overflow-y: auto;
  position: fixed; right: 0; top: 0; z-index: -1;
}
.berger-body.active { opacity: 1; pointer-events: all; visibility: visible; z-index: 251; transition: opacity .3s var(--ease); }
.berger-inner { padding: 100px 32px 120px; }
.berger-menu li { color: #fff; font-size: 15px; letter-spacing: .08em; line-height: 2.6; }
.berger-menu li a { border-bottom: 1px solid rgba(255, 255, 255, .18); display: block; padding: 12px 0; }

/* 固定CTA（SP） */
.fix-menu { display: none; }
.fix-menu .box { border-radius: 0; color: #fff; font-size: 13px; letter-spacing: .06em; line-height: 1; margin: 0; width: 50%; }
.fix-menu .box a { align-items: center; display: flex; justify-content: center; padding: 16px 0; }
.test-a, .test-b { display: flex; }
.test-a .box.contact, .test-b .box.contact { background: var(--c-navy); }
.test-a .box.tel2, .test-b .box.tel2 { background: var(--c-ink); }
.fix-menu .box a::before { display: none; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero { height: 88vh; min-height: 560px; position: relative; }
.hero-media, .hero-media .uk-slidenav-position, .hero-media .uk-slideshow,
.hero-media .uk-slideshow > li, .hero-slide { height: 100% !important; }
.hero-media { height: 100%; position: absolute; inset: 0; }
.hero-slide img { height: 100%; object-fit: cover; object-position: 50% 50%; width: 100%; }
.hero::after {
  background: linear-gradient(100deg, rgba(11, 23, 33, .82) 0%, rgba(11, 23, 33, .55) 46%, rgba(11, 23, 33, .1) 78%);
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
}

.hero-body {
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-en {
  color: rgba(255, 255, 255, .72);
  display: block;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  line-height: 1;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-catch {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
}
.hero-lead {
  color: rgba(255, 255, 255, .82);
  display: block;
  font-size: 15px;
  letter-spacing: .08em;
  line-height: 2;
  margin-top: 32px;
  max-width: 30em;
}
.hero-scroll {
  bottom: 40px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .3em;
  position: absolute;
  right: 40px;
  writing-mode: vertical-rl;
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  background: rgba(255, 255, 255, .7);
  display: block;
  height: 60px;
  margin: 12px auto 0;
  width: 1px;
}

/* ---------------------------------------------------------
   CTA bar
   --------------------------------------------------------- */
.cta-bar { background: var(--c-ink); padding: 32px 0; }
.cta-bar-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.cta-bar-txt { color: #fff; font-size: 17px; font-weight: 700; letter-spacing: .08em; }
.cta-bar .btn-solid > * { background: #fff; border-color: #fff; color: var(--c-ink); }
.cta-bar .btn-solid > *:hover { background: transparent; color: #fff; }

/* ---------------------------------------------------------
   Service card
   --------------------------------------------------------- */
.card-list { display: grid; gap: 1px; grid-template-columns: repeat(4, 1fr); background: var(--c-line); border: 1px solid var(--c-line); }
.card { background: var(--c-white); }
.card > a { display: block; height: 100%; }
.card > a:hover { opacity: 1; }
.card > a:hover .card-img img { transform: scale(1.06); }
.card-img { overflow: hidden; }
.card-body { padding: 28px 24px 32px; }
.card-ttl { font-size: 17px; font-weight: 700; letter-spacing: .06em; line-height: 1.6; margin-bottom: 12px; }
.card-txt { color: var(--c-steel); display: block; font-size: 13px; line-height: 1.9; }
.card-more {
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  margin-top: 20px;
  text-transform: uppercase;
}
.card-more::after { background: currentColor; content: ""; height: 1px; margin-left: 10px; width: 18px; }

/* ---------------------------------------------------------
   Split（About / Recruit）
   --------------------------------------------------------- */
.split { align-items: center; display: flex; gap: 80px; }
.split-rev { flex-direction: row-reverse; }
.split-media { width: 50vw; flex-shrink: 0; }
.split:not(.split-rev) .split-media { margin-left: calc(50% - 50vw); }
.split-rev .split-media { margin-right: calc(50% - 50vw); }
.split-body { max-width: 480px; padding-right: var(--gutter); }
.split-rev .split-body { padding-left: var(--gutter); padding-right: 0; margin-left: auto; }
.split-lead { display: block; font-size: 26px; font-weight: 700; letter-spacing: .06em; line-height: 1.7; margin-bottom: 24px; }
.split-txt { color: var(--c-steel); display: block; font-size: 15px; line-height: 2.1; margin-bottom: 40px; }

/* ---------------------------------------------------------
   Q&A
   --------------------------------------------------------- */
.qa-list { border-top: 1px solid var(--c-line); }
.qa-item {
  align-items: center;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  gap: 64px;
  padding: 56px 0;
}
.qa-item:nth-child(even) { flex-direction: row-reverse; }
.qa-media { flex-shrink: 0; width: 42%; }
.qa-body { flex: 1; }
.qa-num {
  color: var(--c-accent);
  display: block;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  margin-bottom: 16px;
}
.qa-ttl { font-size: 24px; font-weight: 700; letter-spacing: .06em; line-height: 1.6; margin-bottom: 18px; }
.qa-txt { color: var(--c-steel); display: block; font-size: 15px; line-height: 2.1; margin-bottom: 28px; }

/* ---------------------------------------------------------
   Flow
   --------------------------------------------------------- */
.flow-list { display: grid; gap: var(--gutter); grid-template-columns: repeat(4, 1fr); }
.flow-item { position: relative; }
.flow-num {
  color: var(--c-line);
  display: block;
  font-family: var(--f-en);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.flow-media { margin-bottom: 20px; }
.flow-ttl { font-size: 17px; font-weight: 700; letter-spacing: .06em; margin-bottom: 8px; }
.flow-txt { color: var(--c-steel); display: block; font-size: 13px; line-height: 1.9; }

/* ---------------------------------------------------------
   Works（swiper）
   --------------------------------------------------------- */
.works-area { margin: 0 auto; max-width: 1600px; padding: 0 80px; position: relative; }
.swiper { padding: 0; }
.swiper-slide { border-radius: 0; overflow: hidden; }
.swiper-slide-active { transform: none !important; }
.works-box { display: block; position: relative; }
.works-box:hover { opacity: 1; }
.works-box:hover .works-img img { transform: scale(1.06); }
.works-img { background: var(--c-ink); overflow: hidden; }
.works-ttl {
  color: var(--c-ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.7;
  margin-top: 16px;
  opacity: 1;
  position: static;
  transform: none;
  visibility: visible;
  width: 100%;
  text-align: left;
}
.swiper-button-prev, .swiper-button-next {
  align-items: center;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 0;
  color: var(--c-navy);
  display: flex;
  font-size: 13px;
  height: 56px;
  justify-content: center;
  margin-top: 0;
  opacity: 1;
  top: 38%;
  transform: translateY(-50%);
  transition: background .3s var(--ease), color .3s var(--ease);
  width: 56px;
}
.swiper-button-prev:hover, .swiper-button-next:hover { background: var(--c-navy); color: #fff; }
.swiper-button-prev { left: 10px; }
.swiper-button-next { right: 10px; }
.swiper-button-prev::before { content: "\f060"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
.swiper-button-next::before { content: "\f061"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
.swiper-button-prev::after, .swiper-button-next::after { display: none; }

/* ---------------------------------------------------------
   News / Blog
   --------------------------------------------------------- */
.post-cols { display: grid; gap: 80px; grid-template-columns: 1fr 1fr; }
.post-head { align-items: flex-end; border-bottom: 1px solid var(--c-line); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding-bottom: 20px; margin-bottom: 8px; }
.post-head .sec-en { margin-bottom: 10px; }
.post-ja { font-size: 20px; font-weight: 700; letter-spacing: .06em; line-height: 1; }
.post-head .btn-text { margin-left: auto; }

.post-item { border-bottom: 1px solid var(--c-line); }
.post-item + .post-item { margin-top: 0; }
.post-item a { align-items: center; display: flex; gap: 20px; padding: 20px 0; }
.post-item a:hover { opacity: 1; }
.post-item a:hover .post-thumb img { transform: scale(1.06); }
.post-thumb { flex-shrink: 0; overflow: hidden; width: 110px; border-radius: 0; }
.post-desc { flex: 1; }
.post-date { color: var(--c-steel); display: block; font-family: var(--f-en); font-size: 12px; letter-spacing: .12em; line-height: 1; margin-bottom: 8px; }
.post-ttl { display: -webkit-box; font-size: 14px; font-weight: 700; letter-spacing: .04em; line-height: 1.7; }

/* ---------------------------------------------------------
   Contact
   --------------------------------------------------------- */
.sec-contact { background: var(--c-ink); color: #fff; padding: 110px 0; }
.contact-inner { display: grid; gap: 64px; grid-template-columns: 1fr 1fr; align-items: center; }
.contact-head .sec-en { color: #fff; }
.contact-head .sec-en::before { background: #fff; }
.contact-ja { font-size: 32px; font-weight: 700; letter-spacing: .06em; line-height: 1.5; margin-bottom: 20px; }
.contact-txt { color: rgba(255, 255, 255, .72); display: block; font-size: 14px; line-height: 2; }

.contact-acts { display: grid; gap: 1px; background: rgba(255, 255, 255, .2); border: 1px solid rgba(255, 255, 255, .2); }
.contact-tel, .contact-mail { background: var(--c-ink); display: block; padding: 28px 32px; transition: background .3s var(--ease); }
.contact-tel:hover, .contact-mail:hover { background: var(--c-navy); opacity: 1; }
.contact-label { color: rgba(255, 255, 255, .6); display: block; font-size: 11px; letter-spacing: .18em; line-height: 1; margin-bottom: 14px; }
.contact-num { display: block; font-family: var(--f-en); font-size: 40px; font-weight: 600; letter-spacing: .04em; line-height: 1.1; }
.contact-mail-ttl { display: block; font-size: 22px; font-weight: 700; letter-spacing: .06em; line-height: 1.4; }
.contact-note { color: rgba(255, 255, 255, .55); display: block; font-size: 12px; letter-spacing: .06em; margin-top: 10px; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer { background: var(--c-white); border-top: 1px solid var(--c-line); padding-top: 72px; position: relative; }
.footer-logo { margin-bottom: 32px; }
.footer-logo img { width: 180px; }
.footer-item .ttl { font-size: 13px; font-weight: 700; letter-spacing: .1em; margin-bottom: 12px; }
.footer-item a { color: var(--c-steel); font-size: 13px; font-weight: 400; line-height: 2; }
.footer-item a:hover { color: var(--c-ink); opacity: 1; }
.footer-subMenu a::before { background: var(--c-line); }
.footer-left .list li { color: var(--c-steel); font-size: 13px; line-height: 2.2; }
.footer-copy { border-top: 1px solid var(--c-line); color: var(--c-steel); font-size: 11px; letter-spacing: .16em; margin-top: 48px; padding: 24px 0; text-align: center; }

.totop { background: var(--c-navy); color: #fff; height: 48px; width: 48px; bottom: 24px; right: 24px; }
.totop:before { display: none; }

/* =========================================================
   Tablet  - 1024px
   ========================================================= */
@media (max-width: 1024px) {
  :root { --sec-py: 90px; --gutter: 28px; }

  body { font-size: 14px; }

  .sec-head { margin-bottom: 44px; }
  .sec-ja { font-size: 26px; }

  .hero { height: 72vh; min-height: 480px; }
  .hero-catch { font-size: 38px; }
  .hero-lead { font-size: 14px; margin-top: 24px; }
  .hero-scroll { display: none; }

  .cta-bar { padding: 24px 0; }
  .cta-bar-txt { font-size: 15px; }

  .card-list { grid-template-columns: repeat(2, 1fr); }
  .card-body { padding: 22px 20px 26px; }

  .split { gap: 40px; }
  .split-media { width: 46vw; }
  .split-body { padding-right: 24px; }
  .split-rev .split-body { padding-left: 24px; }
  .split-lead { font-size: 21px; }

  .qa-item { gap: 32px; padding: 40px 0; }
  .qa-media { width: 40%; }
  .qa-ttl { font-size: 19px; }
  .qa-txt { font-size: 14px; }

  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .flow-num { font-size: 36px; }

  .works-area { padding: 0 60px; }
  .swiper-button-prev, .swiper-button-next { height: 44px; width: 44px; }

  .post-cols { gap: 48px; }

  .sec-contact { padding: 80px 0; }
  .contact-inner { gap: 40px; grid-template-columns: 1fr; }
  .contact-ja { font-size: 26px; }
  .contact-num { font-size: 34px; }

  .toggle { display: block; }
  .fix-menu { bottom: 0; display: block; left: 0; position: fixed; width: 100%; z-index: 90; }
  .footer { padding-bottom: 70px; }
}

.mgtop {
  margin-top: 200px;
}

/* =========================================================
   SP  - 599px
   ========================================================= */
@media (max-width: 599px) {
  :root { --sec-py: 64px; }

  .sec-ja { font-size: 21px; }
  .sec-en { font-size: 11px; letter-spacing: .28em; }

  .btn > * { min-width: 0; width: 100%; }
  .btn-sm > * { width: 100%; }
  .btn-center { margin-top: 40px; }

  .hero { height: auto; min-height: 0; }
  .hero-media { position: relative; height: 58vw; min-height: 260px; }
  .hero::after { background: linear-gradient(180deg, rgba(11, 23, 33, .3), rgba(11, 23, 33, .55)); bottom: auto; height: 58vw; min-height: 260px; }
  .hero-body { background: var(--c-ink); display: block; padding: 40px 0 48px; }
  .hero-catch { font-size: 26px; letter-spacing: .04em; }
  .hero-lead { font-size: 13px; }

  .cta-bar-inner { display: block; text-align: center; }
  .cta-bar-txt { display: block; font-size: 14px; margin-bottom: 18px; }

  .card-list { grid-template-columns: 1fr; }
  .card > a { display: flex; align-items: center; gap: 16px; padding: 16px; }
  .card-img { width: 96px; flex-shrink: 0; }
  .card-body { flex: 1; padding: 0; }
  .card-ttl { font-size: 15px; margin-bottom: 6px; }
  .card-txt { display: none; }
  .card-more { margin-top: 10px; }

  .split, .split-rev { display: block; }
  .split-media { margin: 0 0 28px !important; width: 100%; }
  .split-body, .split-rev .split-body { max-width: none; padding: 0 4%; }
  .split-lead { font-size: 19px; margin-bottom: 16px; }
  .split-txt { font-size: 14px; margin-bottom: 28px; }

  .qa-item, .qa-item:nth-child(even) { display: block; padding: 32px 0; }
  .qa-media { margin-bottom: 20px; width: 100%; }
  .qa-ttl { font-size: 18px; }

  .flow-list { grid-template-columns: 1fr; gap: 24px; }
  .flow-item { align-items: center; display: grid; gap: 0 16px; grid-template-columns: 88px 1fr; }
  .flow-media { grid-row: 1 / 3; margin-bottom: 0; }
  .flow-num { font-size: 24px; margin-bottom: 4px; }
  .flow-ttl { font-size: 15px; }
  .flow-txt { display: none; }

  .works-area { padding: 0 4%; }
  .swiper-button-prev, .swiper-button-next { height: 40px; width: 40px; }
  .swiper-button-prev { left: 0; }
  .swiper-button-next { right: 0; }

  .post-cols { grid-template-columns: 1fr; gap: 40px; }
  .post-thumb { width: 88px; }

  .sec-contact { padding: 56px 0; }
  .contact-tel, .contact-mail { padding: 22px 20px; }
  .contact-num { font-size: 30px; }
  .contact-mail-ttl { font-size: 18px; }

  .footer-copy { font-size: 10px; letter-spacing: .1em; }
}

.btn-cmn02>* {
  background:var(--c-ink);
}

.btn-cmn02>*:hover {
  border: 1px solid #0d172b;
  color:#0d172b;
}

toggle .bar {
    background: #ffffff;
    height: 2px;
}
