/* ========================================
CSS Variables
======================================== */

:root {
  --primary-color: #1F3A34;
  --secondary-color: #2E4D38;
  --tertiary-color: #4F7E67;
  --text-color: #333;
  --white: #ffffff;
  --font-serif: 'adobe-garamond-pro', 'EB Garamond', serif;
  --font-sans: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
  --font-serif-jp: 'Zen Old Mincho' , 'EB Garamond', 'Times New Roman', serif;
}

/* ========================================
Opening Animation Styles
======================================== */
.opening-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}

.opening-content {
  text-align: center;
}

.opening-title {
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--font-serif-jp);
  color: var(--text-color);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
  /* タイプライター風アニメーション用 */
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--text-color);
  animation: typing 2s steps(15, end) 0.2s 1 normal both, blink-caret 0.7s steps(1) infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--text-color); }
}

.opening-girl {
  width: 180px;
  max-width: 60vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

.opening-animation.fadeout {
  opacity: 0;
  pointer-events: none;
}

/* ========================================
FadeIn Animation
======================================== */
.fadein-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* JavaScriptが無効な場合でも表示されるように */
.fadein-scroll.show,
.fadein-scroll:not(.fadein-scroll) {
  opacity: 1;
  transform: translateY(0);
}

.fadein-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
Base Styles
======================================== */
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* ========================================
Buttons
======================================== */

.btn-ver1,
.btn-ver2{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.1s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-ver1 {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 60px;
  margin: 0 auto;
}

.btn-ver1:hover {
  background-color: var(--tertiary-color);
}

.btn-ver2 {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.btn-ver2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}

.btn-ver2:hover::before {
  left: 0;
}

.btn-ver2:hover {
  color: var(--white);
}

.btn-ver2-icon {
  position: relative;
  z-index: 1;
}

.btn-ver2-icon path {
  stroke: var(--primary-color);
  transition: stroke 0.4s ease;
}

.btn-ver2:hover .btn-ver2-icon path {
  stroke: var(--white);
}

.btn-ver2-text {
  position: relative;
  z-index: 1;
}

/* ========================================
ナビゲーションヘッダー
======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow-x: hidden;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
}

.nav-logo img {
  width: auto;
  height: 60px;
}

.nav-container-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-menu li {
  margin: 0;
}

.nav-menu-link {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-menu-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.nav-menu-link:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid;
  padding: 8px 16px;
  border-radius: 8px;
  gap: 8px;
  color: var(--white);
  background-color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
  z-index: 1;
}

.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}

.header-cta:hover::before {
  left: 0;
}

.header-cta:hover {
  color: var(--primary-color);
}

.header-cta-icon{
  position: relative;
  z-index: 1;
}

.header-cta-icon path {
  stroke: var(--white);
  transition: stroke 0.4s ease;
}

.header-cta:hover .header-cta-icon path {
  stroke: var(--primary-color);
}

.header-cta-text {
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  justify-content: center;
  z-index: 102;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  background-color: var(--primary-color);
  padding: 50px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 101;
  width: 60%;
  height: calc(100vh - 70px);
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-menu li {
  margin: 0;
}

.mobile-nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 10px 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-menu a {
  position: relative;
}

.mobile-nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s;
  pointer-events: none;
}

.mobile-nav-menu a:hover::after,
.mobile-nav-menu a:focus::after {
  width: 100%;
}

/* ハンバーガーメニューを表示 */
@media (max-width: 789px) {
  .hamburger {
    display: flex;
  }

  .nav-container-menu,
  .header-cta-container {
    display: none;
  }
}

/* ========================================
hero section
======================================== */

.hero {
  background-color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  background-image: url('../img/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.hero-catch {
  margin: 0;
  font-size: 4rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
  writing-mode: vertical-rl;
  font-family: var(--font-serif-jp);
}

.hero-space{
  margin-top: 8rem;
}

.hero-text {
  font-size: 1.4rem;
  margin: 0;
}

.hero-scroll {
  margin-top: 6px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  display: flex;
  gap: 6px;
  animation: blinkAnime 1s ease-in-out infinite;
}

@keyframes blinkAnime{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.5;
  }
}
.hero-scroll::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(-45deg) translateY(-2px);
  margin-top: 3px;
}

/* ========================================
concept  section
======================================== */

.concept {
  background-color: #f3f3f3;
  padding-top: 5%;
  margin: 5% auto 10%;
}

.concept-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
}

.concept-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.concept-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.concept-badge-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--white);
}

.concept-badge-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform-origin: center;
  animation: rotate-svg 20s linear infinite;
}

@keyframes rotate-svg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.concept-badge-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  fill: var(--tertiary-color);
  font-family: var(--font-sans);
}

.concept-badge-top,
.concept-badge-name {
  position: relative;
  z-index: 2;
}

.concept-badge-top {
  margin: 0 0 6px;
  font-size: 1.8rem;
  color: var(--primary-color);
  letter-spacing: 0.16em;
  text-align: center;
}

.concept-badge-name {
  margin: 0;
  font-size: 4.8rem;
  letter-spacing: 0.2em;
  font-family: var(--font-serif-jp);
  color: var(--text-color);
}

/* ========================================
about  section
======================================== */

.about {
  margin: 2% 0 5%;
}

.about-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}

.about-text-box {
  padding: 22% 5%;
  background-color: var(--white);
  position: relative;
  margin-right: -10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.about-text-box::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -20px;
  width: 260px;
  height: 1px;
  background-color: var(--primary-color);
}

.about-text-box::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 10px;
  width: 1px;
  height: 260px;
  background-color: var(--primary-color);
}

.section-title{
  font-size: 3.2rem;
  margin: 16px 0;
  font-family: var(--font-serif-jp);
}

.about-lead {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.about-lead-color{
  color: var(--tertiary-color);
  font-weight: 600;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ========================================
gallery-strip  section
======================================== */

.gallery-strip {
  background-color: #ffffff;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-strip-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: gallery-marquee 40s linear infinite;
  /* speed/value can be adjusted for flow speed */
}

.gallery-strip-inner img {
  height: 320px;
  object-fit: cover;
  flex-shrink: 0;
  width: auto;
  display: block;
}

@keyframes gallery-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
works  section
======================================== */

.works {
  background-image: linear-gradient(30deg, rgba(92, 141, 130, 1), rgba(31, 58, 52, 1));
  padding: 8% 0;
  color: #ffffff;
}

.works-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.works-header {
  text-align: center;
  margin-bottom: 5%;
}

.work-item {
  display: grid;
  grid-template-columns: 40% 60%;
  background-color: var(--white);
  color: var(--text-color);
  margin-bottom: 5%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.work-text {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start;
  padding: 0 8%;
}

.work-title {
  margin: 0 0 12px;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid var(--primary-color);
}

.work-desc {
  font-size: 1.4rem;
  margin: 0 0 20px;
}

.work-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
}

.work-tags li {
  font-size: 11px;
  letter-spacing: 0.12em;
  border-radius: 2px;
  padding: 4px 10px;
  color: var(--white);
  background-color: var(--tertiary-color);
}

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

.works-more {
  text-align: center;
  margin-top: 16px;
  font-size: 1.4rem;
}

.btn-secondary-light {
  position: relative;
  overflow: hidden;
}

.btn-secondary-light::after {
  content: '';
  position: absolute;
  left: -2px;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 1.5px;
  background-color: var(--white);
  transition: width 0.3s ease;
  pointer-events: none;
}

.btn-secondary-light:hover::after,
.btn-secondary-light:focus-visible::after {
  width: 100%;
}

/* ========================================
contact  section
======================================== */

.contact {
  max-width: 1200px;
  margin: 5% auto;
}

.contact-inner {
  position: relative;
  border: 1px solid var(--primary-color);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

.contact-card > .section-title{
  font-size: 2.8rem;
}

.contact-card .section-title {
  margin-bottom: 8px;
}

.contact-address-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-address {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  border: 1px solid #234a3e;
  font-size: 13px;
  color: #234a3e;
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.mail-icon {
  position: relative;
  z-index: 1;
  margin-right: 6px;
}

.mail-icon path {
  stroke: currentColor;
  transition: stroke 0.4s ease;
}

.btn-ver2:hover .mail-icon path {
  stroke: var(--white);
}

.contact-map {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
footer
======================================== */

.site-footer {
  background-color: #14342b;
  color: var(--white);
  padding: 3% 0;
  font-size: 12px;
}

.footer-container {
  text-align: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 0 16px;
  padding: 0;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.16em;
}

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

.footer-bottom {
  border-top: 1px solid var(--white);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* ========================================
Responsive
======================================== */

@media (max-width: 1440px) {
  .hero-catch {
    margin-top: 16px;
    font-size: 3.2rem;
  }
  .hero-copy{
    margin-top: 16%;
  }
  .btn-ver1{
    padding: 12px 50px;
  }
  .concept-badge-circle {
    width: 400px;
    height: 400px;
  }
  .about {
    margin: 3% 0 8%;
  }
  .about-text-box {
    padding: 16% 5%;
  }
  .concept-badge-name {
    font-size: 4rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .about-icon img{
    width: 80%;
  }
  .about-lead {
    font-size: 1.4rem;
  }
  .gallery-strip-inner img {
    height: 240px;
  }
  .works-icon img{
    width: 10rem;
  }
  .work-title {
    font-size: 2rem;
  }
  .work-desc {
    font-size: 1.2rem;
  }
  .btn-ver2{
    font-size: 1.2rem;
  }
  .contact-card > .section-title {
    font-size: 2.4rem;
  }
  .contact-address,.contact-text{
    font-size: 1.2rem;
  }
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, 3.5fr) minmax(0, 1fr);
  }
  .hero-text{
    font-size: 1.2rem;
  }
  .hero-catch {
    margin-top: 40px;
  }
  .concept-badge-circle {
    width: 350px;
    height: 350px;
  }
  .btn-ver1 {
    padding: 12px 32px;
  }
  .about-text-box{
    margin-right: -32%;
  }
  .work-item{
    width: 90%;
    margin: 0 auto 5%;
  }
  .contact-inner{
    width: 90%;
    margin: 0 auto;
    padding: 30px 40px;
  }
}

@media (max-width: 1024px) {
  .nav-logo img {
    height: 50px;
  }
  .nav-menu{
    gap: 1.2rem;
  }
  .nav-menu-link{
    font-size: 1.4rem;
  }
  .header-cta {
    font-size: 1.2rem;
    padding: 6px 12px;
  }
  .concept-badge-circle {
    width: 300px;
    height: 300px;
  }
  .gallery-strip-inner img {
      height: 180px;
  }
  .contact-map{
    aspect-ratio: 1/1.1;
  }
}

@media (max-width: 768px) {
  .hero-inner{
    grid-template-columns: 1fr;
    position: relative;
  }
  .hero-image{
    height: 100vh;
  }
  .hero-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  .hero-copy{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
    z-index: 2;
  }
  .hero-scroll{
    color: var(--white);
  }
  .hero-scroll::after{
    border-left: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
  }
  .concept{
    padding-top: 0;
    margin: 10% auto;
    position: relative;
  }
  .concept-inner{
    grid-template-columns: 1fr;
    margin-bottom: 10%;
  }
  .concept-badge{
    position:  absolute;
  }
  .concept-badge-name {
    font-size: 3.2rem;
  }
  .about{
    margin-bottom: 10%;
  }
  .about-text-box::before{
    width: 200px;
  }
  .about-text-box::after{
    height: 200px;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-text-box{
    width: 90%;
    margin-right: 0;
    padding: 10% 5%;
  }
  .about-lead {
    font-size: 1.2rem;
  }
  .about-image img{
    width: 90%;
    display: block;
    margin-left: auto;
    margin-top: -10%;
  }
  .work-item{
    grid-template-columns: 1fr;
    margin-bottom: 10%;
  }
  .work-image{
    order: 1;
  }
  .work-text{
    order: 2;
    padding: 3% 8%;
  }
  .contact{
    margin: 10% auto;
  }
  .contact-inner{
    grid-template-columns: 1fr;
  }
  .contact-map{
    aspect-ratio: 16/9;
  }
  .site-footer{
    padding: 5% 0;
  }
}

@media (max-width: 480px) {
  .btn-ver2{
    padding: 8px 16px;
  }
  .concept{
    margin: 15% auto;
  }
  .concept-inner{
    padding-top: 50%;
  }
  .concept-badge{
    top: 16%;
    transform: translateY(-50%);
  }
  .concept-inner {
    margin-bottom: 16%;
  }
  .concept-badge-top {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 2rem;
    margin: 10px 0 10%;
  }
  .about-lead {
    font-size: 1rem;
  }
  .about {
    margin-bottom: 15%;
  }
  .about-text-box {
    width: 95%;
    padding: 7% 5%;
  }
  .about-text-box::before {
    top:6px;
    right: -10px;
    width: 110px;
  }
  .about-text-box::after {
    bottom:6px;
    right: 10px;
    height: 110px;
  }
  .works{
    padding: 10% 0 15%;
  }
  .work-item{
    margin-bottom: 15%;
  }
  .work-text{
    padding: 6% 8%;
  }
  .work-title{
    font-size: 1.8rem;
  }
  .work-desc{
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .work-tags{
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .work-tags li{
    font-size: 1rem;
  }
  .contact{
    margin: 15% auto;
  }
  .contact-card > .section-title {
    font-size: 2rem;
  }
  .contact-address, .contact-text {
    font-size: 1rem;
  }
  .contact-inner{
    padding: 30px 20px;
  }
  .footer-nav ul{
    gap: 16px;
  }
}