/* ヴォイスラボ — VoiceLab | poor-hill-588.css */

:root {
  --bg: #fcfaf2;
  --primary: #0067e5;
  --secondary: #000f2e;
  --accent: #f6ecc8;
  --white: #fff;
  --text: #000;
  --text-muted: #555;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,15,46,0.10);
  --shadow-lg: 0 8px 40px rgba(0,15,46,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
p  { font-size: 1rem; line-height: 1.7; }
a  { color: inherit; text-decoration: none; }

.text-primary { color: var(--primary); }
.text-white   { color: var(--white); }
.highlight    { background: var(--accent); border-radius: 4px; padding: 0 4px; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(252,250,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,15,46,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--secondary);
  text-decoration: none;
}
.logo svg { flex-shrink: 0; }
.logo-text { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-sub  { font-size: 0.65rem; font-weight: 400; color: var(--primary); letter-spacing: 0.05em; display: block; line-height: 1; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { font-size: 0.95rem; font-weight: 500; color: var(--secondary); transition: color var(--transition); }
.site-nav a:hover { color: var(--primary); }
.site-nav a.active { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--secondary) !important; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }

/* === HERO === */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--accent);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,103,229,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,103,229,0.1);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { color: var(--secondary); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p  { font-size: 1.1rem; color: #333; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* === MARQUEE === */
.marquee-section {
  background: var(--secondary);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track { display: flex; gap: 48px; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
.marquee-track span {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.marquee-track span::after { content: '✦'; color: var(--primary); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,103,229,0.3);
}
.btn-primary:hover { background: #0055c4; box-shadow: 0 6px 24px rgba(0,103,229,0.4); }

.btn-secondary {
  background: var(--secondary);
  color: var(--accent);
}
.btn-secondary:hover { background: #001a4d; }

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--secondary);
}
.btn-white:hover { background: var(--accent); }

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* === SECTION TRANSITIONS === */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-reveal.visible { opacity: 1; transform: none; }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--secondary); margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: rgba(0,103,229,0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* === ABOUT / INTRO SECTION === */
.intro-section { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-content h2 { color: var(--secondary); margin-bottom: 20px; }
.intro-content p  { color: #444; margin-bottom: 16px; }
.intro-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
}
.perk-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* === COURSES SECTION === */
.courses-section { background: var(--bg); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card-img { aspect-ratio: 16/9; overflow: hidden; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.course-card:hover .course-card-img img { transform: scale(1.04); }
.course-card-body { padding: 24px; }
.course-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.course-card-body h3 { color: var(--secondary); margin-bottom: 10px; }
.course-card-body p  { font-size: 0.9rem; color: var(--text-muted); }

/* === PRICING SECTION === */
.pricing-section { background: var(--secondary); }
.pricing-section .section-header h2 { color: var(--white); }
.pricing-section .section-header p  { color: rgba(246,236,200,0.75); }
.pricing-section .section-label { background: rgba(246,236,200,0.15); color: var(--accent); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(246,236,200,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), background var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.price-card.popular {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-plan { color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.price-name { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency { color: var(--accent); font-size: 1.1rem; font-weight: 600; }
.price-value { color: var(--white); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.price-period { color: rgba(246,236,200,0.6); font-size: 0.85rem; }
.price-desc { color: rgba(246,236,200,0.7); font-size: 0.88rem; margin-bottom: 28px; min-height: 40px; }
.price-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.price-features li i { color: var(--accent); font-size: 0.8rem; }
.price-features li.off { opacity: 0.4; }
.price-features li.off i { color: #888; }

/* === WHY US === */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-card h3 { color: var(--secondary); margin-bottom: 8px; }
.why-card p  { font-size: 0.93rem; color: var(--text-muted); }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--accent); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.95rem; color: #333; margin-bottom: 20px; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: 0.9rem; color: var(--secondary); }
.author-title { font-size: 0.8rem; color: var(--text-muted); }

/* === CTA STRIP === */
.cta-section {
  background: var(--primary);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; }

/* === CONTACT SECTION === */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--secondary); margin-bottom: 20px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item i {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-text span  { font-size: 0.95rem; color: var(--secondary); }

/* === FORM === */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,15,46,0.15);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,103,229,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* === FOOTER === */
.site-footer {
  background: var(--secondary);
  color: rgba(246,236,200,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--accent); }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; color: rgba(246,236,200,0.65); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(246,236,200,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  transition: background var(--transition);
}
.social-icon:hover { background: var(--primary); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(246,236,200,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-divider { border: none; border-top: 1px solid rgba(246,236,200,0.1); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(246,236,200,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(246,236,200,0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* === COOKIES === */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--secondary);
  border-top: 3px solid var(--primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.83, 0, 0.17, 1);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.9rem; color: rgba(246,236,200,0.85); max-width: 700px; }
.cookie-bar a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: #0055c4; }
.cookie-decline {
  background: transparent;
  color: rgba(246,236,200,0.6);
  border: 1px solid rgba(246,236,200,0.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.cookie-decline:hover { border-color: var(--accent); color: var(--accent); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 140px 0 72px;
  background: var(--accent);
}
.page-hero h1 { color: var(--secondary); margin-bottom: 16px; }
.page-hero p  { color: #444; font-size: 1.1rem; max-width: 600px; }

/* === ABOUT PAGE === */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.value-card h3 { color: var(--secondary); margin-bottom: 8px; }
.value-card p  { font-size: 0.9rem; color: var(--text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-card-img { aspect-ratio: 1/1; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 20px; }
.team-card-body h3 { color: var(--secondary); font-size: 1rem; margin-bottom: 4px; }
.team-card-body span { font-size: 0.85rem; color: var(--primary); }

/* === PROSE (privacy/terms pages) === */
.prose-section { background: var(--white); }
.prose-wrap { max-width: 800px; margin: 0 auto; }
.prose-wrap h2 { font-size: 1.5rem; color: var(--secondary); margin: 36px 0 12px; }
.prose-wrap h3 { font-size: 1.1rem; color: var(--secondary); margin: 24px 0 8px; }
.prose-wrap p  { color: #444; margin-bottom: 16px; }
.prose-wrap ul { margin: 12px 0 16px 20px; }
.prose-wrap ul li { color: #444; margin-bottom: 6px; font-size: 0.95rem; }
.prose-wrap a  { color: var(--primary); text-decoration: underline; }

/* === SUCCESS PAGE === */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.success-icon {
  width: 80px; height: 80px;
  background: rgba(0,103,229,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin: 0 auto 24px;
}
.success-section h1 { color: var(--secondary); margin-bottom: 16px; }
.success-section p  { color: var(--text-muted); max-width: 440px; margin: 0 auto 28px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { max-width: 480px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); padding: 20px 24px; border-bottom: 1px solid rgba(0,15,46,0.1); gap: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .burger { display: flex; }
  .courses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-section .pricing-grid { padding: 0 16px; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
}
