/* ******************************************************************
 *	File name		: base.css
 *	Summary			: css base
 * ******************************************************************
 */
/*
html{
	
	backgroun-color:#f90;
}

*/

/* ------------------------------------------------
   main_img
------------------------------------------------- */
body{
	width:100%;
	margin:0;
		background-color:#fff;
}
#main_bg{
	width:100%;
	margin:0;
	}	
	#main_bg .verone{
		width:100%;
		height:1600px;
		background-image: url("../../image/index_ver1.jpg");
		background-repeat: no-repeat;
		background-position: top;
		background-size: contain;
}

#main_img{
	width:800px;
	margin:0 auto;
	padding:0;
	}
	#main_img img{
		width:100%;
		margin:20px auto 40px;
	}
	#main_img p{
		color:#0C8E41;
		font-size:1.4rem;
		font-weight:bold;
		margin:30px 0;
		width:800px;
		text-align:center;
}


/* --- responsive --- */
@media screen and (max-width:767px){

	#main_bg{
		background-color:#004A8B;
	}
	#main_bg .verone{
		height:100vh;
		background: url("../../image/index_ver1sp.jpg") no-repeat center top;
		background-size: 100%;
		overflow-x: hidden;
		background-color: #004A8B;
	}
}


	



/* ------------------------------------------------
   base
------------------------------------------------- */
.pc{display:block !important;}
.sp{display:none !important;}
.pc_i{display:inline-block !important;}
.sp_i{display:none !important;}
@media only screen and (max-width:767px){
	.pc{display:none !important;}
	.sp{display:block !important;}
	.pc_i{display:none !important;}
	.sp_i{display:inline-block !important;}
}