@charset "UTF-8";

/* ---------------------
  form
--------------------- */
.form {
  margin-top: 10px;
}
.form__container {
  padding: 30px;
  background-color: #f6f5f2;
}
.form__container > *:first-child {
  margin-top: 0;
}
.form__detail {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 30px 25px 0;
  border-bottom: 1px solid #e6e3dc;
}
.form__detail:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.form__main {
  width: 225px;
  font-weight: 700;
}
.form__data {
  width: 100%;
}
.form__data > *:first-child {
  margin-top: 0;
}
.form__text {
  display: inline-block;
  padding-top: 3px;
}
.form__note {
  margin: 10px 0 4px;
  font-size: 1.2rem;
  color: #606060;
  background-color: transparent;
}
.form__item:not(:last-child) {
  margin-bottom: 5px;
}
.form__label {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: #333;
}
.form__check {
  position: absolute;
  top: 3px;
  left: 0;
  margin: 0;
  width: 14px;
  height: 14px;
}
.form__input {
  width: 400px;
  height: 30px;
  border: 1px solid #c7c7c7;
  padding: 0 5px;
  font-size: 1.4rem;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
}
.form__textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #c7c7c7;
  padding: 8px 5px;
  font-size: 1.4rem;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
}
.form__select {
  width: 200px;
  height: 30px;
  border: 1px solid #c7c7c7;
  font-size: 1.4rem;
  border-radius: 0;
  box-sizing: border-box;
}
.from__transition {
  display: flex;
  justify-content: space-between;
}
.form__send,
.form__send--return {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 45px auto 0;
}
.form__send::after,
.form__send--return::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  height: 22px;
  background: url(../images/renewal2023/ico_btn_01.png) no-repeat 0 0 / 100% auto;
  transform: translateY(-50%);
  cursor: pointer;
}
.form__send--return::before {
  left: 20px;
  right: auto;
  background-image: url(../images/renewal2023/ico_btn_04.png);
  transform: translateY(-50%) rotateZ(180deg);
}
.form__button,
.form__button--return {
  appearance: none;
  display: block;
  width: 100%;
  padding: 15px 10px 13px;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  background: linear-gradient(169deg, #00aeeb 0%, #00aeeb 50%, #33beef 50%, #33beef 100%);
  border-radius: 8px;
  cursor: pointer;
}
.form__button--return {
  color: #00aeeb;
  padding: 13px 10px 11px;
  border: 2px solid #00aeeb;
  background: #fff;
}
.form__send:hover,
.form__send--return:hover {
  opacity: 0.7;
}

/* 必須 */
.required {
  color: #ff0026;
}

/* error */
.error_blank,
.error_format,
.error_tel {
  display: block;
  margin-top: 5px;
  color: #ff0026;
  font-size: 1.4rem;
}


/* SP */
@media screen and (max-width: 750px) {
  .form {
    margin-top: 20px;
  }
  .form__container {
    padding: 20px;
  }
  .form__detail {
    display: block;
    margin-top: 20px;
    padding: 0 0 20px 0;
  }
  .form__main {
    width: 100%;
  }
  .form__data {
    margin: 10px 0 0;
  }
  .form__text {
    padding-top: 0;
  }
  .form__input {
    width: 100%;
  }
  .from__transition {
    display: block;
  }
  .form__send,
  .form__send--return {
    margin-top: 40px;
  }
}
