@charset "utf-8";
/* CSS Document */
.section-top {
  position: relative;
}
.section-top__image {
  position: relative;
  height: 35vh;
  width: 100%;
  background-image: url("../images/main_inquiry.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.section-top__title {
  display: flex;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 auto;
  padding-top: 20%;
  justify-content: center;
}
.section-top__title {
  display: flex;
}
.section-top__title span {
  display: block;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(3rem);
}
.section-top__title span.is-show {
  opacity: 1;
  transform: translateY(0);
}
.section-top__title span:nth-child(2) {
  transition-delay: 0.06s;
}
.section-top__title span:nth-child(3) {
  transition-delay: 0.12s;
}
.section-top__title span:nth-child(4) {
  transition-delay: 0.18s;
}
.section-top__title span:nth-child(5) {
  transition-delay: 0.24s;
}
.section-top__title span:nth-child(6) {
  transition-delay: 0.30s;
}
@media(min-width:580px) {
  .section-top__image {
    height: 60vh;
  }
}
@media(min-width:960px) {
  .main {
    padding: 0 40px;
  }
  .section-top {
    width: 88%;
    height: 100%;
    margin: 0 auto;
  }
  .section-top__image {
    position: relative;
    height: 600px;
    width: 100%;
    padding-bottom: 66.6%;
    object-fit: contain;
    background-size: 100% auto;
    margin: 0 auto;
  }
  .section-top__title {
    padding-top: 15%;
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
}
.inquiry-form {
  position: relative;
  padding: 20px 24px 60px 24px;
  text-align: left;
}
.inquiry-form p {
  margin-bottom: 40px;
}
.inquiry-form-kind {
  position: relative;
  display: flex;
  line-height: normal;
  flex-direction: column;
}
.checkbox-wrap {
  display: flex;
}
.inquiry-form-kind input[type="checkbox"] {
  width: 20pt; /* 大きさ：横 */
  height: 20pt; /* 大きさ：縦 */
  vertical-align: top; /* 並び位置   */
}
/* --- チェックボックス直後のlabel --- */
.inquiry-form-kind input[type="checkbox"] + label {
  padding: 0 40px 0 10px; /* labelの余白 */
  font-size: 2.0rem; /* labelの文字サイズ */
  font-weight: 600; /* 文字太さ   */
  border-radius: 5px; /* labelの角丸 */
  cursor: pointer; /* カーソル設定 */
  transition: .2s; /* なめらか変化 */
  display: flex;
}
/* --- チェックボックス直後のlabelにマウスが乗った --- */
.inquiry-form-kind input[type="checkbox"] + label:hover {
  font-weight: 700;
}
@media(min-width:960px) {
  .inquiry-form-kind {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .contact-form-select {
    padding-top: 50px;
  }

}
.inquiry-form input[type="text"], .inquiry-form input[type="email"], .inquiry-form select, .inquiry-form textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: solid 1px #777;
}
.inquiry-form textarea {
  height: 300px;
}
textarea::placeholder {
  padding-top: 10px;
}
.contact-form-select {
  padding-top: 40px;
}
  #contact-form-select {
    display:  block;
  }
  .contact-form-button {
    display: block;
    font-style: normal;
    padding: 20px 0 0 0;
  }
 .contact-form-button input[type="radio"] {
  width: 16pt; /* 大きさ：横 */
  height: 16pt; /* 大きさ：縦 */
  vertical-align: middle; /* 並び位置   */
   line-height: normal;
   margin: 1px 5px 4px 0;
}
.inquiry-form p label {
  font-weight: 600;
  font-size: 2.0rem;
  display: block;
  margin-bottom: 20px;
}
.small-label__privacy {
  font-weight: 500;
  font-size: 1.6rem;
  display: flex;
}
.inquiry-form__privacy-link {
  color: #333;
}
.small-label__privacy input[type="checkbox"] {
  width: 18pt; /* 大きさ：横 */
  height: 18pt; /* 大きさ：縦 */
  vertical-align: middle; /* 並び位置   */
}
.inquiry-form__submit {
  display: block;
  position: relative;
  height: 48px;
  max-width: 320px;
  width: 100%;
  font-size: 2.4rem;
  border-radius: 48px;
  margin: 0 auto;
  transition: .3s; /* なめらか変化 */
  box-shadow: 6px 6px 3px #666666; /* 影の設定 */
  border: 1px solid #555555; /* 枠の指定 */
}
.inquiry-form__submit:hover {
  box-shadow: none; /* カーソル時の影消去 */
  color: #ffffff; /* 背景色     */
  background: #004211; /* 文字色     */
}
@media (min-width: 960px) {
  .inquiry-form {
    padding: 120px 40px;
    max-width: 1160px;
    margin: 0 auto;
  }
  .inquiry-form p label {
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
  }
  .inquiry-form__contact_method {
    display: inline-block;
  }
  .inquiry-form input[type="text"], .inquiry-form input[type="email"], .inquiry-form select, .inquiry-form textarea {
    display: inline-block;
    width: 400px;
    margin-left: 20px;
  }
  #contact-form-select {
    margin-left: 18%;
  }
 #form_tel {
    margin-left: 100px;
  }
  #form_name, #form_email {
    margin-left: 120px;
  }
  .inquiry-form textarea {
    width: 600px;
    height: 450px;
  }
  .small-label__privacy {
    display: flex;
  }
  .inquiry-form__privacy {
    margin-left: 260px;
  }
  .inquiry-form__submit {
    margin: 0 auto;
  }
}