@charset "UTF-8";

#formWrap .formBox input{
	display: block;
	width:   100%;
	height: 50px;
	margin: 0;
	padding: 13px;
	font-size: 16px;
	line-height: 1.5;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  margin-top: 5px;
}
#formWrap .formBox textarea{
	display: block;
	width: 100%;
  min-height: 200px;
	margin: 0;
	padding: 13px;
	font-size: 16px;
	line-height: 1.5;
	resize: vertical;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  margin-top: 5px;
}
#formWrap p:not(:first-child){
  margin-top: 15px;
}
#formWrap .detail p{
  font-size: 13px;
}
@media only screen and (max-width:768px) {
	#formWrap .formBox input{
		height: 44px;
		padding: 10px;
		font-size: 14px;
	}
	#formWrap .formBox textarea{
		padding: 10px;
		font-size: 14px;
    min-height: 120px;
	}
}

#contents .saveBtn{
	width: 220px;
	position: relative;
	float: right;
	margin-top: 50px;
}
#contents .saveBtn::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.7);
}
#contents .saveBtn.active::after{
	display: none;
}
#contents .saveBtn button{
	display: block;
	width: 100%;
	height: 50px;
	border: none;
	border-radius: 4px;
	background: #3A4351;
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
}
#contents .resetBtn{
  display: block;
  font-size: 0;
  width: 20px;
  height: 24px;
  background-image: url("/common/img/icon_resetBtn_01.svg");
  background-color: transparent;
  border: none;
  margin: 5px 0 0 auto;
  cursor: pointer;
}
@media only screen and (max-width:600px) {
	#contents .saveBtn{
		width:  100px;
	}
	#contents .saveBtn button{
		height: 44px;
		font-size: 14px;
	}
  #contents .resetBtn{
    margin: 0 0 0 10px;
    display: inline-block;
    vertical-align: bottom;
  }
}

#formWrap .detail .infoImg{
  margin: 20px 20px 0 0;
  display: inline-block;
  vertical-align: top;
  width: 240px;
}
#formWrap .detail .infoImg:last-child{
  margin-right: 0;
}
#information .detail .infoImg .img{
  margin-top: 5px;
}
@media only screen and (max-width:768px) {
  #formWrap .detail .infoImg{
    width: 120px;
    margin: 15px 10px 0 0;
  }
  #information .resetBtn{
    display: block;
    margin: 5px 0 0 auto;
  }
}
input[type="file"]{
  display:none;
}
.boxImg .img, .infoImg .img{
  position: relative;
  margin-top: 5px;
}
.boxImg .img, .infoImg .img img{
  width: 100%;
}
canvas{
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  vertical-align: top;
  display:none;
}
.boxImg label,.infoImg label{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}