@charset "UTF-8";
input[type="button"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
.main-section.contact {
  padding-top: 90px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #f4f2f1;
}
.contact-content {
  display: flex;
  padding: 30px 20px 30px 0;
  border-top: 1px solid #e7e7e7;
}
.contact-content.message {
  border-bottom: 1px solid #e7e7e7;
}
.form-title {
  width: 20%;
  padding-top: 7px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.title-required {
  color: #ff0000;
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
}
.contact-error {
  color: #ff0000;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-top: 15px;
}
.contact-introduction {
  margin-top: 28px;
  text-align: center;
  line-height: 1.8;
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.section-contact {
  position: relative;
  margin-top: 65px;
  padding: 50px 50px 60px;
  background-color: #ffffff;
}
.contact-tel {
  border-top: 1px solid #000000;
  padding: 15px 0 70px;
}
.contact-mail {
  border-top: 1px solid #000000;
  padding: 15px 0 60px;
}
.contact-sub-title {
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.contact-tel-number {
  width: 300px;
  margin: 44px auto 0;
  padding: 15px 0;
  border-radius: 30px;
  background-color: #f4f2f1;
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", sans-serif;
  font-size: 29px;
  font-weight: 200;
  line-height: 1;
  text-align: center;
}
.contact-mail-description {
  margin-top: 20px;
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}
.form-content {
  width: 80%;
  margin-left: 10px;
  display: flex;
}
.form-content.required-content {
  display: block;
}
.form-content label {
  position: relative;
  display: flex;
  align-items: center;
}
.form-content label + .form-content label {
  margin-left: 10px;
}
.radiowork {
  margin-left: 35px;
}
.form-radio {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.form-radio-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
  margin-right: 11px;
}
.form-radio-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #f5f5f5;
  height: 28px;
  width: 28px;
  vertical-align: middle;
  cursor: pointer;
}
.form-radio-check {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #f5f5f5;
  height: 12px;
  width: 12px;
  cursor: pointer;
}
.form-radio:checked + .form-radio-check {
  background-color: #1cace1;
}
.form-radio-text-wrapper {
  width: calc(100% -44px);
}
.form-radio-text {
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  color: #333;
}

.description-required {
  display: block;
  font-family: "Hiragino Kaku Gothic", "ヒラギノ角ゴシック", sans-serif;
  font-size: 11px;
  font-weight: 300;
  text-align: right;
}
.required-red {
  color: #ff0000;
}
.input-content {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid #e7e7e7;
  background-color: #ffffff;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.confirm-button {
  width: 100%;
  padding: 23px 0;
  background-color: #000000;
  border: none;
  color: #ffffff;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.contact-button {
  margin-top: 58px;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.contact-button::after {
  content: "";
  display: block;
  margin-left: -46px;
  width: 10px;
  height: 10px;
  border-right: solid 2px #ffffff;
  border-top: solid 2px #ffffff;
  transform: rotate(45deg);
}
.form-diamond {
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 40px;
  height: auto;
  transform: translate(-50%, 0);
}
.form-diamond > img {
  width: 100%;
}
.banner-wrapper.content-line {
  padding-top: 72px;
}
/* -------------------------------------------------------------------------------
hover
------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .confirm-button:hover {
    background-color: #777777;
  }
}
@media screen and (max-width: 768px) {
  .main-section.contact {
    padding-top: 46px;
  }
  .contact-content {
    display: block;
    padding: 16px 0;
  }
  .form-title {
    width: 100%;
    padding: 0;
  }
  .form-content {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
  .contact-tel-number {
    width: auto;
    margin-top: 20px;
  }
  .contact-tel {
    padding-bottom: 30px;
  }
  .contact-mail {
    padding-bottom: 30px;
  }
  .section-contact {
    padding: 38px 20px 46px;
    margin-top: 36px;
  }
  .contact-button {
    margin-top: 30px;
  }
  .form-content label {
    margin-top: 0;
  }
  .form-content label + label {
    margin-top: 8px;
  }
  .confirm-button {
    font-size: 14px;
    padding: 16px 0;
  }
  .contact-button.confirm {
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  .content-width.contact-sp {
    padding: 0 20px;
  }
  .form-content.radio {
    display: block;
  }
  .radiowork {
    margin-left: 0;
    margin-top: 15px;
  }
  .contact-tel-number {
    font-size: 20px;
    padding: 10px 0;
  }
  .input-content {
    font-size: 9px;
    padding: 8px 18px;
  }
}
