@charset "UTF-8";
/* ****************************************************************** 

	--style.css--

	1. Style setting
		1-1. FontColor styles
		1-2. Headline styles

	2. Layout setting
		2-1. Base styles
		2-2. Header styles
		2-3. Navi styles
		2-4. Main styles
		2-5. Side styles
		2-6. Footer styles

****************************************************************** */

/*==================================================================
	1. Style setting
===================================================================*/

/* ------------------------------------------------------------------
	1-1. FontColor styles
-------------------------------------------------------------------*/
html {
	color: #333;
}

body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* a:link, a:visited { color:#06C; }
.pcStyle a:hover {
	color:#06C;
	text-decoration:none;
} */
.touchHover,
.noTapColor,
button {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pcDisplay {
	display: block;
}

.spDisplay {
	display: none;
}

@media screen and (max-width:768px) {
	.pcDisplay {
		display: none;
	}

	.spDisplay {
		display: block;
	}
}


/* ------------------------------------------------------------------
	1-2. Headline styles
-------------------------------------------------------------------*/


/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Base styles
-------------------------------------------------------------------*/
.inner,
.contents {
	clear: both;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.contents.fullSize {
	max-width: none;
	padding: 0;
}

body {
	padding-top: 80px;
}

@media screen and (max-width:1230px) {
	.inner,
	.contents {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width:768px) {
	body {
		padding-top: 60px;
	}
}

/* ====== .header ===== */
.header {
	background-color: #fff;
	padding: 30px 0 20px;
	left: 0;
	position: fixed;
	top: 0;
	transition: box-shadow 0.3s;
	width: 100%;
	z-index: 999;
}
.header.fixed {
	box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
.headerInner {
	display: flex;
	justify-content: space-between;
}
.headerLogo img {
	width: 100px;
}
.headerNav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.headerNav li {
	align-items: flex-end;
	display: flex;
	height: 100%;
	margin-left: 59px;
}
.headerNav a {
	color: #565b5e;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.3s;
}
.headerNav a:hover,
.headerNav a.active {
	color: #00afcc;
}
.headerBtn {
	display: none;
}

@media screen and (max-width:768px) {
	.header {
		padding: 15px 0;
	}
	.headerBtn {
		display: block;
		height: 20px;
		margin: 0;
		right: 15px;
		padding: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 25px;
		z-index: 100;
	}
	.headerBtn span {
		background-color: #00afcc;
		border-radius: 3px;
		height: 3px;
		left: 0;
		position: absolute;
		transition: transform .5s;
		width: 100%;
	}
	.headerBtn span:nth-child(1) {
		top: 0;
	}
	.headerBtn span:nth-child(2) {
		top: 8px;
	}
	.headerBtn span:nth-child(3) {
		top: 16px;
	}
	.headerBtn.active span:nth-child(1) {
		top: 8px;
		transform: rotate(40deg);
	}
	.headerBtn.active span:nth-child(2) {
		opacity: 0;
	}
	.headerBtn.active span:nth-child(3) {
		top: 8px;
		transform: rotate(140deg);
	}
	.headerLogo {
		position: relative;
		z-index: 100;
	}
	.headerNav {
		background-color: rgba(255, 255, 255, 0.98);
		box-shadow: 0 9px 9px -5px rgba(87, 87, 88, 0.21);
		display: block;
		padding: 35px 15px 55px;
		position: fixed;
		width: 100%;
		left: 0;
		text-align: center;
		transition: top 0.3s;
		top: -100%;
		z-index: 99;
	}
	.headerNav.active {
		top: 60px;
	}
	.headerNav li {
		display: block;
		height: inherit;
		margin-bottom: 30px;
		margin-left: 0;
	}
	
	.headerNav a {
		font-size: 24px;
	}
}

/* ====== .contact ===== */
.contactMap {
	background-color: #565b5e;
	font-size: 0;
	line-height: 0;
	text-align: center;
	width: 100%;
}

.contactMap img {
	margin: 0 auto;
	max-width: 100%;
}

.contactMap::after {
	background-color: #f2f2f3;
	content: "";
	display: block;
	height: 80px;
	width: 100%;
}

.contactWrap {
	padding: 70px 0;
	text-align: center;
}

.contactBtn {
	align-items: center;
	background-color: #565b5e;
	color: #fff;
	display: flex;
	font-size: 20px;
	font-weight: normal;
	height: 80px;
	line-height: 1;
	justify-content: center;
	text-decoration: none;
	margin: 0 auto;
	transition: background-color 0.3s;
	width: 380px;
	padding-left: 50px;
}

.contactBtn img {
	margin: 10px 0 0 10px;
}

.contactBtn:hover {
	background-color: #00afcc;
}

@media screen and (max-width:768px) {
	.contactMap::after {
		height: 40px;
	}

	.contactWrap {
		padding: 35px 30px;
	}

	.contactBtn {
		font-size: 15px;
		height: 60px;
		max-width: 100%;
	}

	.contactBtn img {
		margin-top: -7px;
	}
}

/* ====== .footer ===== */
.footer {
	background-color: #565b5e;
	padding: 30px 0 135px;
}

.footerInner {
	display: flex;
	justify-content: space-between;
}

.footerLogo img {
	width: 100px;
}

.footerNav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footerNav li {
	align-items: flex-end;
	display: flex;
	height: 100%;
	margin-left: 59px;
}

.footerNav a {
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.3s;
}

.footerNav a:hover {
	color: #00afcc;
}

@media screen and (max-width:768px) {
	.footer {
		padding: 30px 0;
	}

	.footerInner {
		flex-wrap: wrap;
	}

	.footerLogo {
		margin-bottom: 40px;
		text-align: center;
		width: 100%;
	}

	.footerLogo a {
		display: inline-block;
		margin: 0 auto;
	}

	.footerNav {
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0 30px;
		width: 100%;
	}

	.footerNav li {
		align-items: inherit;
		display: inline-block;
		height: auto;
		margin-bottom: 20px;
		margin-left: 0;
		width: calc(50% - 50px);
	}

	.footerNav a {
		font-size: 13px;
	}
}

@media screen and (max-width:576px) {
	.footerNav li {
		width: calc(50% - 25px);
	}
}

/* ====== .bottom ===== */
.bottom {
	margin: 15px 0 65px;
}

.bottomNav {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bottomNav li {
	align-items: center;
	display: flex;
	height: 100%;
	margin-left: 30px;
}

.bottomNav span,
.bottomNav a {
	color: #565b5e;
	font-size: 12px;
	text-decoration: none;
	transition: color 0.3s;
}

.bottomNav a:hover {
	color: #00afcc;
}

@media screen and (max-width:768px) {
	.bottomNav {
		justify-content: space-between;
	}

	.bottomNav li {
		margin-left: 0;
	}

	.bottomNav li img {
		width: 45px;
	}
}

@media screen and (max-width:576px) {

	.bottomNav span,
	.bottomNav a {
		font-size: 10px;
	}
}

@media screen and (max-width:320px) {
	.bottomNav {
		flex-wrap: wrap;
	}

	.bottomNav li:last-child {
		margin-top: 15px;
		text-align: center;
		width: 100%;
	}

	.bottomNav li:last-child a {
		display: inline-block;
		margin: 0 auto;
	}
}