/* ============================================
   Manifest Sales Site - Common Styles
   ============================================ */

/* --- Material Symbols --- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.icon-sm svg { width: 16px; height: 16px; }
.icon-md svg { width: 20px; height: 20px; }
.icon-lg svg { width: 24px; height: 24px; }
.icon-xl svg { width: 32px; height: 32px; }
.icon-2xl svg { width: 48px; height: 48px; }

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1e3a5f;
  --primary-dark: #152d4a;
  --primary-light: #e8f0fa;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --success: #10b981;
  --success-light: #ecfdf5;
  --info: #3b82f6;
  --info-light: #eff6ff;
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.2s ease;
  --max-width: 1200px;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:not(.btn):hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  flex: 1;
  padding: 20px 0 40px;
}

/* --- Header --- */
/* --- Site Header --- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo img {
  width: 240px;
  height: auto;
}

.header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.header-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a6b60;
  border: 1.5px solid #1a6b60;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.header-site-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a6b60;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* --- User Menu Button --- */
.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e6f5f0;
  color: #1a6b60;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}

.user-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.user-type {
  font-size: 0.65rem;
  color: #1a6b60;
  font-weight: 500;
}

/* --- Login Button --- */
.header-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted) !important;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.header-login-btn:hover {
  background: #e6f5f0;
  color: #1a6b60 !important;
  border-color: #1a6b60;
}

/* --- Cart Button --- */
.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  background: #1a6b60;
  transition: all var(--transition);
}

.header-cart-btn:hover {
  background: #155a51;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(26,107,96,0.3);
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-label {
  font-size: 0.85rem;
}

.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}

.user-menu-btn:hover {
  background: #e6f5f0;
  color: #1a6b60;
}

.user-menu.open .user-menu-btn {
  background: #e6f5f0;
  color: #1a6b60;
}

.user-menu-arrow {
  transition: transform .2s;
}

.user-menu.open .user-menu-arrow {
  transform: rotate(180deg);
}

.user-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 180px;
  z-index: 100;
  overflow: hidden;
}

.user-menu.open .user-menu-dropdown {
  display: block;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text) !important;
  transition: background .15s;
  text-decoration: none;
  border-radius: 0 !important;
}

.user-menu-item:hover {
  background: var(--bg) !important;
  color: var(--primary) !important;
}

.user-menu-item + .user-menu-item {
  border-top: 1px solid var(--border);
}

.cart-badge {
  background: #e74c3c;
  color: white;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -6px;
  right: -8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Nav */
.site-nav {
  border-top: 1px solid var(--border);
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

.site-nav li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: all var(--transition);
}

.site-nav li a .icon svg {
  opacity: 0.5;
}

.site-nav li a:hover .icon svg,
.site-nav li a.active .icon svg {
  opacity: 1;
}

.site-nav li a:hover,
.site-nav li a.active {
  color: #1a6b60;
  background: #e6f5f0;
}

.site-nav li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1a6b60;
  border-radius: 2px 2px 0 0;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 16px 0;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  font-size: 0.7rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  line-height: 1.4;
}

.btn-primary {
  background: #1a6b60;
  color: white;
}

.btn-primary:hover {
  background: #155a51;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #1a6b60;
  border: 2px solid #1a6b60;
}

.btn-outline:hover {
  background: #1a6b60;
  color: white;
}

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

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--white);
}

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

.btn-danger:hover {
  background: #dc2626;
}

.btn-green {
  background: #15803d;
  color: white;
}

.btn-green:hover {
  background: #166534;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 24px;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-label .required {
  color: var(--danger);
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 107, 78, 0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Quantity Control --- */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-control button:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.qty-control input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 0.9375rem;
  font-family: inherit;
  font-weight: 600;
}

.qty-control input:focus {
  outline: none;
}

/* --- Badge / Tag --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-member {
  background: #f3e8ff;
  color: #7c3aed;
}

.badge-general {
  background: #f1f5f9;
  color: var(--text-muted);
}

.badge-info {
  background: var(--info-light);
  color: #1d4ed8;
}

.badge-warning {
  background: var(--warning-light);
  color: #92400e;
}

.badge-success {
  background: var(--success-light);
  color: #065f46;
}

.badge-danger {
  background: var(--danger-light);
  color: var(--danger);
}

/* --- Table --- */
.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background: var(--bg);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

table:not(.price-table-mini):not(.pricing-table) tbody tr:hover {
  background: var(--primary-light);
}

/* --- Section --- */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
}

/* --- Alert --- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.alert .icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.alert-info {
  background: var(--info-light);
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.alert-warning {
  background: var(--warning-light);
  color: #92400e;
  border: 1px solid #fde68a;
}

.alert-danger {
  background: var(--danger-light);
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-success {
  background: var(--success-light);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* --- Price --- */
.price {
  font-weight: 700;
  color: var(--text);
}

.price-large {
  font-size: 1.75rem;
}

.price .yen {
  font-size: 0.8em;
}

.price .tax {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.875rem;
}

/* --- Steps --- */
.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  position: relative;
}

.step + .step {
  margin-left: 40px;
}

.step + .step::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--border);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.step.active {
  color: var(--primary);
  font-weight: 600;
}

.step.active .step-number {
  background: var(--primary);
  color: white;
}

.step.done {
  color: var(--success);
}

.step.done .step-number {
  background: var(--success);
  color: white;
}

.step.done + .step::before {
  background: var(--success);
}

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: #94a3b8;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  background: var(--primary);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* --- Responsive --- */
/* ===========================================
   Responsive - Tablet (1024px)
   =========================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ===========================================
   Responsive - Mobile (768px)
   =========================================== */
@media (max-width: 768px) {
  /* === スマホ向け 全体読みやすさ調整（年配ユーザー配慮） === */
  html { font-size: 18px; }
  body { font-size: 1rem; line-height: 1.75; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.15rem; }
  p, li, td, th, label, dd, dt { font-size: 1rem; line-height: 1.7; }
  .text-sm { font-size: 0.95rem !important; }
  .text-xs { font-size: 0.85rem !important; }
  input, select, textarea, button { font-size: 1rem !important; }
  .btn { font-size: 1rem; padding: 12px 18px; }
  .btn-sm { font-size: 0.9rem; padding: 8px 14px; }
  .product-info h3 { font-size: 1.2rem; }
  .product-meta { font-size: 0.95rem; }
  .price-table-mini td { font-size: 0.95rem; padding: 6px 4px; }
  .news-item-title { font-size: 1.05rem; line-height: 1.6; }
  .news-date { font-size: 0.95rem; }
  .news-article-body { font-size: 1.05rem; line-height: 1.9; }
  .breadcrumb { font-size: 0.9rem; }

  .container { padding: 0 16px; }

  /* --- Header --- */
  .header-main {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 200px;
  }

  .logo > span {
    font-size: 0.78rem !important;
    padding: 4px 10px !important;
  }

  .header-actions {
    gap: 10px;
  }

  .header-login-btn {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .header-cart-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
    gap: 6px;
  }

  .cart-label {
    font-size: 0.95rem;
  }

  .user-menu-btn {
    font-size: 0.9rem;
    padding: 6px 12px;
    gap: 6px;
  }

  .user-avatar {
    width: 36px;
    height: 36px;
  }

  .user-name {
    font-size: 0.9rem;
  }

  .user-type {
    font-size: 0.75rem;
  }

  .user-menu-dropdown {
    min-width: 200px;
  }
  .user-menu-item {
    font-size: 1rem !important;
    padding: 12px 16px !important;
  }

  /* --- Navigation --- */
  .site-nav ul {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .site-nav ul::-webkit-scrollbar {
    display: none;
  }

  .site-nav li a {
    padding: 14px 18px;
    font-size: 1rem;
    white-space: nowrap;
    font-weight: 600;
  }

  .site-nav li a .icon {
    display: none;
  }

  /* --- Main Content --- */
  .main-content {
    padding-bottom: 32px;
  }

  .breadcrumb {
    font-size: 0.7rem;
    padding: 12px 0;
  }

  /* --- Forms --- */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* iOS zoom防止 */
  }

  .btn {
    font-size: 0.875rem;
    padding: 10px 20px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  /* --- Cards --- */
  .card-body {
    padding: 16px;
  }

  /* --- Table --- */
  thead th {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  tbody td {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  /* --- Steps --- */
  .steps {
    flex-wrap: wrap;
    gap: 12px;
  }

  .step + .step {
    margin-left: 0;
  }

  .step + .step::before {
    display: none;
  }

  .step {
    font-size: 0.75rem;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  /* --- Grid utilities --- */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 32px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    font-size: 0.8rem;
  }

  .footer-brand .logo img {
    width: 160px !important;
    height: auto !important;
  }

  .footer-heading {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }

  /* --- Alert --- */
  .alert {
    font-size: 0.8rem;
    padding: 12px 14px;
    gap: 8px;
  }

  /* --- Price --- */
  .price-large {
    font-size: 1.4rem;
  }

  /* --- Section --- */
  .section-header {
    margin-bottom: 28px;
  }
}

/* ===========================================
   Responsive - Small Mobile (480px)
   =========================================== */
@media (max-width: 480px) {
  .header-main {
    justify-content: center;
    text-align: center;
  }

  .logo {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    justify-content: center;
  }

  .logo img {
    width: 180px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qty-control button {
    width: 36px;
    height: 36px;
  }

  .qty-control input {
    width: 50px;
    height: 36px;
  }
}
