/* CSS Document */
@import url('//fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');


body{
	color: #2b2926;
	fill: currentColor;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	line-height: 1em;
	}
	body *{
		line-height: inherit;
		}

#wrapper{
	width: 100%;
	}

#header,#footer{
	padding: 4em;
	text-align: center;
	background: #666;
	color: #fff;
	}
#header{
	margin-bottom: 4em;
	}


/* for all */
@media (max-width: 1199.98px) {
/*1199px以下*/
}
@media (max-width: 991.98px) {
/*991px以下*/
body{}
	body:not(.nav){}
		body:not(.nav) #nav{
			left: 100vw;
			}
}


/* for mobile */
@media (max-width: 767.98px) {
/*767px以下*/
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下縦向き*/
body{
	font-size: 4vw;
	}
}
@media (max-width: 767.98px) and (orientation:landscape) {
/*767px以下横向き*/
body{
	font-size: 2.2vw;
	}
}
@media (max-width: 767.98px) and (orientation:portrait), (max-width: 575.98px) and (orientation:landscape) {
/*767px以下縦向き, 575px以下横向き*/
}
@media (min-width: 576px) and (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) {
/*576px～767px横向き, 768px以上,*/
}
@media (min-width: 576px) and (max-width: 767.98px) and (orientation:landscape), (min-width: 768px) and (max-width: 991.98px) {
/*576px～767px横向き, 768px～991px*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
html{
	font-size: 62.5%;
	}
}
@media (min-width: 768px) and (max-width: 1199.98px) {
/*768px～1199px*/
body{
	font-size: 1.4rem;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
}
@media (min-width: 992px) and (max-width: 1199.98px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
body{
	font-size: 1.6rem;
	}
}


/* ie */
@media all and (-ms-high-contrast: none) {
body{
	/*text-justify: inter-cluster;*/
	}
}