@charset "UTF-8";
/* forms */

::-moz-placeholder {
  color: #a8a8a8;
}

:-ms-input-placeholder {
  color: #a8a8a8;
}

::placeholder {
  color: #a8a8a8;
}

input[type=radio], input[type=checkbox] {
  display: none;
}

/* radio */
.input-radio label:last-child {
  margin: 0;
}

.input-radio label {
  position: relative;
  padding-left: 48px;
}

.input-radio label::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border: 1px solid #009d61;
  border-radius: 50%;
  background: #fff;
}

.input-radio input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto auto auto 7px;
  width: 14px;
  height: 14px;
  background: #009d61;
  border-radius: 50%;
}

.input-radio input:checked + label::before {
  border: 1px solid #009d61;
  background: #fff;
}

/* checkbox */
.input-checkbox label:last-child {
  margin: 0;
}

.input-checkbox label {
  position: relative;
  padding-left: 48px;
}

.input-checkbox label::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #009d61;
  transition: all 300ms 0s ease;
}

.input-checkbox input:checked + label::before {
  background: #009d61;
  border: 1px solid #009d61;
}

.input-checkbox input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 3px 0 0 5px;
  width: 4px;
  height: 8px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.input-checkbox input:checked + label {
  color: #009d61;
}

@media screen and (min-width: 415px) {
  #CONTACT .offset {
    width: 800px;
  }
}

main {
  background: #f8f8f8;
}

.summary {
  font-size: 18px;
  line-height: 1.77;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .summary {
    width: 100%;
    margin: 35px auto 0;
  }
}
@media screen and (min-width: 415px) {
  .summary {
    width: 660px;
    margin: 75px auto 0;
  }
}
.summary .contact-tel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: #009d61;
  margin-top: 50px;
  padding: 21px 40px;
  border: 1px solid #009d61;
}
.summary h2 {
  font-size: 18px;
  font-weight: bold;
  margin-right: 22px;
}
.summary a {
  font-family: "Bebas Neue", cursive;
  color: #009d61;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 414px) {
  .summary a {
    font-size: 43px;
  }
}
@media screen and (min-width: 415px) {
  .summary a {
    font-size: 54px;
  }
}

.form-wrapper {
  padding-top: 100px;
}
.form-wrapper h2 {
  color: #009d61;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 414px) {
  .form-wrapper h2 {
    font-size: 26px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper h2 {
    font-size: 30px;
  }
}
.form-wrapper form {
  font-size: 18px;
}
@media screen and (max-width: 414px) {
  .form-wrapper form {
    margin-top: 40px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper form {
    margin-top: 90px;
  }
}
.form-wrapper .group {
  border-bottom: 1px solid #009d61;
}
@media screen and (max-width: 414px) {
  .form-wrapper .group {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .form-wrapper .group.alt {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper .group {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .form-wrapper .group.alt {
    padding-bottom: 20px;
  }
}
.form-wrapper dt {
  font-weight: bold;
  margin-bottom: 15px;
}
.form-wrapper dt.required::after {
  content: "必須";
  color: #009d61;
  padding-left: 20px;
}
.form-wrapper dt span {
  font-weight: normal;
}
@media screen and (max-width: 414px) {
  .form-wrapper dt span {
    display: block;
    margin-top: 5px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper dt span {
    margin-left: 20px;
  }
}
.form-wrapper dt .important {
  color: #f00;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 414px) {
  .form-wrapper dt .important {
    margin-top: 5px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper dt div.important {
    margin-top: 8px;
  }
}
.form-wrapper .input-radio label {
  margin-bottom: 20px;
}
@media screen and (max-width: 414px) {
  .form-wrapper .input-radio label {
    display: block;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper .input-radio label {
    display: inline-block;
    margin-right: 40px;
  }
}
.form-wrapper input,
.form-wrapper textarea {
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 414px) {
  .form-wrapper input,
.form-wrapper textarea {
    padding: 20px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper input,
.form-wrapper textarea {
    padding: 24px 40px;
  }
}
.form-wrapper textarea {
  height: 300px;
}
.form-wrapper select {
  background: #fff;
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0;
}
@media screen and (max-width: 414px) {
  .form-wrapper select {
    padding: 24px 40px 24px 15px;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper select {
    padding: 24px 40px;
  }
}
.form-wrapper .select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}
.form-wrapper .select-wrapper:first-child {
  margin-top: 0;
}
.form-wrapper .select-wrapper.short {
  width: 135px;
}
.form-wrapper .select-wrapper.short:first-child {
  margin-right: 15px;
}
.form-wrapper .select-wrapper::before {
  position: absolute;
  content: "";
  width: 81px;
  height: 100%;
  z-index: 0;
  top: 0;
  right: 0;
  background: #fff;
}
.form-wrapper .select-wrapper::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 10px 0 10px;
  border-color: #009d61 transparent transparent transparent;
}
@media screen and (max-width: 414px) {
  .form-wrapper .select-wrapper::after {
    margin: auto 10px auto 0;
  }
}
@media screen and (min-width: 415px) {
  .form-wrapper .select-wrapper::after {
    margin: auto 30px auto 0;
  }
}
.form-wrapper .submit-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.form-wrapper .submit-wrapper > * {
  font-size: 22px;
  font-weight: bold;
  width: 340px;
  border-radius: 10px;
}
.form-wrapper .submit-wrapper input {
  color: #fff;
  background: #009d61;
  padding: 20px;
}

.notes {
  line-height: 2.28;
  margin-top: 60px;
  padding-bottom: 90px;
}
.notes li {
  font-size: 14px;
}
.notes #PRIVACY {
  padding-top: 30px;
}

.form-check {
  display: inline-block;
}
@media screen and (max-width: 414px) {
  .form-check {
    margin-right: 30px;
  }
}

#CONTACT.confirm .form-wrapper {
  padding-bottom: 100px;
}
#CONTACT.confirm .input-area {
  margin-top: 40px;
}
#CONTACT.confirm .btn-return {
  background: #535353;
}
@media screen and (max-width: 414px) {
  #CONTACT.confirm .btn-return {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 415px) {
  #CONTACT.confirm .btn-return {
    margin-right: 30px;
  }
}

#CONTACT.complete .form-wrapper {
  text-align: center;
  padding-bottom: 100px;
}
#CONTACT.complete .form-wrapper p {
  margin-top: 30px;
}
#CONTACT.complete .btn-wrapper {
  text-align: center;
}
@media screen and (max-width: 414px) {
  #CONTACT.complete .btn-wrapper {
    margin-top: 50px;
  }
}
@media screen and (min-width: 415px) {
  #CONTACT.complete .btn-wrapper {
    margin-top: 100px;
  }
}
#CONTACT.complete .btn-wrapper .link-btn {
  background: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding: 7px 0;
  border: 1px solid #000;
  position: relative;
}
@media screen and (max-width: 414px) {
  #CONTACT.complete .btn-wrapper .link-btn {
    width: 80%;
  }
}
@media screen and (min-width: 415px) {
  #CONTACT.complete .btn-wrapper .link-btn {
    width: 280px;
  }
}
#CONTACT.complete .btn-wrapper .link-btn::before {
  content: "<<";
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translate(30px, 0px);
}
#CONTACT.complete .btn-wrapper .link-btn span {
  display: inline-block;
  transform: translate(20px, 0px);
}

.invalid-feedback {
  color: #fc8444;
  display: inline-block;
  margin-top: 15px;
}