@charset "UTF-8";

/* input
***********************/
input {
  font: inherit;
  vertical-align: middle;
}

input[type=text] {
  appearance: none;
  background: #fff;
  border: 2px solid #cfcfcf;
  border-radius: 0;
  font-size: 1.8rem;
  width: 100%;
  height: 50px;
  padding: 0 1em;
}
@media screen and (max-width: 767px) {
  input[type=text] {
    height: 55px;
  }
}
@media screen and (max-width: 767px) and (max-height: 750px) {
  input[type=text] {
    font-size: 1.7rem;
    height: 45px;
  }
}

input[type=text].is-active {
  background: #edf8f9;
  border-color: #00b2b3;
  color: #00b2b3;
  font-weight: 700;
}

input[type=text].is-error {
  background: #ffe6e7;
  border-color: #db0000;
  color: #db0000;
  font-weight: 700;
}

input[type=text]:focus {
  background: #edf8f9;
  border: 2px solid #cfcfcf;
  color: #000;
  font-weight: 400;
  outline: 0;
}

/* form
***********************/
#main {
  margin: 80px auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  #main {
    margin: 30px auto 90px;
    width: 100%;
  }
}

.entry-main-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .entry-main-section {
    gap: 40px;
    padding: 0 10px;
    width: 100%;
  }
}

.form-field {
  width: 100%;
}

.field-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .field-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.field-title .required-icon {
  background: #ffa337;
  color: #fff;
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 6px;
  padding: 2px 4px 1px;
}

@media screen and (max-width: 767px) {
  .field-body {
    margin: 0 auto;
    width: 85%;
  }
}

.field-note {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .field-note {
    font-size: 1.2rem;
    margin: 5px 0 0;
  }
}

.form-btn-wrap {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form-btn-wrap {
    width: 95%;
  }
}

.btn-submit {
  border: none;
  border-radius: 15px;
  background: #aaa;
  color: #fff;
  cursor: no-drop;
  display: block;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto;
  outline: 0;
  position: relative;
  width: 500px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .btn-submit {
    border-radius: 10px;
    width: 100%;
    height: 65px;
  }
}

.btn-submit::after {
  content: '';
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 45%;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 20px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(-20%) rotate(135deg);
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .btn-submit::after {
    width: 10px;
    height: 10px;
  }
}

.btn-submit.is-active {
  background: #ff7b38;
  cursor: pointer;
}

.btn-submit.is-active:hover {
  opacity: 0.75;
}

.ef-error {
  color: #db0000;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 5px 0 0;
  width: 100%;
}

.ef-error:empty {
  display: none;
}

/* 入力メールアドレス表示 */
.email-confirm {
  color: #00b2b3;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
  padding: 0 10px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .email-confirm {
    font-size: 2.2rem;
  }
}

.email-confirm:empty {
  display: none;
}