@charset "UTF-8";

html, body { height: 100%; }
.contents_wrap{
	height: calc(100vh - 80px);
	position: relative;
}

.contents{
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	display: flex;
  align-items: center;
	height: calc(95% - 145px);
	font-size: 5vmin;
	color:#333;
	font-weight: bold;
	line-height: 2;
}

.footer{
	position: absolute;
	bottom:0;
	width: 100%;
	height: 50px;
}

.smp{
	display: none;
}


.pc{
	display: block;
}

@media screen and (max-width: 989px){
	.smp{
		display: block;
	}

	.pc{
		display: none;
	}

	.contents{
		font-size: 6vmin;
		margin-left: 15px;
	}

}
