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

.spmask {
	display: none;
}
.sponly {
	display: block;
}
.sptab {
	display: block;
}
.sp700 {
	display: none;
}

@media (min-width: 701px) and (max-width: 850px) {
  .sponly {
  	display: block;
  }
	.sptab {
		display: block;
	}
  .sp700 {
    display: none;
  }
}
@media (max-width: 700px) {
  .sp700 {
    display: block;
  }
	.sptab {
		display: none;
	}
}

#contact {
  padding-top: 90px;
}
/*------------------------------
	kv
------------------------------*/
#contact .kv{
  border-bottom: 1px solid #9f9f9f;
  text-align: center;
  padding: 30px 0 50px;
}
#contact .kv h1{
  font-size: 21px;
  line-height: 1.2;
  font-weight: normal;
}
#contact .kv h1 span{
  font-size: 12px;
}
/*------------------------------*/
#contact .message{
	text-align: center;
	padding: 20px 20px;
  line-height: 1.6;
  border-bottom: 1px solid #9f9f9f;
	font-size: 14px;
}
#contact .message h2{
  font-size: 24px;
  color: #f5f5f5;
}
/*------------------------------
	contactBox
------------------------------*/
#contact .contactBox {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 10px 120px;
}
#contact .contactBox dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
#contact .contactBox dl.textarea {
  display: flex;
  justify-content: space-between;
	align-items: flex-start;
  margin-bottom: 80px;
}
#contact .contactBox dl.textarea dt {
  margin-top: 12px;
}
	@media (max-width: 700px) {
		#contact .contactBox {
		  max-width: 100%;
			box-sizing: border-box;
		  padding: 60px 10px 80px;
		}
		#contact .contactBox dl {
		  display: block;
		  margin-bottom: 20px;
		}
		#contact .contactBox dl.textarea {
			display: flex;
			flex-direction: column;
		  justify-content: flex-start;
		  align-items: flex-start;
		  margin-bottom: 80px;
		}
	}
/*------------------------------*/
#contact .contactBox dt {
	vertical-align: middle;
}
#contact .contactBox dt span.mandatory,
#contact .contactBox dt span.textarea_mandatory {
  background-color: #535353;
  color: #fff;
  box-sizing: border-box;
  padding: 5px 15px 7px;
  margin-right: 5px;
  font-size: 0.8em;
}
#contact .contactBox dd {
	width: 560px;
}
#contact .contactBox dd input,
#contact .contactBox dd textarea {
	width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 16px;
  border: solid 1px #d8d8d8;
	-webkit-appearance: none;
	appearance: none;
}
#contact .contactBox dd input {
	line-height: 2.5em;
}
#contact .contactBox dd textarea {
	resize: none;
	height: 200px;
	line-height: 2.5em;
}
	@media (max-width: 700px) {
		#contact .contactBox dt {
		  margin-bottom: 15px;
		}
		#contact .contactBox dt span.mandatory,
		#contact .contactBox dt span.textarea_mandatory {
			padding: 3px 15px 5px;
			margin-right: 5;
		}
		#contact .contactBox dd {
		  width: 100%;
		}
		#contact .contactBox dd input,
		#contact .contactBox dd textarea {
			display: block;
		  width: 100%;
		}
	}
/*------------------------------*/
#contact .contactBox #submitBtn {
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
}
#contact .contactBox #submitBtn button {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
  color: #fff;
	font-size: 16px;
  background-color: #000;
  border: solid 1px #000;
  padding: 24px 140px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#contact .contactBox #submitBtn button:hover {
  color: #2f2f2f;
  background-color: #fff;
  border: solid 1px #d8d8d8;
	cursor: pointer;
}
	@media (max-width: 700px) {
		#contact .contactBox #submitBtn {
		  width: 100%;
		}
		#contact .contactBox #submitBtn button {
			width: 100%;
			padding: 24px 0;
		}
	}
/*------------------------------
	contents
------------------------------*/
/*--------------ボタンマウスオーバー-------------*/
#contents .btnBox {
  max-width: 250px;
  margin: 0 auto;
  border: solid 1px #000;
  cursor: pointer;
  text-align: center;
  background: -webkit-linear-gradient(180deg,#fff,#5e5e5e,#000);
  background: -webkit-linear-gradient(right,#fff,#5e5e5e,#000);
  background: linear-gradient(270deg,#fff,#fff,#000,#000);
  background-position: 1% 50%;
  background-size: 300% 300%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#contents .btnBox a {
  display: block;
  width: 100%;
  padding: 25px 0;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#contents .btnBox:hover {
  background-position: 99% 50%;
  border: solid 1px #000;
}
#contents .btnBox a:hover {
    color: #000;
}
#contents .btnBox.btnBoxSite a{
  font-size: 14px;
}

/*------------------------------*/
#contact .errorText{
	padding: 20px 30px;
	background-color: #fcf6f6;
	border: solid 1px #ea3030;
	border-radius: 10px;
	margin-bottom: 40px;
}
#contact .errorText ul{
	width: 100%;
}
#contact .errorText li{
	line-height: 1.8;
	font-size: 14px;
	color: #ea3030;
	background-color: #fcf6f6;
}
@media screen and (min-width : 701px) and (max-width : 850px) {
	#contact .errorText{
		padding: 16px 20px;
		border-radius: 10px;
		margin-bottom: 34px;
	}
	#contact .errorText li{
		line-height: 1.8;
		font-size: 14px;
	}
}
@media screen and (max-width : 700px) {
	#contact .errorText{
		padding: 12px 10px;
		border-radius: 8px;
		margin-bottom: 24px;
	}
	#contact .errorText li{
		line-height: 1.8;
		font-size: 12px;
	}
}
/*------------------------------
  confirmのみ
------------------------------*/
#contact .contactBox.confirmBox p.confirmTxt {
  margin-bottom: 60px;
}
#contact .contactBox.confirmBox dl {
  margin-bottom: 40px;
}
#contact .contactBox.confirmBox dl.textarea {
  margin-bottom: 120px;
}
#contact .contactBox dl.textarea dt.mt0 {
  margin-top: 0px;
}
#contact .contactBox.confirmBox #submitBtn_two {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
#contact .contactBox.confirmBox #submitBtn_two button {
  max-width: 400px;
  color: #fff;
	font-size: 16px;
  background-color: #000;
  border: solid 1px #000;
  padding: 24px 120px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
  margin-right: 60px;
}
#contact .contactBox.confirmBox #submitBtn_two button.resetBtn {
  background-color: #9f9f9f;
  border: solid 1px #9f9f9f;
}
#contact .contactBox.confirmBox #submitBtn_two button:last-of-type {
  margin-right: 0px;
}
#contact .contactBox.confirmBox #submitBtn_two button:hover {
  color: #2f2f2f;
  background-color: #fff;
  border: solid 1px #d8d8d8;
  cursor: pointer;
}
	@media (max-width: 700px) {
		#contact .contactBox.confirmBox p.confirmTxt {
		  margin-bottom: 40px;
			font-size: 16px;
		}
		#contact .contactBox.confirmBox dl {
		  margin-bottom: 40px;
		}
		#contact .contactBox.confirmBox dl.textarea {
		  margin-bottom: 80px;
		}
		#contact .contactBox.confirmBox #submitBtn_two {
		  display: flex;
			flex-direction: column;
		  justify-content: center;
		  align-items: center;
		  max-width: 100%;
		  margin: 0 auto;
		}
		#contact .contactBox.confirmBox #submitBtn_two button {
		  width: 100%;
		  color: #fff;
		  padding: 24px auto;
		  -webkit-transition: all 0.3s ease-out;
		  transition: all 0.3s ease-out;
		  cursor: pointer;
		  margin-right: 0px;
			margin-bottom: 30px;
		}
		#contact .contactBox.confirmBox #submitBtn_two button:last-of-type {
		  margin-bottom: 0px;
		}
	}

/*------------------------------
	thanksのみ
------------------------------*/
#contact .contactBox.thanks {
  position: relative;
  text-align: center;
}
#contact .contactBox p.bold {
  font-size: 20px;
  font-weight: bolder;
  margin-bottom: 40px;
}
#contact .contactBox .back {
  max-width: 460px;
  margin: 80px auto 0;
  cursor: pointer;
}
#contact .contactBox .back a {
	display: block;
	width: 100%;
  color: #fff;
  background-color: #000;
  border: solid 1px #000;
  padding: 24px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
#contact .contactBox .back a:hover {
  color: #2f2f2f;
  background-color: #fff;
  border: solid 1px #d8d8d8;
  cursor: pointer;
}
	@media (max-width: 700px) {
		#contact .contactBox p {
			font-size: 14px;
			line-height: 1.5;
		}
		#contact .contactBox p.bold {
		  font-size: 20px;
		  font-weight: bolder;
		  margin-bottom: 20px;
		}
		#contact .contactBox .back {
		  max-width: 100%;
		  margin: 60px auto 0;
		  cursor: pointer;
		}
		#contact .contactBox .back a {
		  padding: 30px 0;
		  -webkit-transition: all 0.3s ease-out;
		  transition: all 0.3s ease-out;
		  text-decoration: none;
		}
	}
