form {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

label {
  display: block;
  margin: 10px 0 5px;
  text-align: left; /* ラベルを左寄せ */
  font-weight: bold; /* 少し見やすくするために太字 */
}

.title {
  margin-top: 10px;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #cacaca;
  border-radius: 5px;
  text-align: left;
}

textarea {
  height: 150px; /* 縦幅を広めに設定 */
}

button {
  background-color: #616161;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block; /* ボタンをブロック要素にする */
  margin: 20px auto; /* 上下の余白とセンター配置 */
  text-align: center;
  width: 30%; /* ボタンの幅を調整 */
  transition-timing-function: ease-in;
  transition-duration: 0.4s;
}

button:hover {
  background-color: #e9a43c;
}


.form-area{
  margin-top: 50px;
}


.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 20px 0; /* 上下の余白を追加 */
}

.g-recaptcha {
  display: block;
}

.word-area {
  width: 95%;
  margin: 30px auto;
}

.l-text {
  width: 90%;
  margin: 30px auto;
}

.form-main {
  color: #000000;
  text-align: center;
  margin: 30px 0 100px 0;

}

.top_img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#random-image {
  width: 100%;
  height: auto;
  display: block;
}
