@charset "utf-8";

/*
1921 -      4Kディスプレイ
1367 -      ワイドディスプレイ
1281 - 1366 スモールワイドディスプレイ
1024 - 1280 ラージタブレット・スクエアディスプレイ
 768 - 1023 タブレット
 501 -  767 スモールタブレット
 361 -  500 スマホ
     -  360

400 スマホ360 (360 - 720)
448 スマホ410 (410 - 820)
810 タブレット768 (768 - 875)
1064 タブレット横768 (1024 - 768)
1320 スクエア1280 (1280 - 875)
1400 ノート1366 (1366 －768)

@media (1367px <= width) {}
@media (1281px <= width <= 1366px) {}
@media (1024px <= width <= 1280px) {}
@media (768px <= width <= 1023px) {}
@media (501px <= width <= 767px) {}
@media (width <= 500px) {}

@media (hover: hover) and (pointer: fine) {}
*/

/*---------------------------------------------------------------------- general <--*/
/*---------------------------------------------------------------------- variable <--*/

body {
	--header_height: 100px;
	
	--border: 1px solid #ddd;
	--border_color: #ddd;
	--border_radius: 4px;
	--border_radius_light: 3px;
	--border_radius_full: 9999px;
	--border_pale: 1px solid #eee;	

	--box_shadow: 0 0 2px #aaa;

	--transition: all ease 0.2s;

	--blue: #00a0b0;
	--green: #3faf6f;
	--orange: #f80;
	--pink: #f69;
	--red: #d00;

	--success: #0bd;
	--success_bg: linear-gradient(#0b8, #0a7);
	--failure: #c00;
	--failure_bg: #fff0f0;
	--error: #c00;
	
	--theme: #00af7f;
	--theme: #000faf;
	
	--theme_bg: linear-gradient(#3faf6f, #0a7);
	--theme_hover: #0b8;
	--theme_hover_light: #efe;
	--theme_download: #fb0;
	--theme_download_light: #ffd;
	
	--transition: all ease 0.2s;
}


/*----------------------------------------------------------------------> ▼ scrollbar <--*/

html::-webkit-scrollbar{
	width: 5px;
}

html::-webkit-scrollbar-track{
	background: #bbb;
}

html::-webkit-scrollbar-thumb{
	background: #888;
}

/*----------------------------------------------------------------------> ▼ a <--*/

@media (hover: hover) and (pointer: fine) {
	a,
	a::before,
	a::after {
		cursor: pointer;
	}
	
	a,
	a::before,
	a::after,
	a:hover,
	a:hover::before,
	a:hover::after {
		transition: var(--transition);
	}
}

/*-----------------------------------------------------------------------------------------------> ▼ .wrap_content, .content <--*/

.wrap_content {
	display: flex;
}

.content {
	min-height: calc(100vh - var(--header_height));
	padding: 0 15px 15px;
	background: #f6f6f6;
	text-align: ;
	overflow-x: hidden;
}

@media (1367px <= width) {
	.content {
		width: calc(100% - 250px);
	}
	
	body.close_side_menu .content {
		width: calc(100% - 15px);
	}
}

@media (1250px <= width <= 1366px) {
	.content {
		width: calc(100% - 250px);
	}
	
	body.close_side_menu .content {
		width: calc(100% - 15px);
	}
}

@media (width <= 1249px) {
	.wrap_content {
		display: inherit;
	}

	.content {
		width: 100%;
	}
}

/*-----------------------------------------------------------------------------------------------> ▼ header_height <--*/

@media (769px <= width) {
	body {
		--header_height: 81px;
	}
}

@media (width <= 768px) {
	body {
		--header_height: 50px;
	}
}

/*-----------------------------------------------------------------------------------------------> ▼ .result <--*/

/*------------------------------> ▼ view <--*/

.general_result {
	max-width: calc(100% - 60px);
	height: fit-content;
	border-radius: var(--border_radius);
	text-align: center;
}

.general_result div {
	margin-bottom: 15px;
	text-align: center;
}

/*------------------------------> ▼ view <--*/

.general_result  div {
	line-height: 20px;
}

.general_result a.success, 
.general_result a.failure {
	display: inline-block;
	width: fit-content;
	min-width: 120px;
	line-height: 22px;
	padding: 5px 15px;
	border-radius: var(--border_radius_light);
	color: #fff;
	text-align: center;
}

.general_result a.success {
	background: var(--success);
}

.general_result a.failure {
	background: var(--failure);
}

.general_result span.failure {
	color: #d00;
}

/*------------------------------> ▼ view <--*/

div.success,
div.failure {
	display: inline-block;
	line-height: 24px;
	padding: 0px 15px;
	border-radius: var(--border_radius_light);
	color: #fff;
	font-family: NotoSans-M;
	font-size: 13px;
	letter-spacing: 0;
	text-align: center;
}

div.success {
	background: var(--success);
}

div.failure {
	background: var(--failure);
}

/*
div.success,
div.failure {
	display: inline-block;
	line-height: 20px;
	padding: 0px 15px 4px;
	border-radius: var(--border_radius);
	color: #fff;
	font-family: ;
	font-size: 13px;
	letter-spacing: 0;
	text-align: center;
}

div.success {
	background: var(--success);
}

div.failure {
	background: var(--failure);
}
*/



pre {
	line-height: 1.25em;
}



/*----------------------------------------------------------------------> ▼ check_directory <--*/


span.error {
	color: var(--failure);
}

.check_directory {
	margin-top: 15px;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: var(--border_radius);
	background: #fff;
}