@charset "UTF-8";

/* 
----------------------------------------*/
.sec01{
	padding: 8rem 0 14rem;
}
.sec01 .inner {
	width: 100rem;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.sec01 .inner .map_wrap {
	width: 38.8rem;
}
.sec01 .inner .plan_btn {
	width: 59.3rem;
}
.sec01 .inner .plan_btn h3 {
	color: #FFFFFF;
	font-size: 2rem;
	background: #BCB594;
	padding: 1rem 0 1.1rem 2rem;
	margin-bottom: 1.7rem;
}
.sec01 .inner .plan_btn ul + h3 {
	margin-top: 3rem
}
.sec01 .inner .plan_btn ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 1rem;
}
.sec01 .inner .plan_btn li {
	width: 29rem;
}

@media only screen and (max-width: 768px) {
	.sec01{
		padding: 4rem 0 8rem;
	}
	.sec01 .inner {
		width: 90%;
		flex-direction: column;
		gap: 3rem;
	}
	.sec01 .inner .map_wrap {
		max-width: 38.8rem;
		width: 100%;
	}
	.sec01 .inner .plan_btn {
		width: 100%;
	}
	.sec01 .inner .plan_btn h3 {
		font-size: 1.6rem;
		padding: .8rem 0 .9rem 1.8rem;
		margin-bottom: 1.5rem;
	}
	.sec01 .inner .plan_btn ul + h3 {
		margin-top: 3rem
	}
	.sec01 .inner .plan_btn ul {
		flex-direction: column;
		row-gap: 1rem;
	}
	.sec01 .inner .plan_btn li {
		width: 100%;
	}
}

.plan_detail {
	padding: 6rem 0 14rem;
}
.plan_detail .inner {
	width: 100rem;
	margin: 0 auto;
}

.plan_spec {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4rem; 
}
.spec_left {
	display: flex;
	align-items: center;
	gap: 4rem;
}
.spec_left h3 {
	color: #BCB594;
	font-size: 9rem;
	line-height: 1.1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 15rem;
	height: 13rem;
	border-left: .1rem solid #CBCBCB;
	border-right: .1rem solid #CBCBCB;
	padding-bottom: 1.2rem;
}
.spec_left h3 small {
	font-size: 2.6rem;
}
.spec_left p {
	padding: 0 1rem;
}
.spec_left p:first-of-type {
	font-size: 2.6rem;
	border-bottom: .1rem solid #CBCBCB;
	padding-bottom: .6rem;
	margin-bottom: .4rem;
}
.spec_left p:first-of-type span {
	font-size: 3.4rem;
}
.spec_left p:first-of-type small {
	font-size: 1.8rem;
}
.spec_left p:last-of-type {
	font-size: 2.2rem
}
.spec_left p:last-of-type span {
	font-size: 3.2rem
}
.spec_left p:last-of-type small {
	font-size: 1.6rem
}
.spec_right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background: #F7F7F7;
	width: 42.8rem;
	padding: 0 3rem;
}
.spec_right ul {
	width: 100%;
}
.spec_right li {
	font-size: 1.7rem;
	line-height: 1.7;
	display: flex;
	justify-content: space-between;
}
.plan_point {
	margin-bottom: 6rem
}
.plan_point li {
	font-size: 1.6rem;
	display: flex;
	/*align-items: center;*/
	gap: .9rem;
}
.plan_point li + li {
	margin-top: 1.2rem;
}
.plan_point li::before {
	content: "";
	width: 1.1rem;
	height: 1.1rem;
	background: #BCB594;
	margin-top: .8rem;
}
.detail_wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6rem;
}
.detail_map {
	width: 41.5rem;
}
.detail_wrap figure {
	width: 56rem;
}
.detail_btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}
.detail_btn li {
	width: 43.6rem;
}
.detail_btn li a {
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 7rem;
	position: relative;
	transition: .4s;
}
.detail_btn li a:hover {
	opacity: .7;
}
.detail_btn li a::after {
	content: "";
	position: absolute;
	left: 2.6rem;
	top: 50%;
	transform: translateY(-50%);
}
.detail_btn li a.btn_pdf {
	color: #FFFFFF;
	background: rgba(28,64,101,1.00);
}
.detail_btn li a.btn_pdf::after {
	width: 2.8rem;
	height: 3.5rem;
	background: url("../img/plan/icon_pdf.svg") no-repeat left top / 100% auto;
}
.detail_btn li a.btn_back {
	color: #3E3E3E;
	background: rgba(196,196,196,1.00);
}
.detail_btn li a.btn_back::after {
	width: 3.6rem;
	height: .7rem;
	background: url("../img/plan/icon_back.svg") no-repeat left top / 100% auto;
}
@media only screen and (max-width: 768px) {
	.plan_detail {
		padding: 4rem 0 8rem;
	}
	.plan_detail .inner {
		width: 90%;
		margin: 0 auto;
	}
	.plan_spec {
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 2rem; 
	}
	.spec_left {
		gap: 1.5rem;
	}
	.spec_left h3 {
		font-size: 5rem;
		width: 9rem;
		height: 10rem;
		padding-bottom: 1.2rem;
	}
	.spec_left h3 small {
		font-size: 1.8rem;
	}
	.spec_left p {
		padding: 0 .5rem;
	}
	.spec_left p:first-of-type {
		font-size: 2.2rem;
		padding-bottom: 0rem;
		margin-bottom: 0rem;
	}
	.spec_left p:first-of-type span {
		font-size: 3rem;
	}
	.spec_left p:first-of-type small {
		font-size: 1.6rem;
	}
	.spec_left p:last-of-type {
		font-size: 1.6rem
	}
	.spec_left p:last-of-type span {
		font-size: 2.4rem
	}
	.spec_left p:last-of-type small {
		font-size: 1.2rem
	}
	.spec_right {
		width: 100%;
		padding: 1rem;
	}
	.spec_right ul {
		width: 100%;
	}
	.spec_right li {
		font-size: 1.3rem;
	}
	.plan_point {
		margin-bottom: 3rem
	}
	.plan_point li {
		font-size: 1.4rem;
	}
	.plan_point li::before {
		width: 1rem;
		height: 1rem;
		margin-top: .6rem;
		flex-shrink: 0;
	}
	.detail_wrap {
		flex-direction: column;
		gap: 1.5rem;
		margin-bottom: 3rem;
	}
	.detail_map {
		width: 100%;;
	}
	.detail_wrap figure {
		width: 100%;
	}
	.detail_btn {
		gap: 1.5rem;
	}
	.detail_btn li {
		max-width: 34.5rem;
		width: 100%;
	}
	.detail_btn li a {
		font-size: 1.4rem;
		height: 5.6rem;
	}
	.detail_btn li a::after {
		content: "";
		position: absolute;
		left: 2.6rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.detail_btn li a.btn_pdf::after {
		width: 2.2rem;
		height: 3rem;
	}
	.detail_btn li a.btn_back::after {
		width: 2.6rem;
		height: .52rem;
	}	
}

