@charset "utf-8";

/*
 *
 *	common style
 *
 */

*, *:before, *:after {
		-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-size: .875em;
	font-family:'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', 'HG明朝R', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
	letter-spacing: .1em;
	color: #000;
		-webkit-text-size-adjust: 100%;
}

.fade-layer,
body:before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 500;
}
body.fade-layer-off:before{
	content: none;
}


/****** selection ******/
::selection {
	background: #E0E0E0;
	color: #000;
	text-shadow: #fff 1px 1px 0;
}
::-moz-selection {
	background: #E0E0E0;
	color: #000;
	text-shadow: #fff 1px 1px 0;
}


/****** a Link ******/
a, a:visited, a img ,.hoverBtn {
	text-decoration: none;
	color: #000;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
    transition: all .4s ease;
	cursor: pointer;
}
a:hover,
.hoverBtn:hover {
		-ms-filter: alpha(opacity=50);
		filter: alpha(opacity=50);
	opacity: .5;
}


/****** images ******/
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
img.lazy{
	opacity: 0;
}
img.lazy.loaded {
	opacity: 1;
		-moz-transition: all 2s ease;
		-webkit-transition: all 2s ease;
		-ms-transition: all 2s ease;
    transition: all 2s ease;
}
a img.lazy.loaded {
	opacity: 1;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
    transition: all .4s ease;
}


/****** wrapper ******/
.wrapper {
	width: 1000px;
	margin: 0 auto;
}



/*======================================
	gHeader
======================================*/
.gHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 75px;
	padding: 0 20px;
	border-bottom: #e6d2ab solid 1px;
	background: #fff;
	z-index: 200;
}
.gHeader h1 {
	float: left;
	width: 10%;
	max-width: 70px;
	margin-top: 14px;
}


/****** navToggle ******/
.gHeader .navToggle {display: none;}


/****** gNavPC ******/
.gHeader .gNavPC {
	float: right;
	width: 90%;
	max-width: 800px;
}
.gHeader .gNavPC ul li.main {
	position: relative;
	float: left;
	width: 20%;
	height: 74px;
	line-height: 74px;
	text-align: center;
}
.gHeader .gNavPC ul li.main:first-child:before,
.gHeader .gNavPC ul li.main:after {
	content: '';
	display: block;
	position: absolute;
	top: 28px;
	right: 0;
	width: 1px;
	height: 18px;
	background: #000;
}
.gHeader .gNavPC ul li.main:first-child:before {
	left: 0;
	right: auto;
}
.gHeader .gNavPC ul li.main>a {
	display: block;
	text-align: center;
}

.gHeader .gNavPC .child {
	position: absolute;
	top: 74px;
	left: 0;
	right: 0;
	margin-top: 0;
	padding-bottom: 8px;
	background: #fff;
	border: #e6d2ab solid;
	border-width: 0 1px 1px;
}
.gHeader .gNavPC .child li {
	height: 32px;
	line-height: 32px;
	padding: 0 5px 0 24px;
	background: url(../images/arrow3.png) 10px center no-repeat;
}
.gHeader .gNavPC .child li.mar {margin-top: 24px;}
.gHeader .gNavPC .child li a{
	display: inline-block;
	position: relative;
	padding: 0 3px 7px;
}
.gHeader .gNavPC .child li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #e6d2ab;
		-moz-transition: width .4s ease;
		-webkit-transition: width .4s ease;
		-ms-transition: width .4s ease;
    transition: width .4s ease;
}
.gHeader .gNavPC .child li a:hover:after {width: 100%;}


/****** gNavSP ******/
.gHeader .gNavSP {display: none;}



/*======================================
	mainContents
======================================*/
.mainContents {
	padding-top: 75px;
}



/*======================================
	gFooter
======================================*/
.gFooter {
	margin-top: 55px;
	padding: 0 30px 20px;
}


/****** pagetop ******/
.gFooter .pagetop {
	margin: 0 -30px;
	border-bottom: #d1b886 solid 1px;
	text-align: right;
}
.gFooter .pagetop img {cursor: pointer;}


/****** fNav ******/
.gFooter .fNav {
	padding: 18px 0 60px;
}
.gFooter .fNav .nabBox {
	float: left;
	width: 20%;
}
.gFooter .fNav .nabBox dt,
.gFooter .fNav .nabBox dd,
.gFooter .fNav .nabBox li {
	line-height: 2;
	font-size: .85em;
}
.gFooter .fNav .nabBox dt {
	padding-left: 10px;
	border-left: #d1b886 solid 1px;
	font-weight: bold;
}
.gFooter .fNav .nabBox dd,
.gFooter .fNav .nabBox li {
	padding-left: 22px;
	background: url(../images/arrow3.png) 9px center no-repeat;
}


/****** seikoLogo ******/
.gFooter .seikoLogo {
	float: left;
}


/****** copy ******/
.gFooter .copy {
	float: right;
	font-size: .714em;
}



/*======================================
	common
======================================*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}


/****** moreBtn ******/
.moreBtn {
	width: 73px;
	height: 19px;
	line-height: 0;
	padding: 4px 13px 4px 24px;
	border: #000 solid 1px;
	background:url(../images/arrow1.png) 7px center no-repeat;
	cursor: pointer;
}
.moreBtn.sty2 {
	background-image: url(../images/arrow2.png);
	border-color: #fff;
}


/****** searchBtn ******/
.searchBtn {
	width: 232px;
	height: 26px;
	line-height: 0;
	border: #706652 solid 1px;
	padding: 5px 13px 7px 94px;
	background:url(../images/arrow4.png) 75px center no-repeat;
	cursor: pointer;
}


/****** zoomLink ******/
.zoomLink a {
	position: relative;
	display: block;
}
.zoomLink a:hover {
		-ms-filter: alpha(opacity=100);
		filter: alpha(opacity=100);
	opacity: 1;
}
.zoomLink a .info {
	position: absolute;
	z-index: 2;
}
.zoomLink a figure {
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.zoomLink a figure img {width: 100%;}
.zoomLink a:hover figure img {
		-ms-filter: alpha(opacity=50);
		filter: alpha(opacity=50);
	opacity: .5;
}


/****** pan ******/
.pan {
	overflow: hidden;
	margin: .5em 20px;
}
.pan li {
	position: relative;
	float: left;
	margin-right: 1em;
	font-size: .8em;
	color: #5d3f1b;
}
.pan li:after {content: '　>';}
.pan li:last-child:after {display: none;}
.pan li a {color: #5d3f1b;}


/****** pc / sp ******/
.pc {display: block;}
.sp {display: none;}





/*============================================================================

	responsive

============================================================================*/
@media screen and (max-width:1029px) {
.wrapper {
	width: 100%;
	overflow: hidden;
}

}



@media screen and (max-width:767px) {
body {
	font-size: .85rem;
}



/*======================================
	gHeader
======================================*/
.gHeader {
	height: 46px;
	padding: 8px 10px 0;
}
.gHeader h1 {
	float: none;
	width: 46px;
	height: 31px;
	margin: 0 auto;
}


/****** navToggle ******/
.gHeader .navToggle {
	position: absolute;
	display: block;
	width: 22px;
	height: 17px;
	top: 15px;
	right: 10px;
	background: url(../images/nav/toggle.png) center top no-repeat;
	cursor: pointer;
}
.gHeader .navToggle.close {background-position: center bottom;}


/****** gNavPC ******/
.gHeader .gNavPC {display: none;}


/****** gNavSP ******/
.gHeader .gNavSP {
	display: block;
	position: fixed;
	overflow: auto;
	top: 46px;
	left: 0;
	bottom: 100%;
	right: 0;
	background: rgba(0,0,0,.6);
		-moz-transition: bottom .4s ease;
		-webkit-transition: bottom .4s ease;
		-ms-transition: bottom .4s ease;
    transition: bottom .4s ease;
}
.gHeader .gNavSP.navOpen {bottom: 0;}
.gHeader .gNavSP dl {
	overflow: hidden;
	background: #000;
}
.gHeader .gNavSP dl dt {
	position: relative;
	clear: both;
	line-height: 40px;
	text-align: center;
	font-weight: bold;
	color: #fff;
}
.gHeader .gNavSP dl dt:before,
.gHeader .gNavSP dl dt:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #666;
}
.gHeader .gNavSP dl dt:before {top: -1px;}
.gHeader .gNavSP dl dt:after {bottom: 0;}
.gHeader .gNavSP dl dd {
	width: 50%;
	float: left;
	border: #666 solid;
	border-width: 0 1px 1px 0;
}
.gHeader .gNavSP dl dd a{
	display: block;
	line-height: 40px;
	padding-left: 20px;
	color: #fff;
	background:url(../images/arrow2.png) 8px center no-repeat;
	font-size: .8em;
}



/*======================================
	mainContents
======================================*/
.mainContents {
	padding-top: 46px;
}



/*======================================
	gFooter
======================================*/
.gFooter {
	margin-top: 20px;
	padding: 0;
}


/****** pagetop ******/
.gFooter .pagetop {
	margin: 0;
	border-bottom: none;
}
.gFooter .pagetop img {width: 29px;}


/****** fNav ******/
.gFooter .fNav {
	padding: 15px 10px 10px;
	background: #413d36;
}
.gFooter .fNav .nabBox {
	float: none;
	width: 100%;
}
.gFooter .fNav dl.nabBox {display: none;}
.gFooter .fNav .nabBox li {
	float: left;
	margin-right: 2em;
	padding-left: 0;
	background: none;
}
.gFooter .fNav .nabBox li a {
	color: #fff;
}


/****** seikoLogo ******/
.gFooter .seikoLogo {display: none;}


/****** copy ******/
.gFooter .copy {
	float: none;
	padding: 10px;
	background: #413d36;
	text-align: center;
	color: #fff;
}



/*======================================
	common
======================================*/
/****** pan ******/
.pan {margin: .5em;}


/****** pc / sp ******/
.pc {display: none;}
.sp {display: block;}

}



@media screen and (max-width:479px) {
body {
	font-size: .75rem;
}

}
