@charset "utf-8";

/*
	** CONTENTS CSS
*/


.greeting-text {
	padding: 80px 40px 0;
}
.greeting-text .title {
	font-size: 2.25em;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 60px;
	word-break: keep-all;
}
.greeting-text .text {
	font-size: var(--font-size-20);
	font-weight: 200;
	line-height: 1.5;
	color: #0d0d0d;
	word-break: keep-all;
	margin-bottom: 30px;
}
@media all and (max-width: 1023px) {
	.greeting-text {
		padding: 50px 20px 0;
	}
	.greeting-text .title {
		font-size: var(--font-size-28);
		margin-bottom: 40px;
	}
	.greeting-text .text {
		font-size: var(--font-size-18);
		margin-bottom: 20px;
	}
}
@media all and (max-width: 767px) {
	.greeting-text {
		padding: 30px 10px 0;
	}
	.greeting-text .title {
		font-size: var(--font-size-22);
		margin-bottom: 30px;
	}
	.greeting-text .text {
		font-size: var(--font-size-16);
	}
}


.history-wrap {
	padding: 150px 0;
}
.history-wrap:first-child {
	padding-top: 40px;
}
.history-box {
	display: flex;
	align-items: flex-start;
}
.history-title {
	position: sticky;
	top: 100px;
	flex: 0 0 38%;
	font-size: 3.25em;
	font-weight: 800;
	color: var(--primary-color);
}
.history-list {
	flex: 1 1 0;
	position: relative;
	padding-left: 55px;
}
.history-line {
	position: absolute;
	left: 0;
	top: 10px;
	width: 1px;
	height: calc(100% - 10px);
	background: #d2d2d2;
}
.history-line-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
    height: 0;
	background: var(--primary-color);
}
.history-item {
	position: relative;
	margin-bottom: 100px;
}
.history-item::before {
	content: "";
	position: absolute;
	left: -62px;
	top: 8px;
	width: 15px;
	height: 15px;
	background: #d8d8d8;
	border-radius: 50%;
	transition: var(--transition);
}
.history-item::after {
	content: "";
	position: absolute;
	left: -77px;
	top: -7px;
	width: 45px;
	height: 45px;
	opacity: 0.1;
	border-radius: 50%;
	transform: scale(0);
	background: var(--primary-color);
	transition: var(--transition);
}
.history-year {
	font-size: var(--font-size-24);
	font-weight: 600;
	margin-bottom: 50px;
}
.history-cont-item {
	display: flex;
	align-items: flex-start;
	gap: 0 20px;
	font-size: var(--font-size-20);
	position: relative;
	margin-bottom: 30px;
}
.history-cont-item::before {
	content: "";
	position: absolute;
	left: -59px;
	top: 8px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #d8d8d8;
	transition: var(--transition);
}
.history-cont-item .list li {
	color: #4d4d4d;
	position: relative;
	padding-left: 20px;
	margin-bottom: 15px;
	line-height: 1.5;
}
.history-cont-item .list li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	background: #4d4d4d;
}
.history-item:last-child,
.history-cont-item:last-child,
.history-cont-item .list li:last-child {
	margin-bottom: 0;
}
.history-item.active::before,
.history-cont-item.active::before {
	background: var(--primary-color);
}
.history-item.active::after {
	transform: scale(1);
}
@media all and (max-width: 1023px) {
	.history-wrap {
		padding: 120px 0;
	}
	.history-wrap:first-child {
		padding-top: 20px;
	}
	.history-title {
		top: 70px;
		font-size: 2.5em;
	}
}
@media all and (max-width: 767px) {
	.history-wrap {
		padding: 70px 0;
	}
	.history-wrap:first-child {
		padding-top: 10px;
	}
	.history-box {
		display: block;
	}
	.history-title {
		position: initial;
		font-size: 2em;
		margin-bottom: 30px;
	}
	.history-list {
		padding-left: 40px;
		margin-left: 20px;
	}
	.history-item {
		margin-bottom: 70px;
	}
	.history-item::before {
		left: -47px;
	}
	.history-item::after {
		top: -5px;
		left: -60px;
		width: 41px;
		height: 41px;
	}
	.history-year {
		font-size: var(--font-size-22);
		margin-bottom: 30px;
	}
	.history-cont-item {
		gap: 0 15px;
		font-size: var(--font-size-17);
		margin-bottom: 25px;
	}
	.history-cont-item::before {
		left: -44px;
	}
	.history-cont-item .list li {
		padding-left: 15px;
		margin-bottom: 8px;
	}
	.history-cont-item .list li::before {
		top: 10px;
	}
}



.guide-map-box + .guide-map-box {
	margin-top: 50px;
}
.guide-map-box .text {
	font-size: var(--font-size-20);
	color: var(--primary-color);
	margin-bottom: 20px;
}
.guide-map-box .text .strong {
	padding: 2px;
	border: 1px dashed #fff100;
	background: #000;
	color: #fff;
}
.guide-text {
	font-size: var(--font-size-18);
}
.guide-item {
	padding: 80px 0;
	border-bottom: 1px solid #d2d2d2;
	display: flex;
	align-items: flex-start;
	gap: 0 30px;
}
.guide-item:first-child {
	padding-top: 0;
}
.guide-item:last-child {
	border-bottom: none;
}
.guide-item-title {
	flex: 0 0 22%;
}
.guide-item-title .title {
	font-size: 2em;
	font-weight: 800;
	color: var(--primary-color);
	word-break: keep-all;
}
.guide-item-title .desc {
	margin-bottom: 15px;
	font-size: var(--font-size-18);
	font-weight: 600;
}
.guide-item-cont {
	flex: 1 1 0;
}
.guide-item-cont .img-box {
	border-radius: 5px;
	overflow: hidden;
}
.guide-item-cont .img-box img {
	width: 100%;
}
.guide-item-cont .img-box.border {
	border: 1px solid #e5e5e5;
}
.guide-item.flex-column {
	flex-direction: column;
}
.guide-item.flex-column .guide-item-title {
	flex: 0 0 auto;
	margin-bottom: 20px;
}
.guide-item.flex-column .guide-item-cont {
	flex: 0 0 auto;
    width: 100%;
}
.guide-info {
	display: flex;
	flex-wrap: wrap;
	border-top: 2px solid var(--primary-color);
	border-left: 1px solid #d5d5d5;
}
.guide-info > li {
	flex: 1 1 33.33%;
	padding: 30px 0;
	border-right: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.guide-info .tit {
	font-size: var(--font-size-20);
	font-weight: 600;
	margin-bottom: 15px;
}
.guide-info .tit span {
	font-size: var(--font-size-14);
	font-weight: 400;
}
.guide-info .desc {
	font-size: var(--font-size-18);
	color: #5a5a5a;
}
.guide-info .desc.strong {
	font-size: var(--font-size-28);
	font-weight: 800;
	color: #000;
}
.guide-text-list,
.guide-desc-list {
	font-size: var(--font-size-18);
	line-height: 1.88;
}
.guide-desc-list .guide-text-list {
	font-size: var(--font-size-16);
}
.guide-text-list li {
	position: relative;
	word-break: keep-all;
	padding-left: 15px;
}
.guide-text-list li::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #d2d2d2;
}
.guide-desc-list {
	display: flex;
	gap: 0 10px;
}
.guide-desc-list dt {
	flex: 0 0 72px;
	color: #848484;
}
.guide-path-list > li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid #dadada;
	color: #272727;
}
.guide-path-list > li:last-child {
	border-bottom: none;
}
@media all and (max-width: 1023px) {
	.guide-map-box + .guide-map-box {
		margin-top: 40px;
	}
	.guide-map-box .text {
		font-size: var(--font-size-18);
	}
	.guide-item {
		padding: 60px 0;
	}
	.guide-item-title .title {
		font-size: var(--font-size-26);
	}
	.guide-info > li {
		flex: 1 1 50%;
		padding: 20px 0;
	}
	.guide-info .desc.strong {
		font-size: var(--font-size-24);
	}
}
@media all and (max-width: 767px) {
	.guide-map-box + .guide-map-box {
		margin-top: 30px;
	}
	.guide-map-box .text {
		font-size: var(--font-size-16);
		margin-bottom: 10px;
	}
	.guide-text {
		font-size: var(--font-size-16);
	}
	.guide-item {
		display: block;
		padding: 40px 0;
	}
	.guide-item-title {
		margin-bottom: 20px;
	}
	.guide-item-title .title {
		font-size: var(--font-size-24);
	}
	.guide-item-title .desc {
		margin-bottom: 8px;
		font-size: var(--font-size-16);
	}
	.guide-info .tit {
		font-size: var(--font-size-17);
		margin-bottom: 10px;
	}
	.guide-info .desc {
		font-size: var(--font-size-16);
	}
	.guide-info .desc.strong {
		font-size: var(--font-size-20);
	}
	.guide-text-list,
	.guide-desc-list {
		font-size: var(--font-size-16);
		line-height: 1.88;
	}
	.guide-text-list li::before {
		top: 12px;
	}
	.guide-desc-list dt {
		flex: 0 0 62px;
	}
	.guide-path-list > li {
		flex-direction: column;
		align-items: flex-start;
	}
	.guide-path-list img {
		width: 240px;
	}
}
.modal-guide-map .swiper-slide {
	width: 100%;
	aspect-ratio: 3 / 2;
}
.modal-guide-map .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.program-tab {
	display: flex;
    align-items: center;
	justify-content: center;
	gap: 0 90px;
	margin-bottom: 40px;
	position: sticky;
	top: 10px;
}
.program-tab .btn {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
	gap: 8px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	font-size: var(--font-size-18);
	font-weight: 600;
	position: relative;
}
.program-tab .btn.active {
	background: var(--primary-color);
	color: #fff;
}
.program-tab .btn::before {
	content: "";
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 36px;
	height: 36px;
}
.program-tab > li:nth-child(1) .btn::before {background-image: url("../img/contents/program-tab-img01.png");}
.program-tab > li:nth-child(2) .btn::before {background-image: url("../img/contents/program-tab-img02.png");}
.program-tab > li:nth-child(3) .btn::before {background-image: url("../img/contents/program-tab-img03.png");}
.program-tab > li:nth-child(4) .btn::before {background-image: url("../img/contents/program-tab-img04.png");}
.program-tab > li:nth-child(1) .btn.active::before {background-image: url("../img/contents/program-tab-img01-on.png");}
.program-tab > li:nth-child(2) .btn.active::before {background-image: url("../img/contents/program-tab-img02-on.png");}
.program-tab > li:nth-child(3) .btn.active::before {background-image: url("../img/contents/program-tab-img03-on.png");}
.program-tab > li:nth-child(4) .btn.active::before {background-image: url("../img/contents/program-tab-img04-on.png");}
.program-tab li:not(:last-child) .btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	z-index: 5;
	transform: translate(15px,-50%);
	width: 60px;
	height: 2px;
	background: #dcdcdc;
	transition: var(--transition);
}
.program-tab li:not(:last-child) .btn.active::after {
	background: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.program-tab {
		gap: 0 50px;
	}
	.program-tab .btn {
		width: 95px;
		height: 95px;
		font-size: var(--font-size-16);
	}
	.program-tab .btn::before {
		width: 30px;
		height: 30px;
	}
	.program-tab li:not(:last-child) .btn::after {
		transform: translate(10px,-50%);
		width: 30px;
	}
}
@media all and (max-width: 767px) {
	.program-tab {
		gap: 0 1.5%;
	}
	.program-tab .btn {
		gap: 5px;
		width: 80px;
		height: 80px;
		font-size: var(--font-size-15);
	}
	.program-tab .btn::before {
		width: 24px;
		height: 24px;
	}
	.program-tab .btn::after {
		display: none;
	}
}

.program-wrap .section {
	padding-top: 130px;
}
.program-wrap .section:first-of-type {
	margin-top: -130px;
}
.program-wrap .section:not(:last-child) {
	border-bottom: 1px solid #bfbfbf;
}
@media all and (max-width: 1023px) {
	.program-wrap .section {
		padding-top: 110px;
	}
	.program-wrap .section:first-of-type {
		margin-top: -110px;
	}
}
@media all and (max-width: 767px) {
	.program-wrap .section {
		padding-top: 90px;
	}
	.program-wrap .section:first-of-type {
		margin-top: -90px;
	}
}

.program-title {
	margin-bottom: 40px;
	text-align: center;
	color: var(--primary-color);
}
.program-title .title {
	margin-bottom: 5px;
	font-size: 2.5em;
	font-weight: 600;
}
.program-title .desc {
	font-size: var(--font-size-28);
}

.program-item {
	margin-bottom: 80px;
}
.program-item .img-box img {
	width: 100%;
}
.program-item .text-box {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 0;
}
.program-item .title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 2.5em;
	font-weight: 600;
	color: var(--primary-color);
}
.program-item .title.type02 {
	font-size: var(--font-size-30);
	color: #000;
}
.program-item .desc {
	text-align: center;
	font-size: var(--font-size-18);
	word-break: keep-all;
}
.program-item .desc-list {
	font-size: var(--font-size-18);
	line-height: 1.88;
}
.program-item .desc-list li {
	display: flex;
	justify-content: center;
	word-break: keep-all;
}
.program-item .desc-list li::before {
	content: "";
	width: 5px;
	height: 5px;
	background: #d2d2d2;
	margin-top: 13px;
	margin-right: 8px;
}
.program-item .info-box {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 4%;
	font-size: var(--font-size-18);
}
.program-item:not(:has(.title)) .info-box {
	padding-top: 0;
	border-top: none;
}
.program-item .info::before {
	display: inline-block;
	margin-right: 10px;
	font-weight: 600;
	font-family: "Font Awesome 6 Pro";
	color: #dedede;
}
.program-item .info.age::before {content: "\f007";}
.program-item .info.date::before {content: "\f133";font-weight: 400;}
.program-item .info.num::before {content: "\f500";}
.program-item .info.time::before {content: "\e349";}
.program-item .info.addr::before {content: "\f3c5";}
.program-item .info.cost::before {content: "\f159";}
.program-item .info.tool::before {content: "\e231";transform: rotate(-45deg);}
@media all and (max-width: 1023px) {
	.program-title .title {
		font-size: 2.25em;
	}
	.program-title .desc {
		font-size: var(--font-size-24);
	}
	.program-item {
		margin-bottom: 60px;
	}
	.program-item .title {
		font-size: 2em;
	}
	.program-item .title.type02 {
		font-size: var(--font-size-26);
	}
	.program-item .info-box {
		font-size: var(--font-size-17);
	}
}
@media all and (max-width: 767px) {
	.program-title .title {
		font-size: var(--font-size-28);
	}
	.program-title .desc {
		font-size: var(--font-size-20);
	}
	.program-item {
		margin-bottom: 40px;
	}
	.program-item .text-box {
		padding: 30px 0;
	}
	.program-item .title {
		font-size: var(--font-size-24);
		margin-bottom: 15px;
	}
	.program-item .title.type02 {
		font-size: var(--font-size-20);
	}
	.program-item .desc {
		font-size: var(--font-size-17);
	}
	.program-item .desc-list {
		font-size: var(--font-size-16);
	}
	.program-item .desc-list li {
		justify-content: flex-start;
	}
	.program-item .desc-list li::before {
		margin-top: 11px;
	}
	.program-item .info-box {
		margin-top: 20px;
		padding: 20px 20px 0;
		gap: 15px 20px;
		font-size: var(--font-size-16);
	}
	.program-item .info::before {
		margin-right: 8px;
	}
}


.program-item .heal-box {
	position: relative;
	padding: 40px;
	border: 1px solid var(--primary-color);
	border-radius: 20px;
}
.program-item .heal-box + .heal-box {
	margin-top: 40px;
}
.program-item .heal-title {
	position: absolute;
	top: -20px;
	left: 30px;
	padding: 8px 25px;
	background: var(--primary-color);
	border-radius: 99px;
	color: #fff;
	font-size: var(--font-size-18);
	font-weight: 600;
}
.program-item .heal-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 70px;
}
.program-item .heal-list li {
	position: relative;
}
.program-item .heal-list li::after {
	content: "";
	position: absolute;
	top: 68px;
	right: -52px;
	width: 35px;
	height: 29px;
	background: url("../img/contents/program-heal-right.png") no-repeat center / cover;
}
.program-item .heal-list li:last-child::after {
	display: none;
}
.program-item .heal-list .img {
	width: 166px;
	height: 166px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
.program-item .heal-list .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.program-item .heal-list .desc {
	margin-top: 15px;
}
@media all and (max-width: 1023px) {
	.program-item .heal-list {
		gap: 40px 50px;
	}
	.program-item .heal-list li::after {
		top: 55px;
		right: -40px;
		width: 30px;
		height: 25px;
	}
	.program-item .heal-list .img {
		width: 130px;
		height: 130px;
	}
	.program-item .heal-list .desc {
		font-size: var(--font-size-15);
	}
}
@media all and (max-width: 767px) {
	.program-item .heal-box {
		padding: 30px 10px;
	}
	.program-item .heal-box + .heal-box {
		margin-top: 30px;
	}
	.program-item .heal-title {
		top: -18px;
		left: 20px;
		padding: 6px 20px;
		font-size: var(--font-size-16);
	}
	.program-item .heal-list {
		gap: 30px 40px;
	}
	.program-item .heal-list li::after {
		top: 45px;
		right: -32px;
		width: 20px;
		height: 17px;
	}
	.program-item .heal-list .img {
		width: 100px;
		height: 100px;
	}
	.program-item .heal-list .desc {
		font-size: var(--font-size-14);
	}
}




.view-img-box {
	margin-bottom: 50px;
}
.view-img-box .text {
	font-family: 'S-CoreDream';
	font-size: 50px;
	font-weight: 600;
	letter-spacing: -0.05em;
	color: #eae9e9;
	text-align: right;
	margin-bottom: 20px;
}
.view-row {
	display: flex;
	justify-content: space-between;
	gap: 0 40px;
}
.view-img-box3 {
	margin-top: 170px;
}
.view-slide-box {
	margin-top: 120px;
}
@media all and (max-width: 1023px) {
	.view-img-box .text {
		font-size: 38px;
		margin-bottom: 10px;
	}
	.view-row {
		gap: 0 30px;
	}
	.view-img-box3 {
		margin-top: 100px;
	}
	.view-slide-box {
		margin-top: 80px;
	}
}
@media all and (max-width: 767px) {
	.view-img-box {
		margin-bottom: 40px;
	}
	.view-img-box .text {
		font-size: var(--font-size-28);
		padding-left: 30px;
		word-break: keep-all;
	}
	.view-row {
		gap: 0 20px;
	}
	.view-img-box3 {
		margin-top: 30px;
	}
	.view-slide-box {
		margin-top: 60px;
		height: 220px;
	}
	.view-slide-box img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}


.map-box {
	display: flex;
	align-items: flex-start;
	border: 1px solid #dcdcdc;
	height: 700px;
}
.map-box .map {
	flex: 1 1 0;
	width: 100%;
	height: 100%;
}
.map-box .map-marker {
	width: 35px;
	height: 40px;
	background: url("../img/contents/map-marker.png") no-repeat center / cover;
	text-align: center;
	padding-top: 7px;
	font-weight: 600;
	color: var(--primary-color);
}
.map-item {
	flex: 0 0 420px;
	padding: 60px 50px;
}
.map-title {
	font-size: var(--font-size-30);
	font-weight: 800;
}
.map-list > li {
	margin-top: 50px;
}
.map-list .num {
	display: inline-block;
	margin-right: 7px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #000;
	line-height: 24px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}
.map-list .tit {
	font-size: var(--font-size-20);
	font-weight: 600;
	margin-bottom: 10px;
}
.map-list .addr {
	color: #797979;
}
.map-list .btn-box {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 0 8px;
}
.map-list .btn-box .btn {
	display: block;
	width: 106px;
	height: 32px;
	border: 1px solid #dfdfdf;
	border-radius: 99px;
	overflow: hidden;
}
.map-list .btn-box .naver {background: url("../img/contents/map-naver.jpg") no-repeat center;}
.map-list .btn-box .kakao {background: url("../img/contents/map-kakao.jpg") no-repeat center;}

@media all and (max-width: 1023px) {
	.map-item {
		flex: 0 0 300px;
		padding: 40px 30px;
	}
	.map-title {
		font-size: var(--font-size-24);
	}
	.map-list .num {
		width: 20px;
		height: 20px;
		line-height: 20px;
		font-size: 15px;
	}
	.map-list .tit {
		font-size: var(--font-size-18);
	}
	.map-list .btn-box {
		margin-top: 12px;
		display: flex;
		align-items: center;
		gap: 0 8px;
	}
}
@media all and (max-width: 767px) {
	.map-box {
		flex-direction: column-reverse;
		height: auto;
	}
	.map-box .map {
		flex: 0 0 auto;
		width: 100%;
		height: 400px;
	}
	.map-box .map-marker {
		width: 30px;
		height: 35px;
		padding-top: 6px;
		font-size: var(--font-size-14);
	}
	.map-item {
		flex: 0 0 auto;
		width: 100%;
		padding: 30px 25px;
	}
	.map-title {
		font-size: var(--font-size-22);
	}
	.map-list > li {
		margin-top: 40px;
	}
}


.forest-path-slide {
	height: 780px;
}
.forest-path-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media all and (max-width: 1023px) {
	.forest-path-slide {
		height: 680px;
	}
}
@media all and (max-width: 767px) {
	.forest-path-slide {
		height: 300px;
	}
}


.reserve-btn-box {
	position: relative;
	z-index: 1;
	display: block;
	height: 280px;
	margin-bottom: 40px;
	border-radius: 20px;
	background: #efffd6;
	align-content: center;
	text-align: center;
	overflow: hidden;
}
.reserve-btn-box .text {
	margin-bottom: 30px;
	font-size: var(--font-size-22);
}
.reserve-btn-box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 265px;
	height: 66px;
	background: var(--primary-color);
	border-radius: 99px;
	color: #fff;
	font-size: var(--font-size-22);
}
.reserve-btn-box .img {
	position: absolute;
	z-index: -1;
	bottom: 20px;
}
.reserve-btn-box .img1 {
	right: 74%;
	animation: left 0.7s ease-in-out infinite alternate;
}
.reserve-btn-box .img2 {
	left: 74%;
	animation: right 0.7s 0.2s ease-in-out infinite alternate;
}
@keyframes left {
    0% {transform: translateY(0);}
    100% {transform: translateY(-2px) rotate(-0.5deg);}
}
@keyframes right {
    0% {transform: translateY(0);}
    100% {transform: translateY(-2px) rotate(0.3deg);}
}
@media all and (max-width: 1023px) {
	.reserve-btn-box .text {
		font-size: var(--font-size-20);
	}
	.reserve-btn-box .btn {
		width: 220px;
		height: 58px;
		font-size: var(--font-size-20);
	}
	.reserve-btn-box .img {
		height: 190px;
	}
}
@media all and (max-width: 767px) {
	.reserve-btn-box {
		height: auto;
		padding: 40px 30px 200px;
		margin-bottom: 20px;
	}
	.reserve-btn-box .text {
		margin-bottom: 20px;
		font-size: var(--font-size-18);
		word-break: keep-all;
	}
	.reserve-btn-box .btn {
		width: 200px;
		height: 54px;
		font-size: var(--font-size-18);
	}
	.reserve-btn-box .img {
		height: 150px;
		bottom: 10px;
	}
	.reserve-btn-box .img1 {
		right: auto;
		left: 20px;
	}
	.reserve-btn-box .img2 {
		display: none;
	}
}
.reserve-btn-box.reserve-confirm {
	margin-bottom: 0;
	background: #dfffd6;
}
.reserve-btn-box.reserve-confirm .img1 {
	right: 72%;
}
.reserve-btn-box.reserve-confirm .img2 {
	left: 68%;
}



.status-box:not(:last-child) {
	margin-bottom: 100px;
}
.status-box .guide-item {
	padding: 45px 0;
}
.status-box .guide-item-title {
	flex: 0 0 30%;
}
@media all and (max-width: 767px) {
	.status-box:not(:last-child) {
		margin-bottom: 50px;
	}
	.status-box .guide-item {
		padding: 35px 0;
	}
}


.program-info-box {
	margin-bottom: 120px;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #fbfbfb;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
}
.program-info-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary-color);
}
.program-info-box .text-box {
	padding: 30px 10px;
	text-align: center;
}
.program-info-box .text-box.border {
	border-top: 1px dashed #dcdcdc;
}
.program-info-box .text-box .title {
	margin-bottom: 15px;
	font-weight: 800;
	font-size: var(--font-size-22);
	color: var(--primary-color);
}
.program-info-box .text-box .text {
	font-size: var(--font-size-20);
}
@media all and (max-width: 1023px) {
	.program-info-box {
		margin-bottom: 100px;
	}
	.program-info-box .text-box .text {
		font-size: var(--font-size-18);
	}
}
@media all and (max-width: 767px) {
	.program-info-box {
		margin-bottom: 80px;
	}
	.program-info-box .text-box .title {
		font-size: var(--font-size-20);
	}
	.program-info-box .text-box .text {
		font-size: var(--font-size-16);
		word-break: keep-all;
	}
}
.program-info-list {
	display: flex;
	padding: 30px 0;
	border-radius: 5px;
	background: #f9f9f9;
}
.program-info-list dl {
	flex-grow: 1;
	padding: 10px;
	text-align: center;
	border-right: 1px solid #bfbfbf;
}
.program-info-list dl:last-child {
	border-right: none;
}
.program-info-list dt {
	margin-bottom: 15px;
	font-weight: 600;
	color: var(--primary-color);
}
.program-info-list dd {
	font-size: var(--font-size-22);
	font-weight: 600;
}
@media all and (max-width: 1023px) {
	.program-info-list dd {
		font-size: var(--font-size-18);
	}
}
@media all and (max-width: 767px) {
	.program-info-list {
		flex-wrap: wrap;
		gap: 30px 0;
	}
	.program-info-list dl {
		padding: 0 10px;
		flex-basis: 50%;
	}
	.program-info-list dl:nth-child(2n) {
		border-right: none;
	}
	.program-info-list dt {
		margin-bottom: 10px;
	}
	.program-info-list dd {
		font-size: var(--font-size-15);
		word-break: keep-all;
	}
}
.program-menu {
	display: flex;
	flex-wrap: wrap;
	padding: 35px 0;
}
.program-menu li {
	flex: 0 0 50%;
	padding: 0 8% 0 5%;
	border-right: 1px solid #bfbfbf;
	display: flex;
	align-items: flex-start;
	gap: 0 30px;
	font-size: var(--font-size-20);
}
.program-menu li:nth-child(2n) {
	border-right: none;
}
.program-menu li:not(:nth-last-child(-n+2)) {
	padding-bottom: 50px;
}
.program-menu .title {
	flex: 0 0 100px;
	padding: 5px;
	text-align: center;
	background: var(--primary-color);
	color: #fff;
	font-weight: 600;
	border-radius: 99px;
}
.program-menu .cont {
	flex: 1 1 0;
	line-height: 1.8;
}
.program-menu .cont dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.program-menu .cont dt {
	font-weight: 600;
	color: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.program-menu li {
		padding: 0 40px 0 20px;
		gap: 0 20px;
		font-size: var(--font-size-18);
	}
	.program-menu .title {
		flex: 0 0 82px;
	}
}
@media all and (max-width: 767px) {
	.program-menu {
		padding: 25px 0 20px;
	}
	.program-menu li {
		flex: 0 0 100%;
		padding: 0 35px 0 10px;
		border-right: none;
		font-size: var(--font-size-16);
	}
	.program-menu li:not(:nth-last-child(-n+1)) {
		padding-bottom: 20px;
	}
	.program-menu .title {
		flex: 0 0 70px;
		font-size: var(--font-size-15);
	}
}
.program-intro-box {
	padding: 65px 30px;
	margin-bottom: 45px;
	background: url("../img/contents/program-heal-intro-bg.jpg") no-repeat center;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.program-intro-box .text {
	margin-top: 40px;
	font-size: var(--font-size-20);
	font-weight: 300;
	line-height: 1.5;
	color: #fff;
	text-align: center;
}
@media all and (max-width: 1023px) {
	.program-intro-box .text {
		font-size: var(--font-size-18);
	}
	.program-intro-box img {
		width: 55px;
	}
}
@media all and (max-width: 767px) {
	.program-intro-box {
		padding: 55px 20px;
		margin-bottom: 35px;
		background-attachment: initial;
	}
	.program-intro-box .text {
		margin-top: 30px;
		font-size: var(--font-size-16);
		word-break: keep-all;
	}
	.program-intro-box .text br {
		display: none;
	}
	.program-intro-box img {
		width: 45px;
	}
}
