/* ===========================================
 * plan
=========================================== */

#plan{
	background: #E8E8E4;
}
#plan_margin{
	margin-top: 80px;
}
#plan_main{
	padding: 100px 0 120px;
}
#plan_main h1{
	font-size: 14px;
	text-align: center;
}
#plan_main h1 span{
	font-size: 40px;
	display: block;
	font-weight: 700;
}
#plan_main h1 span::first-letter{
	color: #B40019;
}
#plan_main hr{
	border: 0;
	background: #4A4A4A;
	width: 100%;
	height: 1px;
	margin-top: 24px;
}
#plan_main_contents {
}
/* カテゴリーリスト */
#plan_main_contents_category{
	margin-top: 150px;
}
#plan_main_contents_category ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 20px;
}
#plan_main_contents_category ul li{
	background: #FFFFFF;
	width: 248px;
	height: 60px;
	border-radius: 8px;
	border: 1px solid #010005;
	text-align: center;
	font-size: 16px;
	position: relative;
}
#plan_main_contents_category ul li::after{
	content: "";
	width: 8px;
	height: 14px;
	background: url("../img/common/arrow.svg");
	position: absolute;
	top: 21px;
	right: 20px;
	transform: rotate(90deg);
}
#plan_main_contents_category ul li a{
	display: block;
	line-height: 60px;
	color: #071926;
}

#plan_contents {
	padding: 50px 0 150px;
	border-bottom: 1px solid #9D9D9D;
}
/* 一覧 */
#plan_main_contents_list {
	border-bottom: 1px solid #9D9D9D;
}
.plan_list_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.plan_list_contents{
	width: 504px;
	margin-bottom: 60px;
}

.plan_list_contents_img{
	width: 504px;
	height: 312px;
	overflow: hidden;
}
.plan_list_contents_img img{
	width: 504px;
	height: 312px;
	object-fit: cover;
	transition: transform .6s ease;
}
.plan_list_contents_img:hover img{
	transform: scale(1.1);
}
.plan_list_contents_body{
	background: #323336;
	padding: 10px;
}

.plan_list_contents_body h3{
	font-size: 16px;
}
.plan_list_contents_body h3 span.area{
	font-size: 16px;
}
a h3{
	color: #FDFCF8;
}

/* 詳細 */
.plan_main_box{
	margin-bottom: 120px;
}
.plan_main_box .block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.plan_main_box .block .box p.plan_number{
	font-size: 15px;
	font-weight: 600;
}
.plan_main_box .block .box h3{
	font-size: 24px;
	margin: 15px 0;
}
.plan_main_box .block .box p.price{
	font-size: 20px;
}
.plan_main_box .block .box table{
	font-size: 14px;
}
.plan_main_box .block .box:last-of-type{
	margin-left: auto;
	text-align: right;
}

.slide_inner{
	margin: 60px 0 0;
}
.slide_inner img{
	width: 1088px;
	height: auto;
	object-fit: cover;
}


#plan_main_contents .btn{
	width: 184px;
	height: 40px;
	background: #B40019;
	border-radius: 20px;
	margin: 50px auto 0;
	text-align: center;
	position: relative;
}
#plan_main_contents .btn a{
	display: block;
	color: #FDFCF8;
	font-size: 12px;
	line-height: 40px;
}
#plan_main_contents .btn::after{
	content: "";
    background: url("../img/common/arrow_w.svg") no-repeat center top /cover;
    width: 6px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 15px;
}
#plan_main_contents .btn a:hover{
	opacity: .7;
}


@media screen and (max-width:640px){
	
	#plan{
		background: #E8E8E4;
	}
	#plan_margin{
		margin-top: 80px;
	}
	#plan_main{
		padding: 70px 0 90px;
	}
	#plan_main h1{
		font-size: 20px;
		text-align: center;
	}
	#plan_main h1 span{
		font-size: 54px;
		display: block;
		font-weight: 700;
	}
	#plan_main h1 span::first-letter{
		color: #B40019;
	}
	#plan_main hr{
		border: 0;
		background: #4A4A4A;
		width: 100%;
		height: 1px;
		margin-top: 24px;
	}
	#plan_main_contents {
	}
	/* カテゴリーリスト */
	#plan_main_contents_category{
		margin-top: 90px;
	}
	#plan_main_contents_category ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 10px;
	}
	#plan_main_contents_category ul li{
		background: #FFFFFF;
		width: 180px;
		height: 60px;
		border-radius: 8px;
		border: 1px solid #010005;
		text-align: center;
		font-size: 22px;
		position: relative;
	}
	#plan_main_contents_category ul li::after{
		content: "";
		width: 8px;
		height: 14px;
		background: url("../img/common/arrow.svg");
		position: absolute;
		top: 21px;
		right: 20px;
		transform: rotate(90deg);
	}
	#plan_main_contents_category ul li a{
		display: block;
		line-height: 60px;
		color: #071926;
	}

	#plan_contents {
		padding: 20px 0 90px;
		border-bottom: 1px solid #9D9D9D;
	}

	/* 一覧 */
	#plan_main_contents_list {
		border-bottom: 1px solid #9D9D9D;
	}
	.plan_list_box{
		display: block;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.plan_list_contents{
		width: 580px;
		margin-bottom: 50px;
	}

	.plan_list_contents_img{
		width: 580px;
		height: 360px;
		overflow: hidden;
	}
	.plan_list_contents_img img{
		width: 580px;
		height: 360px;
		object-fit: cover;
		transition: transform .6s ease;
	}
	.plan_list_contents_img:hover img{
		transform: scale(1);
	}
	.plan_list_contents_body{
		background: #323336;
		padding: 10px;
	}
	.plan_list_contents_body h3{
		font-size: 24px;
	}
	a h3{
		color: #FDFCF8;
	}

	/* 詳細 */
	.plan_main_box{
		margin-bottom: 90px;
	}

	.plan_main_box .block{
		display: block;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.plan_main_box .block .box p.plan_number{
		font-size: 20px;
		font-weight: 600;
	}
	.plan_main_box .block .box h3{
		font-size: 32px;
	}
	.plan_main_box .block .box p.price{
		font-size: 26px;
	}
	.plan_main_box .block .box table{
		font-size: 20px;
	}
	.plan_main_box .block .box:last-of-type{
		margin-left: auto;
		text-align: left;
		border-top: 1px solid #9D9D9D;
		padding-top: 40px;
		margin-top: 40px;
	}

	.slide_inner{
		margin: 60px 0 0;
	}
	.slide_inner img{
		width: 580px;
		height: auto;
		object-fit: cover;
	}
	#plan_main_contents .btn{
		width: 400px;
		height: 70px;
		background: #B40019;
		border-radius: 35px;
		margin: 50px auto 0;
		text-align: center;
		position: relative;
	}
	#plan_main_contents .btn a{
		display: block;
		color: #FDFCF8;
		font-size: 24px;
		line-height: 70px;
	}
	#plan_main_contents .btn::after{
		content: "";
		background: url("../img/common/arrow_w.svg") no-repeat center top /cover;
		width: 10px;
		height: 18px;
		position: absolute;
		right: 20px;
		top: 25px;
	}
	#plan_main_contents .btn a:hover{
		opacity: .7;
	}
	
}




