/*検証用*/
/* 全体のスタイル */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: rgba(92, 89, 86, 0.5);
}

/* ボタンのスタイル */
.raised-button {
  text-decoration: none;
  color: #ffffff;
  background-color: #9b0008;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 10px;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.raised-button:hover {
  transform: translateY(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.raised-button:active {
  transform: translateY(6px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* コンテナ調整 */
.button-container {
  text-align: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .raised-button {
    font-size: 20px;
    letter-spacing: 8px;
    padding: 10px 30px;
  }
}

@media (max-width: 575px) {
  .raised-button {
    padding: 10px 20px;
    letter-spacing: 3px;
  }
}
