@charset "utf-8";
/* CSS Document */
ul, li{
	list-style: none;
}
.text-center{
	text-align: center;
}
.d-flex{
	display: flex;
}
.justify-content-center{
	justify-content: center;
}
.align-items-center{
	align-items: center;
}
.f-bold{
	font-weight: bold;
}
.btn{
	padding: 15px 25px;
	text-decoration: none;
	border-radius: 2em;
	font-size: 20px;
	color: #fff;
	transition: .2s all;
	border-style: solid;
	border-width: 2px;
	display: block;
	text-align: center;
	min-width: 300px;
}
.btn:hover{
	background-color: #fff;
}
.btn-li{
	margin: 0 15px;
}
/* タイトル */
.title-container p{
	font-weight: bold;
	font-size: 32px;
	padding-bottom: 30px;
}
/* レンタルWeb注文 */
.btn-webrental{
	background-color: #c00;
	border-color: #c00;
}
.btn-webrental:hover{
	border-color: #c00;
	color: #c00;
}
/* 店舗検索する */
.btn-search-shop{
	background-color: #555;
	border-color: #555;
}
.btn-search-shop:hover{
	border-color: #555;
	color: #555;
}
/* お問い合わせ */
.btn-inquiry{
	background-color: #0068e9;
	border-color: #0068e9;
}
.btn-inquiry:hover{
	border-color: #0068e9;
	color: #0068e9;
}
/* 主な機能 */
.headline{
	color: #c00;
	font-weight: bold;
	font-size: 32px;
	margin-bottom: 20px;
}
.function{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding-bottom: 30px;
}
.function li{
	border: 1px solid #c00;
	width: 30%;
}
.function li .headline{
	background-color: #c00;
	color: #fff;
	font-size: 20px;
	padding: 8px 10px 10px 8px;
	text-align: center;
	margin: 0;
}
.function li .inner{
	padding: 15px;
}
/* Web注文サービスとは */
.about-webrental-container{
	border: #ccc 1px solid;
	background-color: #f5f5f5;
	padding: 20px 25px;
	max-width: 600px;
	margin: 0 auto;
}
.about-webrental-li{
	margin-bottom: 20px;
}
.about-webrental-li .title{
	font-size: 20px;
}
.about-webrental-li:last-child{
	margin-bottom: 0;
}

@media screen and (max-width: 750px) {
	.function{
		flex-wrap: wrap;
	}
	.function li{
		border: 1px solid #c00;
		width: 100%;
		margin-bottom: 30px;
	}
	.function li .headline{
		font-size: 24px;
	}
}

