/* 全体のリセットと背景設定 */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  background-color: #f7f9fa;
  color: #333;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトルの装飾 */
h1 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #2c3e50;
}

/* カウンター全体の枠 */
.counter-wrap {
  width: 100%;
  max-width: 640px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 24px;
  box-sizing: border-box;
}

/* 上部のカウンター表示エリア */
.counter-display {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf2f7;
  font-size: 14px;
  color: #4a5568;
}

/* 数値（span）を強調する */
.counter-display span {
  font-size: 20px;
  font-weight: bold;
  color: #3182ce;
  margin-left: 4px;
}

/* テキストエリアの装飾 */
textarea {
  width: 100%;
  height: 240px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  box-sizing: border-box;
  resize: vertical;
  background-color: #fcfdfd;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* 入力中のテキストエリアの見た目 */
textarea:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
  background-color: #fff;
}