/* ===== ベース ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  color-scheme: light only;
}

:root {
  /* プリンセス配色：白＋ピンク＋水色＋金 */
  --bg-1: #ffffff;
  --bg-2: #fff0f5;
  --bg-accent: #e0f2fe;
  --card-bg: #ffffff;
  --pink: #ff7eb6;
  --pink-deep: #e8489a;
  --pink-soft: #ffe4ef;
  --blue: #7dd3fc;
  --blue-soft: #e0f2fe;
  --gold: #f59e0b;
  --gold-light: #fde68a;
  --text-main: #2d1856;
  --text-sub: #6b46c1;
  --shadow-sm: 0 4px 12px rgba(232, 72, 154, 0.12);
  --shadow-md: 0 8px 24px rgba(232, 72, 154, 0.18);
  --shadow-glow: 0 0 24px rgba(255, 126, 182, 0.4);
}

html, body {
  font-family: 'M PLUS Rounded 1c', 'Hiragino Maru Gothic ProN', sans-serif;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #2d1856 !important;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  padding: 16px;
  padding-bottom: 60px;
  position: relative;
}

/* ===== きらきら背景 ===== */
.stars, .sparkles {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.stars::before, .stars::after {
  content: '✨ 💖 ⭐ ✨ 💖 ⭐ ✨ 💖 ⭐ ✨ 💖 ⭐ ✨ 💖 ⭐';
  position: absolute;
  font-size: 18px;
  opacity: 0.6;
  letter-spacing: 50px;
  line-height: 90px;
  width: 200%;
  word-spacing: 30px;
  animation: drift 80s linear infinite;
}
.stars::after {
  top: 50%;
  font-size: 22px;
  opacity: 0.4;
  animation-duration: 110s;
  animation-direction: reverse;
}

.sparkles::before {
  content: '🌟 💫 🌸 ⭐ 🌟 💫 🌸 ⭐';
  position: absolute;
  top: 25%;
  left: -10%;
  font-size: 24px;
  letter-spacing: 100px;
  opacity: 0.5;
  animation: drift 60s linear infinite;
}

@keyframes drift {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}

/* ===== ヘッダー ===== */
.hero {
  text-align: center;
  padding: 24px 16px 20px;
  position: relative;
  z-index: 1;
}

.crown {
  font-size: 64px;
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.title {
  font-family: 'Yusei Magic', 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  line-height: 1.4;
  color: var(--pink-deep);
  text-shadow:
    2px 2px 0 #fff,
    3px 3px 6px rgba(232, 72, 154, 0.25);
  margin: 8px 0;
}

.kira {
  background: linear-gradient(90deg, #ff7eb6, #f59e0b, #7dd3fc, #ff7eb6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.date {
  font-size: 18px;
  color: var(--text-main);
  margin-top: 8px;
  font-weight: 700;
  background: white;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  border: 2px solid var(--pink-soft);
  box-shadow: var(--shadow-sm);
}

.jewel-counter {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 3px solid var(--gold);
  border-radius: 30px;
  padding: 8px 22px;
  box-shadow: var(--shadow-md);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-main);
  margin-left: 10px;
}

.jewel-icon { font-size: 24px; }
.jewel-label { font-size: 14px; color: var(--gold); }

.play-all-btn {
  display: block;
  margin: 18px auto 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 50%, var(--gold) 100%);
  color: white;
  border: 4px solid white;
  font-family: inherit;
  font-size: 22px;
  font-weight: 900;
  padding: 16px 36px;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 72, 154, 0.5), 0 0 0 3px rgba(245, 158, 11, 0.3);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
}

.play-all-btn:active {
  transform: scale(0.95);
}

.play-all-btn.playing {
  background: linear-gradient(135deg, var(--gold), var(--pink));
  animation: pulse 1.2s ease-in-out infinite;
}

.play-icon { font-size: 24px; }
.play-label { letter-spacing: 2px; }

/* ===== キャラクター（ナギナ姫） ===== */
.character {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 8px auto 16px;
  max-width: 720px;
}

.character-img {
  display: block;
  margin: 0 auto;
  width: 220px;
  max-width: 65vw;
  filter: drop-shadow(0 8px 16px rgba(232, 72, 154, 0.3));
  animation: float 4s ease-in-out infinite;
  border-radius: 16px;
}

.character-img.placeholder {
  width: 180px;
  height: 220px;
  background: linear-gradient(135deg, #ffe4ef, #e0f2fe);
  border: 3px dashed var(--pink);
  border-radius: 16px;
}

.speech-bubble {
  display: inline-block;
  background: white;
  border: 3px solid var(--pink);
  border-radius: 24px;
  padding: 14px 24px;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 86%;
  line-height: 1.5;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--pink);
}
.speech-bubble::after {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: white;
}

/* ===== カード共通 ===== */
main {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.card {
  background: white;
  border: 3px solid var(--pink-soft);
  border-radius: 24px;
  padding: 22px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--blue));
}

.card.collected {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3), 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(232, 72, 154, 0.3));
}

.card-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--pink-deep);
}

/* ===== お天気カード ===== */
.weather-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef9e7 100%);
}

.weather-date-box {
  background: white;
  border: 3px solid var(--gold);
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.weather-date-year {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 700;
  margin-bottom: 2px;
}

.weather-date-main {
  font-size: 28px;
  font-weight: 900;
  color: var(--pink-deep);
  line-height: 1.2;
  margin-bottom: 4px;
}

.weather-date-day {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
}

.weather-body {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0 16px;
}

.weather-icon {
  font-size: 80px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.weather-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--pink-deep);
  margin-bottom: 6px;
}

.weather-message {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 8px;
}

.weather-outfit {
  font-size: 16px;
  color: var(--text-main);
  font-weight: 700;
  background: white;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 2px solid var(--gold);
}

/* ===== ニュース・工作 ===== */
.news-card {
  background: linear-gradient(135deg, #ffe4ef 0%, #fff0f5 100%);
}

.craft-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.news-image-wrap, .craft-image-wrap {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-bottom: 16px;
  border: 2px solid var(--pink-soft);
  box-shadow: inset 0 2px 8px rgba(232, 72, 154, 0.08);
}

.craft-card .craft-image-wrap {
  border-color: var(--blue-soft);
  box-shadow: inset 0 2px 8px rgba(125, 211, 252, 0.15);
}

.news-image, .craft-image {
  font-size: 80px;
  filter: drop-shadow(0 4px 12px rgba(232, 72, 154, 0.3));
}

.news-title, .craft-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--pink-deep);
  margin-bottom: 12px;
  line-height: 1.4;
}

.craft-title {
  color: #0369a1;
}

.news-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
}

/* ===== 大きい文字（共通） ===== */
.big-letter-wrap {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 16px;
  border: 3px solid var(--pink-soft);
  box-shadow: inset 0 2px 8px rgba(232, 72, 154, 0.08);
}

.big-letter {
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  color: var(--pink-deep);
  text-shadow:
    3px 3px 0 var(--gold-light),
    6px 6px 0 var(--pink-soft);
  margin-bottom: 12px;
  letter-spacing: 4px;
}

.big-hiragana {
  font-family: 'Yusei Magic', 'M PLUS Rounded 1c', sans-serif;
  color: var(--primary-deep);
  text-shadow:
    3px 3px 0 var(--blue-soft),
    6px 6px 0 var(--pink-soft);
}

.big-number {
  color: var(--gold);
  text-shadow:
    3px 3px 0 #fef3c7,
    6px 6px 0 var(--pink-soft);
}

.letter-example {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.letter-emoji { font-size: 40px; }
.letter-word { letter-spacing: 1px; }

.kazu-reading {
  font-size: 24px;
  font-weight: 900;
  color: var(--pink-deep);
  letter-spacing: 4px;
  margin-top: 8px;
}

/* ===== きょうのキーボード ===== */
.keyboard-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.keyboard-visual {
  background: white;
  border-radius: 16px;
  padding: 14px 10px;
  margin-bottom: 16px;
  border: 2px solid var(--blue-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kbd-row {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.kbd-key {
  flex: 1;
  min-height: 36px;
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
  border: 2px solid #d1d5db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #374151;
  box-shadow: 0 2px 0 #d1d5db;
  transition: all 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.kbd-key.highlight {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: white;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5), 0 0 0 3px rgba(245, 158, 11, 0.3);
  animation: kbdPulse 1.5s ease-in-out infinite;
  transform: scale(1.15);
  z-index: 2;
}

@keyframes kbdPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5), 0 0 0 3px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 6px 24px rgba(236, 72, 153, 0.7), 0 0 0 6px rgba(236, 72, 153, 0.4); }
}

.kbd-key.pressed {
  background: var(--pink);
  color: white;
  transform: scale(0.95);
  animation: none;
}

.finger-hint {
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 16px;
  border: 2px dashed var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.finger-emoji { font-size: 44px; }
.finger-text {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.5;
}

/* ===== きょうのもじ（ひらがな） ===== */
.moji-card {
  background: linear-gradient(135deg, #ede9fe 0%, #f5e9ff 100%);
}

.moji-bg .big-letter {
  color: var(--primary-deep);
}

.moji-examples {
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
  border: 2px solid #e9d5ff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.moji-example-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-main);
}

.moji-example-emoji { font-size: 36px; }

/* ===== きょうのかず ===== */
.kazu-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
}

.kazu-bg {
  border-color: var(--gold-light);
}

.kazu-items {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
  border: 2px solid var(--gold-light);
  font-size: 44px;
  line-height: 1.4;
  word-spacing: 4px;
  letter-spacing: 2px;
}

/* ===== なぞなぞカード ===== */
.riddle-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
}

.riddle-card .riddle-image-wrap {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  margin-bottom: 16px;
  border: 2px solid var(--gold-light);
  box-shadow: inset 0 2px 8px rgba(245, 158, 11, 0.15);
}

.riddle-image {
  font-size: 80px;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
  animation: pulse 2.5s ease-in-out infinite;
}

.riddle-question {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
  background: white;
  padding: 16px;
  border-radius: 16px;
  border: 2px dashed var(--gold);
}

.answer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 100%);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.answer-btn:active {
  transform: scale(0.96);
}

.answer-btn.opened {
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
  pointer-events: none;
  opacity: 0.7;
}

.riddle-answer {
  background: white;
  border: 3px solid var(--gold);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  text-align: center;
  animation: bounceIn 0.5s ease;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.3);
}

.riddle-answer.hidden {
  display: none;
}

.answer-label {
  font-size: 14px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.answer-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.answer-hint {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 700;
  opacity: 0.7;
}

/* ===== 工作カード ===== */
.materials {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  border: 2px solid var(--blue-soft);
}

.materials-label {
  font-size: 16px;
  color: #0369a1;
  font-weight: 700;
  margin-bottom: 8px;
}

.materials ul {
  list-style: none;
  padding-left: 8px;
}

.materials li {
  font-size: 17px;
  padding: 6px 0;
  position: relative;
  padding-left: 28px;
  color: var(--text-main);
}

.materials li::before {
  content: '✨';
  position: absolute;
  left: 0;
}

.video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 30px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
  transition: transform 0.2s;
}

.video-btn:active {
  transform: scale(0.96);
}

/* ===== 読み上げボタン ===== */
.read-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 72, 154, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.read-btn:active {
  transform: scale(0.96);
}

.read-btn.speaking {
  background: linear-gradient(135deg, var(--gold), var(--pink));
  animation: pulse 1s ease-in-out infinite;
}

/* ===== ごほうびエリア ===== */
.reward {
  background: linear-gradient(135deg, #fef3c7 0%, #ffe4ef 50%, #e0f2fe 100%);
  border: 3px dashed var(--gold);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.reward h2 {
  font-size: 22px;
  color: var(--pink-deep);
  margin-bottom: 12px;
  font-weight: 900;
}

.reward-message {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-main);
  font-weight: 700;
}

.jewel-track {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.jewel-slot {
  font-size: 40px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed #fbcfe8;
  border-radius: 50%;
  background: white;
  filter: grayscale(0.6) brightness(0.9);
  transition: all 0.4s;
}

.jewel-slot.collected {
  border-color: var(--gold);
  border-style: solid;
  filter: none;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
  animation: pop 0.6s ease;
}

@keyframes pop {
  0% { transform: scale(0.5); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.reset-btn {
  background: white;
  color: var(--text-main);
  border: 2px solid var(--pink-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
}

/* ===== フッター ===== */
footer {
  text-align: center;
  padding: 24px 0;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

.version {
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.7;
}

/* ===== モーダル ===== */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(232, 72, 154, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: white;
  border: 4px solid var(--gold);
  border-radius: 32px;
  padding: 36px 28px;
  text-align: center;
  max-width: 320px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 60px rgba(255, 126, 182, 0.4);
  animation: bounceIn 0.6s ease;
  color: var(--text-main);
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

.big-crown {
  font-size: 80px;
  filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.5));
  animation: float 2s ease-in-out infinite;
}

.modal-content h2 {
  font-size: 36px;
  color: var(--pink-deep);
  margin: 12px 0;
  font-weight: 900;
}

.modal-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 700;
}

.big-jewels {
  font-size: 48px;
  margin: 20px 0;
  animation: shimmer 2s infinite;
}

#modal-close {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: white;
  border: none;
  font-family: inherit;
  font-size: 22px;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 72, 154, 0.4);
}

/* ===== iPad 横向き対応 ===== */
@media (min-width: 900px) and (orientation: landscape) {
  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
  }
  .reward {
    grid-column: 1 / -1;
  }
}

/* ===== 大きい画面 ===== */
@media (min-width: 600px) {
  .title { font-size: 40px; }
  .crown { font-size: 80px; }
  .character-img { width: 260px; }
}
