@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;
}
@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: 20px;
}
#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;
  }
}



/*------------------------------------------------------------
	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;
}
@media only screen and (max-width:768px) {
  #contents .color input[type="color"]{
    width: 40px;
    height: 40px;
  }
  #contents .color input[type="text"]{
    height: 40px;
  }
  .lil-gui .children .controller.color .widget .display{
    height: 40px;
  }
  .lil-gui .children .controller.number.hasSlider .widget input[type=number]{
    width: 40px !important;
  }
}


/*------------------------------------------------------------
	bgimgBox
------------------------------------------------------------*/
.bgimgBox{
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.bgimgBox canvas{
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  vertical-align: top;
  display:none;
}
.bgimgBox label{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.bgimgBox label input{
  display: none !important;
}


/*------------------------------------------------------------
	btnImgBox
------------------------------------------------------------*/
.btnImgBox{
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  width: 240px;
  height: 240px;
}
.btnImgBox img{
  width: 100%;
}
.btnImgBox canvas{
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  vertical-align: top;
  display:none;
}
.btnImgBox label{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.btnImgBox label input{
  display: none !important;
}
@media only screen and (max-width:768px) {
  .btnImgBox{
    width: 140px;
    height: 140px;
  }
}


/*------------------------------------------------------------
	bgImgCol
------------------------------------------------------------*/
.bgImgCol{
  display: flex;
  gap: 10px;
}
@media only screen and (max-width:768px) {
  .bgImgCol{
    flex-wrap: wrap;
    gap: 20px;
  }
  .bgImgCol .col:nth-child(1){
    width: 100%;
  }
  .bgImgCol .col:nth-child(2){
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  .bgImgCol .col:nth-child(2) .bgimgBox{
    width: 50%;
    max-width: 240px;
    margin: 0 auto;
  }
}


/*------------------------------------------------------------
	colorBox
------------------------------------------------------------*/
.colorBox{
  display: flex;
  gap: 25px;
}
.colorBox .col{
  display: flex;
  gap: 10px;
  align-items: center;
}
.colorBox .col input[type="text"]{
  width: 100px !important;
  margin-top: 0 !important;
  padding: 0 20px !important;
}
.colorBox .col p{
  line-height: 1;
}
.colorBox .col .fontStyle{
  display: flex;
  align-items: center;
}
.colorBox .col .fontStyle li{
  font-size: 20px;
  font-weight: bold;
}
.colorBox .col .fontStyle li input{
  display: none;
}
.colorBox .col .fontStyle li label{
  display: block;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 4px;
  cursor: pointer;
	font-family: "Noto Sans CJK JP Bold","MS Pゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
.colorBox .col .fontStyle li :checked + label{
  background: #e2e2e2;
}
.colorBox .col .fontStyle li.italic label{
  font-style: italic;
}
.colorBox .col .fontStyle li.underline label{
  text-decoration: underline;
}
.colorBox .col .selecBox select{
    display: block;
    height: 50px;
    margin: 0;
    padding: 0 13px;
    font-size: 16px;
    line-height: 1.5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    color: #333;
}
@media only screen and (max-width:1460px) {
  .colorBox{
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media only screen and (max-width:768px) {
  .colorBox{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  .colorBox .col{
    width: 100%;
  }
  .colorBox .col p{
    white-space: nowrap;
    width: 70px;
  }
  .colorBox .col p + div{
    width: 100%;
  }
  .colorBox .col .selecBox select{
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
}


/*------------------------------------------------------------
	formWrap
------------------------------------------------------------*/
#formWrap table{
  border-spacing: 0px 10px;
}
#formWrap table th{
  padding-right: 10px;
  white-space: nowrap;
  vertical-align: top;
  padding-top: 25px;
}
#formWrap table td{
  padding-top: 10px;
}
#formWrap table .paddingMin th{
  padding-top: 16px;
}
#formWrap table .paddingMin td{
  padding-top: 0;
}
#formWrap .formBox input{
  margin-top: 0;
}
#formWrap .formBox textarea{
  margin-top: 0;
  min-height: 150px;
}
.spOnly{
  display: none;
}
@media only screen and (max-width:768px) {
  #formWrap table{
    display: block;
  }
  #formWrap table th{
    display: block;
    padding-top: 18px;
    padding-right: 0;
  }
  #formWrap table td{
    display: block;
    padding-top: 5px;
  }
  #formWrap table .paddingMin th{
    padding-top: 9px;
  }
  .spOnly{
    display: block;
  }
  .pcOnly{
    display: none !important;
  }
}