@charset "UTF-8";
:root{
	--body : #000;
	--link : #000;
}

/*--------------------------------------------
MAIN VISUAL
---------------------------------------------*/
section.title {
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 0px;
}
	section.title h1 {
		display: flex;
		line-height: 1.3em;
		padding: 0;
		margin: 0;
	}
@media screen and (max-width: 750px){
	section.title {
		height: calc( 200 * 100vw / 750 );
		font-size: calc( 40 * 100vw / 750 );
	}
}
@media print,screen and (min-width: 751px){
	section.title {
		height: 200px;
		font-size: 28px;
	}

}
