main {
  background: #f1f9fa;
  padding-bottom: 120px;
}
main .hd {
  height: 400px;
  background: #00a0d9;
  background: -webkit-linear-gradient(25deg, #00a0d9 0%, #8cd0d5 100%);
  background: linear-gradient(65deg, #00a0d9 0%, #8cd0d5 100%);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
main .p_ttl {
  margin: 0 auto;
  font-size: 3rem;
  padding-bottom: 30px;
}
main .p_ttl::after {
  content: '';
  display: block;
  width: 98px;
  height: 14px;
  background: url("../img/shape2_196_wh.png") no-repeat center 0/98px;
  margin: 40px auto 0;
}
main .content {
  width: 960px;
  box-sizing: border-box;
  margin: -50px auto 0;
  background: #fff;
  border-radius: 5px;
  padding: 100px 130px;
}
main .content .lead {
  font-size: 1.8rem;
  line-height: 2;
}
main .content .privacy {
  color: #939393;
  font-size: 1.2rem;
  line-height: 1.75;
  margin-top: 1em;
}

@media screen and (max-width: 480px) {
  main {
    padding-bottom: 50px;
  }
  main .hd {
    height: 240px;
  }
  main .p_ttl {
    width: 85%;
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
  main .p_ttl::after {
    width: 75px;
    height: 11px;
    background: url("../img/shape2_196_wh.png") no-repeat center 0/75px;
    margin: 30px auto 0;
  }
  main .content {
    width: 95%;
    box-sizing: border-box;
    margin: -40px auto 0;
    background: #fff;
    border-radius: 5px;
    padding: 50px 7.5vw;
    text-align: left;
  }
  main .content .lead {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.form_error {
  margin-top: 50px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #fc686f;
}
.form_error li {
  padding-left: 1em;
  position: relative;
}
.form_error li::before {
  content: '';
  display: block;
  position: absolute;
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background: #fc686f;
  left: 0;
  top: 0.88em;
  margin-top: -0.1em;
}

@media screen and (max-width: 480px) {
  .form_error {
    margin-top: 20px;
    display: block;
  }
}
.form_table {
  margin-top: 60px;
  border-top: 1px solid #daeff1;
  text-align: left;
}
.form_table li {
  display: table;
  width: 100%;
  border-bottom: 1px solid #daeff1;
  padding: 30px 0;
}
.form_table li > * {
  display: table-cell;
  vertical-align: top;
}
.form_table li .ttl {
  width: 240px;
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 7px 0;
  color: #00a0d9;
}
.form_table li .ttl .required {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: .6em;
  margin-left: 4px;
  padding: 0 4px;
  border-radius: 2px;
  color: #fff;
  background: #fc686f;
}
.form_table li .data {
  position: relative;
}
.form_table li .data p {
  line-height: 1.75;
  padding: 7px 0;
}
.form_table input[type="text"],
.form_table textarea {
  border: 1px solid rgba(147, 147, 147, 0.5);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 6px 12px;
  line-height: 1.75;
  width: 100%;
  background: rgba(147, 147, 147, 0.05);
  color: #626262;
  outline: none !important;
}
.form_table input[type="text"]::-webkit-input-placeholder,
.form_table textarea::-webkit-input-placeholder {
  color: rgba(147, 147, 147, 0.5);
}
.form_table input[type="text"]::-moz-placeholder,
.form_table textarea::-moz-placeholder {
  color: rgba(147, 147, 147, 0.5);
}
.form_table input[type="text"]:-ms-input-placeholder,
.form_table textarea:-ms-input-placeholder {
  color: rgba(147, 147, 147, 0.5);
}
.form_table input[type="text"]::placeholder,
.form_table textarea::placeholder {
  color: rgba(147, 147, 147, 0.5);
}

@media screen and (max-width: 480px) {
  .form_table {
    margin-top: 30px;
  }
  .form_table li {
    display: block;
    padding: 25px 0;
  }
  .form_table li > * {
    display: block;
  }
  .form_table li .ttl {
    width: auto;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1;
  }
  .form_table li .ttl .required {
    margin-top: 0;
  }
  .form_table li .data p {
    padding: 0;
  }
}
.form_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 50px auto 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
}
.form_btn input[type="submit"] {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  width: 250px;
  height: 60px;
  border-radius: 30px;
  line-height: 60px;
  letter-spacing: .14em;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.form_btn .btn_confirm,
.form_btn .btn_back {
  background: #00a0d9;
  background: -webkit-linear-gradient(316deg, #00a0d9 0%, #8cd0d5 50%, #00a0d9 100%);
  background: linear-gradient(134deg, #00a0d9 0%, #8cd0d5 50%, #00a0d9 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  -webkit-transition: background-position 0.3s ease-out;
          transition: background-position 0.3s ease-out;
}
.form_btn .btn_confirm:hover,
.form_btn .btn_back:hover {
  background-position: 99% 50%;
}
.form_btn .btn_submit {
  background: #ff934c;
  background: -webkit-linear-gradient(316deg, #ff934c 0%, #fc686f 50%, #ff934c 100%);
  background: linear-gradient(134deg, #ff934c 0%, #fc686f 50%, #ff934c 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  -webkit-transition: background-position 0.3s ease-out;
          transition: background-position 0.3s ease-out;
}
.form_btn .btn_submit:hover {
  background-position: 99% 50%;
}

@media screen and (max-width: 480px) {
  .form_btn {
    margin: 30px auto 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px 20px;
  }
}
.thanks .ttl {
  color: #00a0d9;
  font-size: 2.4rem;
}
.thanks p {
  margin-top: 20px;
  font-size: 1.8rem;
  line-height: 2;
}

.formError {
  z-index: 30;
}

.formError .formErrorContent {
  z-index: 31;
}

.formError .formErrorArrow {
  z-index: 36;
}

.ui-dialog .formError {
  z-index: 40;
}

.ui-dialog .formError .formErrorContent {
  z-index: 41;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 46;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}
.formError ::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  bottom: -6px;
  left: 20px;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #fc686f transparent transparent transparent;
}
.formError .formErrorContent {
  width: 100%;
  box-sizing: border-box;
  background: #fc686f;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  line-height: 1.2;
  padding: 8px;
  border-radius: 5px;
  top: -10px;
}
.formError .formErrorArrow {
  display: none;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}
