/* =========================
   HANE – gentle, reassuring UI
   PC: fixed layout / Mobile: hamburger
   ========================= */

:root{
  --bg: #FBF6EE;
  --bg-2: #F6EFE5;

  --surface: rgba(255,255,255,.72);
  --surface-strong: rgba(255,255,255,.88);
  --stroke: rgba(38,44,52,.10);

  /* Ink */
  --ink: #2E3238;
  --ink-2: #454B53;
  --muted: #5E6670;
  --muted-2: #727B86;

  /* Pastel accents */
  --blue: #7FAFC6;
  --blue-2: #A6C8D8;
  --green: #91B8A6;
  --green-2: #B8D1C6;

  --focus: rgba(127,175,198,.45);

  --shadow-sm: 0 10px 24px rgba(22,28,35,.10);
  --shadow-md: 0 18px 50px rgba(22,28,35,.14);

  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;

  --container: 1120px;
  --narrow: 760px;

  --serif: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --hand: "Klee One", "Yu Mincho", "游明朝", serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--serif);
  color: var(--ink);
  background:
    radial-gradient(1000px 700px at 12% 0%, rgba(166,200,216,.28), rgba(0,0,0,0) 60%),
    radial-gradient(900px 650px at 90% 22%, rgba(145,184,166,.25), rgba(0,0,0,0) 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.9;
  letter-spacing: .02em;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
p{ margin: 0 0 14px; }
ul,ol{ margin: 0; padding-left: 1.2em; }
strong{ color: var(--ink); }

:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

.container{
  width: min(var(--container), calc(100% - 24px));
  margin-inline: auto;
}
.narrow{
  width: min(var(--narrow), calc(100% - 24px));
  margin-inline: auto;
}

.muted{ color: var(--muted); }
.handwriting-elegant{
  font-family: var(--hand);
  letter-spacing: .03em;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  background: var(--surface-strong);
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* =========================
   Header (PC fixed)
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(251,246,238,.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38,44,52,.08);
}
.header-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand{ display:flex; align-items:center; text-decoration:none; }
.brand-logo{
  height: 46px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(22,28,35,.10));
}

/* ナビ文字：小さめ（ご要望） */
.site-nav--desktop{
  display:flex;
  justify-content: center;
  align-items:center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
}
.site-nav--desktop a{
  text-decoration:none;
  color: var(--ink-2);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  font-size: 12.5px;
  letter-spacing: .02em;
}
.site-nav--desktop a:hover{
  background: rgba(166,200,216,.24);
  color: var(--ink);
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127,175,198,.92), rgba(145,184,166,.78));
  color: #fff;
  text-decoration:none;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.35);
  white-space: nowrap;
  font-size: 12.8px;
}
.nav-cta:hover{ filter: brightness(1.02); }

/* Hamburger (PCは非表示) */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 20px rgba(22,28,35,.08);
}
.nav-toggle-lines{
  width: 18px;
  height: 12px;
  display:block;
  margin: 0 auto;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: var(--ink-2);
  border-radius: 10px;
}
.nav-toggle-lines::before{ top:0; }
.nav-toggle-lines::after{ bottom:0; }
.nav-toggle:active{ transform: translateY(1px); }

.nav-overlay{ display:none; }
.site-nav--mobile{ display:none; }

/* =========================
   Hero
   ========================= */
.hero{
  position: relative;
  min-height: 68vh;
  padding: 76px 0 64px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(38,44,52,.08);
}
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-overlay-center{
  background:
    radial-gradient(900px 520px at 50% 40%, rgba(21,25,30,.55), rgba(21,25,30,.05) 70%),
    linear-gradient(180deg, rgba(21,25,30,.42) 0%, rgba(21,25,30,.18) 55%, rgba(21,25,30,.05) 100%);
}

.hero-inner{ position: relative; color: rgba(255,255,255,.96); }
.hero-center{ text-align:center; }
.hero-inner-center{ display:flex; flex-direction:column; align-items:center; }

.hero-eyebrow{
  margin: 0 0 10px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  letter-spacing: .06em;
  max-width: 720px;
}
.hero-title{
  margin: 0 0 14px;
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: .06em;
  text-shadow: 0 16px 40px rgba(0,0,0,.25);
  max-width: 720px;
}
.hero-lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(255,255,255,.90);
  max-width: 720px;
}
.hero-emotion{
  margin: 8px 0 18px;
  font-size: clamp(18px, 2.1vw, 24px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 14px 40px rgba(0,0,0,.30);
}
.hero-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.hero-actions-center{ justify-content:center; }
.hero-note{
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  max-width: 720px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .03em;
  border: 1px solid transparent;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btn-wide{ width: 100%; }
.btn-primary{
  background: linear-gradient(135deg, rgba(127,175,198,.98), rgba(145,184,166,.86));
  color: #fff;
  box-shadow: 0 10px 24px rgba(22,28,35,.10);
}
.btn-primary:hover{ filter: brightness(1.02); }
.btn-ghost{
  background: rgba(255,255,255,.88);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,.94); }

/* =========================
   Sections
   ========================= */
.section{ padding: 72px 0; }
.section-soft{
  background: rgba(255,255,255,.55);
  border-top: 1px solid rgba(38,44,52,.06);
  border-bottom: 1px solid rgba(38,44,52,.06);
}
.section-head{ margin-bottom: 16px; }
.section-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .04em;
  color: var(--ink);
}
.section-sub{
  margin: 0 0 6px;
  color: rgba(46,50,56,.86);
  font-size: 18px;
}
.section-lead{ margin: 0 0 14px; color: var(--muted); }
.section-em{ margin-top: 14px; font-weight: 700; color: var(--ink-2); }

/* 手書き風を“大きく目立たせる”用 */
.lead-big{
  margin: 6px 0 16px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  color: rgba(46,50,56,.92);
}
.handwriting-big{
  margin-top: 18px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.55;
  color: rgba(46,50,56,.92);
}

/* Lists */
.check-list{
  list-style: none;
  padding-left: 0;
  margin: 16px 0 10px;
}
.check-list li{
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--ink-2);
}
.check-list li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: rgba(145,184,166,.95);
  font-weight: 900;
}
.dot-list li{ margin: 8px 0; color: var(--ink-2); }

/* Cards */
.cards{ display:grid; gap: 16px; margin-top: 18px; }
.cards-2{ grid-template-columns: 1fr 1fr; }
.card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(38,44,52,.08);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(22,28,35,.08);
}
.card-accent{
  background: linear-gradient(180deg, rgba(166,200,216,.26), rgba(255,255,255,.90));
}
.card-title{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .03em;
}

.gentle-note{
  margin-top: 16px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(38,44,52,.06);
  border-radius: 22px;
  padding: 14px 14px 12px;
}

.pill-row{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  padding: 0;
}
.pill{
  display:inline-flex;
  align-items:center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(145,184,166,.18);
  border: 1px solid rgba(145,184,166,.26);
  color: var(--ink-2);
  font-size: 13px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Quote / flow */
.flow-text{
  margin: 16px 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(127,175,198,.12);
  border: 1px solid rgba(127,175,198,.18);
  color: var(--ink-2);
}
.quote-box{
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,44,52,.08);
  box-shadow: 0 10px 24px rgba(22,28,35,.06);
}
.quote-strong{ font-weight: 800; color: var(--ink); }

.proposal-tag{
  margin: 0 0 8px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(145,184,166,.14);
  border: 1px solid rgba(145,184,166,.22);
  color: rgba(46,50,56,.90);
}

/* “足すのではなく、引く。”を強調 */
.concept-big{
  margin: 14px 0 6px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  color: rgba(46,50,56,.92);
}
.concept-big .handwriting-elegant{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(166,200,216,.22), rgba(145,184,166,.18));
  border: 1px solid rgba(38,44,52,.06);
  box-shadow: 0 12px 26px rgba(22,28,35,.08);
}
.concept-sub{ margin: 0 0 12px; color: var(--muted); }

/* Two columns */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.panel{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(38,44,52,.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(22,28,35,.06);
}
.panel-accent{
  background: linear-gradient(180deg, rgba(145,184,166,.22), rgba(255,255,255,.86));
}
.sub-title{ margin: 0 0 6px; font-size: 18px; }

/* Menu */
.menu-grid{ display:grid; gap: 16px; margin-top: 16px; }
.menu-grid-2{ grid-template-columns: 1fr 1fr; }
.menu-card{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(38,44,52,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(22,28,35,.08);
}
.menu-img{
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}
.menu-body{ padding: 14px 14px 12px; }
.price{ margin: 8px 0 0; font-weight: 900; color: rgba(46,50,56,.92); }

/* First time (no image) */
.first-card{
  margin-top: 16px;
  position: relative;
  background: linear-gradient(135deg, rgba(166,200,216,.22), rgba(145,184,166,.16), rgba(255,255,255,.86));
  border: 1px solid rgba(38,44,52,.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(22,28,35,.10);
}
.first-badge{
  position:absolute;
  top: 14px;
  right: 14px;
  background: rgba(127,175,198,.20);
  border: 1px solid rgba(127,175,198,.22);
  color: var(--ink-2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.first-title{ margin: 0 0 8px; font-size: 20px; }

.steps{
  margin-top: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(38,44,52,.06);
  border-radius: 22px;
  padding: 16px;
}
.step-list li{ margin: 8px 0; color: var(--ink-2); }

.voice{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,44,52,.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(22,28,35,.06);
}

/* FAQ */
.faq{ margin-top: 14px; display:grid; gap: 10px; }
.faq-item{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(38,44,52,.08);
  border-radius: 22px;
  overflow: hidden;
}
.faq-item button{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 14px;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-2);
  font-weight: 800;
}
.faq-item [data-panel]{ padding: 0 14px 14px; color: var(--muted); }
.faq-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(145,184,166,.18);
  border: 1px solid rgba(145,184,166,.24);
  color: var(--ink-2);
}

/* Profile / Media */
.media-col{ display:grid; gap: 12px; }
.profile-img,
.media-img{
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(38,44,52,.08);
  box-shadow: 0 10px 22px rgba(22,28,35,.08);
}
.profile-links{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.blog-box{
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(127,175,198,.10);
  border: 1px solid rgba(127,175,198,.16);
}

/* Map */
.map{
  margin-top: 10px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(38,44,52,.08);
  box-shadow: 0 10px 24px rgba(22,28,35,.08);
  background: rgba(255,255,255,.8);
}
.map iframe{
  width: 100%;
  height: 320px;
  border: 0;
}

/* Notes */
.note-box{
  margin-top: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,44,52,.06);
}

.divider{
  border: 0;
  border-top: 1px solid rgba(38,44,52,.08);
  margin: 24px 0;
}

.text-link{
  color: rgba(62,106,122,.98);
  text-underline-offset: 3px;
}
.text-link:hover{ color: rgba(46,50,56,.95); }

/* Time box */
.time-box{
  margin: 12px 0 0;
  padding: 14px;
  border-radius: 22px;
  background: rgba(145,184,166,.14);
  border: 1px solid rgba(145,184,166,.20);
}

/* =========================
   Form
   ========================= */
.form-area{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,44,52,.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(22,28,35,.06);
}
.form-lead{ margin: 0 0 10px; font-size: 18px; }
.contact-form{ display:grid; gap: 12px; }

.form-row label{
  display:grid;
  gap: 6px;
  color: var(--ink-2);
  font-weight: 700;
}
.form-row input:not([type="radio"]):not([type="checkbox"]),
.form-row select,
.form-row textarea{
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(38,44,52,.14);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.form-row textarea{ resize: vertical; }

.form-help{ margin: 0; color: var(--muted); font-size: 13px; }

fieldset.form-row{
  border: 1px solid rgba(38,44,52,.10);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255,255,255,.60);
}
legend{
  padding: 0 8px;
  color: var(--ink-2);
  font-weight: 900;
}

.radio-group{ display: grid; gap: 10px; }
.radio-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(38,44,52,.08);
  cursor: pointer;
  color: var(--ink-2);
  font-weight: 800;
}
.radio-item input[type="radio"]{
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: rgba(127,175,198,.95);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note{ margin: 0; color: var(--muted); font-size: 12.5px; }
.hp-field{ display:none; }

/* Footer */
.site-footer{
  padding: 36px 0 88px;
  border-top: 1px solid rgba(38,44,52,.08);
  background: rgba(251,246,238,.70);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand{ margin: 0 0 6px; font-weight: 900; letter-spacing: .08em; }
.footer-meta{ margin: 0 0 6px; color: var(--muted); }
.footer-copy{ margin: 0; color: var(--muted-2); }

.footer-social{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
}
.footer-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(38,44,52,.08);
  text-decoration:none;
  color: var(--ink-2);
  box-shadow: 0 10px 18px rgba(22,28,35,.06);
  font-size: 13px;
}

/* Mobile fixed LINE */
.mobile-fixed{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 1300;
  display:none;
  padding: 0 12px;
}
.mobile-fixed-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(127,175,198,.98), rgba(145,184,166,.90));
  color: #fff;
  text-decoration:none;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.35);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .site-nav--desktop{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .mobile-fixed{ display:block; }

  .nav-overlay{
    display:block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 1200;
  }

  .site-nav--mobile{
    display:block;
    position: fixed;
    top: 12px;
    right: 12px;
    left: 12px;
    max-width: 520px;
    margin-left: auto;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(38,44,52,.08);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    padding: 12px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 1250;
  }
  .site-nav--mobile a{
    display:block;
    padding: 12px 10px;
    text-decoration:none;
    color: var(--ink-2);
    border-radius: 14px;
    white-space: nowrap;
  }
  .site-nav--mobile a:hover{ background: rgba(166,200,216,.22); }

  .mobile-nav-head{
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 6px;
  }
  .mobile-nav-title{
    margin: 0;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: .06em;
  }
  .mobile-nav-close{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(38,44,52,.10);
    background: rgba(255,255,255,.88);
    cursor: pointer;
  }

  .mobile-nav-actions{ display:grid; gap: 10px; margin-top: 10px; }

  .site-nav--mobile[data-open="true"]{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  html.nav-open .nav-overlay{
    opacity: 1;
    pointer-events: auto;
  }

  .section{ padding: 60px 0; }
  .two-col{ grid-template-columns: 1fr; }
  .cards-2{ grid-template-columns: 1fr; }
  .menu-grid-2{ grid-template-columns: 1fr; }
  .menu-card{ grid-template-columns: 1fr; }
  .menu-img{ height: 220px; min-height: 220px; }
  .grid-2{ grid-template-columns: 1fr; }

  .hero{ padding: 64px 0 56px; min-height: 62vh; }
}

@media (max-width: 420px){
  .brand-logo{ height: 42px; }
  .btn{ height: 46px; }
}

/* ===== モバイルの固定CTAが本文に重ならない安全策 ===== */
@media (max-width: 900px){
  .mobile-fixed{
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    top: auto;              /* ← 上に来てしまう事故を潰す */
    z-index: 9999;
  }

  /* 固定CTAの分だけ、ページ下に余白を足す（本文に被らない） */
  body{
    padding-bottom: 100px;
  }
}