@charset "utf-8";
/* CSS Document */
.app_body{
	margin: 0 auto;
	padding: 0;
	max-width: 1024px; 
	margin-top: 74px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

section.mv{
	display: flex;
	border-bottom: 5px solid #d11313;
	padding: 4em 0 0 2em;
	margin: 0 auto;
}
section.mv .mv_right{
	width: 70%;
	padding-left: 3.5em;
}
section.mv .mv_title{
	display: flex;
	width: 100%;
}
section.mv .mv_title img{
	padding-top: 15px;
	max-height: 110px;
}
section.mv .mv_title h1{
	font-size: 2.7em;
	padding-left: 0.5em;
	color: #d11313;
	display: inline;
}

section.mv .mv_right ul{
	display:flex;
	flex-wrap: wrap;
	padding: 2em 0;
}
section.mv .mv_right ul li{
	width: 50%;	
	font-size: 0.9em;
	line-height: 2em;
}
section.mv .mv_right ul li a::before{
	content: "▼ ";
	color: #d11313;
	font-size: 0.8em;
}
section.mv .mv_right ul li a:hover{
	opacity: 0.5;
}

section.mv .mv_right .download{
	display: flex;
}
section.mv .mv_right .download img{
	width: 250px;
}

section.contents{
	margin-top: 5em;
}
section.contents p{
	font-size: 0.9em;
	line-height: 1.6em;
}

section.contents .title{
	width: 100%;
	border-bottom: 1px solid #adadad;
	padding-bottom: 0.1em;
	margin-bottom: 2em;
}
section.contents .title img{
	display: inline;
	padding: 0 0 5px 0.5em;
}
section.contents .title h2{
	display: inline;
	font-size: 1.2em;
}

section.contents .detail{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
section.contents .detail article{
	width: 28%;
	margin-bottom: 6em; 
}
section.contents .detail article img{
	text-align: center;
}
section.contents .detail article .txt{
	display: flex;
	padding-top: 1em;
}
section.contents .detail article .txt span span{
	color: #fff;
	background: #d11313;
	padding: 3.5px 10px;
	border-radius: 30px;
}
section.contents .detail article .txt p{
	padding: 4px 0 0 0.3em;
}




@media only screen and (max-width: 900px){
	section.mv{
		padding: 2em 0 1.5em 0;
	}
	section.mv .phone{
		display: none;
	}
	section.mv .mv_right{
		width: 100%;
		margin: auto;
	}
	section.contents .detail article .txt span span{
		padding: 3.5px 8px;
	}
}
@media only screen and (max-width: 720px){
	.app_body{
		padding: 0 1em;
	}
	section.contents{
	margin-top: 0em;
}
	section.contents .title img{
		max-width: 10%;
	}
	section.contents .detail{
		display: block;
	}
	section.contents .detail article{
		width: 45%;
		margin: 0 auto;
		padding-bottom: 5em;
	}
	section.mv .mv_right{
		padding: 0;
	}
	section.mv .mv_title img{
		max-height: 90px;
		padding-left: 10px;
	}
	section.mv .mv_right ul{
		width: 90%;
		margin: 0 auto;
	}
	section.mv .mv_right ul li{
		width: 100%;
		line-height: 2.5em;
	}
}
@media only screen and (max-width: 500px){
	section.mv .mv_title img{
		display: none;
	}
	section.contents .detail article{
		width: 80%;
	}
}

