
html{
	font-size:10px;	
}

*{
	font-size: 1.2rem;
}

body{
	margin:0;
	width:100%;
	height:100%;
}

body.domain_top{
	background: hsl(var(--col),0%,30%);
}

body.domain_top > main{
	display: flex;
	align-items: center;
	justify-content: center;
	height:900px;
}

body.domain_top > main > *{
	width:400px;
	display: flex;
	flex-wrap: wrap;
	gap:16px;
	padding:32px;
	background: hsl(var(--col),0%,40%);
	border-radius: 5px;
}

body.domain_top > main > * > *{
	width:100%;
	margin: 0;
	padding: 0;
}

body.domain_top > main > * > form{
	display: flex;
	gap:16px;
	flex-wrap: wrap;
}

body.domain_top > main > * > form > *{
	width:100%;
}

body.domain_top > main > * > form .wrap > span:first-of-type{
	color: hsl(var(--col),0%,80%);
}

body.domain_top > main > * > form input[type=text],input[type=password]{
	width: 100%;
}

body:not(.domain_top){
	background: hsl(var(--col),0%,90%);
}

body > header{
	background: #fff;
	padding:16px;
	justify-content:space-between;
}

body > header *{
	font-size: 1.8rem;
}

body > header a{
	color: hsl(var(--col),0%,40%) !important;
	font-size: 1.6rem;
	text-decoration: none;
}

body{
	gap:2.5vw;	
}

body > nav{
	z-index: 999;
	width:200px;
	position: fixed;
	background:hsl(var(--col),0%,95%);
	padding:0;
	height:calc(100% - 59px);
	top:59px;
	overflow-y: auto;
}

body > nav::-webkit-scrollbar{
	width: 4px;
}
body > nav::-webkit-scrollbar-track{
	background-color: hsl(var(--col),0%,70%);
}
body > nav::-webkit-scrollbar-thumb{
	background-color: hsl(var(--col-red),50%,45%);
}




body > nav.close{
	width:calc(24px * 3);
}

body > nav.close > p{
	display: none;
}

body > nav *{
	font-size: 1.4rem;
}

body > nav > *{
	display: block;
	width:100%;
	font-size: 1.2rem;
}

body > nav :is(a,span){
	font-size: 1.2rem;
	display: block;
	padding-block:8px;
}

body > nav :is(a,span){
	padding-inline:8px;
}

body > nav > span{
	font-weight: bold;
}

body > nav a:is(:hover)
{
	background:hsl(var(--col),0%,90%);
	color: hsl(var(--col-blue),75%,60%) !important;
	text-decoration: none;
}

body > nav a:is(.focus)
{
	background:hsl(var(--col),0%,20%);
	color: hsl(var(--col-yellow),90%,50%) !important;
	text-decoration: none;
	border-radius: 10px 0 0 10px;
}


body > nav > ul{
	padding-left: 8px;
}

body:not(.domain_top) >  main{
	width: 98%;
	padding: 24px 0 0 240px;
}

body:not(.domain_top) >  main > *{
	width:auto;
	margin-bottom: 16px;
}

body >  main h1{
	font-size: 2rem;
	font-size:2rem;
}

body:is(.tableView) .searchWrap{
	padding:8px 16px;
	gap:24px;
	margin-bottom: 24px;
	background: hsl(var(--col),0%,70%);
	border-radius: 5px;
}

body:is(.tableView) .searchWrap .items > *{
	border: 1px solid hsl(var(--col),0%,97%);
	padding:4px 16px;
}

body:is(.tableView) .searchWrap label{
	padding-inline: 16px;
}

body:is(.tableView) .searchWrap > form{
	display: flex;
	gap:8px;
}


body:is(.tableView) .searchWrap > form input[type=text]{
	width:250px;
}

body:is(.tableView) .searchWrap > form button{
	margin: 0;
	padding:2px 16px;
	background: hsl(var(--col-green), 75%,50%);
	font-size: 1.2rem;
	border-style:none ;
	color: #fff;
	border-radius: 5px;
}

body:is(.tableView) .searchWrap a{
	display: flex;
	align-items: center;
	background: hsl(var(--col-skyblue), 90%,40%);
	color: #fff;
	padding-inline:24px;
	border-radius: 5px;
}

body:is(.tableView) .searchWrap :is(.items){
	width:100%;
	display: flex;
	flex-wrap: wrap;
	gap:16px;
}


body:is(.tableView) > main .wrap{
	background: #fff;
	padding:8px;
}

body:is(.tableView) > main .wrap div.datas{
	overflow: auto;
	display: block;
}

body:is(.tableView) > main .wrap .datas{
	overflow: scroll;
}

body:is(.tableView) > main .wrap .datas{
	overflow-y:auto;
	overflow-x: auto;
}

body:is(.dashboard) > main .wrap .datas{
	overflow-x:scroll;
	overflow-y: scroll;
}


body:is(.tableView) > main .wrap .datas table tr.header,
body:is(.tableView) > main .wrap .datas table tr.header th,
body:is(.tableView) > main .wrap .datas table tr .bg
{
	background: hsl(var(--col),0%,40%);
	color: #fff;
	font-weight: normal;
}

body:is(.tableView) > main .wrap .datas table tr.unBackGround,
body:is(.tableView) > main .wrap .datas table tr.unBackGround th{
	background: none;
	color: #000;
}

body:is(.tableView) > main .wrap .datas table :is(th,td)
{
	width:auto;
	border: 1px solid hsl(var(--col),0%,70%);
	margin: -1px 0 0 -1px;
	padding:4px 8px;
	word-wrap: normal;
}


body:is(.tableView) > main .wrap .datas table .header :is(th){
	position: sticky;
	top: 0;
	left: 0;
}

body:is(.tableView) > main .wrap .datas table :is(th,td).clmNumber{
	width:40px !important;
	text-wrap: nowrap;
}

body:is(.tableView) > main .wrap .datas table tr:not(:first-of-type):hover{
	background: hsl(var(--col),0%,97%);
}

.tableView .pager{
	margin-top: 24px;
	display: flex;
	gap: 8px;
	margin-top: 24px;
	justify-content: center;
}

.tableView .pager > *
{
	border: 1px solid hsl(var(--col),75%,60%);
	padding: 4px 12px;
	border-radius: 5px;
	text-decoration: none;
}

.tableView .pager > *.focus
{
	background: hsl(var(--col),75%,60%);
	color: #fff;
}

body:is(.isWorkIndex,.isMasterWorkFaqPost,.masterStoreFaqPost) > main .wrap .datas > table > tbody > tr > :is(th,td){
	width:calc(100% / 3);
	vertical-align: top;
}

body:is(.isWorkIndex) > main .wrap .datas > table > tbody > tr > :is(th,td) th{
	width: 30%;
}

body:is(.isWorkIndex,.isMasterWorkFaqPost,.masterStoreFaqPost,.isMasterWorkItwPost,.isStoreDetail) > main .wrap .datas > table :is(input[type=text],input[type=number],textarea){
	width:100%;
}

body:is(.isWorkIndex,.isMasterCategory,.isMasterCity) > main .wrap .datas > table .isLabels{
	display: flex;
	flex-wrap: wrap;
	gap:8px;
}

body:is(.isWorkIndex,.isMasterCategory,.isMasterCity) > main .wrap .datas > table .isLabels label{
	border: 1px solid hsl(var(--col),0%,90%);
	padding:4px 8px;
	border-radius: 5px;
}

body:is(.isWorkIndex,.isMasterWorkFaqPost,.masterStoreFaqPost,.isMasterWorkItwPost,.isStoreDetail) > main .wrap .datas > table img{
	width: 100%;
}

body:is(.isMasterWorkItwPost,.isMasterCategory,.isMasterCity,.isStoreDetail) > main .wrap .datas > table > tbody > tr > th{
	width:150px;
}

body:is(.isMasterWorkItwPost,.isStoreDetail) > main .wrap .datas > table > tbody > tr > td{
	width:300px;
}

body:is(.masterStoreMoveCost) textarea{
	min-width: 500px;
	height:150px;
}

body:is(.storePrices) > main .wrap .datas table tr:nth-of-type(odd){
	background: hsl(var(--col),0%,95%);
}

body:is(.storePrices) > main .wrap .datas table :is(th,td){
	width:200px;
}

body:is(.storePrices) > main .wrap .datas table td:last-of-type{
	width:600px;
}

body:is(.isGirlPost) > main .wrap .datas > table > tbody > tr > :is(th,td){
	vertical-align: top;
	width:calc(100% / 6);
}

body:is(.isGirlPost) > main .wrap .datas > table > tbody > tr > :is(th,td) img{
	width:100%;
}

body:is(.isGirlPost) > main .wrap .datas > table .searchItems > *{
	display: flex;
	flex-wrap: wrap;
	gap:8px;
}

body:is(.isGirlPost) > main .wrap .datas > table .searchItems > * > label{
	border: 1px solid hsl(var(--col),0%,90%);
	padding: 4px 8px;
	border-radius: 5px;
}

body:is(.isGirlPost) > main .wrap .datas > table .searchItems > * > label.focus{
	color: blue;
	border-color: blue;
}

body:is(.isGirlPost) > main .wrap .datas table .info input[type=text]{
	width: 100%;
}

body:is(.isGirlPost) > main .wrap .datas table table td.styles > div{
	display: flex;
	flex-wrap: wrap;
	gap:4px;
}

body:is(.isGirlPost) > main .wrap .datas table table td.styles > div > *{
	width: calc((100% - (4px * 4)) / 3);
}

body:is(.isGirlPost) > main .wrap .datas table table td.styles > div input{
	width:80px;
}

body:is(.isGirlPost) > main .wrap .datas table .info textarea{
	width: 100%;
	height: 150px;
}

body:is(.isGalSort) > main .sortOuter{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

body:is(.isGalSort) > main .sortOuter > li{
	border: 1px solid hsl(var(--col),0%,90%);
	padding:4px 16px;
	border-radius: 10px;
	cursor: pointer;
}

body:is(.storeReserveDetail) > main .wrap .datas > table,
body:is(.storeReserveDetail) > main .wrap .datas > table table
{
	width:100%;
}

body:is(.storeReserveDetail,.storeRatingPost) > main .wrap .datas > table > tbody > tr > :is(th,td){
	width: calc(100% / 3);
	max-width: 400px;
	vertical-align: top;
}

body:is(.storeReserveDetail,.storeRatingPost) > main .wrap .datas > table > tbody > tr > :is(th,td) textarea{
	width:100%;
}

body:is(.storeReserveDetail) #asyncMessage > .items{
	overflow-y: scroll;
	height:500px;
	padding-inline: 8px;
}

body:is(.storeReserveDetail) #asyncMessage > .items p{
	display: block;
	width:70%;
	background: hsl(var(--col),0%,90%);
	padding:4px 8px;
	border-radius: 5px;
	margin-right: auto;
	margin-bottom: 16px;
}

body:is(.storeReserveDetail) #asyncMessage > .items p span{
	display: block;
	color: hsl(var(--col),0%,40%);
}

body:is(.storeReserveDetail) #asyncMessage > .items .isStore{
	margin-left: auto;
	margin-right: 0;
}

body:is(.storeNewsPost) > main .wrap .datas > table th{
	width:20%;
	min-width: 200px;
}

body:is(.storeNewsPost) > main .wrap .datas > table td{
	width:40%;
	min-width: 400px;
}

body:is(.storeNewsPost) > main .wrap .datas > table img{
	width:150px;
}

body:is(.storeNewsPost) > main .wrap .datas > table :is(input[type=text],textarea){
	width: 100%;
}
