﻿@charset "utf-8";

/* ------ General Settings ------ */
html { *overflow-x: hidden; }
a:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	line-height:1px;
	transition: .3s;
}
/* ------ float ------ */
.fLeft { float:left; }
.fRight { float:right; }
/* ------ img ------ */
.imgL { display: block; }
.imgS { display: none; }
/* ------ move ------ */
.move{
	overflow: hidden;
}
.move-fadeIn{
	transition: 1.5s;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
}
.fadeIn{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
.move-up{
	transition: 1.5s;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px); 
	-ms-transform: translate(0,60px);
}
.up{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
}
.move-side{
	transition: 1.5s;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translate(-300px,0); 
	-webkit-transform: translate(-300px,0); 
	-ms-transform: translate(-300px,0);
}
.side{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
}

/* ------ body ------ */
body {
}
/* ------ wrapper ------ */
#wrapper {
}
/* ------ headArea ------ */
#headArea {
	position: fixed;
    z-index: 100;
	width: 100%;
	height: 60px;
	background: url(/images/common/conBg.png) repeat;
	top: -60px;
	left: auto;
}
#headArea ul li{
	float: left;
	font-weight: bold;
	line-height: 60px;
	font-size: 110%;
}
#headArea ul li a{
	display: block;
	color: #000;
	padding: 0 25px;
}
#headArea ul li a:hover{
	background-color: #ddd;
	color: #fff;
	transition: .3s;
}
#headArea ul li.logo {
	line-height: inherit;
	padding-top: 10px;
	padding-left: 30px;
	height: 50px;
}
#headArea ul li.logo img{
	width: 100%;
	max-width: 110px;
	height: auto;
}
#headArea ul li.logo a:hover{
	background: none;
}
#headArea ul li.sns{
	line-height: normal;
	padding: 15px 0;
}
#headArea ul li.sns a{
	display: block;
	padding: 0;
}
#headArea ul li.sns a img{
	width: 30px;
	padding: 0 20px;
}
#headArea ul li.sns a:hover{
	background: none;
}
@media screen and (max-width: 1280px) {
	#headArea ul li {
		font-size: 100%;
	}
	#headArea ul li a{
		padding: 0 15px;
	}
}
@media screen and (max-width: 1120px) {
	#headArea ul li {
		font-size: 70%;
	}
}
@media screen and (max-width: 960px) {
	#headArea ul li {
		font-size: 60%;
	}
	#headArea ul li.sns a img{
		width: 30px;
		padding: 0 10px;
	}
}
@media screen and (max-width: 840px) {
	#headArea {
		display: none;
	}
}

/* ------ menuSp ------ */
#menuSp {
	display: none;
}
@media screen and (max-width: 840px) {
	#menuSp {
		display: block;
	}
}
/* ------ menuBox ------ */
.menuBox {
	width: 100%;
}
.menuBtn {
	position: fixed;
	top: 10px;
	right: 10px;
    z-index: 1001;
	width: 6%;
}
.menuBtn img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 800px) {
	.menuBtn {
		top: 5px;
		right: 5px;
		width: 50px;
	}
}

/* viewer */
#viewerPc {
	display: block;
}
#viewerSp {
	display: none;
}
@media screen and (max-width: 960px) {
	#viewerPc {
		display: none;
	}
	#viewerSp {
		display: block;
	}
}
#viewerCover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
}
#viewerCover img{
	width: 100%;
}
.bgSp {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.bgSp img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}
@media screen and (max-width: 639px) {
	.bgSp img {
		width: auto;
		height: 100%;
	}
}

/* ------ container ------ */
#container {
}

/* ------ btnArea ------ */
#btnArea {
	position: relative;
	z-index: 1;
	width: 86%;
	margin: 0 auto;
	padding: 6% 0;
}
#btnArea h2{
	float: left;
	width: 30%;
	padding: 0 1.6% 1.6%;
}
#btnArea h2 img{
	width: 100%;
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.3s linear;
}
#btnArea h2 img:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
@media screen and (max-width: 639px) {
	#btnArea h2{
		float: none;
		width: 89%;
		padding: 0 0 6%;
		margin: 0 auto;
	}
}

/* ------ footer ------ */
#footArea {
	background: url(/images/common/conBg.png) repeat;
	position: relative;
	z-index: 1;
}
#footArea p {
	font-size:70%;
	font-weight: bold;
	text-align:center;
	color: #333;
	padding-bottom: 12px;
}
#footArea p.footLogo {
	width: 50%;
	max-width: 300px;
	margin:0 auto;
	padding:80px 0 70px;
}
#footArea p.footLogo img{
	width: 100%;
}
/* ------ snsArea ------ */
#snsArea {
	padding-bottom:60px;
}
#snsArea p{
	width: 10%;
	max-width: 70px;
	margin: 0 auto;
}
#snsArea img{
	width: 100%;
}
/* ------ backtotop ------ */
.backtotop {
    position: fixed;
    bottom: 15px;
    z-index: 9000;
    display: none;
}
.backtotop {
    right: 15px;
}
.backtotop a {
    display: block;
}
.backtotop a img {
	width: 60px;
}
.backtotop a:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	line-height:1px;
}
@media screen and (max-width: 639px) {
	.backtotop {
		right: 10px;
	}
	.backtotop a img {
		width: 40px;
	}
}

/* ------ wordpress ------ */
/* ------ content-w ------ */
#content-w .mainTit {
	width: 18%;
	margin: 0 auto;
	padding: 40px 0 20px;
}
@media screen and (max-width: 1200px) {
	#content-w .mainTit {
		width: 26%;
	}
}
@media screen and (max-width: 639px) {
	#content-w .mainTit {
		width: 50%;
	}
}
#content-w .mainTit img{
	width: 100%;
}
#content-w .pageTit {
	text-align: center;
}









