@charset "utf-8";

iframe{display: none;}
/*-- Reset ---------------------------------------------------*/

input[type="submit"],
button{
	-webkit-appearance: none;
	padding-block: 0;
	padding-inline: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {line-height:1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display:block;}
ul,ol {list-style:none;}
li{list-style: none;}
blockquote, q {quotes:none;}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	text-decoration: none;
}

ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}

del {text-decoration: line-through;}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {border-collapse:collapse; border-spacing:0;}
input, select {vertical-align:middle;}

.select_none{
	color: rgba(0,0,0,0);
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}


/*-- initialize -------------------------------------------*/

body {
	color: var(--mainTextColor);
	font-size: 14px;
	font-family: YuGothic, 'Yu Gothic', 'Yu Gothic Medium', 'Meiryo', sans-serif;
	font-weight: 500;
	line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {font-weight: normal;}
select, input, button, textarea {
	font-size: 99%;
	font-family: YuGothic, 'Yu Gothic', 'Yu Gothic Medium', 'Meiryo', sans-serif;
}
strong {font-weight: bold;}
abbr, acronym {
	border: 0;
	font-variant: normal;
}

.main_container{
	width: 100%;
	background-color: var(--mainBackColor);
	box-sizing: border-box;
	padding: 20px 0 60px;
	position: relative;
	z-index: 10;
}
.general_h2{
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	border-bottom: solid 2px var(--separateBorder);
	padding-bottom: 11px;
	margin-bottom: 15px;
}
.general_input{
	box-sizing: border-box;
	border: solid 2px #ababab;
	border-radius: 4px;
	line-height: 1;
	padding: 4px 10px 5px;
	
	&.wMax{
		width: 100%;
	}
}
textarea.general_input{
	resize: vertical;
	padding-top: 9px;
	height: 2.4rem;
	line-height: 1.4;
}
[name="suggest_select"]{
	margin-bottom: 5px;
}
.general_button{
	font-weight: bold;
	color: var(--mainTextColor);
	border: solid 2px #ababab;
	background-color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	padding: 5px 25px 6px;
	cursor: pointer;
}
.button_mr{
	margin-right: 15px;
}
.flash_message{
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	z-index: 10;
	width: 600px;
	background-color: var(--blackBar);
	border-radius: 3px;
	box-sizing: border-box;
	color: var(--blackBarText);
	text-align: center;
	word-break: break-all;
	padding: 12px 24px 11px;
	margin: 0 auto;
	cursor: pointer;
	transition: top 0.3s ease;
}
.flash_message.success{
	background-color: var(--listView);
}
.flash_message.error{
	background-color: var(--listDelete);
}
.flash_message.hidden{
	top: -100vh;
}

.general_width{
	width: 95%;
	max-width: 1280px;
	margin-inline: auto;
}
.loading_cover{
	position: fixed;
	z-index: 500;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 36px;
	font-weight: bold;
	color: #515151;
}

/*-- list -------------------------------------------*/

.general_list_container{
	margin-block: 30px;
}
.general_list_head,
.general_list_li{
	display: flex;
}
.general_list_head{
	background-color: var(--listHeadBack);
	text-align: center;
	color: var(--listHeadText);
	line-height: 1;
	
	& a{
		color: var(--listHeadText);
		text-decoration: underline;
	}
	& .general_list_div{
		padding: 11px 0 9px;
	}
}
.general_list_ul{
	border: solid 1px var(--listBorder);
}
.general_list_li{
	border-bottom: solid 1px var(--listBorder);
	
	&.product_list{
		flex-wrap: wrap;
	}
	
	&:nth-of-type(even){
		background-color: var(--listSecond);
	}
	
	& .general_list_div{
		padding: 9px 12px 7px;
		text-align: center;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
}
.list_product_inner{
	display: flex;
	width: 100%;
	border-bottom: dashed 1px #b1c3df;
	
	&:last-of-type{
		border-bottom: none;
	}
	
}
.general_list_div{
	border-right: solid 1px var(--listBorder);
	box-sizing: border-box;
	word-break: break-all;
}
.general_list_button{
	display: inline-block;
	background-color: #555;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	line-height: 1;
	margin-inline: 5px;
	padding: 8px 18px 8px;
}
.general_list_button.setting{
	background-color: var(--listEdit);
}
.general_list_button.view{
	background-color: var(--listView);
}
.general_list_button.delete{
	background-color: var(--listDelete);
}

.top_paginate{
	display: flex;
	flex-wrap: wrap;
	font-size: 17px;
}
.top_paginate li{
	margin-right: 15px;
}
.top_paginate .page_limit_li{
	margin-right: 30px;
}
.top_paginate select{
	border: solid 1px #7d7d7d;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 90%;
	cursor: pointer;
	line-height: 1;
	padding: 2px 3px 2px 6px;
}
.total_data strong{
	color: #f00;
}
.paginate_span{
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
}
.page_button{
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
	padding: 4px 6px 2px;
	border-bottom: solid 1px var(--mainTextColor);
	color: var(--mainTextColor);
	font-size: 94%;
}
.serach_box{
	display: flex;
}
.type_image{
	width: calc(100% - 760px);
	
	& img{
		max-width: 100%;
		height: auto;
	}
}
.search_container{
	background-color: #f1f2f6;
	box-sizing: border-box;
	border: solid 1px #999;
	width: 760px;
	padding: 50px 15px 13px;
	position: relative;
	z-index: 10;
}
.search_title{
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--blackBarText);
	font-weight: bold;
	font-size: 15px;
	line-height: 1;
	background-color: var(--blackBar);
	box-sizing: border-box;
	padding: 8px 9px 8px;
}
.search_ul{
	display: flex;
	flex-wrap: wrap;
}
.search_li{
	margin-right: 13px;
	margin-bottom: 13px;
	min-width: 300px;
}
.search_label{
	display: inline-block;
	min-width: 70px;
	text-align: right;
	font-weight: bold;
	margin-right: 9px;
}
.search_button{
	padding-top: 25px;
}
.error-message{
	background-color: #ffbfbf;
	color: #860000;
	width: 87%;
	border-radius: 2px;
	box-sizing: border-box;
	padding: 4px 9px 2px;
	word-break: break-all;
	font-size: 13px;
	margin-top: 4px;
}

/*-- setting -------------------------------------------*/

.setting_container{

}
.setting_container_left{
	width: calc(100% - 260px);
	max-width: 900px;
}
.setting_container_button{
	width: 240px;
	position: relative;
	z-index: 10;
}

.setting_ul{
	border: solid 1px var(--listBorder);
}
.setting_li{
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px var(--listBorder);
	font-size: 15px;
}
.setting_div_left{
	display: flex;
	align-items: center;
	width: 230px;
	background-color: var(--editLabel);
	border-right: solid 1px var(--listBorder);
	box-sizing: border-box;
	font-weight: bold;
	padding: 10px 17px 7px;
}
.setting_req{
	display: inline-block;
	background-color: #ff2d2d;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	margin-right: 5px;
	padding: 4px 5px 3px;
	
	&.any_set{
		background-color: #6b6b6b;
	}
}
.setting_div_right{
	width: calc(100% - 230px);
	box-sizing: border-box;
	background-color: var(--editRight);
	padding: 10px 17px 7px;
}
.setting_button_container{
	padding-top: 25px;
}

.setting_container_sticky{
	position: sticky;
	z-index: 10;
	top: 20px;
	left: 0;
}

.product_variation_head{
	display: flex;
	background-color: var(--editLabel);
	border: solid 1px var(--listBorder);
	border-bottom: none;
	
	& > div{
		border-right: solid 1px var(--listBorder);
		box-sizing: border-box;
		font-weight: bold;
		text-align: center;
		line-height: 1;
		padding: 8px 0 6px;
		
		&:last-of-type{
			border-right: none;
		}
	}
}
.product_variation_items{
	display: flex;
	width: calc(100% - 430px);
	
	& > div{
		border-right: solid 1px var(--listBorder);
		box-sizing: border-box;
		padding-inline: 6px;
		
		&:last-of-type{
			border-right: none;
		}
	
	}
}
.product_variation{
	border: solid 1px var(--listBorder);
}
.product_variation_li{
	display: flex;
	background-color: var(--editRight);
	border-bottom: solid 1px var(--listBorder);
	position: relative;
	z-index: 10;
	
	& > div{
		border-right: solid 1px var(--listBorder);
		box-sizing: border-box;
		padding: 7px 12px 6px;
		
		&:last-of-type{
			border-right: none;
		}
	}
}
.list_variation_delete{
	position: absolute;
	z-index: 10;
	top: 9px;
	right: -38px;
	width: 30px;
	height: 30px;
	background-color: #d92828;
	border-radius: 3px;
	cursor: pointer;
	
	&::after,
	&::before{
		content: "";
		display: block;
		position: absolute;
		width: 80%;
		height: 2px;
		background-color: #fff;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	&::after{
		rotate: -45deg;
	}
	&::before{
		rotate: 45deg;
	}
}
.pv_product_code{
	width: 150px;
}
.pv_model_variation{
	width: 150px;
}
.pv_price{
	width: 130px;
}

.setting_separate{
	font-size: 18px;
	font-weight: bold;
	padding: 35px 0 8px;
	color: #285293;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.add_item_box{
	text-align: right;
	padding: 20px 0 5px;
}
.add_item_button{
	display: inline-block;
	background-color: #d73333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	line-height: 1;
	padding: 9px 22px 7px;
	user-select: none;
}

.image_upload_container{
	width: 320px;
	border: solid 2px #c9c9c9;
	border-radius: 4px;
	margin-bottom: 7px;
	position: relative;
	z-index: 10;
}
.image_upload_container::after{
	content: "";
	display: block;
	padding-top: 75%;
}
.image_upload_container input[type="file"]{
	position: absolute;
	z-index: 30;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}
.image_upload_container span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.image_upload_message{
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 24px;
	font-weight: bold;
	color: #858585;
}
[class^="upload_thumnail1"]{
	z-index: 20;
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.product_image_delete{

}
.product_image_delete input[type="checkbox"]{
	accent-color: #f00;
	width: 22px;
	height: 22px;
	margin-right: 7px;
}
.product_image_delete label{
	display: inline-block;
	vertical-align: middle;
	font-weight: bold;
	font-size: 16px;
	color: #f00;
	cursor: pointer;
}


/*-- header -------------------------------------------*/

.head_container{
	background-color: var(--blackBar);
}
.header_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.head_container_h1 a{
	color: var(--blackBarText);
	font-size: 19px;
	font-weight: bold;
	display: inline-block;
	padding: 15px 0 16px;
	line-height: 1;
}
.head_right_a{
	display: flex;
	align-items: center;
	height: 100%;
	background-color: #fff;
	color: var(--mainTextColor);
	font-weight: bold;
	font-size: 15px;
	padding: 0 27px;
}

.head_navigate{
	display: flex;
	flex-wrap: wrap;
	padding: 0 26px;
	background-color: #f9faf8;
	border-bottom: solid 1px #cbcbcb;
}
.head_navigate_li{
	border-left: solid 1px #cbcbcb;
}
.head_navigate_li:last-of-type{
	border-right: solid 1px #cbcbcb;

}
.head_navigate_link{
	display: block;
	color: var(--mainTextColor);
	font-weight: bold;
	padding: 14px 20px 13px;
	line-height: 1;
}
.head_navigate_link.active{
	background-color: #677aa7;
	color: #fff;
}
.head_navigate_link:hover{
	background-color: #dee5ff;
	color: var(--mainTextColor);
}

.head_navigate2{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 26px 0;
	background-color: var(--navSecondBack);
}
.head_navigate2_li{
	margin-right: 14px;
}
.head_navigate2_link{
	display: block;
	background-color: var(--blackBar);
	color: var(--blackBarText);
	font-weight: bold;
	line-height: 1;
	padding: 7px 20px 5px;
}
.head_navigate2_link.active{
	background-color: #fff;
	color: var(--mainTextColor);
}
.head_navigate2_link:hover{
	background-color: #ededed;
	color: var(--mainTextColor);
}

.foot_container{
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	bottom: 0;
	left: 0;
	background-color: var(--footerBack);
	color: var(--mainTextColor);
	line-height: 1;
	font-size: 13px;
	font-weight: bold;
	text-align: right;
	padding: 10px 19px 9px;
}


/*-- login -------------------------------------------*/

.login_form{
	background-color: #f2f2f2;
	box-sizing: border-box;
	width: 340px;
	padding: 24px;
	border: solid 1px #ccc;
	position: fixed;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
.login_ul{

}
.login_li{
	margin-bottom: 20px;
}
.login_div_left{
	font-size: 15px;
	font-weight: bold;
}

.search_category{
	margin-bottom: 25px;

	& > label{
		display: block;
		font-weight: bold;
	}

}
.search_category_inner{
	display: flex;
	flex-wrap: wrap;
}
.radio_inner{
	display: inline-block;
	margin-right: 24px;
	
	& input[type="radio"]{
		width: 17px;
		height: 17px;
		margin-top: 0;
		margin-right: 9px;
		vertical-align: middle;
		
		& + label{
			display: inline-block;
			vertical-align: middle;
			font-size: 13px;
			font-weight: bold;
			cursor: pointer;
		}
	}
}

.search_sizes{
	display: flex;
	flex-wrap: wrap;
}
.search_size_inner{
	width: 230px;
	margin-bottom: 10px;
	display: none;
	
	& label{
		display: block;
		font-weight: bold;
	}
	& input[type="number"]{
		border: solid 2px #717171;
		background-color: #fff;
		border-radius: 4px;
		box-sizing: border-box;
		padding: 2px 0 2px 9px;
		width: 80px;
		vertical-align: middle;
	}
	& span{
		display: inline-block;
		padding: 0 6px;
		font-size: 18px;
		vertical-align: middle;
	}
}
.search_warn{
	color: #e01111;
	font-weight: bold;
	font-size: 13px;
}


/*-- main -------------------------------------------*/

.main_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main_inner_left{
	width: 240px;
	position: relative;
	z-index: 10;
}
.main_inner_left_sticky{
	position: sticky;
	z-index: 10;
	top: 20px;
	left: 0;
}
.main_inner_left_tab{
	display: flex;
	
	& span{
		width: 33.3333%;
		background-color: #fff;
		box-sizing: border-box;
		border: solid 1px var(--blackBar);
		cursor: pointer;
		user-select: none;
		font-weight: bold;
		font-size: 17px;
		line-height: 1;
		text-align: center;
		padding: 10px 0 8px;
	}
	& span.active{
		background-color: var(--blackBar);
		color: var(--blackBarText);
	}
	
}
.left_box_div{
	padding-top: 28px;
	display: none;
}
.left_box_search_div{
	width: 80%;
	margin: 0 auto 17px;
	
	& label{
		display: block;
		background-color: #e0ebff;
		box-sizing: border-box;
		font-size: 13px;
		font-weight: bold;
		margin-bottom: 3px;
		padding: 4px 5px 0;
	}
}
.left_box_search_button{
	display: flex;
	justify-content: space-between;
	width: 75%;
	margin: 0 auto;
	padding-top: 15px;
	
	& button,
	& span{
		display: block;
		width: 80px;
		height: 34px;
		text-align: center;
		background-color: #fff;
		box-sizing: border-box;
		border: solid 2px #aaa;
		border-radius: 3px;
		cursor: pointer;
		padding-top: 5px;
	}
	
	& button{
		background-color: var(--mainBlueColor);
		border-color: var(--mainBlueColor);
		color: #fff;
	}
}
.search_error{
	color: #f00;
	font-size: 13px;
	padding-top: 3px;
	padding-left: 4px;
}

.left_general_link{
	display: block;
	width: 170px;
	background-color: var(--mainBlueColor);
	border: solid 2px var(--mainBlueColor);
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	text-align: center;
	margin: 0 auto 12px;
	padding: 10px 0 6px;
	
	&:hover{
		background-color: var(--mainBlueColorHover);
	}
	&.setting_back_button{
		background-color: #fff;
		border-color: #333;
		color: #333;
	}
}
.general_add_button {
	padding-bottom: 30px;
	
	& .left_general_link{
		margin: 0;
	}
}

.main_inner_right{
	width: calc(100% - 300px);
}
.inport_div{
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 380px;
	height: 100px;
	border-radius: 6px;
	border: dashed 3px #aaa;
	color: #717171;
	font-size: 18px;
	font-weight: bold;
	
	& input[type="file"]{
		position: absolute;
		z-index: 10;
		width: 100%;
		height: 100%;
		opacity: 0;
	}
}

.error_result_top{
	background-color: #ff8888;
	border-radius: 5px;
	color: #570e0e;
	font-size: 18px;
	font-weight: bold;
	padding: 9px 19px 2px;
}
.error_result{
	max-width: 640px;
	max-height: 500px;
	box-sizing: border-box;
	overflow-y: auto;
	margin-bottom: 60px;
	padding: 13px 25px 0;
	
	& li{
		border-bottom: dashed 1px #aaa;
		padding-bottom: 10px;
		padding-top: 10px;
	}
	& b{
		font-size: 115%;
	}
	& span{
		display: block;
		padding-left: 20px;
	}
}
.error_result_buttons{

}

/*-- END -------------------------------------------*/

.mobile{display: none;}

/*-- media query -----------------------------------*/

@media only screen and (max-width: 767px){

	.desktop{display: none;}
	.mobile{display: block;}
	br.mobile{display: inline-block;}

}

