/* フォーム全体 */
.wpcf7-form {
  max-width: 600px;
 margin: 100px auto 0;  /* ← 上50px、左右中央、下0px */
  padding: 0; /* 外枠が消えるので余白も削除するならここも0に */
  border: none; /* ← 枠線を削除 */
  background-color: transparent; /* ← 背景色を削除 */
  border-radius: 0; /* ← 丸みも不要なら */
  box-sizing: border-box;
}


/* ラベル */
.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* 入力フィールド */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
}

/* チェックボックス */
.wpcf7-form .wpcf7-checkbox {
  margin-bottom: 20px;
}

.wpcf7-form .wpcf7-checkbox label {
  display: inline-block;
  margin-right: 10px;
  font-weight: normal;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
  background-color: #000;        /* 黒色に変更 */
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: block;                /* 中央寄せに必要 */
  margin: 20px auto 0;           /* 上に余白をつけて中央寄せ */
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #333;        /* ホバー時は少し明るい黒に */
}

/* エラーメッセージ */
.wpcf7-form .wpcf7-not-valid-tip {
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0; /* 外枠が消えるので余白も削除するならここも0に */
  border: none; /* ← 枠線を削除 */
  background-color: transparent; /* ← 背景色を削除 */
  border-radius: 0; /* ← 丸みも不要なら */
  box-sizing: border-box;
}


/* テーブル */
table.about-table {
  width: 100%;
  table-layout: fixed;
}

table.about-table tr > td:first-child {
  width: 30%;
  word-break: break-word;
}

table.about-table tr > td:nth-child(2) {
  width: 70%;
  word-break: break-word;
}

