@charset "UTF-8";
/*----------------------------------------------------
	再設定
----------------------------------------------------*/
html {
	font-size: 16px;
}

body {
	font-family: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
		"ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	color: #191919;
}

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

img {
	max-width: 100%;
	height: auto;
	width: auto;
	vertical-align: middle;
}

/*----------------------------------------------------
	共通レイアウト
----------------------------------------------------*/
#header {
	width: 100%;
	line-height: 1;
	background-color: rgba(255, 255, 255, 0.8);
}
#header.fixed {
	position: fixed;
	z-index: 999;
	-webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
}
#header.fixed .header_desc {
	display: none;
}
#header.fixed .header_logo {
	display: none;
}
#header.fixed .header_info {
	display: none;
}

.header_bn {
	position: absolute;
	top: 20px;
}
.header_bn img {
	width: 200px;
}
.header_bn02 {
	position: absolute;
	top: 20px;
	right: 0;
}
.header_bn02 img {
	width: 200px;
}
.header_desc {
	padding: 26px 0 0;
	text-align: center;
}
.header_desc img {
	margin-right: 46px;
}
.header_logo {
	padding: 0 0 18px;
	text-align: center;
}
.header_logo img {
	margin-right: 46px;
}
.header_info {
	position: absolute;
	right: 0;
	top: 92px;
}
.header_info .address {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
}
.header_info .tel {
	font-size: 20px;
	color: #497172;
}
.header_nav ul {
	-js-display: flex;
	display: flex;
	justify-content: space-between;
}
.header_nav ul li {
	padding: 18px 4px 16px;
}
.header_nav ul a:hover {
	color: #99d4da;
}
.header_nav ul .contact {
	padding: 9px 4px 8px;
}
.header_nav ul .contact a {
	display: inline-block;
	padding: 9px 1.5em 8px;
	color: #fff;
	background-color: #497172;
}
.header_nav ul li.menu_bn {
	display: none;
}
.header_menu {
	display: none;
	position: absolute;
	right: 0;
	top: 0px;
	z-index: 2;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.header_menu div {
	position: relative;
}
.header_menu span {
	display: block;
	position: absolute;
	height: 3px;
	width: 26px;
	background: #70c6d0;
	left: 12px;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}
.header_menu span:nth-child(1) {
	top: 15px;
}
.header_menu span:nth-child(2) {
	top: 23px;
}
.header_menu span:nth-child(3) {
	top: 31px;
}
.header_menu.open span:nth-child(1) {
	top: 28px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.header_menu.open span:nth-child(2) {
	width: 0;
	left: 50%;
}
.header_menu.open span:nth-child(3) {
	top: 28px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

@media (max-width: 767px) {
	#main {
		padding-top: 50px;
	}

	#header {
		position: fixed;
		height: 50px;
		z-index: 999;
	}
	.header_bn {
		display: none;
	}
	.header_bn02 {
		display: none;
	}
	.header_desc {
		display: none;
	}
	.header_logo {
		padding: 7px 0;
		text-align: left;
	}
	.header_logo img {
		margin-right: 0;
		height: 36px;
	}
	.header_info {
		display: none;
	}
	.header_nav {
		display: none;
		position: absolute;
		left: 0;
		top: 50px;
		width: 100%;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.8);
	}
	.header_nav ul {
		flex-direction: column;
	}
	.header_nav ul li {
		padding: 0;
		border-bottom: #f6f6f6 1px solid;
	}
	.header_nav ul li a {
		display: block;
		padding: 1em 10px;
	}
	.header_nav ul .contact {
		padding: 0;
	}
	.header_nav ul .contact a {
		display: block;
		padding: 1em 10px;
	}
	.header_nav ul li.menu_bn {
		display: flex;
		margin: 20px 0;
		padding: 0 15px;
	}
	.header_nav ul li.menu_bn a {
		padding: 0 5px;
	}
	.header_menu {
		display: block;
	}
	.header_menu.open + .header_nav {
		display: block;
		animation: show 0.3s linear 0s;
	}
}
@keyframes show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
#footer {
	border-top: #f6f6f6 2px solid;
}

.footer_nav {
	padding: 17px 0 15px;
	text-align: center;
}
.footer_nav li {
	display: inline-block;
	font-size: 14px;
}
.footer_nav li:after {
	content: "｜";
	margin: 0 0.1em 0 0.2em;
}
.footer_nav li:last-child:after {
	content: "";
}
.footer_nav li a:hover {
	color: #99d4da;
}
.footer_map iframe {
	width: 100%;
	height: 400px;
}
.footer_copyright {
	padding: 30px 0 10px;
	text-align: center;
	font-size: 13px;
}

@media (max-width: 767px) {
	.footer_nav {
		display: none;
	}
	.footer_map iframe {
		width: 100%;
		height: 200px;
	}
	.footer_copyright {
		padding: 16px 0 10px;
		font-size: 11px;
	}
}
/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/
.hide {
	display: none;
}

.pc {
	display: inline;
}
.pc.block {
	display: block;
}
.pc.inline-block {
	display: inline-block;
}
.pc_hide {
	display: none;
}
.pc_hide.block {
	display: none;
}
.pc_hide.inline-block {
	display: none;
}

.tab,
.sp {
	display: none;
}
.tab.block,
.sp.block {
	display: none;
}
.tab.inline-block,
.sp.inline-block {
	display: none;
}

.clearfix,
.container {
	*zoom: 1;
}
.clearfix:before,
.container:before,
.clearfix:after,
.container:after {
	content: "";
	display: table;
}
.clearfix:after,
.container:after {
	clear: both;
}

.container {
	max-width: 1020px;
	position: relative;
	padding: 0 10px;
	margin: 0 auto;
}

/*----------------------------------------------------
	phone - tablet < 768px
----------------------------------------------------*/
@media (max-width: 767px) {
	/* tablet レイアウト */
	/* tablet 共通 */
	.sp {
		display: inline;
	}
	.sp.block {
		display: block;
	}
	.sp.inline-block {
		display: inline-block;
	}
	.sp_hide {
		display: none;
	}
	.sp_hide.block {
		display: none;
	}
	.sp_hide.inline-block {
		display: none;
	}

	.pc {
		display: none;
	}
	.pc.block {
		display: none;
	}
	.pc.inline-block {
		display: none;
	}
	.pc_hide {
		display: inline;
	}
	.pc_hide.block {
		display: block;
	}
	.pc_hide.inline-block {
		display: inline-block;
	}
}
/*----------------------------------------------------
	汎用クラス(下層ページ)
----------------------------------------------------*/
