.s-form_section {
  padding: 0 2rem;
  margin: 6rem 0;
}
@media screen and (min-width: 1080px) {
  .s-form_section {
    padding: 0;
    margin: auto;
  }
}
.s-form {
  display: grid;
  width: 100%;
  border: 1px solid #008EC1;
  border-radius: 8px;
}
.s-form p {
  margin-bottom: 3.2rem;
}
.s-form .title {
  display: grid;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: bold;
  color: #FFF;
  padding: 2rem 2.4rem;
  background: #008EC1;
  border-radius: 6px 6px 0 0;
  gap: 10px;
}
.s-form .title span {
  font-size: 1.6rem;
  font-weight: normal;
}
.s-form .item {
  padding: 2.4rem;
}
@media screen and (min-width: 1080px) {
  .s-form {
    max-width: 1000px;
    margin: 10rem auto;
  }
  .s-form .title {
    font-size: 2.8rem;
    padding: 2rem 4rem;
  }
  .s-form .title span {
    font-size: 1.6rem;
  }
  .s-form .item {
    padding: 3.2rem 4rem 4rem;
  }
}

.s-formlist_container {
  display: grid;
  align-items: flex-start;
  margin-bottom: 3.2rem;
  gap: 3.2rem;
}
@media screen and (min-width: 1080px) {
  .s-formlist_container {
    grid-template-columns: repeat(auto-fit, minmax(447px, 1fr));
    gap: 2.4rem;
  }
}
.s-formlist {
  display: grid;
  margin: 0;
  gap: .8rem;
}
.s-formlist__title {
  margin: 0;
}

#lp_form {
  padding-top: 60px;
  margin-top: -60px;
}
.mw_wp_form {
  padding-top: 190px;
  margin-top: -190px;
}
.mw_wp_form .error {
  margin-top: 0;
}
@media screen and (min-width: 1080px) {
  #lp_form {
    padding-top: 1px;
    margin-top: -1px;
  }
  .mw_wp_form {
    padding-top: 230px;
    margin-top: -230px;
  }
}

.mwform-checkbox-field {
  border: 1px solid #E0E2E3;
  border-radius: 6px;
  padding: 1.2rem 1.6rem;
}

.c-checkbox {
  display: inline-flex;
  align-items: center;
  text-align: left;
  line-height: 1.2;
  cursor: pointer;
}
  
.c-checkbox:before {
  content: "";
  display: block;
  margin-right: .6rem;
  border: 1px solid #CED1D2;
  border-radius: 3px;
  background: #F9FAFA;
  width: 22px;
  height: 22px;
  flex: 1 0 auto;
}
  
.c-checkbox:checked {
  position: relative;
}
  
.c-checkbox:checked:before {
  border: 1px solid #008EC1;
  background: #008EC1;
}
  
.c-checkbox:checked:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  /* パス変更 */
  background: url("../../images/common/check.svg") no-repeat center;
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-btn_primary {
  display: inline-block;
  position: relative;
  color: #FFF;
  text-align: center;
  line-height: 1.2;
  background: linear-gradient(to right, #14b2dd 0%, #008ec1 100%);
  box-shadow: none;
  padding: 1.4rem 2.8rem;
  width: 90%;
  border-radius: 3px;
  font-weight: bold;
  overflow: hidden;
  transition: opacity 0.2s ease-out;
}
.c-btn_primary::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: .3em;
  margin: auto;
  /* パス変更 */
  background: url("../../images/common/arrow_white.svg") no-repeat center;
}
@media only screen and (min-width: 1080px) {
  .c-btn_primary {
    width: 400px;
    padding: 1.6rem 3.2rem;
  }
  .c-btn_primary.is-width_auto {
    width: auto;
    min-width: 400px;
  }
  .c-btn_primary:hover {
    opacity: .7;
  }
  .c-btn_primary::after {
    width: 24px;
    height: 24px;
  }
}

.c-btn_primary .content {
  position: relative;
  z-index: 2;
}

.c-btn_primary.l {
  font-size: 2rem;
  padding: 1.6rem 2.8rem;
}

@media only screen and (min-width: 1080px) {
  .c-btn_primary.l {
    width: 400px;
    padding: 1.8rem 3.2rem;
  }
}

input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  max-width: 100%;
  color: #000;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: normal;
  border-radius: 6px;
  outline: none;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="email"], input[type="password"], textarea {
  border: 1px solid #CED1D2;
  background: #F9FAFA;
  padding: 1.2rem;
  width: 14em;
  height: 50px;
}
