@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
a, a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1240px;
	color: #000;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.5;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: scroll;
}
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
#main {
	margin-bottom: 171px;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
	}
	body.fixed {
		overflow-y: hidden;
	}
	#main {
		margin-bottom: 76px;
	}
	a:hover, a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	width: 100%;
	height: 100px;
	position: relative;
	z-index: 100;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
	background: #fff;
}
#gHeader h1 {
	width: 185px;
	position: absolute;
	left: 50%;
	top: 28px;
	transform: translateX(-50%);
}
#gHeader h1 img {
	width: 100%;
}
.menu {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	background: #7DBF41;
	transition: all 0.3s;
	z-index: 1000;
}
.menu.on {
	background: transparent;
}
.menu:hover {
	opacity: 0.7;
}
.menu::after {
	position: absolute;
	left: 50%;
	bottom: 10px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	content: 'メニュー';
	transform: translateX(-50%);
	transition: all 0.3s;
}
.menu.on::after {
	color: #000;
	bottom: 0;
	font-weight: normal;
	content: '閉じる';
}
.menu span {
	width: 48px;
	height: 3px;
	display: block;
	position: absolute;
	top: 29px;
	left: 26px;
	background: #fff;
	transition: all 0.3s;
}
.menu span:nth-child(2) {
	top: 45px;
}
.menu span:nth-child(3) {
	top: 60px;
}
.menu.on span {
	width: 54px;
	height: 2px;
	background: #707070;
}
.menu.on span:nth-child(1) {
	transform: translateY(18px) translateX(-2px) rotate(45deg);
}
.menu.on span:nth-child(2) {
	opacity: 0;
}
.menu.on span:nth-child(3) {
	transform: translateY(-13px) translateX(-2px) rotate(-45deg);
}
.menuBox {
	box-sizing: border-box;
	width: 640px;
	height: 100%;
	display: flex;
	align-items: center;
	position: fixed;
	right: 0;
	top: 0;
	background: #fff;
	transform: translateX(100%);
	transition: all 0.3s;
	overflow: auto;
	z-index: 999;
}
.menuBox.on {
	transform: translateX(0);
}
.menuBox .menuWrap {
	width: 100%;
	max-height: 100%;
	overflow: auto;
}
.menuBox .menuInner {
	padding: 116px 20px;
}
.menuBox .logo {
	margin: 0 auto 49px;
	padding-right: 8px;
	width: 257px;
}
.menuBox .snsList {
	width: 45%;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
}
.menuBox .snsList li {
	margin-bottom: 24px;
}
.menuBox .snsList li:last-child {
	margin-bottom: 0;
}
.menuBox .snsList li a {
	width: 46px;
	display: block;
}
.menuBox .snsList li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#gHeader h1 {
		width: 156px;
	}
	.menu {
		width: 100%;
		height: 60px;
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
	}
	.menu:hover {
		opacity: 1;
	}
	.menu.on {
		background: #7DBF41;
	}
	.menu::after {
		margin-left: -8px;
		left: 50%;
		bottom: 50%;
		font-size: 1.6rem;
		transform: translate(-50%, 50%);
	}
	.menu.on::after {
		color: #fff;
		bottom: 50%;
		font-weight: bold;
	}
	.menu span {
		margin-left: -74px;
		width: 25px;
		height: 2px;
		top: 19px;
		left: 50%;
	}
	.menu span:nth-child(2) {
		top: 30px;
	}
	.menu span:nth-child(3) {
		top: 40px;
	}
	.menu.on span {
		width: 25px;
		background: #fff;
	}
	.menu.on span:nth-child(1) {
		transform: translateY(11px) translateX(0) rotate(45deg);
	}
	.menu.on span:nth-child(3) {
		transform: translateY(-10px) translateX(0) rotate(-45deg);
	}
	.menuBox {
		width: 100%;
		transform: translate(0, 100%);
	}
	.menuBox.on {
		transform: translate(0);
	}
	.menuBox .menuInner {
		padding: 100px 15px;
	}
	.menuBox .logo {
		margin: 0 auto 42px;
		padding-right: 15px;
		width: 247px;
	}
	.menuBox .snsList {
		width: auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.menuBox .snsList li {
		margin: 0 8px;
	}
	.menuBox .snsList li a {
		width: 54px;
	}
}
/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
#gNavi {
	margin-bottom: 44px;
}
#gNavi li {
	margin-bottom: 11px;
}
#gNavi li:last-child {
	margin-bottom: 0;
}
#gNavi li a {
	padding: 10px;
	display: block;
	text-align: center;
	font-size: 2rem;
}
#gNavi li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#gNavi {
		margin-bottom: 104px;
	}
	#gNavi li a {
		font-size: 1.8rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	background: url("../../img/common/bg01.jpg") no-repeat center top / cover;
}
#gFooter .bgBox {
	padding: 57px 0 27px;
	text-align: center;
	background: #fff;
}
#gFooter .fSnsList {
	margin-bottom: 37px;
}
#gFooter .fSnsList li {
	margin: 0 16px;
	width: 80px;
}
#gFooter .fSnsList li a:hover {
	opacity: 0.7;
}
#gFooter .fLogo {
	margin: 0 auto 30px;
	width: 288px;
}
#gFooter address {
	color: #333;
	font-size: 2rem;
	font-style: normal;
}
@media all and (max-width: 896px) {
	#gFooter {
		padding-top: 40px;
	}
	#gFooter .bgBox {
		padding: 49px 0 77px;
	}
	#gFooter .fSnsList {
		margin-bottom: 65px;
	}
	#gFooter .fSnsList li {
		margin: 0 11px;
		width: 56px;
	}
	#gFooter .fLogo {
		margin: 0 auto 62px;
	}
	#gFooter address {
		font-size: 1.2rem;
	}
}