.menu .contact {
  color: #008FD0;
}
 /* h1のタイトル */
 .toptitlesection {
  padding: 100px;
  height: 750px;
}
.h1title {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #171A35;
}
.top p {
  line-height: 2.5; /* 行間を1.5倍に */
  color: #171A35;
  font-size: 18px;
}
/* フォーム全体のスタイル */
.form_container {
  width: 300px;
  padding: 20px;
  border-radius: 5px;
  display: flex;
}
.contact_form {
  padding-left: 200px;
}
/* フォームの行を横並びにする */
.form_row1,.form_row2 {
  display: flex; /* 横並びにする */
  justify-content: space-between; /* 項目間のスペースを均等にする */
  gap: 50px; /* 項目同士の隙間 */
}
.name,.email {
  display: block;
  margin: 10px;
}
.contacttitle,.contacttext {
  display: block;
  margin: 10px;
}
/* 入力欄のスタイル */
input[type="text"], input[type="email"] {
  width: 500px; /* 入力欄の幅を全体に合わせる */
  padding: 10px;
  border: 1px solid #7DD5F4;
  border-radius: 5px;
}
#contacttitle, #contacttext {
  width: 1100px;
}
#contacttext {
  height: 150px;
}
.submit_button {
  display: block;
}
/* submit_buttonコンテナを横並びにする */
.submit_button {
  display: flex;
  align-items: center; /* ボタンとテキストの縦方向を揃える */
  gap: 10px; /* ボタンとテキストの間に隙間 */
}

/* 送信ボタンのスタイル */
input[type="submit"] {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold; /* 太文字 */
  cursor: pointer;
  margin: 10px;
}
/* pタグのスタイル */
.submit_button p {
  margin: 0;
  font-size: 0.9em;
}
.add_box {
  width: 100%;
  height: 500px;
  background-color: #EEF2FF;
  position: relative;
  /* 上部を20度斜めにカットする */
  clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 95%);
}
.add_container {
  display: flex;
}
