@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ビューポートの高さに合わせる */
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}

.contact_img {
  display: block;
  width: 50%;
  object-fit: cover;
}

.rightpain {
  width: 50%;
  margin: 64px 0 0 64px; /* 上、右、下、左 */
  box-sizing: border-box;
}

.otoiawase {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 10px;
}

.title {
  font-size: 128px;
  font-weight: 600;
  line-height: 1;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

form {
  margin: 50px 64px 64px 0; /* 上、右、下、左 */
  display: flex;
  flex-direction: column;
}

.input_1, .input_2, .textarea_1 {
  display: block;
  margin-top: 16px;
  width: 100%;
  box-sizing: border-box;
}

.input_1::placeholder {
  color: black;
  font-size: 20px;
  padding-left: 30px;
}

.input_2::placeholder {
  color: black;
  font-size: 20px;
  padding-left: 30px;
}

.textarea_1::placeholder {
  color: black;
  font-size: 20px;
  padding-left: 30px;
  padding-top: 24px;
}

.input_1 {
  height: 76px;
  background-color: #E4E1DA;
  border: none;
}

.input_2 {
  height: 76px;
  background-color: #E4E1DA;
  border: none;
}

.textarea_1 {
  height: 200px;
  background-color: #E4E1DA;
  border: none;
  font-size: 20px;
  resize: vertical;
}

.btn_send {
  margin-top: 16px;
  width: 100%;
  height: 62px;
  border-radius: 40px;
  background-color: #1E1E21;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

/*--------------------------   
1200px
-------------------------*/
@media screen and (max-width: 1200px) {
  .otoiawase {
    font-size: 28px;
  }
  .title {
    font-size: 62px;
    width: auto;
  }
  .input_1::placeholder,
  .input_2::placeholder,
  .textarea_1::placeholder {
    font-size: 18px;
  }
  .textarea_1 {
    font-size: 18px;
  }
  .btn_send {
    font-size: 18px;
  }
  .rightpain {
    width: 50%;
    padding: 64px 0 0 16px;
  }
}
/*--------------------------   
800px
-------------------------*/
@media screen and (max-width: 800px) {
  body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .contact_img {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .content-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }
  .otoiawase {
    font-size: 24px;
    font-weight: 600;
  }
  .title {
    width: 100%;
    display: block;
    font-size: 96px;
    line-height: 1.1;
    letter-spacing: -4px;
  }
  .rightpain {
    width: auto;
    padding: 0;
    margin: 36px 20px 55px 20px;
  }
  form {
    margin: 0;
  }
  .input_1, .input_2, .textarea_1 {
    margin-top: 16px;
  }
  .btn_send {
    margin-top: 16px;
    font-size: 20px;
  }
}/*# sourceMappingURL=contact_style.css.map */