@charset "UTF-8";
/*font*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
.neue {font-family: 'Bebas Neue', cursive;}

/*---------------------------------------------------------
	COMMON
---------------------------------------------------------*/
*{
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}

a{
	color:#000
}
a:hover{
	color:#999;
}
a.zoom {
	position: relative;
	display: block;
	overflow: hidden;
}
a.zoom img{
    /*width: 100%;
	height: auto;*/
	-webkit-transition: all 0.25s ease-in-out;
    		transition: all 0.25s ease-in-out;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	-webkit-transform: translateX(-50%) translateY(-50%);
			transform: translateX(-50%) translateY(-50%);
}
a.zoom:hover img {
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1.1,1.1);
    		transform: translateX(-50%) translateY(-50%) scale(1.1,1.11);
}
@supports ( object-fit: cover ) {
	a.zoom img{
		top: 0;
	    left: 0;
	   	right: 0;
	    bottom: 0;
	    margin: auto;
		position: absolute;
		-o-object-fit: cover;
		   object-fit: cover;
        -webkit-transform: none;
       			transform: none;
	}
	a.zoom:hover img {
	    -webkit-transform: translateX(0) translateY(0) scale(1.1,1.1);
	        	transform: translateX(0) translateY(0) scale(1.1,1.11);
	}
}
.imgover {
	-ms-filter: "alpha(opacity=75)";
		filter: alpha(opacity=75);
	  -moz-opacity:0.75;
	-khtml-opacity: 0.75;
		   opacity:0.75;
	zoom:1;	
}
.imgwider {
	width:100%;
	height:auto;
}
html {
	font-size: calc(0.8em + 0.25vw);
}
h1 {
	font-size: 1.5em;
}
p{
	padding-bottom:10px;
	line-height:1.4em;
}

/* HEADER
---------------------------------------------------------*/
header{
	width:100%;
	height:60px;
	position: fixed;
	top: 0;
	z-index: 10000;
	background:#fff;
}
header h1{
	width:auto;
	height:40px;
	padding:10px 0 10px 5%;
}
.wrap{
	position: relative;
}
.wrap_inner{
	max-width: 1024px;
	margin: 40px auto;
	padding:0 2%;
}

/* MAIN
---------------------------------------------------------*/
.cover{
	margin-top:60px;
	padding:0;
}
.cover img{
	width:100%;
	height:auto;
}
section h1{
	font-weight:bold;
	margin-bottom:20px;
	font-size:2em;
	text-align:center;
	line-height:1.6em;
}
section h2{
	font-size:1.4em;
	margin-bottom:20px;
	text-align:center;
	line-height:1.4em;
}

.sec_free,.sec2_free{
	margin:40px 0 90px;
}
.enddata{
	padding:15px;
	color:#fff;
	text-align:center;
}
.enddata a{
	display:block;
	margin-top:10px;
	color:#fff;
}
.enddata a:hover{
	color:#999;
}
/* FOOTER
---------------------------------------------------------*/
footer{
	text-align:center;
	padding:5px 0;
}
.copyright{
	font-size:0.8em;
	color:#fff;
}
/* MEDIA SCREEN 768
---------------------------------------------------------*/
@media screen and (max-width: 768px) ,screen and (max-width: 896px) and (orientation: landscape) {

}
/* MEDIA SCREEN 640
---------------------------------------------------------*/
@media screen and (max-width: 640px){

}
/* MEDIA SCREEN 480
---------------------------------------------------------*/
@media screen and (max-width: 480px){

}