/* 全体の基本設定 */
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
  height: 100vh;

}

/* スタートボタン・送信ボタン */
/* スタートボタン・送信ボタン */
.button,
button[type="submit"] {
  background-color: #67b0e9fa;
  color: white;
  padding: 12px 15px;
  font-size: 1.2em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;

  /*  追加・修正: <a>タグがtransformやpaddingを正しく適用できるようにする */
  display: inline-block; 
}

.button:hover,
button[type="submit"]:hover {
  background-color: rgb(46, 109, 138);
  transform: scale(1.05);
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

.wrapper{
    min-height: 100vh;
    position: relative;/*←相対位置*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

p {
  font-family: "フォント名", 游ゴシック, sans-serif;
}

/* 滑らかに表示する設定 */
.fade-in-out {
  opacity: 0; 
  animation: fadeInOut 4s ease-in-out forwards;
}

/* アニメーションの定義 */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* 滑らかに表示する設定 */
.fade-in {
  opacity: 0; 
  animation: fadeIn 3s ease-in-out forwards;
}

/* アニメーションの定義 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.suponser {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 1.2em;
}

.danger {
  color: red;
  font-weight: bold;
  font-size: 1.2em;
}




