@charset "UTF-8";

html,html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
}

body {
	background: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	color: #424242;
}

a {
	text-decoration: none;
	color: #424242;
}

ul,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin-bottom: 1.5em;
}

p:last-child {
	margin-bottom: 0px;
}

.container {
	max-width: 1520px;
	margin: 0 auto;
}

/* ヘッダー */
header {
	width: 100%;
	height: 300px;
	background-image: url(../img/hero.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

header div.container {
	padding: 20px 30px;
}

header div.box {
	padding: 12px 24px;
	background: #fff;
	border-radius: 8px;
}

header div.box img.logo {
	display: block;
	width: 100%;
	max-width: 130px;
	height: auto;
}

.globalMenu ul li {
	text-align: center;
}

.globalMenu ul li a {
	display: block;
	padding: 6px 12px;
}

.globalMenu ul li span {
	display: block;
	color: #fff;
	background: #ffb359;
	border-radius: 8px;
	padding: 3px 8px;
}

/* トグルボタン */
#nav_toggle {
	display: block;
	position: relative;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center
}
#nav_toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 3px solid #424242;
	transition: 0.35s ease-in-out;
}
#nav_toggle span:nth-child(1) {
	top: 9px;
}
#nav_toggle span:nth-child(2) {
	top: 18px;
}
#nav_toggle span:nth-child(3) {
	top: 27px;
}
.open #nav_toggle span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}
.open #nav_toggle span:nth-child(2),
.open #nav_toggle span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/* フッター */
footer {
	background: #867255;
	color: #fff;
	padding: 20px 0;
}

footer div.container {
	padding: 0 30px;	
}

footer img.logo {
	display: block;
	width: 100%;
	max-width: 229px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

footer small {
	display: block;
	font-size: 16px;
	color: #fff;
	text-align: center;
}

/* 404 NOT FOUND */
section.not_found {
	padding: 60px 0;
}

section.not_found h2,
section.not_found p {
	text-align: center;
	padding: 0 15px;
}

section.not_found h2 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 1em;
}

section.not_found p {
	font-size: 16px;
}

/* デスクトップ用 */
@media(min-width:1200px) {
	/* ヘッダー */
	header {
	width: 100%;
	height: 100vh;
	}
	header div.container {
	padding: 20px 60px;
	}
	header div.box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	header div.box img.logo {
	max-width: 234px;
	}
	.globalMenu {
	display: block !important ;
	}
	.globalMenu ul {
	display: flex;
	align-items: center;
	}
	/* トグルボタン */
	#nav_toggle {
	display: none;
	}
	/* フッター */
	footer div.container {
	padding: 0 60px;	
	}
}

/* スマートフォン用 */
@media(max-width:1199px) {
	.container-small {
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	.globalMenu {
	display: none;
	}
}