@charset "utf-8";
/* CSS Document */

/*-----------------
form
-----------------*/
.form {
  margin-bottom: 60px;
}
.form .inner {
  margin: 0 15px;
}
.form .message {
  margin-bottom: 20px;
  font-size: 13px;
}
.form .note {
  margin-bottom: 20px;
  font-size: 13px;
}
.form .note span {
  display: inline-block;
  width: 35px;
  height: 22px;
  margin: 0 10px 0 0;
  background: #1C1C1C;
  color: #FFF;
  font-size: 13px;
  text-align: center;
  line-height: 22px;
}
.form dl {
  border: 1px solid #E7E7E7;
}
.form dl + dl {
  border-top: none;
}
.form dl dt {
  box-sizing: border-box;
  position: relative;
  padding: 15px;
  background: #F4F4F4;
  border-right: 1px solid #E7E7E7;
  font-size: 13px;
  line-height: 1.6;
}
.form dl dt.must:after {
  content: "必須";
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 22px;
  background: #1C1C1C;
  color: #FFF;
  font-size: 13px;
  text-align: center;
  line-height: 22px;
}
.form dl dt span {
  display: inline-block;
  margin: 0 0 0 10px;
  color: #F00;
  font-size: 12px;
}
.form dl dd {
  box-sizing: border-box;
  padding: 15px;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.6px;
  flex: 1;
}
.form dl dd span {
  color: #F00;
  font-size: 12px;
}
.form dl dd input[type="text"] {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #E7E7E7;
  font-size: 14px;
}
.form dl dd input[type="text"].zip {
  width: 100px;
  margin: 0 3px 10px;
}
.form dl dd textarea {
  box-sizing: border-box;
  width: 100%;
  height: 180px;
  padding: 10px 15px;
  border: 1px solid #E7E7E7;
  font-size: 14px;
  resize: vertical;
}
.form .privacy {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 3px solid #F4F4F4;
}
.form .privacy .pTit {
  margin: 20px 0 10px;
  font-size: 13px;
}
.form .privacy .pTit span {
  display: inline-block;
  width: 35px;
  height: 22px;
  margin: 0 0 0 10px;
  background: #1C1C1C;
  color: #FFF;
  font-size: 13px;
  text-align: center;
  line-height: 22px;
}
.form .privacy .pBox {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 160px;
  margin: 0 0 15px;
  padding: 10px;
  border: 1px solid #E3E3E3;
  font-size: 12px;
  line-height: 2;
  overflow-x: hidden;
  overflow-y: auto;
}
.form .privacy .pBox strong {
  font-size: 14px;
  font-weight: normal;
}
.form .privacy .pChk {
  display: block;
  width: 100%;
}
.form .privacy .pChk label {
  margin: 0 0 0 10px;
  font-size: 13px;
}
.form .subbtn {
}
.form .subbtn input[type="submit"] {
  display: block;
  width: 100%;
  height: 110px;
  background: #043E04;
  border: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.form .subbtn input[type="submit"]:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.form .subbtn input[type="submit"]:active {
  border: none;
}
/*送信確認画面・完了画面のスタイル*/
#form .ttl {
  box-sizing: border-box;
  width: 100%;
  height: 130px;
  padding-top: 40px;
  color: #FFF;
  font-size: 30px;
  background: #1C1C1C;
  text-align: center;
  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 {
  width: 200px;
  height: 30px;
  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;
}