body {
  background-color: #ffe6f0;
  font-family: Arial, sans-serif;
}

.container {
  width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 10px;
}

h1 {
  color: #e91e63;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 5px;
}

.result {
  font-size: 20px;
  margin: 20px 0;
}

/* 全画面オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffb6c1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* 非表示 */
.hidden {
  display: none;
}

/* アニメーション文字 */
.animation-text {
  font-size: 32px;
  color: white;
  animation: zoom 1s infinite;
}

/* アニメーション定義 */
@keyframes zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
