body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 1.5em;
}

a {
  font-weight: bold;
  color: #000;
}

#contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

input[type="text"],
input[type="email"],
textarea {
  width: calc(
    100% - 22px
  ); /* 左右に10pxのパディングと、右側に10pxの余白を追加 */
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* パディングを含めたボックスモデルに調整 */
}

textarea {
  height: 150px; /* 縦を大きく調整 */
}

button[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

#statusMessage {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* スクロールバーのカスタマイズ */
.scrollable::-webkit-scrollbar {
  width: 6px;
}

.scrollable::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 3px;
}

/* 横棒のスタイル */
#scroll-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  display: none; /* 初期は非表示 */
  z-index: 1000;
}

#scroll-bar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

#scroll-bar a:hover {
  text-decoration: underline;
}
