@charset "UTF-8";
/* CSS Document */


/*HEADER
--------------------------------------------------*/
#header{
	background:  rgb(255,255,255,100);
	position: relative;
}
#header.fixed{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
/*MAIN CONTENTS
--------------------------------------------------*/
/*MAIN VISUAL*/
.head_visual,
section{
	position: relative;
	text-align: center;
}
.head_visual .sect_title{
	position: absolute;
	top: 50%;
	left: 50%;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	margin: auto;
	display: inline-block;
	text-shadow: 1px 1px 2px #fff,-1px -1px 2px #fff;
	z-index: 2;
}
section .sect_title{
	background-repeat: no-repeat;
    padding: 20px 0;
	text-shadow: 1px 1px 2px #fff,-1px -1px 2px #fff;
}
section .sect_title:after{
	display: block;
	font-size: 14px;
	font-weight: 300;
}
.head_visual .imgbox{
    position: relative;
	display: inline-block;
	width: 100%;
	height: auto;
	overflow: hidden;
}
#header .logo .logo_img .cls-2{
	fill: #989898;
}
/*MEDIA QUERIES
--------------------------------------------------*/
/*smartphone*/
@media (max-width: 640px) {
	/*LAYOUT---------------------------*/
	section .sect_title{
		font-size: 18px;
        padding: 15px 0;
	}
}
/*tablet*/
@media (min-width: 641px) and (max-width: 893px) {
	/*LAYOUT---------------------------*/
	section .sect_title{
		font-size: 24px;
	}
	.head_visual .imgbox{
		height: 180px;
	}
	.head_visual .imgbox img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
}
/*PC*/
@media (min-width: 894px) {
	/*LAYOUT---------------------------*/
	section .sect_title{
		font-size: 24px;
		background-size: 100% auto;
	}
	.head_visual .imgbox{
		height: 240px;
	}
	.head_visual .imgbox img{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
}