/* フォーム全体のスタイル */
form {
  max-width: 80%;
  margin: 0 auto;
  color: #444;
  
}

/* テーブルのスタイル */
.ta1 {
  width: 100%;
  border-collapse: collapse;
}

.ta1 th,
.ta1 td {
  padding: 12px;
  border: 1px solid #ccc;
  vertical-align: top;
}

.ta1 th {
  background-color: #f7f7f7;
  text-align: left;
  width: 30%;
  font-weight: bold;
}

.ta1 td input[type="text"],
.ta1 td textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

/* 送信ボタンのデザイン */
input[type="submit"] {
  background-color: #e67eae;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* セクションの余白 */
.space-large {
  position: relative;
  top: -125px; /* 好きな分だけ上に移動 */
  padding: 0px 0px;
  background-color: #fff;
}

/* 中央揃えのクラス */
.c {
  text-align: center;
  margin-bottom: 30px;
}


