@charset "UTF-8";
#box{
	display:flex;
	background:yellow;
}
#box article{
	flex:1;
	background:red;
}
#box article:nth-child(2){
	background:green;
}

#body_box{
	position:relative;
	height:100vh;
	background:url(../img/bg.jpg);
}

#body_box header{
	height:10vh;
	margin:0 auto;
}

#body_box article{
	width:65%;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
}
#body_box article ul{
	width:50%;
	font-size:24px;
}
#body_box article ul header{
	padding-top:30%;
	font-size:40px;
}
#body_box article ul li h3{
	font-size:32px;
}
#body_box article ul .button{
	display:flex;
}
#body_box article ul .button a{
	display:block;
	width:45%;
	padding:20px 0;
	border-radius:8px;
	text-align:center;
	color:#666;
	background:linear-gradient(#ffffff, #e3e3e3);
}
#body_box article ul .button a:nth-child(2){
	color:#fff;
	background:linear-gradient(#F64578, #F05F5B);
	margin-left:20px;
}
#body_box article ul li span{
	display:block;
	padding:5% 0 10% 0;
}
#body_box article ul li p{
	display:none;
}
#body_box article div{
	width:32%;
	padding:4% 2.5% 0 0;
}
#body_box article div img{
	width:100%;
}
#body_box footer {
	width:100%;
	position:fixed;
	z-index:1;
	bottom:-300px;
}

#body_box footer img{
	width:100%;
}

