@charset "utf-8";
html {
	overflow-y: scroll;
}
a {
	color: #111;
}
a:hover {
	color: #bd850d;
}
body {
	line-height: 1.6;
}
img {
	max-width: 100%;
	height: auto;
}
.container {
		max-width: 1280px;
		width: 100%; 
		margin: 0 auto;
		background: #fff;
	}
header {
	min-height: 120px;
}
.logo {
	width: 350px;
	height: 130px;
	display: flex;
	justify-content: center;
	margin-left: 450px;
	margin-bottom: 30px;

}


nav ul {
	display: flex;
	flex-wrap: nowrap; /* 折り返さない */
	justify-content: center; /* 中央揃え */
	text-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

nav ul li {
	width: 210px;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

nav ul li a {
	display: block;
	height: 36px;
	line-height: 36px; /* 垂直中央揃え */
	width: 100%;
	text-decoration: none;
	font-size: 16px;
}
nav ul li a:hover img {
	visibility: hidden;
}
.contents {
	display: flow-root;
}
footer {
	font-size: 85.72%;
	text-align: center;
	letter-spacing: 0.1em;
	padding: 15px;
	margin-top: 30px;
}
footer ul {
	margin-bottom: 10px;
}
footer ul li {
	display: inline-block;
}
footer ul li + li::before {
	content	: "|";
}

/* PC版で非表示にする */
@media screen and (min-width: 966px) {
    label[for="menu"],
    input#menu {
        display: none !important;
    }
}