@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, "ヒラギノ角ゴ 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;
	-webkit-transition: .3s;
	transition: .3s;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1280px;
	color: #000;
    font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
#container {
	text-align: left;
    overflow: hidden;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 901px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 900px) {
	body {
		min-width: inherit;
		font-size: 1.6rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
    position: fixed;
    z-index: 200;
		width: 100%;
		height: 65px;
		background: #fff;
		box-sizing: border-box;
}
#gHeader .header-box{
	max-width: 1600px;
	min-width: 1280px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 19px calc(200px - 25px) 19px 100px;
}

#gHeader h1 {
		line-height: 1;
}
#gHeader h1 a{
	display: block;
}
#gHeader nav{
	box-sizing: border-box;
	margin-left: auto;
}
#gHeader ul {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	box-sizing: border-box;
}
#gHeader ul li{
	line-height: 1;
	position: relative;
	padding: 0 25px;
	box-sizing: border-box;
}

#gHeader ul li:not(:first-of-type){
	border-left: 1px solid #DDD;
}

@media all and (min-width: 901px) {
	#gHeader ul li a:hover{
		color: #EA4F3A;
	}
	
}
@media all and (max-width: 900px) {
    #gHeader {
        /* position: absolute; */
    }
		#gHeader .header-box{
			padding: 10px 20px;
			background: #fff;
			position: relative;
			z-index: 100;
		}
    #gHeader h1 {
        /* padding: 18px 32px; */
			width: 220px;
    }

		/*　ハンバーガーボタン　*/
		.hamburger {
			display : block;
			position: fixed;
			z-index : 3;
			right : 13px;
			top   : 12px;
			width : 42px;
			height: 42px;
			cursor: pointer;
			text-align: center;
		}
		.hamburger span {
			display : block;
			position: absolute;
			width   : 30px;
			height  : 2px ;
			left    : 6px;
			background : #000;
			transition        : 0.3s ease-in-out;
		}
		.hamburger span:nth-child(1) {
			top: 10px;
		}
		.hamburger span:nth-child(2) {
			top: 20px;
		}
		.hamburger span:nth-child(3) {
			top: 30px;
		}

		/* ナビ開いてる時のボタン */
		.hamburger.active span:nth-child(1) {
			top : 16px;
			left: 6px;
			transform        : rotate(-45deg);
		}
		.hamburger.active span:nth-child(2),
		.hamburger.active span:nth-child(3) {
			top: 16px;
			transform        : rotate(45deg);
		}


		#gHeader .navigation{
			position: absolute;
			top: 65px;
			left: 0;
			width: 100%;
			background: #fff;
			padding: 0 20px;
			transform: translateY(-100%);
			transition: all 0.6s;
			z-index: 1;
		}
		#gHeader .navigation.active{
			transform: translateY(0%);
		}
		#gHeader ul{
			flex-direction: column;
		}
		#gHeader ul li{
			width: 100%;
			padding: 0;
		}
		#gHeader ul li a{
			padding: 20px;
			width: 100%;
			height: 100%;
			display: block;
			box-sizing: border-box;
		}
		#gHeader ul li:not(:last-of-type){
			border-bottom: 1px solid #DDD;
		}
		#gHeader ul li:not(:first-of-type){
			border-left: none;
		}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .bgBox {
	padding: 95px 0 80px;
	background-color: #fff2c7;
}
#gFooter .topBox {
    width: 760px;
    position: relative;
    margin: 0 auto;
    text-align: center;
}
#gFooter .topBox .img01 {
    position: absolute;
    left: 12px;
    top: 11px;
}
#gFooter .topBox .img02 {
    position: absolute;
    right: 41px;
    top: 5px;
}
#gFooter .topBox .title {
    margin-bottom: 41px;
}
#gFooter .topBox .snsList li {
    padding: 0 25px;
}
#gFooter .topBox .snsList li a:hover {
    opacity: 0.7;
}
#gFooter .pageTop {
    text-align: center;
}
#gFooter .pageTop a {
    padding: 32px 0 30px;
    display: block;
    background: #909090;
}
#gFooter .pageTop a:hover {
    opacity: 0.7;
}
#gFooter address {
    padding: 12px 0;
    font-size: 1.2rem;
    font-style: normal;
    text-align: center;
}
@media all and (max-width: 900px) {
	#gFooter {
		padding-bottom: 80px;
	}
	#gFooter .bgBox {
		padding: 38px 0 27px;
		background-color: #fffbee;
	}
    #gFooter .topBox {
        width: 275px;
        margin: 0 auto;
    }
    #gFooter .topBox .img01 {
		left: -2px;
		top: -21px;
		width: 65px;
    }
    #gFooter .topBox .img02 {
        position: absolute;
		right: -2px;
		top: -23px;
		width: 65px;
    }
    #gFooter .topBox .title {
        margin-bottom: 22px;
    }
    #gFooter .topBox .snsList li {
        padding: 0 18px;
    }
    #gFooter address {
        padding: 13px 0;
        font-size: 1rem;
    }
	#gFooter .pageTop {
		display: none;
		margin: 0;
		width: 50px;
		position: fixed;
		right: 10px;
		bottom: 112px;
        z-index: 1000;
	}
	#gFooter .pageTop a {
		padding: 0;
		height: 50px;
		border-radius: 8px;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#gFooter .pageTop img {
		width: 22px;
	}
}