/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, img, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/*回り込み回避*/
.cf:before,
.cf:after {
	content:"";
	display: table;
}
.cf:after {
	clear: both;
}
.flow-root {
	display: flow-root;
}



/*================================
↓　各ブレイクポイント毎の display:none;
==================================
.pc_all-none………すべてのPCで表示しない
.pc_lg-none…………大きいPCでは表示しない
.pc-none…………………ノートPCでは表示しない
.tab_all-none……すべてのタブレットで表示しない
.tab_lg-none………タブレット(横画面)では表示しない
.tab-none………………タブレット(縦画面)では表示しない
.sp-none…………………スマホでは表示しない
================================*/


/*================================
PC表示　MAX～1367pxまで
==================================
FHD 1920 × 1080
================================*/
@media (min-width: 1367px) {
	.pc_all-none {
		display: none !important;
	}
	.pc_lg-none {
		display: none !important;
	}
}

/*================================
ノートPC 1366px～1081pxまで
==================================
FWXGA 1366 x 768
WXGA 	1280 × 800
iPad Pro(12-inch)横 1366 x 1024
iPad Pro(11-inch)横 1194 x 834
iPad Air横 1180 x 820
================================*/
@media (max-width: 1366px) and (min-width: 1081px) {
	.pc_all-none {
		display: none !important;
	}
	.pc-none {
		display: none !important;
	}
}

/*================================
TABLET横 1080px～835pxまで
==================================
iPad Pro(12-inch)縦 1024 x 1366
iPad横 1080 x 810
iPad mini横 1024 x 768
================================*/
@media (max-width: 1080px) and (min-width: 835px) {
	.tab_all-none {
		display: none !important;
	}
	.tab_lg-none {
		display: none !important;
	}
}

/*================================
TABLET縦 834px～668pxまで
==================================
iPad Pro(11-inch)縦 834 x 1194
iPad Air縦 820 x 1180
iPad縦 810 x 1080
iPad mini縦 768 x 1024
================================*/
@media (max-width: 834px) and (min-width: 668px) {
	.tab_all-none {
		display: none !important;
	}
	.tab-none {
		display: none !important;
	}
}

/*================================
SP表示 667px～0pxまで
==================================
iPhoneSE(第三世代)横 667x375
================================*/
@media (max-width: 667px) {
	.sp-none {
		display: none !important;
	}
}










