/*----------------------------------------------------
** WEB COMBO / resizeobserver.css
** Ver.1.0.0
** copyright 2020 GRANTEST Inc.
**----------------------------------------------------
** Common settings
**----------------------------------------------------*/
#wcsizecheckX,
#wcsizecheckY {
	overflow: hidden;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	color: rgba(0,0,0,0);
	background-color: rgba(255,255,255,0);
}
#wcsizecheckX {
	width: 100vw;
	height: 0;
}
#wcsizecheckY {
	width: 0;
	height: 100%;
	bottom: 0;
}
@media screen and (max-width:767px){
	#wcsizecheckX::before{
		content: 'sp'
	}
}
@media screen and (max-width:320px){
	#wcsizecheckX::before{
		content: 'sp small'
	}
}
@media screen and (min-width:768px) and (max-width:1099px){
	#wcsizecheckX::before{
		content: 'tb'
	}
}
@media (orientation: landscape) and (max-width:568px){
	#wcsizecheckX::before{
		content: 'sp small landscape'
	}
}
@media (orientation: landscape) and (min-width:569px) and (max-width:724px){
	#wcsizecheckX::before{
		content: 'sp landscape'
	}
}
@media (orientation: landscape) and (min-width:725px) and (max-width:1099px){
	#wcsizecheckX::before{
		content: 'tb landscape'
	}
}
@media screen and (min-width:1100px){
	#wcsizecheckX::before{
		content: 'pc'
	}
}