@charset "utf-8";

/*///////////////////////////////////////////
				CSS READING
///////////////////////////////////////////*/

/* RESET */
a,img,ul,li,table,tr,td,p,h1,h2,h3,h4,h5,h6,ol,div,body,html,dl,dt,dd,iframe {
	padding:0px;
	margin:0px;
	border:none;
	list-style:none;
	font-weight:inherit;
	font-size:1em;
}
img { vertical-align:middle; max-width:100%; height:auto; }
a img { border:none; }

/*font-style
---------------------------------------*/

body {
	overflow-x:hidden;
	position: relative;
	font-size:14px; 
	line-height:1.8; 
	color: #000; 
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight:400;
	-webkit-text-size-adjust:100%; /* NEW! */
	text-size-adjust:100%; /* NEW! */
}

@media all and (max-width: 768px){
	body {
		font-size:12px; 
	}
}

.bold { font-weight:bold; }
.nobold { font-weight:normal; }

/*fontfamily-style
---------------------------------------*/
.en_font{
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
}


body>img,body>iframe{
	position: absolute;
	bottom:0;
	right:0;
}


/*link-style
---------------------------------------*/
a { text-decoration:none;  color:inherit; } /* NEW! */

/*** CLEAR-FIX ***/
.clearfix:after { content: ""; display: block; clear: both; height:0; }
.clearfix { zoom:1; }

 /* ふんわりアルファオーバー */

.alpha a img{
	transition:all 0.5s ease-in-out;
}

.alpha a:hover img{
	opacity:0.7;
}

/* fade utility  ふんわりマウスオーバー画像置換 */

.fade a{
	display:inline-block;
	position:relative;
}
.fade a img{
	transition:all 0.5s linear;
}

.fade a img.off{
	position:relative;
	z-index:1;
}

.fade a:hover img.off{
	opacity:0;
}

.fade a:hover img.on{
	opacity:1;
}

.fade a img.on{
	position:absolute;
	top:0;
	left:0;
	z-index:2;
	opacity:0;
}

.cl_b{clear:both;} /* NEW! */

/*caption*/

.cap_l{
	text-align:left;
	font-size:10px;
}
.cap_r{
	text-align:right;
	font-size:10px;
}

.center{
	margin-left:auto !important;
	margin-right:auto !important;
}

/*** ALIGN ***/
.ta_c { text-align:center; }
.ta_r { text-align:right; }
.ta_l { text-align:left; }


.ta_c_pc { text-align:center; }

@media screen and (max-width: 767px){

	.ta_c_pc { text-align:left; }
	
	.text24 { font-size:18px; }
	.text22 { font-size:17px; }
	.text20 { font-size:16px; }
	.text18 { font-size:15px; }
	.text16 { font-size:14px; }
	.text14 { font-size:13px; }
	.text12 { font-size:12px; }
	.text10 { font-size:10px; }

	.vpc{display:none;}
	
}

@media all and (min-width: 768px){

	.vsp{display:none;}
}

@media screen and (max-width: 600px){

	.ul_col4 li{
		width:auto;
		float:none;
		margin-right:0;
	}
	
	.vpc600{display:none;}
	
}

@media all and (min-width: 601px){

	.vsp600{display:none;}
	
}

.imgfont{}
.imgfont-alt{display:none;}
.imgfont-img{display:inline;}	

@media screen and (max-width: 767px) {
	.imgfont-alt{display:inline;}
	.imgfont-img{display:none;}	
}


/*///////////////////////////////////////////
				Shiny CSS
				MUTO 2016
///////////////////////////////////////////*/


.shiny a {
    display: inline-block;
	max-width:100%;
    position: relative;
    overflow: hidden;
}
.shiny a:before {
    display: block;
    position: absolute;
    z-index: 10;
    left: -100%;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
	background: -ms-linear-gradient(-45eg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 75%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 75%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 25%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 75%,rgba(255,255,255,0) 100%);
	background: linear-gradient(135deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 25%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 75%,rgba(255,255,255,0) 100%);
	animation: shiny 4s infinite linear;　/*アニメーション速度*/
}

/*光の起点と終点の指定*/
@keyframes shiny {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}