@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 .ttl p{
  font-size: 13px;
}
#formWrap .ttl .colorBox{
  font-size: 0;
  margin-top: 30px;
  display: flex;
}
#formWrap .ttl .colorBox > .color{
  vertical-align: top;
  margin-right: 50px;
  display: flex;
  align-items: center;
}
#formWrap .ttl .colorBox > .color p{
  white-space: nowrap;
  padding-right: 20px;
}
#formWrap .detail{
  margin-top: 40px;
}
#formWrap #profile{
  margin-top: 60px;
}
#formWrap .detail h2{
  font-size: 20px;
  font-weight: bold;
}
#formWrap .detail p{
  margin-top: 15px;
  font-size: 13px;
}
#formWrap .detail p:first-child{
  margin-top: 0;
}
#formWrap .detail h2 + p{
  margin-top: 15px;
}
#formWrap .detail .box{
  margin-top: 30px;
  display: flex;
}
#formWrap .detail .box .boxImg{
  width: 240px;
}
#formWrap .detail .box .img{
  margin-top: 5px;
}
#formWrap .detail .box .img img{
  width: 100%;
}
#formWrap .detail .box .boxTxt{
  width: calc(100% - 240px);
  padding-left: 60px;
}
#formWrap .detail .box .boxTxt textarea{
  min-height: 240px;
}
@media only screen and (max-width:1180px) {
  #formWrap .detail .box .boxImg{
    width: 180px;
  }
  #formWrap .detail .box .boxTxt{
    width: calc(100% - 180px);
    padding-left: 40px;
  }
  #formWrap .ttl .colorBox > .color{
    display: block;
  }
}
@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;
	}
  #formWrap .ttl .colorBox{
    display: block;
    margin-top: 15px;
  }
  #formWrap .ttl .colorBox > .color{
    display: block;
    margin: 10px 0 0 0;
  }
  #formWrap #profile{
    margin-top: 30px;
  }
  #formWrap .detail h2{
    font-size: 18px;
  }
  #formWrap .detail p{
    margin-top: 10px;
  }
  #formWrap .detail h2 + p{
    margin-top: 5px;
  }
  #formWrap .detail .box{
    margin-top: 15px;
    display: block;
  }
  #formWrap .detail .box .boxImg{
    width: 100%;
  }
  #formWrap .detail .box .boxImg .img{
    width: 120px;
    display: inline-block;
    vertical-align: bottom;
  }
  #formWrap .detail .box .boxTxt{
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
  #formWrap .detail .box .boxTxt textarea{
    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;
}


/*------------------------------------------------------------
	color
------------------------------------------------------------*/
#contents .color input[type="color"]{
  width: 50px;
  height: 50px;
  border-radius: 4px;
}
#contents .color input[type="text"]{
  background: #fff;
  border: none;
  height: 50px;
  border-radius: 4px;
  padding: 0 20px;
  color: #3a4351;
  font-size: 13px;
}
.lil-gui.root{
  width: 100%;
  padding: 0 0 0;
}
#colorRec .lil-gui.root{
  padding: 0;
}
.lil-gui .controller{
  margin: 0;
  padding: 0;
  width: auto;
}
.lil-gui .color .widget{
  width: auto !important;
}
.lil-gui{
  background-color: transparent !important;
}
.lil-gui.root>.title{
  display: none;
  background-color: transparent;
}
.lil-gui .children .controller .name{
  display: none;
}
.lil-gui .children .controller.color .widget .display{
  width: 100% !important;
  height: 50px;
  border-radius: 4px;
}
.lil-gui .children .controller.color .widget input[type=text]{
  width: 100px !important;
  margin-left: 10px;
}
.lil-gui .children .controller.number.hasSlider .widget input[type=number]{
  width: 50px !important;
}
.lil-gui input,
.lil-gui .controller.number .slider{
  background-color: #707882;
}