/* 全体のスタイル */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('images/image.png') no-repeat center center fixed; /* 背景画像 */
    background-size: cover;
    color: #fff;
    text-align: center;
}

/* ヘッダー */
header {
    background-color: #007BFF; /* ヘッダーの背景色を青色に設定 */
    padding: 0.5px;
    color: #fff; /* ヘッダーの文字色を白に設定 */
}

h1 {
    margin: 0;
}

/* 各セクション */
#app-section,
#news-section,
#trial-section {
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* 半透明の白色 */
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    color: #000; /* セクション内の文字色を黒に設定 */
}

#app-placeholder button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#app-placeholder button:hover {
    background-color: #0056b3;
}

/* 体験案内セクション */
#trial-section {
    margin-top: 30px;
}

/* フッター */
footer {
    background-color: #000; /* フッターの背景色を黒に設定 */
    color: #fff; /* フッターの文字色を白に設定 */
    padding: 10px 0;
    margin-top: 50px;
    text-align: center;
}

/* お知らせセクション */
.notice-box {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    color: #222;
  }
  
  .notice-box h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    color: #007bff;
  }
  
  .notice-box ul {
    list-style: none;
    padding: 0;
  }
  
  .notice-box li {
    background-color: #f0f4ff;
    border-left: 6px solid #007bff;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  
  .notice-box li strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
  }
  
  .date-label {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 2px 8px;
    font-size: 14px;
    border-radius: 5px;
    margin-right: 8px;
  }
  
  .change {
    color: #d9534f;
    font-weight: bold;
  }
  
  .icon {
    margin-right: 5px;
  }
  
  .notice-box .note {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    color: #555;
  }
  
