body {
    font-family: "Times New Roman", Times, serif; 
    margin: 0;
    padding: 0;
    background-color:#ffffff;
}

.container {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #ccc; /* 枠線を追加 */
}



h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form input[type="submit"] {
    padding: 10px;
    background-color: #515352;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #3c3f3d;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.status-options {
    display: inline-flex;
    align-items: center;
}

.status-options label {
    margin-right: 15px;
}






  .header-logo {
    position: fixed;
    top: 10px; /* 左上に移動 */
    left: 10px;
    width: 100px;
    height: auto;
    display: block;
    transition: transform 0.3s ease; /* 画像にアニメーションを追加 */
  }

  /* ツールチップのスタイル */
  .tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px; /* 大きめの文字サイズ */
    white-space: nowrap;
    z-index: 10;
    display: none;
    opacity: 0; /* 初期状態では透明 */
    transform: translateY(10px); /* 初期位置を少し下に設定 */
    transition: opacity 0.3s ease, transform 0.3s ease; /* アニメーション設定 */
  }

  /* 画像にホバーしたときのスタイル */
  .header-logo:hover {
    transform: scale(1.2); /* 画像を少し拡大 */
  }

  /* 画像にカーソルを合わせた時にツールチップを表示 */
  .header-logo:hover + .tooltip {
    display: block;
    opacity: 1; /* 透明度を変えて表示 */
    transform: translateY(0); /* ツールチップを元の位置に戻す */
  }

  /* スマートフォンでは画像を非表示にする */
  @media screen and (max-width: 768px) {
    .header-logo, .tooltip {
      display: none;
    }
  }

