@charset "utf-8";

.planBtn_wrap{
	width: 1000px;
	margin: 0 auto;                                
}
.planBtn_wrap>ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.planBtn_wrap>ul>li{
	width: 48%;
	margin-bottom: 10px;
	position: relative;
}
.planBtn_wrap>ul>li:nth-of-type(3),
.planBtn_wrap>ul>li:last-of-type{
	margin-bottom: 0;
}
.planBtn_wrap>ul>li>a{
	display:block;
	color: #fff;
	background-color: #478cb4;
	position: relative;
	padding: 10px;
}
.planBtn_wrap>ul>li>a>span{
	font-size: 0.75em;
	background-color: #b5a784;
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	padding: 10px;
}         
.planBtn_wrap>ul>li>a:before{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(250deg,#393939 0%, #444444 10%, #282828 25%, #3f3f3f 50%, #5b5b5b 65%, #313131 85%, rgba(76, 76, 76, 0.5) 100%);
	mix-blend-mode: overlay;
	opacity: 0.5;
	transition: 0.5s all;
}
.planBtn_wrap>ul>li>a:hover:before,
.planBtn_wrap>ul>li>a:active:before{
	opacity: 1;
	transition: 0.5s all;
}
.planBtn_wrap>ul>li>p{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.75em;
	letter-spacing: 0.1em;
	color: #fff;
	background-color:rgba(0,0,0,0.75);
}
.planBtn_wrap>ul>li>a>.planBtn_inner{
	background-color: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
}
.planType_wrap{
	padding: 10px 20px;
	border-right: 0.5px solid #fff;
}
.planType_wrap p{
	font-size: 2em;
}
.planType_wrap p span{
	font-size: 1.25em;
}
.planDetail_wrap{
	padding: 10px 20px;
}
.planDetail_wrap>p{
	font-size: 1em;
}
.planDetail_wrap>p>span{
	font-size: 1.5em;
}
.under374{
	display: none;
}
@media (max-width:1200px){
	.planBtn_wrap{
		width: 90%;
	}
	.planType_wrap p{
		font-size: 1.75em;
	}
	.planDetail_wrap>p>span{
		font-size: 1.25em;
	}
}
@media (max-width:1000px){
	.planBtn_wrap>ul{
		flex-direction: column;
		align-items: center;
	}
	.planBtn_wrap>ul>li{
		width: 400px;
	}
	.planBtn_wrap>ul>li:nth-of-type(3){
		margin-bottom: 10px;
	}
}
@media (max-width:500px){
	.planBtn_wrap>ul>li{
		width: 100%;
	}
}
@media (max-width:374px){
	.under374{
		display: block;
	}
	.planBtn_wrap>ul>li>a>span{
		padding: 5px;
	} 
}