body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 1000px;
  margin: 24px auto;
  padding: 0 12px 32px;
  line-height: 1.7;
  /* ふわっとプリンっぽい背景（上：抹茶ミルク、下：プリン） */
  background: linear-gradient(180deg, #f5fbf7 0%, #fffaf0 60%, #fff 100%);
  color: #223322;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: #205c3c; /* 深めのグリーン */
}

h2 {
  font-size: 1.05rem;
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  color: #2f6b46;
}

/* 全体をカードっぽくするラッパが無いので、textareaとボタン周りをカード風に */
textarea {
  width: 100%;
  height: 220px;
  box-sizing: border-box;
  padding: 10px 12px;
  font-family: Consolas, "Ricty Diminished", "MS Gothic", monospace;
  font-size: 0.9rem;
  white-space: pre;
  border-radius: 10px;
  border: 1px solid #c9e3d1;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(24, 75, 45, 0.06);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

textarea:focus {
  border-color: #53a66e;
  box-shadow: 0 0 0 2px rgba(83, 166, 110, 0.15);
  background-color: #ffffff;
}

#output {
  height: 320px;
}

/* ボタン：抹茶＋カラメル */
button {
  padding: 8px 18px;
  margin: 10px 8px 10px 0;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #53a66e, #3d7e52);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(24, 75, 45, 0.18);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.1s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(24, 75, 45, 0.24);
  filter: brightness(1.03);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(24, 75, 45, 0.18);
  filter: brightness(0.97);
}

.small {
  font-size: 0.8rem;
  color: #607466;
}

/* 上部の絵文字入力部分 */
.control-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e3f0e7;
}

.control-row label {
  font-size: 0.85rem;
  color: #2f4736;
}

#emoji {
  width: 72px;
  text-align: center;
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 999px;
  border: 1px solid #c9e3d1;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#emoji:focus {
  border-color: #53a66e;
  box-shadow: 0 0 0 2px rgba(83, 166, 110, 0.15);
}

/* タイトル下の説明文少し読みやすく */
p.small {
  margin-top: 4px;
}

/* 見出しの下のテキストエリアを少し近づける */
h2 + textarea {
  margin-top: 4px;
}
