/* 画面の中央に配置する親 */
.maintenance-wrapper {
  display: flex;
  align-items: center;        /* 縦方向の中央寄せ */
  justify-content: center;    /* 横方向の中央寄せ */
  height: 100vh;              /* 画面全体の高さ */
  background-color: #f8f9fa;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  text-align: center;
}

/* 中央に表示されるボックス */
.maintenance-content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
}

/* 見出し */
.maintenance-content h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* 説明文 */
.maintenance-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* 「ホームへ」リンクをボタン風に */
.home-link {
  display: inline-block;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.home-link:hover {
  background-color: #0056b3;
}