@charset "UTF-8";
/* CSS Document */
.form {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto 100px;
  padding: 0 20px;
}
.form__comment {
  margin: 0 0 20px;
  font-size: 14px;
}
.form__wrap {
  border: 1px solid #e6e6e6;
}
.form__def {
  display: flex;
}
.form__def + .form__def {
  border-top: 1px solid #e6e6e6;
}
.form__def-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 260px;
  background: #f2fbf7;
  border-right: 1px solid #e6e6e6;
  font-size: 14px;
}
.form__def-tit--req::after {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 24px;
  background: #77d2a4;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
}
.form__def-data {
  width: calc(100% - 260px);
  padding: 10px 15px;
}
.form__def-data--confirm {
  padding: 20px;
}
.form__def-note {
  margin-top: 5px;
  color: #666;
  font-size: 12px;
}
.form__def-note + input[type=text] {
  margin-top: 5px;
}
.form__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__list-item {
  font-size: 14px;
  line-height: 1.4;
}
.form input[type=text] {
  box-sizing: border-box;
  max-width: 760px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e6e6e6;
  font-size: 14px;
}
.form input[type=text].zip {
  width: 300px;
}
.form input[type=checkbox] {
  visibility: hidden;
  position: absolute;
}
.form input[type=checkbox] + label {
  box-sizing: border-box;
  display: inline-block;
  padding: 0 0 0 30px;
  background: url(../img/checkbox_off.png) no-repeat 0 center;
}
.form input[type=checkbox]:checked + label {
  background-image: url(../img/checkbox_on.png);
}
.form textarea {
  box-sizing: border-box;
  max-width: 760px;
  width: 100%;
  height: 150px;
  padding: 10px 15px;
  border: 1px solid #e6e6e6;
  font-size: 14px;
  resize: vertical;
}
.form__privacypolicy {
  margin: 20px 0;
  line-height: 2;
}
.form__privacypolicy-def {
  box-sizing: border-box;
  max-width: 770px;
  width: 100%;
  height: 190px;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #e6e6e6;
  overflow-y: auto;
}
.form__privacypolicy-tit {
  font-size: 20px;
}
.form__privacypolicy-data {
  font-size: 14px;
}
.form__privacypolicy-txt {
  max-width: 580px;
  margin: 15px auto;
  font-size: 14px;
}
.form__privacypolicy-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.form__privacypolicy-btn::before {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 24px;
  background: #77d2a4;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
}
.form__submit {
  margin-top: 15px;
}
.form__submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  margin: 0 auto;
  background: #77d2a4;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.form__submit-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 750px) {
  .main__title img {
    width: 120px;
  }
  .form__def {
    flex-direction: column;
  }
  .form__def-tit {
    width: 100%;
    padding: 10px 15px;
    border-right: none;
  }
  .form__def-data {
    width: 100%;
  }
}
/*送信確認画面・完了画面のスタイル*/
#form .ttl {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ccc;
  color: #333;
  font-size: 30px;
  letter-spacing: 5px;
}

#form .txt {
  margin: 20px 0;
  font-size: 16px;
  line-height: 2;
}

#form .error_messe {
  padding: 15px 5px;
  border-top: 1px solid #e3e3e3;
  color: #f00;
  font-size: 16px;
}

#form .error_messe:last-child {
  border-bottom: 1px solid #e3e3e3;
}

#form .sysbtn {
  display: block;
  width: 200px;
  height: 30px;
  margin: 0 auto;
  background: #e3e3e3;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

#form .sysbtn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.form .complete {
  padding: 50px 0 150px;
  font-size: 16px;
  text-align: center;
}/*# sourceMappingURL=index.1.0.0.css.map */