@charset "UTF-8";
@import url("./layout.css");

:root{
	--global--color--white: #ffffff;
}

html,body{
	font-family: "Noto Sans JP", sans-serif;
}


img{ max-width: 100%; }


header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 11.5rem;
	background-color: #cc0000;
}

.header{
	display: flex;
	padding: 0 3rem;
	height: 11.5rem;
	justify-content: space-between;
	align-items: center;
}
.header .logo{
	display: flex;
	align-items: center;
	height: 100%;
	width: 18rem;
}

header .menu ul{
	display: flex;
}
header .menu ul li:not(:last-child){
	margin-right: 3rem;
}
header .menu ul li a{
	color: var(--global--color--white);
}




footer{
	padding: 6rem 0 5rem;
	background-color: var(--global--color--white);
}
footer .footer-inner{
	padding: 0 8rem;
}