@charset "UTF-8";
html{
  height: 100%;
}
body{
	*font-size: small;
	*font: x-small;
	font-size: 14px;
	line-height: 1.5;
	color: #4D4D4D;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	width: 100%;
  height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
}
body *,
body *::before,
bory *::after{
  box-sizing: border-box;
}
body.over{overflow:hidden;}
h1,h2,h3,h4,h5,p,ul,ol,li,img,table,th,td,dl,dt,dd{margin: 0px;padding: 0px;font-size: 14px;}
li{list-style-type: none;}
table{border-collapse: collapse;}
a{cursor: pointer;color: #4D4D4D;text-decoration: none;}
img{vertical-align: top;border: 0;max-width: 100%;height: auto;}
a img{vertical-align: bottom;-webkit-backface-visibility: hidden;-ms-backface-visibility: hidden;backface-visibility: hidden;}
input {-webkit-appearance: none;-moz-appearance: none;appearance: none;border-radius: 0;}
input[type="text"] {line-height: 1.5;}
button {-webkit-appearance: none;-moz-appearance: none;appearance: none;padding: 0;border: none;background-color: transparent;cursor: pointer;}
select {box-sizing: border-box;white-space: nowrap;}
input[type="text"]:focus,select:focus{outline: 0;}
#wrap {
  position: relative;
  text-align: left;
  overflow: hidden;
  height: 100%;
  background: #f1eeea;
}
.spOnly{
  display: none;
}
@media only screen and (max-width:768px) {
.spOnly{
  display: block;
}
}


/*------------------------------------------------------------
	header
------------------------------------------------------------*/
header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 a{
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
}
header ul{
  font-size: 0;
}
header ul li{
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
header ul li button{
	display: inline-block;
	height: 40px;
  width: auto;
  padding: 0 25px;
	border: none;
	border-radius: 4px;
	background: #4D4D4D;
	color: #fff;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
}
header ul li #publicBtn{
	display: none;
}
@media only screen and (max-width:768px) {
header{
  height: 50px;
  padding: 0 50px 0 20px;
}
header h1 a{
  font-size: 14px;
}
header ul li button{
	height: 30px;
  padding: 0 12px;
	font-size: 12px;
	line-height: 30px;
}
}


/*------------------------------------------------------------
	menuBtn
------------------------------------------------------------*/
#menuBtn{
  display: none;
}
@media only screen and (max-width:768px) {
#menuBtn{
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#menuBtn::before,
#menuBtn::after{
  content: "";
  width: 22px;
  height: 2px;
  background: #4D4D4D;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform .2s;
}
#menuBtn::before{
  transform: translate(-50%,-8px);
}
#menuBtn::after{
  transform: translate(-50%,6px);
}
#menuBtn.active::before{
  transform: translate(-50%,-1px) rotate(45deg);
}
#menuBtn.active::after{
  transform: translate(-50%,-1px) rotate(-45deg);
}
#menuBtn span{
  font-size: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: #4D4D4D;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#menuBtn.active span{
  display: none;
}
}


/*------------------------------------------------------------
	menu
------------------------------------------------------------*/
#menu{
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 11;
  width: 260px;
  height: calc(100% - 60px - 60px);
  background: #4D4D4D;
  overflow-y: auto;
  overflow-x: hidden;
}
#menu ul{
  width: 260px;
}
#menu ul li a{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .08em;
  color: #ccc;
  padding: 15px 0 15px 20px;
}
#menu ul li a.current{
  background: #717171;
  color: #fff;
}
#menu ul li ul li a.current{
  background: #949494;
}
#menu > ul > li > a::before{
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
#menu > ul > li.home > a::before{background-image: url("../img/common/icon_menu_home.svg");}
#menu > ul > li.product > a::before{background-image: url("../img/common/icon_menu_product.svg");}
#menu > ul > li.asset > a::before{background-image: url("../img/common/icon_menu_asset.svg");}
#menu > ul > li.stage > a::before{background-image: url("../img/common/icon_menu_stage.svg");}
#menu > ul > li.ui > a::before{background-image: url("../img/common/icon_menu_ui.svg");}
#menu > ul > li.btn > a::before{background-image: url("../img/common/icon_menu_btn.svg");}
#menu > ul > li.btn > a.active::before{transform: rotate(180deg);}
#menu ul li ul{
  display: none;
  padding-left: 28px;
}
#menu ul li a.current + ul{
  display: block;
  background: #717171;
}
#menu ul li ul{
  padding: 0;
}
#menu ul li.asset ul li a::before{
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
#menu ul li.asset ul li:nth-child(1) a::before{background-image: url("../img/common/icon_menu_asset_01.svg");}
#menu ul li.asset ul li:nth-child(2) a::before{background-image: url("../img/common/icon_menu_asset_02.svg");}
#menu ul li.asset ul li:nth-child(3) a::before{background-image: url("../img/common/icon_menu_asset_03.svg");}
#menu ul li.asset ul li:nth-child(4) a::before{background-image: url("../img/common/icon_menu_asset_04.svg");}
#menu ul li.asset ul li:nth-child(5) a::before{background-image: url("../img/common/icon_menu_asset_05.svg");}
#menu ul li.asset ul li:nth-child(6) a::before{background-image: url("../img/common/icon_menu_asset_06.svg");}
#menu ul li.asset ul li:nth-child(7) a::before{background-image: url("../img/common/icon_menu_asset_07.svg");}
#menu ul li.asset ul li:nth-child(8) a::before{background-image: url("../img/common/icon_menu_asset_08.svg");}
#menu ul li ul li a{
  font-size: 13px;
  padding: 9px 20px;
}
#menu ul li ul li a span{
  display: block;
  width: calc(100% - 28px);
}
#menuBg{
  display: none;
}
/* close */
#menu{
	transition: width .4s cubic-bezier(.210, .60, .350, 1);
}
#menu.animeNone{
	transition: width 0s cubic-bezier(.210, .60, .350, 1);
}
#menu.close{
  width: 56px;
}
#menu ul{
	transition: width .4s cubic-bezier(.210, .60, .350, 1);
}
#menu.animeNone ul{
	transition: width 0s cubic-bezier(.210, .60, .350, 1);
}
#menu ul li a span{
	transition: opacity .4s cubic-bezier(.210, .60, .350, 1);
}
#menu.animeNone ul li a span{
	transition: opacity 0s cubic-bezier(.210, .60, .350, 1);
}
#menu.close ul li a span{
  opacity: 0;
}
@media only screen and (max-width:1024px) {
#menu{
  width: 180px;
}
#menu ul{
  width: 180px;
}
#menu ul li ul li a{
  font-size: 12px;
  padding: 9px 20px;
}
}
@media only screen and (max-width:768px) {
#menu{
  width: 260px;
  height: calc(100% - 100px);
  position: fixed;
  left: -260px;
  top: 50px;
  z-index: 101;
  transform: translateX(0);
	transition: transform .6s cubic-bezier(.210, .60, .350, 1);
}
#menu.active{
  transform: translateX(100%);
}
#menu ul{
  width: 260px;
}
#menu ul li a{
  font-size: 14px;
  padding: 10px 0 10px 20px;
}
#menu ul li ul li a{
  font-size: 12px;
}
#menuBg{
  display: none;
  width: 100%;
  height: calc(100% - 60px);
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 100;
  background: rgba(0,0,0,.7);
}
#menuBg{
  display: none;
}
/* close */
#menu > ul > li.btn{
  display: none;
}
#menu.close{
  width: 260px;
}
#menu.close ul li a span{
  opacity: 1;
}
}


/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer{
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 102;
  height: 60px;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
footer p{
  font-size: 12px;
  text-align: left;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
footer{
  padding: 0 20px;
  height: 50px;
}
footer p{
  font-size: 10px;
  line-height: 1.2;
}
}


/*------------------------------------------------------------
	container
------------------------------------------------------------*/
#container{
  height: 100%;
  padding: 60px 0 60px 260px;
	transition: padding-left .4s cubic-bezier(.210, .60, .350, 1);
}
#container.animeNone{
	transition: padding-left 0s cubic-bezier(.210, .60, .350, 1);
}
/* close */
#container.close{
  padding: 60px 0 60px 56px;
}
@media only screen and (max-width:1024px) {
#container{
  height: 100%;
  padding: 60px 0 60px 180px;
}
/* close */
#container.close{
  padding: 60px 0 60px 56px;
}
}
@media only screen and (max-width:768px) {
#container{
  height: 100%;
  padding: 50px 0 50px;
}
/* close */
#container.close{
  padding: 60px 0 50px;
}
}


/*------------------------------------------------------------
	dashboard
------------------------------------------------------------*/
/*#dashboard{
  max-width: 830px;
  margin: 0 auto;
}
#dashboard .col3{
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 8px;
}
#dashboard .col{
  width: calc(25% - 6px);
  border-radius: 4px;
  overflow: hidden;
}
#dashboard .col a{
  display: block;
  height: 100%;
  background: #fff;
}
#dashboard .col .img{
  height: 190px;
  background: #4D4D4D;
}
#dashboard .col .txt{
  padding: 15px 20px 20px;
}
#dashboard .col .txt h3{
  font-size: 16px;
}
#dashboard .col .txt p{
  font-size: 12px;
  line-height: 1.8;
  margin-top: 3px;
}*/
@media only screen and (max-width:1023px) {
/*#dashboard .col{
  width: calc(50% - 4px);
}
}
@media only screen and (max-width:768px) {
#dashboard .col3{
  margin-top: 30px;
  gap: 8px;
}
#dashboard .col .img{
  height: 120px;
  background: #4D4D4D;
}*/
}
#homeList{
  display: flex;
  width: calc(100% + 10px);
}
#homeList .box{
  padding-right: 10px;
}
#homeList .box:nth-child(1),
#homeList .box:nth-child(3){
  width: 25%;
}
#homeList .box:nth-child(2){
  width: 50%;
}
#homeList .box .col{
  position: relative;
  display: block;
  height: 100%;
  background: #4D4D4D;
  color: #fff;
  padding: 25px 20px;
  margin-top: 10px;
  border-radius: 4px;
}
#homeList .box:nth-child(1) .col,
#homeList .box:nth-child(3) .col{
  margin-top: 0;
  display: flex;
  align-items: center;
}
#homeList .box:nth-child(2) .col{
  padding-left: 70px;
  height: auto;
}
#homeList .box .col2{
  display: flex;
}
#homeList .box .col2 .col{
  width: calc(50% - 5px);
  margin-right: 10px;
}
#homeList .box:nth-child(2) .col2:first-child .col{
  margin-top: 0;
}
#homeList .box .col2 .col:nth-child(2n){
  margin-right: 0;
}
#homeList .box:nth-child(2) .col img{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: auto;
}
#homeList .box .col h3{
  font-size: 16px;
}
#homeList .box .col h3 img{
  width: 35px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}
#homeList .box .col p{
  font-size: 13px;
  margin-top: 10px;
}
@media only screen and (max-width:1024px) {
#homeList{
  display: block;
}
#homeList .box{
  padding-right: 0;
}
#homeList .box:nth-child(1),
#homeList .box:nth-child(3){
  width: 100%;
  margin-top: 10px;
}
#homeList .box:nth-child(2){
  width: 100%;
  margin-top: 10px;
}
}


/*------------------------------------------------------------
	contents
------------------------------------------------------------*/
#contents{
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding: 60px 80px 100px;
}
@media only screen and (max-width:768px) {
#contents{
  padding: 20px 20px 60px;
}
}


/*------------------------------------------------------------
	ttl
------------------------------------------------------------*/
.ttl h1{
  font-size: 20px;
  margin-top: 10px;
}
.ttl h1:first-child{
  margin-top: 0;
}
.ttl p{
  font-size: 14px;
  line-height: 2;
  margin-top: 5px;
}
.ttl .subTtl{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 30px;
  font-weight: bold;
}
.ttl .subTtl:first-child{
  margin-top: 0;
}
@media only screen and (max-width:768px) {
.back + .ttl h1{
  padding-left: 40px;
}
.ttl h1{
  font-size: 18px;
}
.ttl p{
  font-size: 13px;
}
}


/*------------------------------------------------------------
	panel
------------------------------------------------------------*/
.panel{
  font-size: 0;
  margin-top: 40px;
  width: calc(100% + 120px);
  position: relative;
  left: -60px;
}
.panel ul{
  font-size: 0;
}
.panel ul li{
	display: inline-block;
	width: 240px;
	margin: 20px 20px 0 0;
	vertical-align: top;
}
.panel ul li a{
  display: block;
  font-size: 13px;
}
.panel ul li .thumbnail{
  margin-bottom: 5px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.panel ul li a strong{
  font-weight: normal;
}
.panel ul li a strong::after{
  content: ".";
}
@media only screen and (max-width: 768px){
.panel{
  margin-top: 10px;
  width: 100%;
  left: 0;
}
.panel ul{
  position: relative;
  left: -5px;
  width: calc(100% + 10px);
}
.panel ul li{
  width: calc(25% - 10px);
  margin: 20px 5px 0 5px;
}
.panel ul li a{
  font-size: 12px;
}
}
@media only screen and (max-width: 600px){
.panel ul li{
  width: calc(33.333% - 10px);
}
}


/*------------------------------------------------------------
	panel切り替え
------------------------------------------------------------*/
#listBtn{
  font-size: 0;
  margin-top: 10px;
}
#listBtn li{
  display: inline-block;
  margin-right: 5px;
  cursor: pointer;
}
.panel .cover{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
}
.panel.list2{
  margin-top: 50px;
}
.panel.list2 ul li{
  width: calc(33.333% - 6.666px);
  margin: 10px 10px 0 0;
}
.panel.list2 ul li:nth-child(3n){
  margin-right: 0;
}
.panel.list2 ul li a{
  display: flex;
  align-items: center;
  word-break: break-all;
}
.panel.list2 ul li a .thumbnail{
  width: 60px;
  white-space: nowrap;
  margin-bottom: 0;
}
.panel.list2 ul li a strong{
  padding-left: 10px;
}
.panel.list2 ul li a span{
  flex: 1;
}
@media only screen and (max-width:768px) {
.panel.list2{
  margin-top: 20px;
}
.panel.list2 ul{
  left: 0;
  width: 100%;
}
.panel.list2 ul li a .thumbnail{
  width: 50px;
}
.panel.list2 ul li,
.panel.list2 ul li:nth-child(3n){
  width: calc(50% - 5px);
  margin: 10px 10px 0 0;
}
.panel.list2 ul li:nth-child(2n){
  margin-right: 0;
}
}


/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
#contents .back{
  position: absolute;
  left: 25px;
  top: 55px;
}
#contents .back a{
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/common/icon_back.svg");
  background-size: 100%;
  font-size: 0;
}
@media only screen and (max-width: 768px){
#contents .back{
  left: 20px;
  top: 20px;
}
#contents .back a{
  width: 30px;
  height: 30px;
}
}
#contents button{
  background: #4D4D4D;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 4px;
}
#contents button:disabled{
  background-color: #717171;
}
#contents label.file{
  display: block;
  background: #4D4D4D;
  color: #fff;
  font-weight: bold;
  height: 40px;
  width: 100%;
  line-height: 40px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}
#contents label.file input[type="file"]{
  display: none;
}

#contents input[type="text"]{
  border: none;
  background: #f2f2f2;
  color: #4D4D4D;
  font-size: 14px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  border-radius: 4px;
  box-sizing: border-box;
}
#contents input[type="text"]::placeholder {
  color: #b3b3b3;
}
#contents .price span,
#contents .min span{
  width: 10px;
}
#contents .price input[type="text"]{
  width: calc(100% - 20px);
  margin-left: 10px;
}
#contents textarea{
  display: block;
  border: none;
  background: #f2f2f2;
  height: 160px;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
}
#contents textarea::placeholder {
  color: #b3b3b3;
}
#contents input[type="color"]{
  width: 100px;
  height: 40px;
  border-radius: 4px;
}
#contents .selectBtn{
	position: relative;
}
#contents .selectBtn::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #4D4D4D;
	border-right: 2px solid #4D4D4D;
	transform: rotate(135deg);
	margin-top: -6px;
}
#contents .selectBtn select{
  height: 40px;
  width: 100%;
  background: #f2f2f2;
  font-size: 14px;
  padding: 0 40px 0 10px;
  border-radius: 4px;
	border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
#contents .radioBtn{
  font-size: 0;
}
#contents .radioBtn li{
	position: relative;
	cursor: pointer;
	min-height: 40px;
  display: inline-block;
  margin-right: 30px;
}
#contents .radioBtn li input[type="radio"]{
	display: none;
}
#contents .radioBtn input[type="radio"] + label{
	display: block;
	padding: 13px 0 0 50px;
	line-height: 1;
	cursor: pointer;
}
#contents .radioBtn input[type="radio"] + label::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
  background: #f2f2f2;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
#contents .radioBtn input[type="radio"] + label::after{
	content: "";
	display: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 10px;
	background: #4D4D4D;
}
#contents .radioBtn input[type="radio"]:checked + label::after{
	display: block;
}
@media only screen and (max-width:768px) {
#contents input[type="text"]{
  height: 40px;
  padding: 0 15px;
}
#contents .selectBtn select{
  height: 40px;
  font-size: 14px;
  padding: 0 40px 0 15px;
}
#contents button{
  height: 40px;
}
}
.registerBox{
  display: flex;
  max-width: 1000px;
  margin: 40px auto 0;
  justify-content: space-between;
}
.registerBox .img,
.registerBox .preview{
  width: 36%;
}
.registerBox .preview #scene,
.registerBox .img #scene{
  position: relative;
  padding-top: 100%;
}
.registerBox .preview #scene canvas,
.registerBox .img #scene canvas{
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100% !important;
  max-height: 100% !important;
}
.registerBox .img img{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.registerBox .txt{
  width: 60%;
}
.registerBox .txt form > p{
  margin-top: 30px;
}
.registerBox .txt form > p:first-child{
  margin-top: 0;
}
.registerBox .txt table{
  width: 100%;
  text-align: left;
}
.registerBox .txt table th,
.registerBox .txt table td{
  padding-bottom: 10px;
  font-size: 14px;
  vertical-align: top;
}
.registerBox .txt .boxAdd table tr:last-child th,
.registerBox .txt .boxAdd table tr:last-child td{
  padding-bottom: 20px;
}
.registerBox .txt table th{
  white-space: nowrap;
  padding-top: 11px;
}
@media only screen and (max-width: 1179px){
.registerBox{
  display: block;
}
.registerBox .img,
.registerBox .preview{
  width: 300px;
  margin: 0 auto;
}
.registerBox .txt{
  width: 100%;
  margin-top: 40px;
}
}
@media only screen and (max-width:768px) {
.registerBox{
  margin: 20px auto 0;
}
.registerBox .img,
.registerBox .preview{
  width: 260px;
}
}


/*------------------------------------------------------------
	static_object
------------------------------------------------------------*/
.registerBox .txt .box{
  background: #fff;
  border-radius: 8px;
  padding: 30px 30px 20px 30px;
}
.registerBox .txt .box + .box{
  margin-top: 30px;
}
.registerBox .txt .boxAdd > table{
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}
.registerBox .txt p + .box{
  margin-top: 10px;
}
#static_object .txt button + table tr:last-child td{
  border-bottom: none;
}
#static_object .txt button + table tr:first-child th,
#static_object .txt button + table tr:first-child td{
  border-top: 1px solid #b3b3b3;
  padding-top: 20px;
}
#static_object .txt table:last-child{
  border-bottom: none;
}
#static_object .txt table:first-child tr:first-child td{
  padding-top: 0;
}
#static_object .txt table th{
  width: 120px;
  white-space: nowrap;
}
#static_object .txt table td{
  width: auto;
  padding-left: 0;
}
#static_object .txt table td + td{
  padding: 0 0 20px 20px;
  width: 70px;
}
#static_object .txt table td + td.culmValue{
  padding: 0 0 20px 20px;
  width: 140px;
}
#static_object .txt .min input[type="text"]{
  width: calc((100% - 80px)/3); /* (td幅 - span幅)/3 */
  height: 40px;
}
#static_object .txt .min span{
  margin: 0 10px;
  display: inline-block;
  width: 10px;
  text-align: center;
}
#static_object .txt .min span:first-child{
  margin-left: 0;
}
#static_object .txt button.addBtn,
#static_object .txt button.delBtn{
  width: 50px;
}
#static_object .txt button.addBtn{
  display: block;
  margin: 0 0 0 auto;
}
#static_object .txt table td table td{
  width: auto;
  padding: 0 0 10px 0;
  border-bottom: none !important;
}
#static_object .txt table td table td:first-child{
  white-space: nowrap;
  padding-right: 10px;
  vertical-align: middle;
}
#static_object .txt table td table tr:last-child td{
  padding-bottom: 0;
}
#static_object .txt table td .col2{
  display: flex;
  justify-content: space-between;
}
#static_object .txt table td .col2 .selectBtn{
  width: calc(100% - 70px);
}
@media only screen and (max-width: 768px){
#static_object .txt table th{
  width: 90px;
  font-size: 13px;
}
#static_object .txt table td + td{
  padding: 0 0 20px 10px;
  width: 50px;
}
#static_object .txt .min input[type="text"]{
  height: 30px;
  padding: 0 10px;
}
#static_object .txt table td table td:first-child{
  padding-right: 15px;
}
#static_object .txt table td .col2 .selectBtn{
  width: calc(100% - 50px);
}
#static_object .txt button.addBtn,
#static_object .txt button.delBtn{
  width: 40px;
  height: 40px;
}
}


/*------------------------------------------------------------
	material
------------------------------------------------------------*/
#material .img{
  position: relative;
}
#material .img canvas{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#material .dg.main {
  width: 100%!important;
}
#material #colorGUI li.title{
  display: none;
}
#material .dg li:not(.folder) {
  height: auto !important;
  background: transparent !important;
  border: none !important;
}
#material .close-button.close-bottom {
  display: none;
}
#material #colorGUI .c input[type=text]{
  background: #4D4D4D !important;
  display: inline-block;
  width: 100px !important;
  height: 27px!important;
  float: none !important;
  color: #fff !important;
  text-shadow: none !important;
  margin: 0 !important;
}
#material .dg .selector {
  display: block !important;
  position: relative !important;
  margin: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  width: 94px;
  height: 98px;
  box-shadow: none !important;
  z-index: 1 !important;
  /* border: none!important; */
}

#material .dg .cr.number {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  height: auto;
  line-height: inherit;
  overflow: visible;
}
#material .dg .cr.number input[type=text] {
  display: none;
}
#material .dg .c {
  width: 100% !important;
}
#material .dg .c .slider {
  background: #b3b3b3;
  width: 100%;
  float: none;
  margin: 0;
  height: 8px;
  cursor: default;
}
#material .dg .c .slider-fg {
  background: #4D4D4D;
  position: relative;
}
#material .dg .c .slider-fg::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: #4D4D4D;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%,-50%);
  box-shadow: 7px 7px 5px rgb(0 0 0 / 25%);
  cursor: pointer;
}
#material .registerBox .txt table th{
width: 120px;
}
#material .registerBox .txt table #textureRec td{
  width: auto;
  padding-left: 0;
  overflow: hidden;
}
#material .registerBox .txt table #textureRec td > div{
}
#material .registerBox .txt table #textureRec p{
  font-weight: bold;
}
#material .registerBox .txt table #textureRec .imageDetail{
  margin-top: 10px;
}
#material .registerBox .txt table #textureRec #texture{
  float: left;
}
#material .registerBox .txt table #textureRec #bump{
  float: right;
}
@media only screen and (max-width: 1350px){
#material .registerBox .txt table #textureRec #texture{
  float: none;
}
#material .registerBox .txt table #textureRec #bump{
  float: none;
  margin-top: 20px;
}
}


/*--------------------------------------
imageDetail
--------------------------------------*/
.imageDetail{
  width: 160px;
  height: auto;
}
.imageDetail .imageBox{
  position: relative;
  width: 100%;
  /* height: 160px; */
}
.imageDetail .imageBox .img{
  width: 100%;
}
.imageDetail .imageBox .img.active{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.imageDetail .imageBox .img.active + .canvasScreen{
  height: auto;
  position: relative;
}
.imageDetail .imageBox .img img{
  width: 100%;
}
.imageDetail .imageBox canvas{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.imageDetail .imageBox #imageThumb,
.imageDetail .imageBox #imageLarge,
.imageDetail .imageBox #imageMap{
  opacity: 0;
}
.imageDetail .imageBox label{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.imageDetail .imageBox label input{
  display: none;
}


/*------------------------------------------------------------
	fBtn
------------------------------------------------------------*/
#fBtn{
  position: fixed;
  right: 0;
  bottom: 60px;
  z-index: 10;
  height: 80px;
  width: calc(100% - 260px);
  background: #E6E6E6;
  padding: 0 80px;
  display: flex;
  align-items: center;
}
#fBtn .inner{
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
#fBtn .inner .col{
  width: 57.292%;
  margin: 0 0 0 auto;
}
/* close */
#fBtn{
	transition: width .4s cubic-bezier(.210, .60, .350, 1);
}
.close #fBtn{
  width: calc(100% - 56px);
}
@media only screen and (max-width: 1024px){
#fBtn{
  width: calc(100% - 180px);
}
#fBtn .inner .col{
  width: 100%;
}
}
@media only screen and (max-width:768px) {
#fBtn{
  width: 100%;
  height: 60px;
  bottom: 50px;
  padding: 0 20px;
}
}
/*------------------------------------ 
genThumbBtn 
------------------------------------*/
#contents #genThumbBtn{
  background: #4D4D4D;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
#contents #genThumbBtn:disabled{
  background-color: #717171;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media only screen and (max-width: 768px){
  #contents #genThumbBtn{
    height: 40px;
    width: 100%;
    margin-top: 15px;
  }
}
/*------------------------------------ 
previewBtn 
------------------------------------*/
#contents #previewBtn{
  background: #4D4D4D;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
#contents #previewBtn:disabled{
  background-color: #717171;
  color: #fff;
  font-weight: bold;
  height: 40px;
  width: 100%;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 20px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media only screen and (max-width: 768px){
  #contents #previewBtn{
    height: 40px;
    width: 100%;
    margin-top: 15px;
  }
}

.lil-gui.root{
  width: 100%;
  padding: 10px 0;
}
#colorRec .lil-gui.root{
  padding: 0;

}
.lil-gui .controller{
  margin: 0;
  padding: 0;
  width: auto;
}
.lil-gui .color .widget{
  width: auto !important;
}
.pt0{
  padding-top: 0 !important;
}