/* 全体のリセット */
body, h1, p, a {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    text-align: center;
    background-color: #ffffff;
  }
  
  /* ヘッダー */
  .header {
    background-color: #ffeb00;
    padding: 10px 0;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .logo {
    width: auto; /* 自然な比率を保つ */
    height: 50px; /* 高さを統一 */
  }
  
  .title {
    font-size: 24px;
    font-weight: bold;
    color: #d00000;
    position: absolute; /* ロゴの上にテキストを重ねる */
    top: 50%; /* 縦中央揃え */
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* メインコンテンツ */
  .main-content {
    padding: 20px;
  }
  
  .character-image {
    width: 150px;
    margin: 20px 0;
  }
  
  .maintenance-message {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
  }
  
  .twitter-message {
    font-size: 14px;
    color: #000000;
  }
  
  .twitter-message a {
    color: #0000ee;
    text-decoration: none;
  }
  
  .twitter-message a:hover {
    text-decoration: underline;
  }