@charset "utf-8";

header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	background-color: #fff;
	box-shadow: 0px 5px 5px rgba( 50, 50, 50, 0.3);
}
header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	height: 72px;
	animation: fadeIn 1.5s;
	z-index: 500;
}
@keyframes fadeIn {
	0% {
		transform: translateY(-75px)
	}
	100% {
		transform: translateY(0)
	}
}
@media only screen and (max-width:768px) {
	header {
		height: 80px;
	}
	header.fixed {
		height: 64px;
	}
}
@media screen and (max-width: 480px) {
	header {
		height: 54px;
	}
	header.fixed {
		height: 46px;
	}
}
header .headerArea {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0 0;
	text-align: left;
	display: flex;
	align-items: center;
}
header .headerArea .logoArea {
	display: inline-block;
	width: auto;
	margin: 0 auto 0 20px;
	padding: 10px 0;
	text-align: left;
}
header .headerArea .logoArea a {
	display: block;
	font-size: 20px;
}
header .headerArea .logoArea a img {
	width: auto;
	height: 70px;
	display: block;
}
/*ヘッダー固定*/
header.fixed .logoArea {
	padding: 8px 0;
}
header.fixed .logoArea a img {
	height: 56px;
}
@media only screen and (max-width:768px) {
	header .headerArea .logoArea {
		margin: 0 auto 0 10px;
		padding: 8px 0;
	}
	header .headerArea .logoArea a img {
		height: 64px;
	}
	/*ヘッダー固定*/
	header.fixed .logoArea {
		padding: 8px 0;
	}
	header.fixed .logoArea a img {
		height: 48px;
	}
}
@media only screen and (max-width:480px) {
	header .headerArea .logoArea {
		margin: 0 auto 0 10px;
		padding: 8px 0;
	}
	header .headerArea .logoArea a img {
		height: 38px;
	}
	/*ヘッダー固定*/
	header.fixed .logoArea {
		padding: 6px 0;
	}
	header .headerArea .logoArea a {
		font-size: 12px;
	}
	header.fixed .logoArea a img {
		height: 34px;
	}
}

/* お問い合わせナビ */
header nav {
	position: absolute;
	top: 0;
	right: 20px;
	width: auto;
	height: 90px;
}
header nav ul {
	margin: 0;
	padding: 0;
	width: auto;
}
header nav ul li {
	margin: 0;
	padding: 10px 0;
}
header nav ul li a {
	display: block;
}
header nav ul li a img {
	display: block;
	width: auto;
	height: 70px;
}
/*ヘッダー固定*/
header.fixed nav {
	height: 72px;
}
header.fixed nav ul li {
	padding: 8px 0;
}
header.fixed nav ul li a img {
	height: 56px;
}
@media only screen and (max-width:768px) {
	header nav {
		right: 10px;
		height: 80px;
	}
	header nav ul li {
		padding: 10px 0;
	}
	header nav ul li a img {
		height: 60px;
	}
	/*ヘッダー固定*/
	header.fixed nav {
		height: 64px;
	}
	header.fixed nav ul li {
		padding: 6px 0;
	}
	header.fixed nav ul li a img {
		height: 52px;
	}
}
@media only screen and (max-width:480px) {
	header nav {
		right: 5px;
		height: 54px;
	}
	header nav ul li {
		padding: 6px 0;
	}
	header nav ul li a img {
		height: 42px;
	}
	/*ヘッダー固定*/
	header.fixed nav {
		height: 46px;
	}
	header.fixed nav ul li {
		padding: 6px 0;
	}
	header.fixed nav ul li a img {
		height: 34px;
	}
}


footer {
	margin-top: 7.5rem;
	background: #000;
	background: linear-gradient(135deg, #233066, #000000);
}
footer .footerInner {
	position: relative;
	width: 100%;
	/* min-width: 900px; */
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding: 7.5rem 0;
	box-sizing: border-box;
}
footer .footerInner .footerFlex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .footerInner .footerFlex > div:nth-child(1) {
	width: 30%;
	text-align: left;
}
/* footer .footerInner .footerFlex > div:nth-child(2){
	width: 65%;
} */
footer .footerInner .footerFlex > div .logoArea {
	display: inline-block;
}
footer .footerInner .footerFlex > div .logoArea a {
	display: block;
	width: 100%;
	height: auto;
	color: white;
	font-size: 18px;
}
footer .footerInner .footerFlex > div .logoArea a img {
	display: block;
}
footer .footerInner .footerFlex > div p {
	text-align: left;
}
footer .footerInner .footerFlex > div .accessInfo {
	display: flex;
	width: auto;
	margin-top: 1.5rem;
}
footer .footerInner .footerFlex > div .accessInfo li:nth-child(1) {
	padding-right: 3rem;
}
footer .footerInner .footerFlex > div .accessInfo li {
	width: auto;
	color: #fff;
	font-size: 3.6rem;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	/* padding-right: 3rem; */
}
footer .footerInner .footerFlex > div .accessInfo li a {
	color: #fff;
}
footer .copyright {
	color: #fff;
	background-color: #000;
	padding: 1.5rem 0 2rem;
	text-align: center;
	font-family: 'Roboto Condensed', sans-serif;
}
@media only screen and (max-width:768px) {
	footer {
		margin-top: 5rem;
	}
	footer .footerInner {
		width: 95%;
		min-width: 95%;
		max-width: 95%;
		padding: 3.5rem 0;
	}
	footer .footerInner .footerFlex {
		display: block;
		text-align: center;
	}
	footer .footerInner .footerFlex > div:nth-child(1),
	footer .footerInner .footerFlex > div:nth-child(2){
		display: block;
		width: auto;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	footer .footerInner .footerFlex > div .logoArea a img {
		width: auto;
		height: 60px;
	}
	footer .footerInner .footerFlex > div p {
		font-size: 1.3rem;
		margin-top: 2rem;
		text-align: center;
	}
	footer .footerInner .footerFlex > div .accessInfo {
		display: flex;
		justify-content: center;
		margin-top: 1.0rem;
	}
	footer .footerInner .footerFlex > div .accessInfo li {
		font-size: 3.0rem;
		padding-right: 2rem;
	}
	footer .copyright {
		padding: 1.25rem 0 1.75rem;
	}
}
@media only screen and (max-width: 480px) {
	footer {
		margin-top: 3.5rem;
	}
	footer .footerInner {
		padding: 3.0rem 0;
	}
	footer .footerInner .footerFlex > div .logoArea a {
		font-size: 14px;
	}
	footer .footerInner .footerFlex > div .logoArea a img {
		height: 50px;
	}
	footer .footerInner .footerFlex > div p {
		font-size: 1.2rem;
	}
	footer .footerInner .footerFlex > div .accessInfo li:nth-child(1) {
		padding-right: 1rem;
	}
	footer .footerInner .footerFlex > div .accessInfo li {
		font-size: 1.8rem;
		padding-right: 1rem;
	}
	footer .copyright {
		padding: 1.0rem 0 1.5rem;
	}
}



/*

*/
