:root {
  --tesollo-green: #3BB54A;
  --tesollo-blue: #4B86B4;
  --tesollo-gradient: linear-gradient(90deg, #3BB54A 0%, #4B86B4 100%);
  --text-main: #1d1d1f;
  --text-muted: #86868b;
  --bg-main: #f5f5f7; /* Apple-like light gray */
  --bg-white: #ffffff;
  --bg-dark: #000000;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  font-size: 16px;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 70px; /* Offset for fixed header */
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--text-main);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: #333;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--bg-white);
}

.btn-tesollo {
  background-color: #287A31;
  color: #fff;
}

.btn-tesollo:hover {
  opacity: 0.9;
}

/* Header & Navigation (Base PC: 993px+) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid #eaeaea;
}

.site-header nav {
  display: flex;
  align-items: center;
}

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

.nav-links li a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--tesollo-blue);
}

/* 1. First View (Base PC: 993px+) */
.fv-section {
  position: relative;
  background-color: var(--bg-white);
  overflow: hidden;
}

.fv-bg {
  width: 100%;
}

.fv-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-overlay {
  position: absolute;
  top: 0;
  left: 3%;
  right: 0;
  bottom: 0;
}

.fv-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: 50%;
}

.fv-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  color: var(--text-main);
  line-height: 1.2;
}

.fv-subtitle {
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.sub-small {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.sub-brand {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  display: inline-block;
  margin: 0.2rem 0;
  letter-spacing: -0.02em;
}

.text-tesollo {
  background: var(--tesollo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fv-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* 2. できること (Base PC: 993px+) */
.capabilities {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cap-card {
  text-align: center;
}

.cap-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: var(--bg-main);
  aspect-ratio: 4/5;
}

.cap-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cap-card:hover .cap-img-wrapper img {
  transform: scale(1.05);
}

.cap-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cap-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* 3. 特徴 (Base PC: 993px+) */
.features {
  padding: 8rem 0;
  background-color: var(--bg-main);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--text-main);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: white;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* 4. 製品ラインナップ (Base PC: 993px+) */
.lineup {
  padding: 8rem 0;
  background-color: var(--bg-white);
}

.product-showcase {
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid #e5e5ea;
}

.product-showcase:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-top {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  margin-bottom: 4rem;
}

.product-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.product-images img {
  max-width: 100%;
  max-height: 450px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-info h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -1px;
}

.product-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-main);
  line-height: 1.4;
}

.product-info p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Spec Accordion */
.spec-accordion {
  margin-bottom: 2.5rem;
  border-top: 1px solid #e5e5ea;
  border-bottom: 1px solid #e5e5ea;
}

.spec-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: color 0.3s ease;
}

.spec-toggle:hover {
  color: var(--tesollo-blue);
}

.spec-toggle .toggle-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.spec-toggle.active .toggle-icon {
  transform: rotate(45deg);
}

.spec-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.spec-content.active {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.spec-table th, .spec-table td {
  padding: 0.8rem 0;
  border-bottom: 1px dashed #e5e5ea;
  text-align: left;
}

.spec-table th {
  font-weight: 600;
  color: var(--text-muted);
  width: 35%;
}

.spec-table td {
  font-weight: 600;
  color: var(--text-main);
}

.product-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Video Carousel inside Product */
.video-carousel {
  margin-top: 2.5rem;
}

.carousel-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: #ccc; 
  border-radius: 10px;
}

.video-thumb {
  position: relative;
  width: 160px;
  min-width: 160px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

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

.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  padding-left: 2px;
}

/* Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 2001;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2002;
  line-height: 1;
  opacity: 0.7;
}

.video-modal-close:hover {
  opacity: 1;
}

.video-modal-body {
  width: 100%;
  aspect-ratio: 16/9;
}

.video-modal-body iframe {
  width: 100%;
  height: 100%;
}

/* 5. 使用シーン (Base PC: 993px+) */
.scenes {
  padding: 8rem 0;
  background-color: var(--bg-main);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* 6. DEMO MOVIE (Video Gallery Auto Slider Section: Base PC: > 1024px) */
.video-gallery-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
}

.gallery-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--tesollo-gradient, linear-gradient(90deg, #3BB54A 0%, #4B86B4 100%));
  border-radius: 2px;
}

.slider-wrapper {
  position: relative;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.slider-container {
  overflow: hidden;
  border-radius: 12px;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide-item {
  flex: 0 0 calc((100% - 32px) / 3); /* PC: 3 slides visible */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.slide-thumb-box {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: #000;
  overflow: hidden;
}

.slide-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.slide-item:hover .slide-thumb-box img {
  transform: scale(1.05);
  opacity: 0.9;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.slide-item:hover .play-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.play-circle {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tesollo-green, #3BB54A);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.play-circle svg {
  width: 42px;
  height: 42px;
  margin-left: 5px;
}

.slide-item:hover .play-circle {
  transform: scale(1.1);
  background: var(--tesollo-green, #3BB54A);
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.slider-arrow:hover {
  background: var(--tesollo-green, #3BB54A);
  color: #fff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--tesollo-green, #3BB54A);
  width: 24px;
  border-radius: 5px;
}

/* 7. 最終CTA (Base PC: 993px+) */
.cta {
  position: relative;
  padding: 12rem 0;
  background-color: var(--text-main);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

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

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85), 0 2px 6px rgba(0, 0, 0, 0.9);
}

.cta-desc {
  font-size: 1.5rem;
  color: #a1a1a6;
  margin-bottom: 4rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-white {
  background-color: white;
  color: var(--text-main);
}

.btn-white:hover {
  background-color: #f0f0f0;
}

/* Footer (Base PC: 993px+) */
.site-footer {
  background-color: var(--bg-white);
  padding: 4rem 0 2rem;
  border-top: 1px solid #eaeaea;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 1rem 0;
}

.footer-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--tesollo-blue);
}

.footer-copy {
  color: #86868b;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ==========================================================================
   Responsive Styles & Media Queries (ORDERED: 1024px -> 992px -> 900px -> 768px -> 480px)
   ========================================================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .slide-item {
    flex: 0 0 calc((100% - 16px) / 2); /* DEMO MOVIE: 2 slides visible */
  }
}

/* Large Tablet / Small Desktop (992px and below) */
@media (max-width: 992px) {
  .product-top {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .product-images {
    margin: 0 auto;
    width: 100%;
  }
  .product-images img {
    max-width: 100%;
    max-height: 380px;
    height: auto;
    object-fit: contain;
  }
  .product-info {
    text-align: left; /* Left align product descriptions */
    width: 100%;
  }
  .product-info h2 {
    font-size: 2.5rem;
  }
  .product-info h3 {
    font-size: 1.25rem;
  }
  .product-actions {
    justify-content: center;
  }
  .product-showcase {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
  .spec-table th, .spec-table td {
    word-break: break-word;
  }
}

/* Tablet (900px and below) */
@media (max-width: 900px) {
  .cap-grid, .feature-grid, .lineup-grid, .scene-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    gap: 2rem;
  }
  .cta-title { font-size: 2.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Mobile & Small Tablet (768px and below) */
@media (max-width: 768px) {
  /* Header */
  .site-header {
    height: 60px;
    padding: 0 4%;
  }
  body {
    padding-top: 60px;
  }
  .logo img {
    height: 32px !important;
    width: auto;
  }
  .nav-links {
    display: none !important; /* Hide navigation links on mobile */
  }
  .header-cta {
    display: block;
  }
  .header-cta .btn-tesollo {
    padding: 0.45rem 1rem !important;
    font-size: 0.82rem !important;
  }

  /* First View (FV) */
  .fv-section {
    display: flex;
    flex-direction: column;
  }
  .fv-bg {
    width: 100%;
  }
  .fv-bg img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
  }
  .fv-overlay {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 2rem 5%;
    background-color: var(--bg-white);
  }
  .fv-content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .fv-title {
    font-size: clamp(2rem, 6.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 0.8rem;
  }
  .fv-subtitle {
    text-align: center;
    margin-bottom: 1.8rem;
  }
  .sub-brand {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .fv-buttons {
    justify-content: center;
    width: 100%;
  }
  .fv-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Features */
  .features {
    padding: 4rem 0;
  }
  .feature-item {
    padding: 0 10px;
    gap: 1.2rem;
  }
  .feature-text br {
    display: none; /* Prevent unnatural breaks on mobile */
  }

  /* Product Showcase */
  .lineup {
    padding: 4rem 0;
  }
  .product-info h2 {
    font-size: 2.2rem;
  }
  .product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .product-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .product-actions {
    justify-content: center;
  }
  .product-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Spec Table */
  .spec-table {
    font-size: 0.88rem;
    width: 100%;
  }
  .spec-table th {
    width: 38%;
    padding: 0.6rem 0.3rem 0.6rem 0;
  }
  .spec-table td {
    width: 62%;
    padding: 0.6rem 0;
    word-break: break-word;
  }

  /* Product Video Carousel */
  .video-thumb {
    width: 140px;
    min-width: 140px;
  }

  /* DEMO MOVIE Slider */
  .slider-wrapper {
    width: 100%;
    padding: 0 10px;
  }
  .slider-arrow {
    display: none !important; /* Hide arrows on mobile */
  }
  .play-circle {
    width: 64px;
    height: 64px;
  }
  .play-circle svg {
    width: 30px;
    height: 30px;
  }

  /* CTA */
  .cta {
    padding: 5rem 1rem;
  }
  .cta-title {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
    margin-bottom: 1.2rem;
  }
  .cta-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Footer */
  .site-footer {
    padding: 3rem 0 2rem;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .footer-copy {
    font-size: 0.8rem;
    word-break: break-word;
    padding: 0 10px;
  }
}

/* Small Mobile (600px and below) */
@media (max-width: 600px) {
  .slide-item {
    flex: 0 0 100%; /* DEMO MOVIE: 1 slide visible on phone screen */
  }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
  .fv-title {
    font-size: 1.9rem;
  }
  .sub-brand {
    font-size: 1.4rem;
  }
  .product-info h2 {
    font-size: 1.9rem;
  }
  .product-info h3 {
    font-size: 1.05rem;
  }
  .spec-table {
    font-size: 0.82rem;
  }
  .spec-table th {
    width: 40%;
  }
}
