@charset "UTF-8";
html{
  height: 100%;
}
body{
	*font-size: small;
	*font: x-small;
	font-size: 14px;
	line-height: 1.5;
	color: #4A5564;
	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: #3A4351;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: #f2f2f2;
}
.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;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.2;
}
header ul{
  font-size: 0;
}
header ul li{
  display: inline-block;
  vertical-align: top;
  text-align: right;
}
header ul li button{
	display: inline-block;
	height: 40px;
  width: auto;
  padding: 0 25px;
	border: none;
	border-radius: 6px;
	background: #4A5564;
	color: #fff;
	font-size: 12px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
  margin-left: 10px;
}
header ul li #publicBtn,
header ul li #rayoutBtn,
header ul li #cataloglink{
	display: none;
}
header ul li #publicBtn button,
header ul li #cataloglink button{
  background: linear-gradient(to right, #2e3192, #29abe2);
}
header ul{
  opacity: 0;
}
.load header ul{
  opacity: 1;
  transition: opacity .6s cubic-bezier(.210, .60, .350, 1);
}
@media only screen and (max-width:768px) {
header{
  height: 50px;
  padding: 0 50px 0 20px;
}
header h1{
  max-width: 120px;
}
header h1 a{
  font-size: 14px;
}
header ul{
  text-align: right;
  padding-left: 10px;
}
header ul li:first-child{
  display: block;
}
header ul li button{
	height: 18px;
  padding: 0 10px;
	font-size: 11px;
	line-height: 18px;
  vertical-align: top;
  margin: 3px 0 0 4px;
  border-radius: 4px;
}
header ul li p{
  font-size: 10px;
  line-height: 1;
}
}


/*------------------------------------------------------------
	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: #3a4351;
  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: #3a4351;
  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: #4a5564;
  overflow-y: auto;
  overflow-x: hidden;
  color: #ccc;
}
#menu ul{
  width: 260px;
}
#menu ul li a,
#menu > ul > li > span,
#menu ul li button{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .08em;
  color: #ccc;
  padding: 15px 0 15px 20px;
  cursor: pointer;
}
#menu ul li button:disabled{
  opacity: .4;
  pointer-events: none;
}
#menu ul li a.current{
  background: rgba(255,255,255,.1);
  color: #fff;
}
#menu > ul > li > a::before,
#menu > ul > li > span::before,
#menu > ul > li > button::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.link > a::before{background-image: url("../img/common/icon_menu_link.svg");}
#menu > ul > li.plane > a::before{background-image: url("../img/common/icon_menu_plane.svg");}
#menu > ul > li.ui > a::before{background-image: url("../img/common/icon_menu_ui.svg");}
#menu > ul > li.catalog > a::before{background-image: url("../img/common/icon_menu_catalog.svg");}
#menu > ul > li.manual > a::before{background-image: url("../img/common/icon_menu_manual.svg");}
#menu > ul > li.payment > a::before,
#menu > ul > li.payment > span::before,
#menu > ul > li.payment > button::before{
background-image: url("../img/common/icon_menu_payment.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: rgba(255,255,255,.1);
}
#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_09.svg");}
#menu ul li.asset ul li:nth-child(5) a::before{background-image: url("../img/common/icon_menu_asset_04.svg");}
#menu ul li.asset ul li:nth-child(6) a::before{background-image: url("../img/common/icon_menu_asset_05.svg");}
#menu ul li.asset ul li:nth-child(7) a::before{background-image: url("../img/common/icon_menu_asset_06.svg");}
#menu ul li.asset ul li:nth-child(8) a::before{background-image: url("../img/common/icon_menu_asset_07.svg");}
#menu ul li.asset ul li:nth-child(9) a::before{background-image: url("../img/common/icon_menu_asset_10.svg");}
#menu ul li ul li a{
  font-size: 13px;
  padding: 9px 20px 9px 33px;
}
#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);
  opacity: 0;
}
.load #menu ul{
  opacity: 1;
  transition: opacity .6s cubic-bezier(.210, .60, .350, 1);
}
#menu.animeNone ul{
	transition: width 0s cubic-bezier(.210, .60, .350, 1);
}
#menu ul li a span,
#menu ul li span span{
	transition: opacity .4s cubic-bezier(.210, .60, .350, 1);
}
#menu.animeNone ul li a span,
#menu.animeNone ul li span span{
	transition: opacity 0s cubic-bezier(.210, .60, .350, 1);
}
#menu.close ul li a span,
#menu.close ul li span span{
  opacity: 0;
}
#menu .slideBtn::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("../img/common/icon_menu_btn.svg");
  transform: rotate(-90deg) translateX(50%);
}
#menu .slideBtn.active::after{
  transform: rotate(-270deg) translateX(-50%);
}
#menu ul li.project a{
  background: #3A4351;
  padding: 22px 0 22px 20px;
}
#menu ul li.project a::before {
  background-image: url("../img/common/icon_menu_project.svg");
}
#menu ul li.project a br{
  display: none;
}
@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;
}
#menu ul li.project a br{
  display: block;
}
}
@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,
#menu ul li button{
  font-size: 14px;
  padding: 10px 0 10px 20px;
}
#menu ul li ul li a{
  font-size: 12px;
  padding: 9px 20px 9px 33px;
}
#menu ul li ul li a br{
  display: none;
}
#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;
}
#menu ul li.project a{
  padding: 19px 0 19px 20px;
}
#menu ul li.project a br{
  display: none;
}
}


/*------------------------------------------------------------
	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;
}
footer p a:hover{
  text-decoration: underline;
}
@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
------------------------------------------------------------*/
#homeList{
  width: calc(100% + 10px);
  max-width: 990px;
  margin: 0 auto;
  opacity: 0;
}
.load #homeList{
  opacity: 1;
  transition: opacity .6s cubic-bezier(.210, .60, .350, 1);
}
#homeList ul{
  border-top: 1px solid #4A5564;
  padding: 5px 10px 30px 10px;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#homeList #projectArea + ul{
  margin-top: 20px;
}
#homeList ul:last-child{
  border-bottom: 1px solid #4A5564;
}
#homeList ul li{
  width: 25%;
  margin-top: 25px;
  padding: 10px 10px;
}
#homeList ul li.billing-portal-button{
  display: flex;
  align-items: center;
  cursor: pointer;
}
#homeList ul li a,
#homeList ul li button{
  display: flex;
  align-items: center;
  color: #4a5564;
}
#homeList ul li button{
  height: auto;
  width: 100%;
  text-align: left;
  background: transparent;
  border-radius: 0;
}
#homeList ul li button:disabled{
  opacity: .4;
  pointer-events: none;
  background-color: transparent !important;
}
#homeList ul li .icon{
  width: 30px;
  height: 30px;
  display: flex;
}
#homeList ul li .icon img{
  width: 100%;
}
#homeList ul li h3{
  font-size: 16px;
  padding-left: 15px;
}
#homeList + div .size {
  max-width: 990px;
  margin: 10px auto 0;
}
@media only screen and (max-width:1280px) {
#homeList ul li{
  width: 33.333%;
}
}
@media only screen and (max-width:1023px) {
#homeList ul li{
  width: 50%;
}
}
@media only screen and (max-width:768px) {
#homeList ul{
  margin-top: 15px;
  padding-top: 5px;
}
#homeList ul li .icon{
  width: 50px;
  height: 50px;
  border-radius: 6px;
}
#homeList ul li .icon img{
  width: 25px;
}
#homeList ul li h3{
  font-size: 14px;
  width: calc(100% - 50px);
}
}


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


/*------------------------------------------------------------
	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) {
.ttlBack {
  position: relative;
}
.back + .ttl h1,
.ttlBack h1{
  padding-left: 40px;
}
.ttl h1{
  font-size: 18px;
}
.ttl p{
  font-size: 13px;
}
}


/*------------------------------------------------------------
	panel
------------------------------------------------------------*/
.panel{
  font-size: 0;
  margin-top: 40px;
}
.panel.list1{
  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;
}
.panel.list1{
  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;
  display: inline-block;
  vertical-align: middle;
}
#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: 240px;
  padding-right: 10px;
  margin: 10px 0 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;
}
.panel.list1 ul li #addBtn{
  width: 240px;
  height: auto;
  aspect-ratio: 1;
  font-size: 40px;
  border-radius: 6px;
}
.panel.list2 ul li #addBtn{
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  font-size: 24px;
  border-radius: 6px;
  margin: 0;
}
#sortList {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0 0 20px;
}
#sortList ul li {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
#sortList ul li::after{
  content: "｜";
  margin: 0 3px;
}
#sortList ul li span {
  margin-left: 5px;
  cursor: pointer;
}
#sortList ul li span + span {
  margin-left: 2px;
}
@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;
}
.panel.list1 ul li #addBtn{
  width: 100%;
  font-size: 30px;
}
.panel.list2 ul li #addBtn{
  width: 50px;
  font-size: 20px;
}
#sortList {
  margin: 5px 0 0 10px;
}
#sortList ul li {
  font-size: 14px;
}
#sortList ul li::after{
  margin: 0;
}
#sortList ul li span {
  margin-left: 5px;
}
#sortList ul li span + span {
  margin-left: 2px;
}
}


/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
#contents .back{
  position: absolute;
  left: 25px;
  top: 95px;
}
#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 .ttlBack .back {
  left: 0;
  top: 0;
}
#contents .back a{
  width: 30px;
  height: 30px;
}
}
#contents button{
  background: #3A4351;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 6px;
}
#contents button:disabled{
  background-color: rgba(0,0,0,0.5);
}
#contents label.file{
  display: block;
  background: #3A4351;
  color: #fff;
  font-weight: bold;
  height: 40px;
  width: 100%;
  line-height: 40px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}
#contents .registerBox .txt table td label.file:first-child{
  margin-top: 0;
}
#contents label.file input[type="file"]{
  display: none;
}

#contents input[type="text"]{
  border: none;
  background: #f2f2f2;
  color: #3a4351;
  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: 38px;
  border-radius: 4px;
}
#contents .selectBtn{
	position: relative;
}
#contents .selectBtn + .selectBtn{
  margin-top: 10px;
}
#contents .selectBtn::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #3A4351;
	border-right: 2px solid #3A4351;
	transform: rotate(135deg);
	margin-top: -6px;
}
#contents .selectBtn select{
  height: 40px;
  width: 100%;
  background: #f2f2f2;
  color: #3a4351;
  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;
  margin-top: -10px;
}
#contents .radioBtn li{
	position: relative;
	cursor: pointer;
	min-height: 40px;
  display: inline-block;
  margin-right: 30px;
  margin-top: 10px;
}
#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: #3A4351;
}
#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;
}
#contents .radioBtn li{
  margin-right: 15px;
}
#contents .radioBtn input[type="radio"] + label{
	padding: 13px 0 0 45px;
}
}
.registerBox{
  display: flex;
  max-width: 1000px;
  margin: 40px auto 0;
  justify-content: space-between;
  align-items: flex-start;
}
.registerBox .img,
.registerBox .preview{
  width: 36%;
}
.registerBox .img{
  position: sticky;
  top: 0;
}
.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;
  border-radius: 6px;
}
.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 .addBtn + table{
  margin-top: 20px;
}
.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 .img{
  position: relative;
}
.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: 6px;
  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 .addTable td{
  position: relative;
  padding-right: 70px;
}
#static_object .txt .addTable .position td,
#static_object .txt .addTable .rotation td{
  padding-right: 0;
}
#static_object .txt .addTable td .delBtn{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 10px));
  margin: 0;
}
#static_object .txt table td + td{
  padding: 0 0 20px 20px;
  width: 70px;
  vertical-align: middle;
}
#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 .materialInfo table{
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}
#static_object .materialBox.removeArea{
  position: relative;
  padding-right: 70px;
  border-bottom: 1px solid #b3b3b3;
  padding-top: 10px;
  padding-bottom: 10px;
}
#static_object .materialBox.removeArea .delBtn{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
#static_object .materialBox.removeArea + .addBtn{
  margin-top: 10px;
}
#static_object .materialInfo {
  position: relative;
  margin-bottom: 30px;
}
#static_object .materialInfo::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -5px;
  border-top: 10px solid #f2f2f2;
  width: calc(100% + 60px)
}
#static_object .materialInfo table:last-child tr:last-child th,
#static_object .materialInfo table:last-child tr:last-child td{
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px){
.registerBox .txt .box{
  padding: 20px 20px 10px 20px;
}
.registerBox .txt .box.boxAdd{
  padding-bottom: 20px;
}
#static_object .txt table th{
  width: 90px;
  font-size: 13px;
  padding-right: 10px;
}
#static_object .txt table td + td{
  padding: 0 0 20px 10px;
  width: 50px;
}
#static_object .txt .min input[type="text"]{
  height: 40px;
  padding: 0 10px;
}
#static_object .txt .min span{
  margin: 0 5px;
}
#static_object .txt table td table td:first-child{
  padding-right: 15px;
}
#static_object .txt .min input[type="text"]{
  width: calc((100% - 55px)/3);
}
#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;
}
#static_object .materialBox.removeArea{
  padding-right: 50px;
}
#static_object .txt .addTable td{
  padding-right: 50px;
}
#static_object .materialInfo::after {
  left: -20px;
  width: calc(100% + 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: #4A5564 !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: #3a4351;
  position: relative;
}
#material .dg .c .slider-fg::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: #3a4351;
  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;
}
}
@media only screen and (max-width: 768px){
#material .lil-gui .color .widget{
  width: 100% !important;
}
#material .lil-gui .color .display{
  max-width: 100px;
}
#material .lil-gui .color .widget input[type="color"]{
  width: 100%;
}
}


/*--------------------------------------
imageDetail
--------------------------------------*/
.imageDetail{
  width: 160px;
  height: auto;
}
.imageDetail .imageBox{
  position: relative;
  width: 100%;
  /* height: 160px; fukuda */
}
.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: #f2f2f2;
  padding: 0 80px;
  display: flex;
  align-items: center;
}
#fBtn .inner{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
#fBtn .inner .col{
  width: 60%;
  margin: 0 0 0 auto;
  display: flex;
  gap: 10px;
}
#fBtn .inner .col a{
  background: #3A4351;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 50px;
}
#fBtn .inner .col #back,
#fBtn .inner .col #next{
  width: 50px;
  min-width: 50px;
}
#fBtn .inner .col #saveBtn{
  margin-top: 0;
}
/* 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;
}
#fBtn .inner .col{
  gap: 5px;
}
#fBtn .inner .col a{
  height: 40px;
  line-height: 40px;
  font-size: 12px;
}
#fBtn .inner .col #back,
#fBtn .inner .col #next{
  width: 40px;
  min-width: 40px;
}
}
/*------------------------------------ 
genThumbBtn 
------------------------------------*/
#contents #genThumbBtn{
  background: #3A4351;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 6px;
  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: rgba(0,0,0,0.5);
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 6px;
  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 transformBtn
------------------------------------*/
#contents #previewBtn,
#contents #transformBtn{
  position: relative;
  background: #3A4351;
  color: #fff;
  font-weight: bold;
  height: 50px;
  width: 100%;
  border-radius: 6px;
  text-align: left;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 0 0 0 65px;
}
#contents #previewBtn{
  margin-top: 20px;
}
#contents #transformBtn{
  margin-top: 10px;
}
#contents #previewBtn:disabled,
#contents #transformBtn:disabled{
  background-color: rgba(0,0,0,0.5);
}
#contents #previewBtn::before,
#contents #transformBtn::before{
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background-size: 100%;
}
#contents #previewBtn::before{
  background-image: url("/img/simulator/icon_stageBtn_01.svg");
}
#contents #transformBtn::before{
  background-image: url("/img/simulator/icon_stageBtn_02.svg");
}
@media only screen and (max-width: 768px){
  #contents #previewBtn,
  #contents #transformBtn{
    height: 40px;
    width: 100%;
    padding: 0 0 0 48px;
  }
  #contents #previewBtn{
    margin-top: 15px;
  }
  #contents #previewBtn::before,
  #contents #transformBtn::before{
    left: 15px;
    width: 22px;
    height: 22px;
  }
}

.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;
}


/*------------------------------------------------------------
	lil-gui
------------------------------------------------------------*/
.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: 40px;
  border-radius: 4px;
}
.lil-gui .children .controller.color .widget > .display {
  border: 1px solid #3A4351;
}
.lil-gui .children .controller.color .widget input[type=text] {
  width: 110px !important;
  margin-left: 10px;
}
.lil-gui .children .controller.number.hasSlider .widget input[type=number] {
  /*display: none;*/
  width: 50px !important;
}
.lil-gui input,
.lil-gui .controller.number .slider{
  background-color: #707882;
}

#stage .selectBtn{
  width: 100% !important;
}
#stage .selectBtn {
  width: 100% !important;
}
@media only screen and (max-width: 1280px){
#stage .boxAdd > table > tbody > tr > th,
#stage .boxAdd > table > tbody > tr > td{
  display: block;
  padding-bottom: 10px;
}
}



/*------------------------------------------------------------
	copyPopUp
------------------------------------------------------------*/
#copyPopUp{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.7);
  padding: 20px;
}
#copyPopUp .box{
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#copyPopUp .box p{
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#copyPopUp .box ul{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#copyPopUp .box ul li{
  width: calc(50% - 3px);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
#copyPopUp .box ul li.ok{
  background: #3A4351;
}
#copyPopUp .box ul li.cancel{
  background: #eaeaea;
  color: #3A4351;
}
@media only screen and (max-width: 768px){
#copyPopUp .box{
  padding: 30px 25px;
}
}
/*------------------------------------------------------------
	deletePopUp
------------------------------------------------------------*/
#deletePopUp{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.7);
  padding: 20px;
}
#deletePopUp .box{
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#deletePopUp .box p{
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#deletePopUp .box ul{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#deletePopUp .box ul li{
  width: calc(50% - 3px);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
#deletePopUp .box ul li.ok{
  background: #3A4351;
}
#deletePopUp .box ul li.cancel{
  background: #eaeaea;
  color: #3A4351;
}
@media only screen and (max-width: 768px){
#deletePopUp .box{
  padding: 30px 25px;
}
}
/*------------------------------------------------------------
	resultPopUp
------------------------------------------------------------*/
#resultPopUp{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.7);
  padding: 20px;
}
#resultPopUp .box{
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#resultPopUp .box p{
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#resultPopUp .box ul{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#resultPopUp .box ul li{
  width: calc(50% - 3px);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
#resultPopUp .box ul li.ok{
  background: #3A4351;
}
@media only screen and (max-width: 768px){
#resultPopUp .box{
  padding: 30px 25px;
}
}

#contents .btn{
  display: flex;
}
#contents .btn button{
  background: #fff;
  color: #333;
  padding: 5px;
  margin-right: 10px;
  height: 50px;
  width: 50px;
  margin-top: 0;
}
@media only screen and (max-width: 768px){
#contents .btn button{
  margin-right: 10px;
  height: 40px;
  width: 40px;
}
#contents .btn button:not(:last-child){
  margin-right: 5px;
}
}
/*------------------------------------------------
assetModal
------------------------------------------------*/
.assetModal{
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  text-align: center;
  font-size: 0;
  padding: 20px;
  display: none;
}
.assetModal::before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.assetModal .modalDetail {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  background: #f2f2f2;;
  border-radius: 8px;
  padding: 35px 40px 30px 40px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.assetModal .modalDetail > p {
  font-weight: bold;
}
.assetModal .modalDetail .select_list li {
  width: 240px;
  padding-right: 10px;
  margin: 10px 0 0 0;
  display: inline-block;
  vertical-align: top;
}
.assetModal .modalDetail .select_list li a{
  display: flex;
  align-items: center;
  word-break: break-all;
}
.assetModal .modalDetail .select_list li a .thumbnail {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 60px;
  white-space: nowrap;
  margin-bottom: 0;
}
.assetModal .modalDetail .select_list li a strong {
  font-weight: normal;
  padding-left: 10px;
}
.assetModal .modalDetail .select_list li a strong::after {
  content: ".";
}
.assetModal .modalDetail .select_list li a span {
  flex: 1;
}
.assetModal .close{
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 103;
  line-height: 1;
  cursor: pointer;
  font-size: 0;
  width: 30px;
  height: 30px;
}
.assetModal .close::before,
.assetModal .close::after{
  content: "";
  display: block;
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-left: -15px;
}
.assetModal .close::before{
  transform: rotate(-45deg);
}
.assetModal .close::after{
  transform: rotate(45deg);
}
@media only screen and (max-width: 768px){
.assetModal{
  padding: 10px;
}
.assetModal .close{
  right: 15px;
  top: 15px;
}
}
/*------------------------------------------------
listBtn
------------------------------------------------*/
.listBtn{
  background: #f2f2f2;
  color: #3a4351;
  height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #ccc;
}
.listBtn span{
  display: block;
  line-height: 38px;
}
/*------------------------------------------------
size_over
------------------------------------------------*/
.size_over{
  color: red;
}
/*------------------------------------------------
projectModal
------------------------------------------------*/
#projectModal{
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  text-align: center;
  font-size: 0;
  padding: 20px;
  display: none;
}
#projectModal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
#projectModal .box {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  background: #f2f2f2;
  border-radius: 8px;
  padding: 35px 40px 30px 40px;
  width: 100%;
  max-height: 100%;
}
#projectModal .box .project_list li{
  width: 240px;
  padding-right: 10px;
  margin: 10px 0 0 0;
  display: inline-block;
  vertical-align: top;
}
#projectModal .box .project_list li a{
  display: flex;
  align-items: center;
  word-break: break-all;
}
#projectModal .box .project_list li a .thumbnail{
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 60px;
  white-space: nowrap;
  margin-bottom: 0;
}
#projectModal .box .project_list li a strong{
  font-weight: normal;
  padding-left: 10px;
}
#projectModal .box .project_list li a span{
  flex: 1;
}
#projectModal .close {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 103;
  line-height: 1;
  cursor: pointer;
  font-size: 0;
  width: 30px;
  height: 30px;
}
#projectModal .close::before, #projectModal .close::after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-left: -15px;
}
#projectModal .close::before {
  transform: rotate(-45deg);
}
#projectModal .close::after {
  transform: rotate(45deg);
}
/*------------------------------------------------
select_projectModal
------------------------------------------------*/
#select_projectModal{
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  text-align: center;
  font-size: 0;
  padding: 20px;
  display: none;
}
#select_projectModal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
#select_projectModal .box {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  background: #f2f2f2;
  border-radius: 8px;
  padding: 35px 40px 30px 40px;
  width: 100%;
  max-height: 100%;
}
#select_projectModal .box .project_list li.tmplate{
  display: none;
}
#select_projectModal .box .project_list li{
  width: 240px;
  padding-right: 10px;
  margin: 10px 0 0 0;
  display: inline-block;
  vertical-align: top;
  display: flex;
}
#select_projectModal .box .project_list li.select{
  border: 3px solid #000000;
}
#select_projectModal .box .project_list li .thumbnail{
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 60px;
  white-space: nowrap;
  margin-bottom: 0;
}
#select_projectModal .box .project_list li .text strong{
  font-weight: normal;
  padding-left: 10px;
  display: block;
}
#select_projectModal .box .project_list li .text span{
  padding-left: 10px;
  display: block;
}
#select_projectModal .close {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 103;
  line-height: 1;
  cursor: pointer;
  font-size: 0;
  width: 30px;
  height: 30px;
}
#select_projectModal .close::before, #select_projectModal .close::after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-left: -15px;
}
#select_projectModal .close::before {
  transform: rotate(-45deg);
}
#select_projectModal .close::after {
  transform: rotate(45deg);
}
/*------------------------------------------------------------
	movePopUp
------------------------------------------------------------*/
#movePopUp{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.7);
  padding: 20px;
}
#movePopUp .box{
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#movePopUp .box p{
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#movePopUp .box ul{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#movePopUp .box ul li{
  width: calc(50% - 3px);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
#movePopUp .box ul li.ok{
  background: #3A4351;
}
#movePopUp .box ul li.cancel{
  background: #eaeaea;
  color: #3A4351;
}
@media only screen and (max-width: 768px){
#movePopUp .box{
  padding: 30px 25px;
}
}

/*------------------------------------------------------------
	projectArea
------------------------------------------------------------*/
#projectArea .registBox {
  display: flex;
}
#projectArea .imageDetail {
  width: 160px;
}
#projectArea .registBox .txt {
  padding-left: 20px;
  width: calc(100% - 160px);
  font-size: 14px;
}
#projectArea .registBox .txt span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 2px;
}
@media only screen and (max-width: 768px){
  #projectArea .imageDetail {
    width: 80px;
  }
  #projectArea .registBox .txt {
    padding-left: 15px;
    font-size: 12px;
    width: calc(100% - 80px);
  }
  #projectArea .registBox .txt span {
    font-size: 18px;
    margin-top: 0;
  }
}

/*------------------------------------------------------------
	breadcrumb
------------------------------------------------------------*/
#breadcrumb {
  position: absolute;
  left: 25px;
  top: 20px;
}
#breadcrumb ul {
  font-size: 0;
}
#breadcrumb ul li {
  display: inline-block;
  font-size: 13px;
}
#breadcrumb ul li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
}
#breadcrumb ul li a {
  text-decoration: underline;
}
#breadcrumb ul li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 768px){
  #breadcrumb {
    position: relative;
    left: 0;
    top: 0;
    padding-bottom: 15px;
    margin-top: -10px;
  }
  #breadcrumb ul li {
    font-size: 12px;
  }
  #breadcrumb ul li:not(:last-child)::after {
    margin: 0 5px;
  }
}
/*------------------------------------------------------------
	loader 240920 fukuda
------------------------------------------------------------*/
.loader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader::before {
  content: "";
  display: block;
  width: 65px;
  height: 31px;
  background: url("/img/common/img_loader.svg") center no-repeat;
  background-size: 100% auto;
}

.registerBox .txt table td.sizeIcon {
  vertical-align: middle;
  width: 44px;
}
.registerBox .txt table td.sizeIcon label{
  display: block;
  width: 44px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/img/common/icon_size.svg");
  cursor: pointer;
}
.registerBox .txt table td.sizeIcon input{
    display: none;
}
.registerBox .txt table td.sizeIcon input:checked + label{
  background-image: url("/img/common/icon_size_active.svg");
}
/*------------------------------------------------------------
	settingBox settingPass
------------------------------------------------------------*/
.settingBox .settingPass p{
  margin-top: 5px;
  font-size: 13px;
}
.settingBox .settingPass input{
  margin-top: 5px;
  border: none;
  background: #f2f2f2;
  color: #3a4351;
  font-size: 14px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  border-radius: 4px;
  box-sizing: border-box;
}