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

/*
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 (401px <= width <= 500px) {}
@media (width <= 400px) {}
@media (501px <= width) and (height <= 768px) {}
@media (height <= 768px) {}

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

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

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

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

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

/*----------------------------------------------------------------------> ▼ variable <--*/

html {
	--border: 1px solid #ccc;
	--border_light: 1px solid #eee;
	--border_dark: 1px solid #333;

	--border_radius: 15px;
	--border_radius_light: 5px;
	
	--box_shadow: 0 0 3px #ddd;
	--box_shadow_light: 0 0 15px #eee;
	
	--hover: #f90;
	--theme: #1c2a54;
	--theme_bg: #205d9a;
	--theme_hover: #205d9a;
	--red: #a81d38;
	--red_bg: #a81d38;
	--red_hover: #a81d38;
	--blue: #004198;
	--blue_bg: #004198;
	--blue_hover: #004198;
	--success: #f00;
	--error: #c00;
	
	--transition: all ease 0.2s;
}

@media (width <= 1023px) {
	html {
		--border_radius: 10px;
	}
}

/*----------------------------------------------------------------------> ▼ margin <--*/

@media (1024px <= width) {
	html {
		--margin: 100px;
	}
}

@media (768px <= width <= 1023px) {
	html {
		--margin: 50px;
	}
}

@media (width <= 767px) {
	html {
		--margin: 30px;
	}
}

/*----------------------------------------------------------------------> ▼ body <--*/

body {
}

@media (width <= 1023px) {
	body {
	}
}

/*----------------------------------------------------------------------> ▼ 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);
	}
}

/*----------------------------------------------------------------------> ▼ .section <--*/

section {
	position: relative;
	text-align: center;
}



h3 {
	margin-bottom: 15px;
	padding: 15px;
	background: #fffae0;
}

/*----------------------------------------------------------------------> ▼ ol <--*/

ol {
	padding-left: 1em;
}

ol li {	
	list-style-type: decimal;
}

/*----------------------------------------------------------------------> ▼ lightbox <--*/

.lb-data .lb-caption {
	font-weight: normal !important;
	line-height: 1.25em !important;
	color: #fff;
}

.lb-outerContainer {
	border-radius: 10px !important;
	overflow: hidden;
}

.lightbox .lb-image {
	border-radius: 12px !important;
}

.lb-dataContainer {
	margin: 2px auto 0 !important;
}

.lb-number {
	display: none !important;
}
