@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;
}

body {
	font-size: 62.5%;
}

body,
table,
input, textarea, select, option {
	font-family: Meiryo, "小塚ゴシック Pr6N", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", 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;
}

a,
a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

a:active {
	color: #000;
	text-decoration: underline;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1100px;
	color: #000;
	font-size: 13px;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}

#container {
	text-align: left;
}

#main {
	margin-bottom: 104px;
}

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

.sp {
	display: none !important;
}

@media screen and (max-width: 767px) {
	body {
		min-width: inherit;
	}

	a:hover,
	a:hover img {
		opacity: 1 !important;
	}

	.sp {
		display: block !important;
	}
	
	.pc {
		display: none !important;
	}
	
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	
	#main {
		margin-bottom: 40px;
	}
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 40px 0 14px;
	width: 100%;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(255,255,255,0.7);
	z-index: 50;
}

#gHeader h1 {
	margin-bottom: 23px;
	text-align: center;
}

#gHeader h1 img {
	width: 246px;
}

@media screen and (min-width: 768px) {
	#gHeader .menu {
		display: none !important;
	}
	
	#gHeader .menuBox {
		display: block !important;
	}
}

@media screen and (max-width: 767px) {
	/*------------------------------------------------------------
		ヘッダー
	------------------------------------------------------------*/
	#gHeader {
		padding: 15px 10px;
		position: relative;
		left: inherit;
		top: inherit;
		background: #FFF;
	}
	
	#gHeader h1 {
		margin-bottom: 0;
		text-align: left;
	}
		
	#gHeader h1 img {
		width: 150px;
	}
	
	#gHeader .menu {
		display: block;
		width: 25px;
		height: 20px;
		position: absolute;
		right: 15px;
		top: 22px;
		cursor: pointer;
		z-index: 100;
		transition: opacity .25s ease;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
		
	#gHeader .menu span {
		width: 100%;
		height: 3px;
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
		border: none;
		background: #000;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}
	
	#gHeader .menu.on .top {
		-webkit-transform: translateY(7px) translateX(0) rotate(45deg);
		-ms-transform: translateY(7px) translateX(0) rotate(45deg);
		transform: translateY(7px) translateX(0) rotate(45deg);
		background: #000;
	}
	
	#gHeader .menu.on .middle {
		opacity: 0;
		background: #000;
	}
	
	#gHeader .menu.on .bottom {
		-webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
		transform: translateY(-7px) translateX(0) rotate(-45deg);
		background: #000;
	}
	
	#gHeader .menu span:nth-of-type(2) {
		top: 7px;
	}
	
	#gHeader .menu span:nth-of-type(3) {
		top: 14px;
	}
	
	#gHeader .menuBox {
		display: none;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		border-top: 1px solid #000;
		background-color: #FFF;
		z-index: 10;
	}
	
	#gHeader .menuBox.on {
		display: block;
	}
}

/*------------------------------------------------------------
	gNavi
------------------------------------------------------------*/
#gNavi ul {
	margin: 0 auto;
	width: 1100px;
	text-align: center;
}

#gNavi li {
	position: relative;
	display: inline-block;
	font-size: 15px;
	font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}

#gNavi li:before {
	width: 1px;
	height: calc(100% - 8px);
	-webkit-height: calc(100% - 8px);
	position: absolute;
	right: 0;
	top: 5px;
	background-color: #C4C4C4;
	content: "";
}

#gNavi li:last-child:before {
	display: none;
}

#gNavi li a {
	padding: 0 22px 0 15px;
	display: inline-block;
	letter-spacing: -1px;
	text-decoration: none;
}

#gNavi li a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	/*------------------------------------------------------------
		gNavi
	------------------------------------------------------------*/
	#gNavi ul {
		margin: 0;
		width: auto;
		text-align: center;
	}

	#gNavi li {
		display: block;
		font-size: 14px;
		border-bottom: 1px solid #000;
	}
	
	#gNavi li:before {
		display: none;
	}

	#gNavi li a {
		padding: 10px 15px;
		display: block;
	}
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 87px 0 94px;
	background-color: #EBE9DC;
}

#gFooter .fBox {
	margin: 0 auto;
	width: 518px;
}

#gFooter .fBox .fNavi {
	margin-bottom: 25px;
	text-align: center;
}

#gFooter .fBox .fNavi li {
	display: inline-block;
	position: relative;
}

#gFooter .fBox .fNavi li:before {
	width: 1px;
	height: calc(100% - 6px);
	-webkit-height: calc(100% - 6px);
	position: absolute;
	right: 0;
	top: 4px;
	background-color: #C4C4C4;
	content: "";
}

#gFooter .fBox .fNavi li:last-child:before {
	display: none;
}

#gFooter .fBox .fNavi li a {
	padding: 0 16px;
	display: inline-block;
	font-size: 14px;
	letter-spacing: -1px;
}

#gFooter .fBox .fSnsList {
	margin: 0 12px 38px 9px;
	text-align: center;
	border-top: 1px dotted #FFF;
	border-bottom: 1px dotted #FFF;
}

#gFooter .fBox .fSnsList li {
	margin: 0 10px;
	display: inline-block;
}

#gFooter .fBox .fSnsList li a {
	padding: 17px 5px 14px;
	display: block;
	font-size: 14px;
	text-decoration: none;
}

#gFooter .fBox .fSnsList li a:hover {
	opacity: 0.7;
}

#gFooter .fBox .fSnsList li a .txt {
	margin: 9px 15px 0 0;
	display: inline-block;
	vertical-align: top;
	letter-spacing: 1px;
}

#gFooter .fBox .fSnsList li a .pho img {
	width: 38px;
}

#gFooter .fBox .fLogoBox .fLogo {
	float: left;
}

#gFooter .fBox .fLogoBox .fLogo img {
	width: 246px;
}

#gFooter .fBox .fLogoBox .copyright {
	padding: 25px 5px 0 0;
	width: 250px;
	float: right;
	color: #939393;
	font-size: 11px;
	letter-spacing: -0.5px;
	text-align: right;
}

@media screen and (max-width: 767px) {
	/*------------------------------------------------------------
		フッター
	------------------------------------------------------------*/
	#gFooter {
		padding: 30px 0;
	}
		
	#gFooter .fBox {
		margin: 0;
		width: auto;
	}
		
	#gFooter .fBox .fNavi {
		margin-bottom: 25px;
		text-align: center;
		border-top: 1px solid #C4C4C4;
	}
	
	#gFooter .fBox .fNavi li {
		display: block;
		border-bottom: 1px solid #C4C4C4;
	}

	#gFooter .fBox .fNavi li a {
		padding: 10px 20px;
		display: block;
		font-size: 13px;
		letter-spacing: 0;
		text-decoration: none;
		background: url(../../img/common/icon08.png) no-repeat right 10px center;
		background-size: 7px auto;
	}

	#gFooter .fBox .fSnsList {
		margin-bottom: 20px;
	}

	#gFooter .fBox .fSnsList li a {
		padding: 10px 5px;
		font-size: 13px;
	}
	
	#gFooter .fBox .fLogoBox .fLogo {
		float: none;
		text-align: center;
	}
	
	#gFooter .fBox .fLogoBox .fLogo img {
		width: 150px;
	}
	
	#gFooter .fBox .fLogoBox .copyright {
		padding: 15px 10px 0;
		width: auto;
		float: none;
		font-size: 10px;
		text-align: center;
	}
}