@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
	background-color: #F4D057;
}

.wrapper{
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 3%;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.mv{
	margin: 5% auto;
	width: 95%;
}

.mv-01{
	width: 90%;
	margin: 0 auto;
}

.lead{
	text-align: center;
	font-size: 15px;
	line-height: 2;
	margin: 10% auto;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
}

.under{
	background: linear-gradient(transparent 50%, #169ea1 50%);
	padding: 0 1%;
}

.kome{
	font-size: 10px;
}

.mv-02{
	width: 45%;
	margin: 5% auto;
}

.content{
	margin: 15% auto;
	width: 95%;
}

.box{
	margin: 0 auto 15%;
}

.title{
	margin-bottom: 8%;
}

.box ul{
	padding: 0;
	list-style: none;
	display: flex;
	column-gap: 15px;
	grid-row-gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.box ul li{
	width: calc(33.3% - 15px);
}

.box ul li p{
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
	margin: 2% 0;
}

.box ul li p span{
	font-size: 11px;
}

.btn{
	width: 90%;
	margin: 8% auto;
	text-align: center;
}

.btn a{
	display: block;
	border: solid 2px #000;
	color: #000;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	line-height: 4;
	position: relative;
}

.btn a:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media(min-width:750px){
.mv{
	margin: 5% auto;
	width: 70%;
}

.content{
	margin: 15% auto;
	width: 95%;
}

.box{
	margin: 0 auto 10%;
}

.title{
	margin-bottom: 5%;
}

.box ul{
	grid-row-gap: 15px;
}

.box ul li{
	width: calc(20% - 15px);
}

.box ul li p{
	font-size: 13px;
}

.btn{
	width: 60%;
	margin: 5% auto;
}

}