@charset "utf-8";


/*======================================
	common
======================================*/
*, *:before, *:after {
		-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
body {
	font-size: 1rem;
	font-family: 'Helvetica Neue', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Helvetica, Meiryo, 'メイリオ', sans-serif;
	color: #000;
		-webkit-text-size-adjust: 100%;
}


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


/****** a Link ******/
a, a:visited, a img {
	color: #000;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
    transition: all .4s ease;
}
a:hover {
	text-decoration: none;
	color: #777;
}
a:hover .hoverBtn {
	opacity: .7;
}


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



/*======================================
	gHeader
======================================*/
.gHeader {
	background: url(../images/h-bg.jpg) top center no-repeat;
	background-size: cover;
}
.gHeader h1 {
	float: left;
	margin-right: 40px;
}
.gHeader h2 {
	padding: 60px 0 50px;
}
.gHeader p {
	line-height: 1.5;
	padding: 0 0 90px 25px;
	text-shadow: #3A548F 1px 1px 2px;
	color: #fff;
}



/*======================================
	tab
======================================*/
.tab ul {
	margin: -30px auto 50px;
	background:url(../images/tab-bg.png);
	border: #fff solid 1px;
	border-radius: 3px;
}
.tab ul:after {
	content: '';
	clear: both;
	display: block;
}
.tab ul li {
	position: relative;
	float: left;
	width: 179px;
	padding: 12px 0 10px;
	border-left: #fff solid 1px;
	border-right: #cdcdcd solid 1px;
	text-align: center;
	cursor: pointer;
}
.tab ul li:first-child {
	border-left: none;
}
.tab ul li:last-child {
	border-right: none;
}
.tab ul li.select:before {
	content: '';
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 0;
	border-bottom: #DA2803 solid 3px;
}
.tab ul li.select:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -5px;
	border: transparent solid 5px;
	border-top: #DA2803 solid 5px;
}
.tab ul li:hover,
.tab ul li.select img {
	opacity: .5;
}



/*======================================
	mainContents
======================================*/
.mainContents {
	margin-bottom: 60px;
}
.mainContents:after {
	content: "";
	clear: both;
	display: block;
}


/****** galleryBox ******/
.mainContents .galleryBox.disnon {
	display: none;
}
.mainContents .galleryBox li {
	overflow: hidden;
	float: left;
	width: 200px;
	height: 133px;
	line-height: 0;
	margin: 0 10px 10px;
	border: #fff solid 1px;
	background: #000;
	box-shadow: rgba(0,0,0,.3) 0 0 5px;
}
.mainContents .galleryBox li a {
	display: block;
	position: relative;
	width: 200px;
	height: 133px;
}
.mainContents .galleryBox li a img {
	margin: -12.5% 0 0 -25%;
		-moz-transform: scale(.75,.75);
		-webkit-transform: scale(.75,.75);
		-o-transform: scale(.75,.75);
		-ms-transform: scale(.75,.75);
	transform: scale(.75,.75);
}
/* hover */
.mainContents .galleryBox li a:hover:after {
	content: url(../images/icon-zoom.png);
	position: absolute;
	top: 50%;
	left: 50%;
	width:53px;
	height: 54px;
	margin: -27px 0 0 -26px;
}
.mainContents .galleryBox li a:hover img {
	opacity: .5;
		-moz-transform: scale(1,1);
		-webkit-transform: scale(1,1);
		-o-transform: scale(1,1);
		-ms-transform: scale(1,1);
	transform: scale(1,1);
}



/*======================================
	gFooter
======================================*/
.gFooter {
	clear: both;
	padding: 1em;
	background: url(../images/footer-bg.jpg);
}


/****** pagetop ******/
.gFooter .pagetop {
	position: fixed;
	width: 80px;
	height: 80px;
	right: 20px;
	bottom: 20px;
	padding-top: 60px;
	text-align: center;
	color: #39538E;
	cursor: pointer;
		-moz-transition:all .3s ease;
		-webkit-transition:all .3s ease;
		-o-transition:all .3s ease;
		-ms-transition:all .3s ease;
	transition:all .3s ease;
}
.gFooter .pagetop:before {
	content: '';
	position: absolute;
	top: 30px;
	left: 50%;
	width: 30px;
	height: 30px;
	margin-left: -15px;
	border: #39538E solid;
	border-width: 1px 0 0 1px;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	transform: rotate(45deg);
		-moz-transition:all .3s ease;
		-webkit-transition:all .3s ease;
		-o-transition:all .3s ease;
		-ms-transition:all .3s ease;
	transition:all .3s ease;
}
.gFooter .pagetop:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	width: 1px;
	height: 0;
	margin-left: -.5px;
	background: #39538E;
		-moz-transition:all .3s ease;
		-webkit-transition:all .3s ease;
		-o-transition:all .3s ease;
		-ms-transition:all .3s ease;
	transition:all .3s ease;
}
.gFooter .pagetop:hover {
	bottom: 30px;
}
.gFooter .pagetop:hover:before {
	top: 20px;
}
.gFooter .pagetop:hover:after {
	top: 15px;
	height: 35px;
}


/****** copy ******/
.gFooter .copy {
	line-height: 1.5;
	text-align: center;
	color: #39538E;
}
