/*↓StyleCSSにスタイルを定義　文字コードUTF-8------------*/
@charset "utf-8";
/*TOPのCSSを引き継ぐ---------------------------------*/
.info {
  padding: 120px 0 80px;
}

/* 準備中ページ全体の背景を画面いっぱいに */
.coming-soon-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffe0;  メインと同じ背景色 
}

/* 準備中ボックスの追加調整 */
.soon-container {
  padding: 10px 10px 30px;    
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  animation: fadeIn 0.8s ease-out;
  text-align: center;  
  background-color: #fff;  メインと同じ背景色 
}

/* アイコンのスタイル */
.soon-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

/* 戻るボタンのデザイン */
.back-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #B4B490;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.2s, background-color 0.2s;
  margin-top: 20px;
}

.back-button:hover {
  background-color: #969675;
  transform: translateY(-2px);
}

/* ふわっと出るアニメーション */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

