@charset "UTF-8";

html,html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
}
body {
	font-weight: 400;
	background: #ffffff;
	color: #434343;
	font-size: 16px;
	line-height: 1.6em;
}
a {
	text-decoration: none;
	color: #434343;
}
ul,ol,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
span.sp,div.sp {
	display: block;
}
span.pc,div.pc {
	display: none;
}

/* --- ヘッダー --- */
header div.container1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header div.container1 a img {
	display: block;
	width: 300px;
	height: auto;
}

/* --- トグルボタン --- */
#nav_toggle {
	display: block;
	position: relative;
	right: 10px;
	width: 42px;
	height: 40px;
	cursor: pointer;
	background-color: #434343;
	border-radius: 6px;
	text-align: center
}
#nav_toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: 3px solid #fff;
	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);
}

/* --- グローバルナビゲーション --- */
header nav ul li a {
	display: block;
	font-size: 18px;
	color: #ffffff;
	background: #434343;
	text-align: center;
	padding: 20px 0;
}

/* --- フッター --- */
footer section.footer_tel {
	padding: 100px 30px 85px;
	display: flex;
	justify-content: center;
}
footer section.footer_content {
	background: #434343;
	color: #ffffff;
}

footer section.footer_content div.container div.footer_about {
	padding: 45px 30px 60px;
}

footer section.footer_content div.container div.footer_about h2 {
	margin-bottom: 20px;
}

footer section.footer_content div.container div.footer_about h2 img {
	display: block;
	width: 260px;
	height: auto;
}

footer section.footer_content div.container div.footer_about p {
	font-size: 16px;
	margin-bottom: 18px;
}

footer section.footer_content div.container div.footer_about p:last-child {
	margin-bottom: 0px;
}

/* --- フッターナビゲーション --- */
footer nav.footerMenu1 ul li a,
footer nav.footerMenu2 ul li a {
	display: block;
	font-size: 18px;
	color: #ffffff;
	background: #343434;
	text-align: center;
	padding: 20px 0;
}

footer span.sp img.tel {
	width: 400px;
	height: auto;
}

/* --- コピーライト --- */
footer section.footer_copyrights {
	background: #000000;
	color: #ffffff;
}

footer section.footer_copyrights div.container {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer section.footer_copyrights div.container p.text {
	padding-left: 8px;
	font-size: 14px;
}

/* デスクトップ用 */
@media(min-width:1200px) {
	span.sp,div.sp {
	display: none;
	}
	span.pc,div.pc {
	display: block;
	}
	
	/* --- ヘッダー --- */
	header div.container1 {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
	header div.container2 {
	display: flex;
	flex-direction: column-reverse;
	}
	
	/* --- トグルボタン --- */
	#nav_toggle { display: none; }

	/* --- グローバルナビゲーション --- */
	.globalMenu {
	display: block !important ;
	}
	header nav { background: #434343; }
	header nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	}
	header nav ul li a {
	display: block;
	font-size: 14px;
	color: #ffffff;
	background: none;
	border-bottom: none;
	padding: 15px 25px;
	}
	
	/* --- フッター --- */
	footer section.footer_tel {
	padding: 85px 0px 70px;
	}
	footer span.pc img.tel {
	width: 360px;
	}
	footer section.footer_content div.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 45px;
	padding-bottom: 40px;
	display: flex;
	justify-content: space-between;
	}
	footer section.footer_content div.container div.footer_about {
	padding: 0px;
	flex: 0 0 50%;
	}
	footer section.footer_content div.container nav.footerMenu1,
	footer section.footer_content div.container nav.footerMenu2 {
	flex: 0 0 25%;
	}
	footer section.footer_content div.container div.footer_about h2 img {
	width: 300px;
	}
	footer section.footer_content div.container div.footer_about p {
	font-size: 14px;
	}
	
	/* --- フッターナビゲーション --- */
	footer nav.footerMenu1 ul li a,
	footer nav.footerMenu2 ul li a {
	display: block;
	font-size: 14px;
	color: #ffffff;
	background: #434343;
	text-align: left;
	padding: 3px 0px;
	}
	
	/* --- コピーライト --- */
	footer section.footer_copyrights div.container {
	padding: 15px 0px;
	}
	footer section.footer_copyrights div.container p.text {
	padding-left: 16px;
	font-size: 14px;
	}
}

/* スマートフォン用 */
@media(max-width:1199px) {
	.globalMenu {
	display: none;
	}
}
@media(max-width:641px) {
	footer span.sp img.tel {
	width: 100%;
	height: auto;
	}
}