@charset "utf-8";

/* ## 결제 입력 s ## */
.pay-form-wrap {
	padding-bottom: 80px;
}
.sub-top.opt-pay-form .sub-top-box {
	background-image: url("../img/contents/pay-form-bg.png");
	background-repeat: no-repeat;
	background-position: 95% bottom;
	background-size: 250px;
}
.pay-form-info-box {
	color: #606060;
}
.pay-form-info-box .title {
	font-size: var(--font-size-24);
	color: #000;
}
.pay-form-info-box .title .strong {
	font-weight: 600;
}
.pay-form-info-box .date {
	margin-top: 5px;
}
.pay-form-info-box .date .badge-box {
	padding: 1px 10px 2px;
	background: var(--primary-color);
	font-size: var(--font-size-14);
	border-radius: 20px;
	color: #fff;
	margin: -2px 0 0 8px;
	display: inline-block;
	vertical-align: middle;
}
.pay-form-info-box .desc {
	margin-top: 20px;
}
.pay-form-box {
	max-width: 540px;
	margin: 50px auto 0;
	border: 1px solid #E5E5E5;
	border-radius: 10px;
	padding: 40px;
}
.pay-form-title {
	text-align: center;
	font-size: var(--font-size-24);
	font-weight: 600;
	letter-spacing: -1px;
	margin-bottom: 30px;
}
.pay-form-price-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	border: 1px solid #D5D5D5;
	border-radius: 30px;
	padding: 0 30px;
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
}
.pay-form-price-btn::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: var(--seconary-color);
	position: absolute;
	left: 0;
	top: 100%;
	z-index: -1;
	transition: all 0.2s ease-in-out;
}
.pay-form-price-btn .title {
	color: #515151;
	transition: all 0.2s ease-in-out;
}
.pay-form-price-btn .title .strong {
	color: var(--primary-color);
	padding-left: 10px;
	transition: all 0.2s ease-in-out;
}
.pay-form-price-btn .price {
	letter-spacing: -0.8px;
	transition: all 0.2s ease-in-out;
}
.pay-form-price-btn .ico-box {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	border: 1px solid #D2D2D2;
	border-radius: 2px;
	margin: -4px 0 0 15px;
	position: relative;
	background: #fff;
}
.pay-form-price-btn .ico-box::before {
	display: block;
	content: "";
	width: 5px;
	height: 9px;
	border-right: 1px solid transparent;
	border-bottom: 1px solid transparent;
	transform: rotate(45deg);
	position: absolute;
	left: 5px;
	top: -5px;
	transition: all 0.3s ease-in-out;
}
.pay-form-price-btn.active::before {
	top: 0;
}
.pay-form-price-btn.active .title,
.pay-form-price-btn.active .title .strong,
.pay-form-price-btn.active .price {
	color: #fff;
}
.pay-form-price-btn.active .ico-box::before {
	border-color: #2D2D2D;
	top: 1px;
}
.pay-form-price-total {
	margin-top: 15px;
	background: #FAFAFA;
	border-radius: 5px;
	padding: 25px;
}
.pay-form-price-total .price-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.95em;
	padding-top: 10px;
	color: #606060;
}
.pay-form-price-total .price-item:first-child {
	padding-top: 0;
}
.pay-form-price-total .price {
	font-weight: 600;
	color: #000;
}
.pay-form-price-total .price.opt-old {
	text-decoration: line-through;
	color: #555555;
}
.pay-form-price-total .price-item.opt-total {
	font-weight: 600;
	border-top: 1px solid #DCDCDC;
	margin-top: 15px;
}
.pay-form-price-total .price-item.opt-total .price {
	color: var(--primary-color);
	font-size: var(--font-size-20);
}
.pay-form-agree {
	margin-top: 30px;
}
.pay-form-agree-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
	flex-wrap: wrap;
}
.pay-form-agree-row .check-box {
	margin-top: 2px;
}
.pay-form-agree-row .check-label {
	padding-left: 26px;
}
.pay-form-agree-row .check-text {
	font-size: var(--font-size-14);
	color: #606060;
}
.pay-form-agree-row .check-check,
.pay-form-agree-row .check-input {
	top: 2px;
}
.pay-form-agree-row .btn-default .ico-custom {
	display: inline-block;
	vertical-align: middle;
	margin: 2px 0 0 5px;
	transition: all 0.3s ease-in-out;
}
.pay-form-agree-row .btn-default.active .ico-custom {
	transform: rotate(-180deg);
	margin-top: -1px;
}
.pay-form-agree-desc {
	flex: 0 0 100%;
	display: none;
}
.pay-form-agree-desc .desc-box {
	border: 1px solid #DCDCDC;
	margin-top: 8px;
	padding: 15px;
	max-height: 150px;
	overflow-y: auto;
	font-size: var(--font-size-13);
	border-radius: 5px;
}
.pay-form-agree-desc .desc-box::-webkit-scrollbar {
	width: 5px;
}
.pay-form-agree-desc .desc-box::-webkit-scrollbar-thumb {
	background: #B8BBC3;
	border-radius: 5px;
}
.pay-form-agree-desc .desc-box::-webkit-scrollbar-track {
	background: #DFDFDF;
	border-radius: 5px;
}
.pay-form-coupon {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #DCDCDC;
	position: relative;
}
.pay-form-coupon-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FAFAFA;
	height: 44px;
	font-size: 0.95em;
	padding: 0 25px;
	border-radius: 5px;
	transition: all 0.2s ease-in-out;
}
.pay-form-coupon-btn .text {
	font-size: 0.95em;
	color: #555;
}
.pay-form-coupon-btn .text .ico-custom {
	display: inline-block;
	vertical-align: middle;
	margin: -2px 0 0 3px;
	transition: all 0.3s ease-in-out;
}
.pay-form-coupon-btn.active {
	background: #F3F9FF;
}
.pay-form-coupon-btn.active .ico-custom {
	transform: rotate(180deg);
	margin-top: -5px;
}
.pay-form-coupon-box {
	background: #F3F9FF;
	padding: 10px 25px 20px;
	display: flex;
	align-items: center;
	transition: all 0.2s ease-in-out;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 20px;
	width: 100%;
}
.pay-form-coupon-box.active {
	opacity: 1;
	visibility: visible;
	top: 60px;
}
.pay-form-coupon-box .input {
	flex: 1 1 auto;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	font-size: var(--font-size-14);
	width: 100%;
}
.pay-form-coupon-box .btn-default {
	flex: 0 0 80px;
	margin-left: 10px;
	height: 40px;
	background: var(--seconary-color);
	padding: 0;
	font-size: var(--font-size-14);
}
@media all and (max-width: 1023px) {
	.pay-form-wrap {
		padding-bottom: 60px;
	}
	.sub-top.opt-pay-form .sub-top-box {
		background-size: 230px;
		background-position: 98% bottom;
	}
}
@media all and (max-width: 767px) {
	.pay-form-wrap {
		padding-bottom: 40px;
	}
	.sub-top.opt-pay-form .sub-top-box {
		background: none;
	}
	.pay-form-info-box .title {
		font-size: var(--font-size-18);
	}
	.pay-form-info-box .date,
	.pay-form-info-box .desc {
		font-size: var(--font-size-13);
	}
	.pay-form-info-box .desc {
		margin-top: 15px;
	}
	.pay-form-box {
		max-width: none;
		margin-top: 0;
		border-left: none;
		border-right: none;
		border-top: none;
		border-radius: 0;
		padding: 30px 20px 20px;
	}
	.pay-form-title {
		margin-bottom: 20px;
		font-size: var(--font-size-20);
	}
	.pay-form-price-btn {
		padding: 0 15px;
		height: 55px;
		margin-bottom: 10px;
		font-size: var(--font-size-14);
	}
	.pay-form-price-btn .title .strong {
		padding-left: 8px;
	}
	.pay-form-price-btn .ico-box {
		margin-left: 10px;
	}
	.pay-form-price-total {
		padding: 20px;
	}
	.pay-form-price-total .price-item {
		font-size: var(--font-size-14);
		padding-top: 5px;
	}
	.pay-form-price-total .price-item.opt-total {
		margin-top: 10px;
		padding-top: 10px;
	}
	.pay-form-price-total .price-item.opt-total .price {
		font-size: var(--font-size-18);
	}
	.pay-form-coupon-btn {
		font-size: var(--font-size-14);
		padding: 0 20px;
	}
	.pay-form-coupon-btn .text .ico-custom {
		margin-top: 0;
	}
	.pay-form-coupon-btn.active .text .ico-custom {
		margin-top: -3px;
	}
	.pay-form-coupon-box.active {
		padding: 5px 20px 20px;
	}
	.pay-form-coupon-box .input {
		height: 35px;
	}
	.pay-form-coupon-box .btn-default {
		font-size: var(--font-size-13);
		flex: 0 0 65px;
		margin-left: 5px;
		height: 35px;
	}
	.pay-form-agree {
		margin-top: 20px;
	}
	.pay-form-agree-row {
		display: block;
		margin-top: 10px;
	}
	.pay-form-agree-row .check-check,
	.pay-form-agree-row .check-input {
		top: 1px;
	}
	.pay-form-agree-row .check-text {
		font-size: var(--font-size-13);
	}
	.pay-form-agree-row .btn-default {
		margin-left: 26px;
		font-size: 0.7em;
	}
}
/* ## 결제 입력 e ## */



/* ## 결제 완료 s ## */
.pay-complete-wrap {
	padding: 50px 0 100px;
	text-align: center;
}
.pay-complete-title {
	padding-top: 170px;
	background: url("../img/contents/pay-complete-bg.png") no-repeat center top;
}
.pay-complete-title .title {
	font-size: var(--font-size-28);
}
.pay-complete-title .name {
	font-weight: 600;
}
.pay-complete-title .service {
	font-weight: 600;
	color: var(--primary-color);
}
.pay-complete-title .date {
	font-size: var(--font-size-18);
	margin-top: 5px;
}
.pay-complete-title .btn {
	padding: 7px 20px;
	background: #000;
	color: #fff;
	border-radius: 25px;
	margin-top: 30px;
	transition: all 0.3s ease-in-out;
}
.pay-complete-title .btn:hover {
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.pay-complete-info {
	max-width: 700px;
	margin: 50px auto 0;
	padding: 40px 80px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
}
.pay-complete-info .title {
	font-size: var(--font-size-24);
	font-weight: 600;
}
.pay-complete-info .desc {
	color: #5a5a5a;
	margin-top: 5px;
}
.pay-complete-info .info-list {
	border-top: 1px solid #e5e5e5;
	margin-top: 30px;
	padding: 25px 20px 0;
	display: flex;
	flex-wrap: wrap;
	text-align: left;
}
.pay-complete-info .info-list li {
	flex: 0 0 50%;
	padding: 5px 0 5px 20px;
	display: flex;
}
.pay-complete-info .info-list .ico-custom {
	color: var(--primary-color);
	margin: 3px 8px 0 0;
	font-size: var(--font-size-18);
}
.pay-confirm-content {
	padding: 30px 35px;
	border: 1px solid #CBCBCB;
	border-radius: 6px;
	margin-top: 20px;
}
.pay-name-title {
	font-size: var(--font-size-18);
	font-weight: 600;
}
.pay-name-title.opt-mt {
	margin-top: 20px;
}
.pay-confirm-info {
	text-align: center;
}
.pay-confirm-info .title {
	font-size: var(--font-size-24);
	font-weight: 600;
}
.pay-confirm-info .num-box {
	margin-top: 10px;
	background: #F5F5F5;
	color: #555555;
	font-size: var(--font-size-14);
	padding: 8px 10px;
}
.pay-confirm-info .num-box .num {
	margin-left: 8px;
}
.pay-confirm-list {
	margin-top: 15px;
}
.mypage-pay-item {
	margin-top: 20px;
}
.pay-confirm-list .item-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 6px;
}
.pay-confirm-list .title {
	font-size: var(--font-size-14);
}
.pay-confirm-list .item-box.opt-total {
	border-top: 1px solid #DFDFDF;
	padding-top: 10px;
	margin-top: 4px;
}
@media all and (max-width: 1023px) {
	.pay-complete-wrap {
		padding-bottom: 80px;
	}
	.pay-complete-title .title {
		font-size: var(--font-size-24);
	}
}
@media all and (max-width: 767px) {
	.pay-complete-wrap {
		padding: 30px 10px 60px;
	}
	.pay-complete-title {
		background-size: 120px;
		padding-top: 140px;
	}
	.pay-complete-title .title {
		font-size: var(--font-size-20);
	}
	.pay-complete-title .date {
		font-size: var(--font-size-14);
	}
	.pay-complete-title .btn {
		font-size: var(--font-size-14);
		margin-top: 15px;
	}
	.pay-complete-info {
		margin-top: 40px;
		padding: 20px;
	}
	.pay-complete-info .title {
		font-size: var(--font-size-20);
	}
	.pay-complete-info .desc {
		font-size: var(--font-size-14);
	}
	.pay-complete-info .info-list {
		margin-top: 10px;
		padding-top: 10px;
	}
	.pay-complete-info .info-list li {
		flex: 0 0 100%;
		padding: 5px 0;
		font-size: var(--font-size-14);
	}
	.pay-complete-info .info-list .ico-custom {
		font-size: 1em;
	}
	.pay-confirm-content {
		padding: 15px;
	}
	.pay-confirm-info .title {
		font-size: var(--font-size-20);
	}
	.pay-confirm-info .num-box {
		font-size: var(--font-size-13);
	}
	.pay-confirm-info .num-box .num {
		margin-left: 5px;
	}
	.pay-confirm-list {
		margin-top: 10px;
	}
	.pay-confirm-list .item-box {
		font-size: var(--font-size-14);
	}
	.pay-name-title {
		font-size: 1em;
	}
}
/* ## 결제 완료 e ## */




/* ## 요금 안내 s ## */
.pay-info-wrap {
	padding: 50px 10px 100px;
	max-width: 1500px;
	margin: 0 auto;
}
.pay-info-title {
	text-align: center;
	background: url("../img/contents/pay-info-bg01.png") no-repeat center top;
	padding-top: 245px;
	position: relative;
}
.pay-info-title::before,
.pay-info-title::after {
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.pay-info-title::before {
	background: url("../img/contents/pay-info-bg02.png") no-repeat center left;
	left: 0;
	animation: pay-info-bg 1.5s ease-in-out alternate infinite;
}
.pay-info-title::after {
	background: url("../img/contents/pay-info-bg03.png") no-repeat center right;
	right: 0;
	animation-delay: 0.5s;
	animation: pay-info-bg 2s ease-in-out alternate infinite;
}
@keyframes pay-info-bg {
	0% {
		filter: grayscale(0);
		transform: translateY(10px);
	}
	100% {
		filter: grayscale(0.5);
		transform: translateY(-10px);
	}
}
.pay-info-title .title {
	font-size: 2.2em;
}
.pay-info-title .title .opt-strong {
	font-weight: 600;
}
.pay-info-title .desc {
	font-size: var(--font-size-18);
	margin-top: 15px;
}
.pay-price-select {
	display: flex;
	margin: 80px -15px 0;
}
.pay-price-select-box {
	flex: 1 1 auto;
	margin: 0 15px;
	border: 1px solid #e5e5f5;
	border-radius: 8px;
	padding: 35px 3%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.2s ease-in-out;
}
.pay-price-select-box:hover {
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transform: translateY(-5px);
}
.pay-price-select-box.opt-pro:hover {
	border-color: var(--seconary-color);
}
.pay-price-select-item {
	position: relative;
}
.pay-price-select-item .title {
	font-size: var(--font-size-24);
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 1.2;
}
.pay-price-select-item .desc {
	color: #5a5a5a;
}
.pay-price-select-item .price-box {
	margin-top: 15px;
}
.pay-price-select-item .price {
	font-size: var(--font-size-30);
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: -1.5px;
}
.opt-pro .pay-price-select-item .price {
	color: var(--seconary-color);
}
.pay-price-select-item .price-desc {
	color: #5a5a5a;
	margin-left: 5px;
}
.pay-price-select-item .info-wrap {
	margin-top: 10px;
	border-top: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
}
.pay-price-select-item .info-box {
	padding: 15px 5px;
}
.pay-price-select-item .info-box:not(:last-child) {
	border-bottom:1px dashed #d1d1d1;
}
.pay-price-select-item .info-title {
	font-weight: 800;
	margin-bottom:8px;
	color: var(--primary-color);
}
.opt-pro .pay-price-select-item .info-title {
	color: var(--seconary-color);
}
.pay-price-select-item .info-list li {
	padding-left:22px;
	position: relative;
}
.pay-price-select-item .info-list li:not(:last-child) {
	margin-bottom: 8px;
}
.pay-price-select-item .info-list li::before {
	display: block;
	content:"\f00c";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	left:0;
	top:0;
	color: var(--primary-color);
}
.opt-pro .pay-price-select-item .info-list li::before {
	color: var(--seconary-color);
}
.pay-price-select-item .info-list li .ico-custom {
	display: none;
}
.pay-price-new {
	color: #f11818;
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1;
}
.table-default .pay-price-new {
	font-size: 0.65em;
}
.table-default span.pay-price-new {
	margin-top:-8px;
	margin-right: 3px;
	display: inline-block;
	vertical-align:middle;
}
.pay-price-select-box .pay-price-new {
	position: absolute;
	left:0;
	top:-10px;
}
.pay-info-compare .opt-title th {
	vertical-align: bottom;
}
.pay-info-compare,
.pay-info-faq {
	margin-top: 80px;
}
.pay-info-card {
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.pay-info-compare .pay-info-card {
	padding: 40px;
}
.pay-info-faq-box {
	margin-bottom: 20px;
}
.pay-info-faq-box .btn {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 20px 70px 20px 30px;
	text-align: left;
	position: relative;
}
.pay-info-faq-box .btn .ico-custom {
	font-size: var(--font-size-20);
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}
.pay-info-faq-box .btn.active .ico-custom {
	top: 49%;
	transform: translateY(-50%) rotate(-180deg);
}
.pay-info-faq-box .text-box {
	padding: 0 30px;
	display: none;
}
.pay-info-faq-box .text {
	border-top: 1px solid #d2d2d2;
	padding: 20px 0;
	color: #7b7a7a;
}
.pay-info-popup .modal-popup-box {
	max-width: 1200px;
}
.pay-info-popup .pay-price-select {
	margin-top: 30px;
	padding: 0 20px;
}
.pay-info-popup-title {
	font-size: 2em;
	text-align: center;
	margin-top: 20px;
}
@media all and (max-width: 1023px) {
	.pay-info-wrap {
		padding: 50px 20px 80px;
	}
	.pay-info-title .title {
		font-size: var(--font-size-30);
	}
	.pay-price-select {
		margin: 50px -5px 0;
		flex-wrap: wrap;
	}
	.pay-price-select-box {
		margin: 5px;
		padding: 30px;
		flex:0 0 calc(50% - 10px);
	}
	.pay-price-select-item .title {
		font-size: var(--font-size-20);
	}
	.pay-price-select-item .desc {
		font-size: var(--font-size-14);
	}
	.pay-price-select-item .price-box {
		margin-top: 10px;
	}
	.pay-price-select-item .price {
		font-size: var(--font-size-24);
	}
	.pay-price-select-item .info-list {
		padding: 0 5px;
		font-size: var(--font-size-14);
	}
	.pay-info-compare .pay-info-card {
		padding: 30px;
	}
	.pay-info-compare,
	.pay-info-faq {
		margin-top: 60px;
	}
	.pay-info-popup .pay-price-select {
		margin-top: 20px;
	}
	.pay-info-popup-title {
		font-size: 1.8em;
	}
}
@media all and (max-width: 767px) {
	.pay-info-wrap {
		padding: 30px 10px 60px;
	}
	.pay-info-title {
		background-size: 240px;
		padding-top: 200px;
	}
	.pay-info-title::before,
	.pay-info-title::after {
		display: none;
	}
	.pay-info-title .title {
		font-size: var(--font-size-24);
	}
	.pay-info-title .desc {
		font-size: 1em;
		margin-top: 10px;
	}
	.pay-price-select-item .price {
		font-size: var(--font-size-20);
	}
	.pay-price-select-item .price-desc {
		font-size: var(--font-size-14);
	}
	.pay-price-select {
		margin: 35px 0;
		display: block;
	}
	.pay-price-select-box {
		flex: none;
		margin: 10px 0 0;
	}
	.pay-price-select-item .info-title {
		font-size: 0.95em;
	}
	.pay-info-compare,
	.pay-info-faq {
		margin-top: 40px;
	}
	.pay-info-card {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	}
	.pay-info-compare .pay-info-card {
		padding: 20px;
	}
	.pay-info-compare table {
		width: 800px;
	}
	.pay-info-faq-box {
		margin-bottom: 10px;
	}
	.pay-info-faq-box .btn {
		padding: 15px 50px 15px 20px;
		font-size: var(--font-size-14);
	}
	.pay-info-faq-box .btn .ico-custom {
		right: 20px;
	}
	.pay-info-faq-box .btn.active .ico-custom {
	}
	.pay-info-faq-box .text-box {
		padding: 0 15px;
	}
	.pay-info-faq-box .text {
		padding: 15px 0;
		font-size: var(--font-size-14);
	}
	.pay-info-popup .pay-price-select {
		margin: 10px 0 0;
		padding: 0;
	}
	.pay-info-popup-title {
		font-size: var(--font-size-24);
	}
}
/* ## 요금 안내 e ## */




/* ## 마이페이지 공통 s ## */
.mypage-wrap {
	background: #fff;
	padding: 30px 0 100px;
	border-radius: 30px 30px 0 0;
	position: relative;
}
.mypage-wrap::before {
	display: block;
	content: "";
	width: 100%;
	height: 100px;
	background: #ECF5FF;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.mypage-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 10px;
}
.mypage-wrap .tab-default-item .pro {
	font-size: 0.5em;
	position: absolute;
	right: 10px;
	top: 6px;
	background: #000;
	padding: 0 6px 1px;
	border-radius: 10px;
	color: #fff;
}
.search-basic-wrap.opt-mypage {
	padding-left: 100px;
	justify-content: flex-end;
}
.mypage-wrap .tab-default {
	position: relative;
	margin-top: -20px;
}
.mypage-wrap .tab-default .opt-ebook-add {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.mypage-wrap .tab-default .opt-ebook-add .ico-custom {
	margin-right: 5px;
}
.mypage-header-item .service-badge {
	color: var(--primary-color);
	font-size: var(--font-size-13);
}
.mypage-header-item .name-box {
	color: #9E9E9E;
}
.mypage-header-item .name-box .name {
	font-weight: 600;
	color: #000;
	font-size: var(--font-size-24);
	margin-right: 5px;
}
.mypage-header-item .desc-box {
	margin-top: 10px;
	color: #555555;
	display: flex;
	align-items: flex-end;
}
.mypage-header-item .btn-box {
	margin-left: 20px;
}
.mypage-header-item .btn-box .ico-custom {
	margin-right: 5px;
}
@media all and (max-width: 1023px) {
	.mypage-wrap {
		padding-bottom: 30px;
	}
	.mypage-container {
		padding: 0 20px;
	}
	.mypage-contents {
		padding: 95px 0 30px;
		position: relative;
	}
	.search-basic-wrap.opt-mypage {
		flex: none;
		padding: 0;
		position: absolute;
		left: 20px;
		top: 20px;
		width: calc(100% - 40px);
	}
	.mypage-wrap .tab-default .btn-default {
		display: none;
	}
}
@media all and (max-width: 767px) {
	.mypage-contents {
		padding: 70px 0 30px;
	}
	.mypage-container {
		padding: 0 10px;
	}
	.mypage-wrap .tab-default-item .pro {
		right: 0;
		top: 4px;
	}
	.search-basic-wrap.opt-mypage {
		left: 10px;
		top: 15px;
		width: calc(100% - 20px);
	}
	.mypage-header-item .name-box .name {
		font-size: var(--font-size-20);
	}
	.mypage-header-item .desc-box {
		display: block;
		align-items: normal;
		margin-top: 5px;
		font-size: var(--font-size-14);
	}
	.mypage-header-item .btn-box {
		margin: 5px 0 0;
	}
}
/* ## 마이페이지 공통 e ## */




/* ## 마이페이지 - 등록컨텐츠 s ## */
.mypage-content-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 -2px;
	white-space: nowrap;
	overflow-x: auto;
}
.mypage-content-filter .btn {
	margin: 0 2px;
	border: 1px solid #DFDFDF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	transition: all 0.2s ease-in-out;
	color: #DFDFDF;
}
.mypage-content-filter .btn:hover {
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.mypage-content-filter .filter-box .btn {
	padding: 0 12px;
	border-radius: 20px;
	color: #BBBBBB;
}
.mypage-content-filter .filter-box .btn.active {
	background: #000;
	color: #fff;
	border-color: #000;
}
.mypage-content-filter .type-box .btn {
	width: 32px;
	border-radius: 5px;
}
.mypage-content-filter .type-box .btn.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.mypage-content-num {
	padding: 20px 0;
	color: #999999;
}
.mypage-content-num .opt-strong {
	color: #000;
	font-size: var(--font-size-20);
	margin-right: 5px;
}
.mypage-content-list {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -30px;
}
.mypage-content-item {
	flex: 0 0 50%;
	display: flex;
	padding: 20px 30px;
	color: #BBBBBB;
}
.mypage-content-lnk {
	display: block;
	width: 100%;
}
.mypage-content-item .img-box {
	flex: 0 0 192px;
	height: 262px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.mypage-content-item .img-box img {
	max-width: 100%;
	max-height: 100%;
	transition: all 0.2s ease-in-out;
}
.mypage-content-item:hover .img-box img {
	transform: rotate(2deg) scale(1.1);
}
.mypage-content-item .img-box .pin-badge {
	position: absolute;
	right: 20px;
	top: 10px;
	color: var(--primary-color);
	transform: rotate(45deg);
	z-index: 2;
}
.mypage-content-item .editing-badge {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	z-index: 10;
}
.mypage-content-item .editing-badge .ico-custom {
	font-size: 3em;
	margin-bottom: 10px;
}
.mypage-content-desc {
	padding-left: 30px;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: space-between;
}
.mypage-content-desc .type {
	color: var(--primary-color);
}
.mypage-content-desc .title {
	font-size: var(--font-size-24);
	font-weight: 600;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-wrap: break-word;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	margin: 5px 0;
	color: #000;
}
.mypage-content-desc .tag-box {
	padding-top: 10px;
	margin: 8px -2px 0;
	border-top: 1px solid #DCDCDC;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-wrap: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.mypage-content-desc .tag-box .tag {
	display: inline-block;
	vertical-align: middle;
	margin: 2px;
}
.mypage-content-desc .etc-box {
	margin-top: 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.mypage-content-desc .etc-item {
	margin-right: 15px;
}
.mypage-content-desc .etc-item:last-child {
	margin-right: 0;
}
.mypage-content-desc .btn-box {
	display: flex;
	align-items: center;
	margin: 0 -3px;
	position: relative;
}
.mypage-content-desc .btn-box .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 35px;
	height: 35px;
	border: 1px solid #DFDFDF;
	border-radius: 3px;
	margin: 0 3px;
	color: #DFDFDF;
	transition: all 0.1s ease-in-out;
	position: relative;
}
.mypage-content-desc .btn-box .btn:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.mypage-content-desc .btn.opt-pin.active {
	color: var(--primary-color);
}
.mypage-content-desc .btn.opt-pin.active:hover {
	color: #fff;
}
.mypage-content-desc .btn.opt-pin .ico-custom {
	transform: rotate(45deg);
}
.mypage-content-desc .btn-box .btn .text {
	position: absolute;
	right: -15px;
	top: -8px;
	font-size: 0.7em;
	border:1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	border-radius: 25px;
	padding: 0 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.1s ease-in-out;
}
.mypage-content-desc .btn-box .btn:hover .text {
	background:#fff;
	color: var(--primary-color);
}
.mypage-ebook-add {
	width: 60px;
	height: 60px;
	display: block;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
	background: var(--primary-color) url("../img/contents/ico-ebook-white.svg") no-repeat center 45%;
}
.mypage-ebook-add:hover {
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.editor-share-popup.mypage-share-popup {
	left: 5px;
}
.editor-share-popup.mypage-share-popup.active {
	top: 48px;
}
.opt-type-gallery.mypage-content-list {
	margin: -20px;
}
.opt-type-gallery .mypage-content-item {
	flex: 0 0 20%;
	flex-wrap: wrap;
	padding: 20px;
}
.opt-type-gallery .mypage-content-item .img-box {
	flex: 0 0 100%;
	height: 248px;
	padding: 30px 20px 0;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.opt-type-gallery .mypage-content-desc {
	flex: 0 0 100%;
	padding-left: 0;
}
.opt-type-gallery .mypage-content-item .img-box .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #ebebeb;
	background-size: cover;
	background-position: left top;
	background-repeat: no-repeat;
	text-align: center;
	filter: blur(25px);
	z-index: -1;
	transition: all 0.3s ease-in-out;
}
.opt-type-gallery .mypage-content-item:hover .img-box .img {
	transform: scale(1.2);
}
.opt-type-gallery .mypage-content-item:hover .img-box img {
	transform: translateY(5px) rotate(2deg);
}
.opt-type-gallery .mypage-content-desc .tag-box,
.opt-type-gallery .mypage-content-desc .etc-box,
.opt-type-gallery .mypage-content-desc .btn-box,
.opt-type-gallery .mypage-content-item .img-box .pin-badge {
	display: none;
}
.opt-type-gallery .mypage-content-desc .title {
	font-size: var(--font-size-20);
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.opt-type-gallery .mypage-content-desc .desc-box {
	margin-top: 10px;
	padding-top: 30px;
	position: relative;
	display: flex;
	align-items: center;
}
.opt-type-gallery .mypage-content-desc .type {
	color: #bbbbbb;
	position: relative;
	padding-right: 9px;
	margin-right: 8px;
}
.opt-type-gallery .mypage-content-desc .type::before {
	display: block;
	content: "";
	width: 1px;
	height: 11px;
	background: #DCDCDC;
	position: absolute;
	right: 0;
	top: 7px;
}
@media all and (max-width: 1023px) {
	.mypage-content-list {
		margin: -15px;
	}
	.mypage-content-item {
		padding: 15px;
		flex: 0 0 100%;
	}
	.mypage-content-desc .title {
		font-size: var(--font-size-20);
	}
	.mypage-content-item .img-box .pin-badge {
		right: 15px;
		top: 5px;
	}
	.opt-type-gallery .mypage-content-item {
		flex: 0 0 33.33333%;
	}
}
@media all and (max-width: 767px) {
	.mypage-content-filter .btn {
		height: 28px;
		font-size: var(--font-size-14);
	}
	.mypage-content-filter .type-box .btn {
		width: 28px;
	}
	.mypage-content-num {
		padding: 15px 0;
		font-size: var(--font-size-14);
	}
	.mypage-content-list {
		margin: -10px;
	}
	.mypage-content-item {
		padding: 10px;
	}
	.mypage-content-item .img-box {
		flex: 0 0 40%;
		max-height: 300px;
		height: auto;
	}
	.mypage-content-desc {
		padding-left: 12px;
	}
	.mypage-content-desc .type,
	.mypage-content-desc .writer,
	.mypage-content-desc .tag,
	.mypage-content-desc .btn-box .btn {
		font-size: var(--font-size-13);
	}
	.mypage-content-desc .title {
		font-size: var(--font-size-18);
		margin: 2px 0;
	}
	.mypage-content-desc .tag-box {
		margin-top: 5px;
		padding-top: 3px;
		-webkit-line-clamp: 1;
	}
	.mypage-content-desc .etc-box {
		margin-top: 2px;
		font-size: 0.75em;
	}
	.mypage-content-desc .etc-item {
		margin-right: 10px;
	}
	.mypage-content-desc .btn-box {
		padding-top: 10px;
		margin: 0 -2px;
	}
	.mypage-content-desc .btn-box .btn {
		flex: 0 0 27px;
		height: 27px;
		margin: 0 1px;
	}
	.mypage-ebook-add {
		width: 50px;
		height: 50px;
		background-size: 25px;
	}
	.opt-type-gallery.mypage-content-list {
		margin: -10px 0;
	}
	.opt-type-gallery .mypage-content-item {
		flex: 0 0 100%;
		padding: 10px 0;
	}
	.opt-type-gallery .mypage-content-item .img-box {
		height: 300px;
		max-height: none;
	}
	.opt-type-gallery .mypage-content-desc .title {
		font-size: var(--font-size-18);
	}
	.opt-type-gallery .mypage-content-desc .desc-box {
		margin-top: 6px;
		padding-top: 26px;
	}
	.editor-share-popup.mypage-share-popup {
		left: auto;
		right: 0;
	}
}
/* ## 마이페이지 - 등록컨텐츠 e ## */





/* ## 마이페이지 s ## */
.mypage-info-wrap {
	max-width: 650px;
	margin: 60px auto 0;
	width: 100%;
	border: 1px solid #DFDFDF;
	border-radius: 10px;
	padding: 50px;
}
.mypage-info-service {
	background: #FFFAE3;
	border-radius: 10px;
	padding: 30px 60px;
	margin-bottom: 30px;
}
.mypage-info-service.opt-pro {
	background: #F0F7FF;
}
.mypage-info-service.opt-free {
	background: #F5F5F5;
}
.mypage-info-service .title {
	font-size: var(--font-size-20);
	line-height: 1.3;
}
.mypage-info-service .title .opt-service,
.mypage-info-service .desc .opt-date {
	color: var(--primary-color);
}
.mypage-info-service .desc {
	margin-top: 10px;
	color: #555555;
}
.mypage-info-service .date {
	margin-top: 10px;
	background: #fff;
	padding: 8px 20px;
	font-size: var(--font-size-14);
	color: #555555;
}
.mypage-info-service .btn {
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border: 1px solid #ACACAC;
	color: #ACACAC;
	border-radius: 25px;
	font-size: var(--font-size-14);
	margin-top: 15px;
	transition: all 0.3s ease-in-out;
}
.mypage-info-service .btn:hover {
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.mypage-info-service .ico-custom {
	margin-left: 5px;
	font-size: var(--font-size-13);
}
.mypage-info-service .btn-box {
	margin-top: 20px;
}
.mypage-info-service .date .opt-strong,
.mypage-info-service .progress-box .opt-strong {
	color: var(--primary-color);
}
.mypage-info-service .progress-box {
	font-size: var(--font-size-14);
	color: #555;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}
.mypage-info-service .progress-name {
	flex: 1 1 auto;
}
.mypage-info-service .progress-bar {
	flex: 0 0 220px;
	background: #fff;
	border-radius: 5px;
	height: 4px;
	margin-top: 2px;
}
.mypage-info-service .progress-range {
	background: var(--primary-color);
	height: 100%;
	border-radius: 5px;
}
.mypage-form-row {
	margin-top: 20px;
	position: relative;
}
.mypage-form-row .title {
	display: inline-block;
	margin-bottom: 8px;
}
.mypage-form-row .title .required {
	color: #FF6363;
}
.mypage-form-row .title-desc {
	margin-top: -6px;
	font-size: var(--font-size-14);
	margin-bottom: 8px;
	color: #ACACAC;
}
.mypage-info-sns-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 100%;
	margin: 0 -2%;
}
.mypage-info-sns {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #999999;
	height: 48px;
	flex: 0 0 48%;
	box-shadow: 0 0 6px #00000029;
	margin: 0 2%;
	border-radius: 5px;
	border: 1px solid transparent;
	transition: all 0.2s ease-in-out;
	text-align: center;
}
.mypage-info-sns:hover {
	border-color: #d5d5d5;
}
.mypage-info-sns.active {
	background: #eee;
	box-shadow: none;
}
.mypage-info-sns .desc {
	margin-left: 10px;
}
.mypage-info-sns .desc.opt-id {
	background: #F2F2F2;
	border-radius: 3px;
	padding: 8px 15px;
}
.mypage-form-row .input-box {
	display: flex;
	align-items: center;
}
.mypage-form-row .input-box .input {
	flex: 1 1 auto;
	border: 1px solid #c9c9c9;
	border-radius: 3px;
	width: 100%;
}
.mypage-form-row .input-box .input[readonly] {
	border: none;
	border-bottom: 1px solid #c9c9c9;
	color: #999999;
	border-radius: 0;
	padding: 0;
	margin-top: -10px;
}
.mypage-form-row .alert {
	color: #FFA2A2;
	font-size: var(--font-size-14);
	margin-top: 3px;
}
.mypage-form-row .alert.opt-gray {
	color: #BBBBBB;
}
.mypage-form-row .input-box .btn {
	background: #999999;
	border-radius: 5px;
	flex: 0 0 125px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	margin-left: -5px;
	transition: all 0.3s ease-in-out;
}
.mypage-form-row .input-box .btn:hover {
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.mypage-form-row .input-box .btn.opt-dark {
	background: #555555;
}
.mypage-form-row .radio-box {
	margin-right: 20px;
}
.mypage-form-row .radio-text {
	color: #555555;
}
.mypage-form-row .btn-right {
	position: absolute;
	right: 0;
	top: 2px;
}
.mypage-form-row .btn-right .ico-custom {
	display: inline-block;
	vertical-align: middle;
	font-size: var(--font-size-14);
	transition: all 0.3s ease-in-out;
}
.mypage-form-row .opt-seo .ico-custom {
	margin: 2px 0 0 5px;
}
.mypage-form-row .opt-seo.active .ico-custom {
	transform: rotate(180deg);
}
.mypage-info-birth,
.mypage-info-row {
	display: flex;
	align-items: center;
	margin: 2px -10px;
	flex: 1 1 auto;
}
.mypage-info-birth .col-box {
	flex: 0 0 33.3333%;
	padding: 0 10px;
	position: relative;
}
.mypage-info-row .col-box {
	display: flex;
	flex: 1 1 auto;
	padding: 0 10px;
	position: relative;
}
.mypage-info-birth .col-box .input,
.mypage-info-row .col-box .input {
	flex: 1 1 auto;
	width: 100%;
}
.mypage-info-birth .col-box .input {
	padding-right: 30px;
}
.mypage-info-birth .col-box .text,
.mypage-info-row .col-box .text {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #555555;
}
.mypage-info-row.opt-auth .text {
	right: 150px;
	font-size: var(--font-size-14);
	color: #999;
}
.mypage-form-agree {
	padding-top: 30px;
	margin-top: 40px;
	border-top: 1px solid #DFDFDF;
}
.mypage-form-agree .check-input,
.mypage-form-agree .check-check {
	top: 4px;
}
.mypage-form-agree .check-text {
	color: #555555;
}
.mypage-form-agree .agree-list {
	color: #999999;
	margin-top: 10px;
	padding-left: 5px;
}
.mypage-form-agree .agree-list li {
	padding-left: 10px;
	position: relative;
	margin-top: 2px;
}
.mypage-form-agree .agree-list li::before {
	display: block;
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 100%;
	background: #999999;
	position: absolute;
	left: 0;
	top: 10px;
}
.mypage-info-wrap .pay-confirm-content {
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}
.mypage-info-wrap .pay-confirm-list .title {
	font-size: 0.95em;
	color: #606060;
}
.mypage-info-wrap.opt-pay-view .pay-confirm-list .opt-total {
	align-items: flex-start;
}
.mypage-info-wrap .pay-confirm-list .opt-total .desc {
	font-size: var(--font-size-20);
	text-align: right;
}
.mypage-info-wrap .pay-confirm-list .opt-total .opt-way {
	font-size: 0.75em;
}
.mypage-cancel-qa {
	background: #F5F5F5;
	border-radius: 5px;
	padding: 25px 30px;
	margin: 20px 0 30px;
}
.mypage-cancel-qa .title {
	line-height: 1.3;
	padding-left: 22px;
	position: relative;
	margin-bottom: 10px;
}
.mypage-cancel-qa .title::before {
	display: block;
	content: "Q.";
	position: absolute;
	left: 0;
	top: 0;
}
.mypage-cancel-qa .list-box li {
	margin-top: 10px;
}
.mypage-cancel-qa .check-input {
	background: #fff;
	top: 4px;
}
.mypage-cancel-qa .check-check {
	top: 4px;
}
.mypage-cancel-qa .check-text {
	color: #555555;
}
.mypage-info-wrap.opt-pay-list .title-sub {
	font-size: var(--font-size-20);
}
.mypage-info-wrap.opt-pay-list .title-sub .num {
	font-weight: 500;
	color: var(--primary-color);
	margin-left: 3px;
}
.mypage-pay-lnk {
	display: block;
	padding: 20px 30px;
	position: relative;
	border-radius: 10px;
	border: 1px solid #DFDFDF;
	transition: all 0.2s ease-in-out;
}
.mypage-pay-lnk::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 10px;
	position: absolute;
	left: -10px;
	top: 0;
	transition: all 0.2s ease-in-out;
	border: 1px solid transparent;
}
.mypage-pay-lnk:hover {
	border-color: transparent;
}
.mypage-pay-lnk:hover::before {
	left: 0;
	border-color: var(--primary-color);
}
.mypage-pay-lnk .state {
	border-top: 1px solid #DFDFDF;
	padding-top: 10px;
	margin-top: 10px;
	font-weight: 600;
	color: #606060;
}
.mypage-pay-lnk .state.opt-use {
	color: var(--primary-color);
}
.mypage-form-inner {
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	padding: 10px 30px 20px;
	margin-top: 10px;
}
.mypage-form-inner .mypage-form-row {
	display: flex;
	margin-top: 10px;
}
.mypage-form-inner .mypage-form-row .title {
	flex: 0 0 120px;
	color: #555555;
	font-size: 0.95em;
	margin: 0;
	padding-top: 8px;
}
.mypage-form-inner .mypage-form-row .input-box {
	flex: 1 1 auto;
	flex-wrap: wrap;
}
.mypage-form-inner .mypage-form-row .input-box .input[readonly] {
	margin-top: 0;
}
.mypage-form-inner.opt-sns .title {
	flex: 0 0 40px;
	font-size: var(--font-size-18);
}
.mypage-form-inner.opt-sns .title img {
	width: 18px;
	vertical-align: middle;
	margin-top: -2px;

}

.mypage-form-inner.opt-category .mypage-form-row {
    display: flex;
    margin-top: 10px;
    gap: 5px;
    align-items: center;
}
.mypage-form-inner.opt-category .mypage-form-row.row-header {
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    color: #666;
}
.mypage-form-inner.opt-category .mypage-form-row .num {
    flex: 0 0 50px;
}

.mypage-img-admin {
	background: #f3f3f3;
	margin: 30px -50px 0;
	padding: 30px 50px 10px;
}
.mypage-img-admin .mypage-form-row {
	margin-top: 0;
}
.mypage-img-row {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.mypage-img-row .img-box {
	border: 1px solid #E5E5E5;
	background: #fff;
	flex: 0 0 180px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}
.mypage-img-row .img-box:hover {
	border-color: #FFD600;
}
.mypage-img-row .desc-box {
	padding-left: 20px;
	line-height: 1.3;
}
.mypage-img-row .img-title {
	color: #555555;
}
.mypage-img-row .img-title-box {
	display: flex;
	align-items: center;
}
.mypage-img-row .tooltip-basic {
	vertical-align: top;
	margin-top: -3px;
	font-size: var(--font-size-13);
}
.mypage-img-row .tooltip-basic .tooltip-basic-btn .ico-custom {
	font-size: 0.85em;
	margin-left: -1px;
}
.mypage-img-row .img-desc {
	color: #777777;
	margin: 5px 0;
}
.mypage-img-row .img-alert {
	color: #FF7B7B;
	font-size: var(--font-size-14);
	margin-bottom: 10px;
}
.mypage-img-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex: 0 0 120px;
	height: 120px;
	border-radius: 30px;
	position: relative;
}
.mypage-img-item.opt-upload {
	border: 1px dashed #898C93;
	font-weight: 600;
}
.mypage-img-item.opt-preview {
	border: 1px solid #DDDDDD;
	padding: 15px;
}
.mypage-img-item.opt-preview img {
	max-width: 100%;
	max-height: 100%;
}
.mypage-img-item.opt-upload .ico-custom {
	font-size: var(--font-size-30);
	transition: all 0.2s ease-in-out;
}
.mypage-img-item.opt-upload:hover .ico-custom {
	transform: rotate(-10deg);
}
.mypage-img-item.opt-upload::before {
	content: "\2b";
	font-weight: 400;
	font-family: "Font Awesome 6 Pro";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 100%;
	position: absolute;
	right: -8px;
	top: -8px;
}
.mypage-img-item .close {
	width: 32px;
	height: 32px;
	position: absolute;
	right: -8px;
	top: -8px;
	border-radius: 100%;
	background: #aaa;
	color: #fff;
}
.channel-img-popup .modal-popup-box {
	max-width: 680px;
}
.channel-img-popup .title-sub-sm {
	margin: 30px 0 10px;
}
.channel-img-popup .img-box {
	border: 1px solid #DFDFDF;
	margin-top: 20px;
}
.channel-img-popup .img-box img {
	width: 100%;
}
.channel-img-desc {
	color: #777;
}
.channel-img-desc .opt-color-warning {
	margin-top: 2px;
	font-size: var(--font-size-14);
}
@media all and (max-width: 1023px) {
	.mypage-info-wrap {
		padding: 40px 50px;
	}
	.mypage-info-service .title {
		font-size: 1.4em;
	}
	.mypage-info-wrap.opt-pay-list .title-sub {
		font-size: var(--font-size-18);
	}
}
@media all and (max-width: 767px) {
	.mypage-info-wrap {
		padding: 0;
		border: none;
		max-width: none;
		margin: 30px 0 0;
	}
	.mypage-info-service {
		padding: 20px 15px;
		margin-bottom: 20px;
	}
	.mypage-info-service .title {
		font-size: var(--font-size-18);
	}
	.mypage-info-service .desc {
		font-size: 0.95em;
	}
	.mypage-info-service .date {
		padding: 8px 15px;
	}
	.mypage-form-row {
		margin-top: 15px;
	}
	.mypage-form-row .title {
		font-size: 0.95em;
	}
	.mypage-form-row .input-box .input {
		font-size: var(--font-size-14);
	}
	.mypage-form-row .input-box .btn {
		flex: 0 0 80px;
		font-size: var(--font-size-14);
	}
	.mypage-form-row .alert {
		font-size: var(--font-size-13);
	}
	.mypage-info-sns-box {
		margin: 0 -1%;
	}
	.mypage-info-sns {
		font-size: var(--font-size-14);
		flex: 0 0 49%;
		margin: 0 1%;
	}
	.mypage-info-sns img {
		max-width: 28px;
	}
	.mypage-info-sns .desc.opt-id {
		padding: 6px 10px;
	}
	.mypage-form-row .radio-text,
	.mypage-form-agree .check-text,
	.mypage-info-birth .col-box .text,
	.mypage-info-row .col-box .text {
		font-size: 0.95em;
	}
	.mypage-info-birth,
	.mypage-info-row {
		margin: 2px -5px;
	}
	.mypage-info-birth .col-box,
	.mypage-info-row .col-box {
		padding: 0 5px;
	}
	.mypage-form-agree {
		padding-top: 20px;
		margin-top: 25px;
	}
	.mypage-form-agree .check-input,
	.mypage-form-agree .check-check {
		top: 3px;
	}
	.mypage-form-agree .agree-list {
		margin-top: 5px;
		font-size: var(--font-size-14);
	}
	.mypage-form-agree .agree-list li::before {
		top: 8px;
	}
	.mypage-cancel-qa {
		padding: 20px;
		margin: 20px 0;
	}
	.mypage-cancel-qa .list-box li {
		margin-top: 8px;
	}
	.mypage-cancel-qa .title,
	.mypage-cancel-qa .check-text,
	.mypage-cancel-alert {
		font-size: var(--font-size-14);
	}
	.mypage-cancel-qa .title {
		margin-bottom: 15px;
	}
	.mypage-cancel-qa .check-input,
	.mypage-cancel-qa .check-check {
		top: 2px;
	}
	.mypage-pay-item {
		margin-top: 10px;
	}
	.mypage-pay-lnk {
		padding: 15px;
	}
	.mypage-pay-lnk .state {
		font-size: var(--font-size-14);
		padding-top: 8px;
		margin-top: 4px;
	}
	.mypage-info-row.opt-auth .text {
		right: 95px;
		font-size: var(--font-size-13);
	}
	.mypage-form-inner {
		padding: 5px 15px 15px;
	}
	.mypage-form-inner .mypage-form-row {
		display: block;
	}
	.mypage-form-inner .mypage-form-row .title {
		font-size: var(--font-size-14);
		padding: 0;
		margin-bottom: 3px;
	}
	.mypage-form-inner .mypage-form-row {
		margin-top: 10px;
	}
	.mypage-form-inner.opt-sns .mypage-form-row {
		display: flex;
		align-items: center;
	}
	.mypage-form-inner.opt-sns .title {
		margin: 0;
		font-size: 1em;
		flex: 0 0 35px;
	}
	.mypage-img-admin {
		padding: 20px 50px;
	}
	.mypage-img-row {
		display: block;
		margin-bottom: 30px;
	}
	.mypage-img-row:last-child {
		margin-bottom: 0;
	}
	.mypage-img-row .img-box {
		flex: none;
	}
	.mypage-img-row .desc-box {
		padding: 8px 0 0;
	}
	.mypage-img-row .img-title {
		font-weight: 600;
	}
	.mypage-img-row .img-title,
	.mypage-img-row .img-desc {
		font-size: var(--font-size-14);
	}
	.mypage-img-row .tooltip-basic {
		margin-left: 4px;
		margin-right: 4px;
	}
	.mypage-img-row .tooltip-basic-text {
		left: -54px;
		transform: translate(0);
	}
	.mypage-img-row .tooltip-basic-text::before {
		left: 57px;
		transform: translate(0);
	}
	.mypage-info-service .progress-box {
		font-size: var(--font-size-13);
		justify-content: center;
	}
	.mypage-info-service .progress-name {
		flex: none;
		padding-right: 10px;
	}
	.mypage-info-service .progress-bar {
		flex: 1 1 auto;
	}
	.mypage-info-service .btn-box {
		margin-top: 10px;
	}
	.channel-img-popup .title-sub-sm {
		margin: 20px 0 5px;
	}
	.channel-img-desc {
		font-size: var(--font-size-14);
	}
}
@media all and (max-width: 500px) {
	.mypage-info-sns-box {
		margin: 0;
		flex-wrap: wrap;
	}
	.mypage-info-sns {
		flex: 0 0 100%;
		margin: 5px 0;
	}
}
/* ## 마이페이지 e ## */




/* ## 썸네일 공통 s ## */
.image-thumbnail {
	width: 100%;
	padding-top: 135%;
	position: relative;
	overflow: hidden;
}
.image-thumbnail .thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.image-thumbnail .thumbnail img {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.image-thumbnail .thumbnail::after {
	content: '';
	width: 130px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../img/main/no-image.png") no-repeat center;
}
@media screen and (max-width: 767px) {
	.image-thumbnail .thumbnail::after {
		width: 100%;
		background-size: 60%;
	}
}
/* ## 썸네일 공통 e ## */




/* ## 서재 - 인트로 s ## */
.library-wrap {
	max-width: 1500px;
	margin: 0 auto;
	padding: 50px 10px;
}
@media all and (max-width: 1023px) {
	.library-wrap {
		padding: 50px 15px;
	}
}
.library-wrap .swiper-control button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}
.library-wrap .swiper-control button::after {
	font-size: 3em;
	color: #dcdcdc;
	transition: all 0.1s ease-in-out;
}
.library-wrap .swiper-control button:hover::after {
	color: var(--primary-color);
}
.library-wrap .swiper-control .swiper-btn-prev {
	left: -40px;
}
.library-wrap .swiper-control .swiper-btn-next {
	right: -40px;
}
@media all and (max-width: 1499px) {
	.library-wrap .swiper-control {
		display: none;
	}
}
.library-header {
	background: url("../img/contents/library-bg.png") no-repeat 95% top;
	padding: 50px 50% 70px 0;
	position: relative;
}
.library-title {
	margin-bottom: 65px;
}
.library-title .title {
	font-size: 2.2em;
	font-weight: 700;
}
.library-title .desc {
	font-size: var(--font-size-18);
	margin-top: 15px;
}
.search-basic-wrap.opt-library .search-box {
	max-width: 700px;
}
.search-basic-wrap.opt-library .select {
	background: #f3f3f3;
}
.search-basic-wrap.opt-library .input {
	background: #f3f3f3;
}
.search-basic-wrap.opt-library .input:-webkit-autofill {
	box-shadow: 0 0 0 1000px #f3f3f3 inset !important;
	-webkit-box-shadow: 0 0 0 1000px #f3f3f3 inset !important;
}
.search-wrap .keyword {
	margin-top: 12px;
	padding: 0 5px;
	font-size: 0.95em;
	color: #3d3d3d;
}
.search-wrap .keyword a {
	display: inline-block;
	margin: 0 5px;
	color: #3d3d3d;
	transition: all 0.1s ease-in-out;
}
.search-wrap .keyword a:hover {
	color: var(--primary-color);
}
.search-wrap .keyword a:not(:last-child)::after {
	content: ',';
	display: inline-block;
}
@media all and (max-width: 1023px) {
	.library-wrap {
		padding: 50px 15px;
	}
	.library-header {
		background-position: right center;
		background-size: contain;
		padding: 0 45% 0 0;
	}
	.library-title .title {
		font-size: var(--font-size-30);
	}
	.library-title .desc {
		font-size: 1em;
	}
}
@media all and (max-width: 767px) {
	.library-header {
		background: none;
		padding: 0;
	}
	.library-title {
		margin-bottom: 35px;
	}
	.library-title .title {
		font-size: var(--font-size-24);
	}
	.search-wrap .keyword {
		margin-top: 8px;
		font-size: var(--font-size-14);
	}
	.search-wrap .keyword a {
		margin: 0 3px;
	}
}
.library-category {
	margin: 85px 0;
	text-align: center;
}
.library-category .content {
	position: relative;
}
.library-category .swiper-slide {
	padding: 10px;
}
.library-category .swiper-slide a {
	transition: all 0.2s ease-in-out;
	display: block;
}
.library-category .swiper-slide a .image {
	display: flex;
	flex-wrap: wrap;
	gap: 13px 20px;
	padding: 35px;
	background: #fafafa;
	border: 1px solid #fafafa;
	border-radius: 10px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	transition: all 0.1s ease-in-out;
}
.library-category .swiper-slide a .image > li {
	width: calc((100% - 20px) / 2);
	border: 1px solid #ededed;
}
.library-category .swiper-slide a .image > li .image-thumbnail .thumbnail::after {
	background-size: 60%;
}
.library-category .swiper-slide a .text {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 10px 0;
}
.library-category .swiper-slide a .text .category {
	display: block;
	font-size: var(--font-size-18);
	font-weight: 700;
	transition: all 0.1s ease-in-out;
}
.library-category .swiper-slide a .text .number {
	display: block;
	color: #aaaaaa;
}
.library-category .swiper-slide a:hover {
	transform: scale(1.03);
}
.library-category .swiper-slide a:hover .image {
	border-color: var(--primary-color);
}
.library-category .swiper-slide a:hover .text {
	color: var(--primary-color);
}
.library-category .btn-default {
	margin-top: 50px;
}
@media all and (max-width: 767px) {
	.library-category {
		margin: 55px 0 30px;
	}
	.library-category .swiper-slide a .text {
		flex-direction: column;
		align-items: flex-start;
		gap: 3px;
	}
	.library-category .swiper-slide a .text .category {
		font-size: 1em;
	}
	.library-category .swiper-slide a .text .number {
		font-size: var(--font-size-14);
	}
	.library-category .btn-default {
		margin-top: 30px;
	}
}
@media all and (max-width: 499px) {
	.library-category .swiper-slide {
		padding: 5px;
	}
	.library-category .swiper-slide a .image {
		gap: 8px 8px;
		padding: 20px;
	}
	.library-category .swiper-slide a .image > li {
		width: calc((100% - 8px) / 2);
	}
}
.library-top10 {
	margin: 85px 0;
}
.library-top10 .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 45px;
}
.library-top10 .title h2 {
	font-size: 2em;
	font-weight: 500;
}
.library-top10 .title a i {
	transition: all 0.1s ease-in-out;
}
.library-top10 .title a:hover i {
	transform: translateX(5px);
}
.library-top10 .content {
	position: relative;
}
.library-top10 .swiper-slide {
	display: flex;
	justify-content: flex-end;
	padding: 0 15px;
}
.library-top10 .swiper-slide a {
	position: relative;
	display: block;
	width: calc(100% - 90px);
	height: 100%;
}
.library-top10 .swiper-slide a .number {
	position: absolute;
	bottom: 0;
	left: -90px;
	z-index: 12;
	display: block;
	font-size: 8em;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.1em;
	color: #eeeeee;
	transition: all 0.2s ease-in-out;
}
.library-top10 .swiper-slide a .image {
	position: relative;
}
.library-top10 .swiper-slide a .image::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #E3E3E3;
	transform: rotate(5deg);
	transition: all 0.2s ease-in-out;
}
.library-top10 .swiper-slide a .image-thumbnail {
	background: #f5f5f5;
}
.library-top10 .swiper-slide a .text {
	position: absolute;
	bottom: -20px;
	left: 0;
	z-index: 9;
	width: 100%;
	padding: 50% 15px 15px;
	background: linear-gradient(transparent, rgba(0, 0, 0, .5));
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.library-top10 .swiper-slide a .text .subject {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #fff;
}
.library-top10 .swiper-slide a:hover .number {
	color: #ccc;
}
.library-top10 .swiper-slide a:hover .text {
	bottom: 0;
	opacity: 1;
}
.library-top10 .swiper-slide a:hover .image::before {
	transform: rotate(0);
}
@media all and (max-width: 767px) {
	.library-top10 {
		margin: 85px 0 40px;
	}
	.library-top10 .title h2 {
		font-size: var(--font-size-24);
	}
	.library-top10 .title a {
		font-size: var(--font-size-14);
	}
	.library-top10 .swiper-slide a .text {
		bottom: 0;
		opacity: 1;
	}
}
@media all and (max-width: 479px) {
	.library-top10 .swiper-slide {
		padding: 0;
	}
	.library-top10 .swiper-slide a {
		width: calc(100% - 60px);
	}
	.library-top10 .swiper-slide a .number {
		left: -60px;
		font-size: 6em;
	}
}
.library-recommend {
	padding: 50px 0;
}
.library-recommend .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 45px;
}
.library-recommend .title h2 {
	font-size: 2em;
	font-weight: 500;
}
.library-recommend .title a i {
	transition: all 0.1s ease-in-out;
}
.library-recommend .title a:hover i {
	transform: translateX(5px);
}
.library-recommend .recommend-list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 20px;
}
.library-recommend .recommend-list li {
	width: calc((100% - 80px) / 5);
}
.library-recommend .recommend-list li a {
	display: block;
}
.library-recommend .recommend-list li a .img-box {
	flex: 0 0 100%;
	height: 248px;
	padding: 30px 20px 0;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.library-recommend .recommend-list li a .img-box .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: left top;
	background-repeat: no-repeat;
	text-align: center;
	filter: blur(25px);
	z-index: -1;
	transition: all 0.3s ease-in-out;
}
.library-recommend .recommend-list li a .img-box img {
	max-width: 100%;
	max-height: 100%;
	transition: all 0.2s ease-in-out;
}
.library-recommend .recommend-list li a:hover .img-box .img {
	transform: scale(1.2);
}
.library-recommend .recommend-list li a:hover .img-box img {
	transform: translateY(5px) rotate(2deg);
}
.library-recommend .recommend-list li a .text {
	margin-top: 20px;
	flex: 0 0 100%;
}
.library-recommend .recommend-list li a .text .subject {
	display: block;
	font-size: var(--font-size-18);
	font-weight: 700;
	letter-spacing: -0.05em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.library-recommend .recommend-list li a .text .author-wrap {
	margin-top: 5px;
	display: flex;
}
.library-recommend .recommend-list li a .text .author-wrap .category {
	display: block;
	white-space: nowrap;
}
.library-recommend .recommend-list li a .text .author-wrap .author {
	display: block;
	position: relative;
	padding-left: 10px;
	margin-left: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.library-recommend .recommend-list li a .text .author-wrap .author::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 1px;
	height: 14px;
	background-color: #555;
}
@media all and (max-width: 1023px) {
	.library-recommend .recommend-list li {
		width: calc((100% - 60px) / 3);
	}
}
@media all and (max-width: 767px) {
	.library-recommend {
		padding: 50px 0 25px;
	}
	.library-recommend .title h2 {
		font-size: var(--font-size-24);
	}
	.library-recommend .title a {
		font-size: var(--font-size-14);
	}
	.library-recommend .content {
		overflow-x: auto;
	}
	.library-recommend .recommend-list {
		flex-wrap: nowrap;
		gap: 0 20px;
		padding-bottom: 20px;
	}
	.library-recommend .recommend-list li {
		width: 100%;
		min-width: 248px;
	}
	.library-recommend .recommend-list li a .text .author-wrap .category {
		font-size: var(--font-size-13);
		letter-spacing: -0.05em;
	}
	.library-recommend .recommend-list li a .text .author-wrap .author {
		font-size: var(--font-size-13);
		letter-spacing: -0.05em;
		padding-left: 5px;
		margin-left: 5px;
	}
	.library-recommend .recommend-list li a .text .author-wrap .author::before {
		height: 10px;
	}
}
.library-new {
	padding: 50px 0;
}
.library-new .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 45px;
}
.library-new .title h2 {
	font-size: 2em;
	font-weight: 500;
}
.library-new .title a i {
	transition: all 0.1s ease-in-out;
}
.library-new .title a:hover i {
	transform: translateX(5px);
}
.library-new .content {
}
.library-new .new-list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 30px;
}
.library-new .new-list li {
	width: calc((100% - 150px) / 6);
}
.library-new .new-list li a {
	position: relative;
}
.library-new .new-list li a .image {
	position: relative;
	transition: all 0.2s ease-in-out;
}
.library-new .new-list li a .image::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: #b2b2b2;
	position: absolute;
	right: -4px;
	bottom: -4px;
	z-index: -1;
	filter: blur(0.5px);
	transition: all 0.3s ease-in-out;
}
.library-new .new-list li a .image-thumbnail {
	background: #f5f5f5;
}
.library-new .new-list li a .text {
	margin-top: 20px;
}
.library-new .new-list li a .text .subject {
	display: block;
	font-weight: 500;
	letter-spacing: -0.05em;
	transition: all 0.1s ease-in-out;
}
.library-new .new-list li a:hover .image {
	transform: translateY(-5px);
}
.library-new .new-list li a:hover .image::before {
	transform: rotate(3deg);
	background: #dadada;
}
@media all and (max-width: 1023px) {
	.library-new .new-list li {
		width: calc((100% - 60px) / 3);
	}
}
@media all and (max-width: 767px) {
	.library-new .title h2 {
		font-size: var(--font-size-24);
	}
	.library-new .title a {
		font-size: var(--font-size-14);
	}
	.library-new .new-list {
		gap: 30px 15px;
	}
	.library-new .new-list li {
		width: calc((100% - 30px) / 3);
	}
	.library-new .new-list li a .image::before {
		transform: translate(3px, 3px);
	}
	.library-new .new-list li a .text {
		margin-top: 10px;
	}
	.library-new .new-list li a .text .subject {
		font-size: var(--font-size-13);
		letter-spacing: -0.05em;
	}
}
.library-channel {
	padding: 50px 0;
}
.library-channel .title {
	margin-bottom: 45px;
}
.library-channel .title h2 {
	font-size: 2em;
	font-weight: 500;
}
.library-channel .content {
	position: relative;
}
.library-channel .channel {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.library-channel .channel .image {
	width: 125px;
	height: 125px;
	border-radius: 50%;
	border: 1px solid #ededed;
	overflow: hidden;
}
.library-channel .channel .image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.library-channel .channel .text {
	width: 100%;
	margin-top: 15px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.library-channel .swiper-control button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}
.library-channel .swiper-control button::after {
	font-size: 3em;
	color: #dcdcdc;
	transition: all 0.1s ease-in-out;
}
.library-channel .swiper-control button:hover::after {
	color: var(--primary-color);
}
.library-channel .swiper-control .swiper-btn-prev {
	left: -40px;
}
.library-channel .swiper-control .swiper-btn-next {
	right: -40px;
}
.library-channel .swiper-control .swiper-button-disabled {
	opacity: 0.5;
}
.library-channel .swiper-control .swiper-button-disabled:hover::after {
	color: #dcdcdc;
}
@media screen and (max-width: 1399px) {
	.library-channel .channel .image {
		width: 100px;
		height: 100px;
	}
}
@media screen and (max-width: 767px) {
	.library-channel {
		padding: 25px 0;
	}
	.library-channel .title h2 {
		font-size: var(--font-size-24);
	}
	.library-channel .channel .image {
		width: 65px;
		height: 65px;
	}
	.library-channel .channel .text {
		font-size: 0.75em;
	}
}
/* ## 서재 - 인트로 e ## */




/* ## 서재 - 목록 s ## */
.libraryList-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.library-filter {
	position: sticky;
	top: 0;
	width: 290px;
	border-right: 1px solid #ddd;
	padding: 30px 30px;
	background: #fff;
	height: 100vh;
	overflow-y: auto;
}
.library-filter::-webkit-scrollbar {
	width: 5px;
}
.library-filter::-webkit-scrollbar-thumb {
	background: #B8BBC3;
	border-radius: 5px;
}
.library-filter::-webkit-scrollbar-track {
	background: #DFDFDF;
	border-radius: 5px;
}
.library-filter.active {
	bottom: 0;
	opacity: 1;
}
.library-filter .filter-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #7d7d7d;
	padding-bottom: 10px;
}
.library-filter .filter-title span {
	display: block;
	color: #555555;
}
.library-filter .filter-title .btn.refresh {
	display: block;
	font-size: var(--font-size-14);
	color: #7d7d7d;
}
.library-filter .filter-title .filter-close {
	display: none;
}
.library-filter .filter-box {
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
}
.library-filter .filter-box:last-child {
	border-bottom: 0;
}
.library-filter .filter-box .filter-name {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.library-filter .filter-box .filter-name span {
	display: block;
	font-weight: 600;
}
.library-filter .filter-box .filter-btn {
	position: absolute;
	top: 18px;
	right: 0;
	width: 25px;
	height: 25px;
	transition: all 0.3s ease-in-out;
}
.library-filter .filter-box .filter-btn::before {
	content: '\f068';
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
}
.library-filter .filter-box .filter-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 15px;
}
.library-filter .filter-box .filter-list a {
	display: flex;
	font-size: 0.93em;
	color: #3c3c3c;
}
.library-filter .filter-box .filter-list a::before {
	content: '\f058';
	font-family: "Font Awesome 6 Pro";
	font-size: 16px;
	font-weight: 400;
	margin-right: 10px;
	color: #dcdcdc;
}
.library-filter .filter-box .filter-list a .number {
	display: inline-block;
	margin-left: 5px;
	color: #adadad;
}
.library-filter .filter-box .filter-btn.active {
	transform: rotate(180deg);
}
.library-filter .filter-box .filter-btn.active::before {
	content: '\2b';
}
.library-filter .filter-box .filter-list a.active::before {
	color: var(--primary-color);
	font-weight: 900;
}
.library-filter .filter-box .filter-list-2depth {
	display: none;
	margin: 10px 0;
	padding: 10px 0 10px 10px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.library-filter .filter-box .filter-list-2depth li:not(:last-child) {
	margin-bottom: 4px;
}
.library-filter .filter-box .filter-list-2depth li a {
	font-size: var(--font-size-13);
}
.library-content {
	flex: 1 1 0;
	padding: 30px 50px 70px 40px;
}
.btn.opt-filter {
	display: none;
}
.search-wrap .recent-word {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 12px;
}
.search-wrap .recent-word li {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 3px 13px;
	border: 1px solid #dcdcdc;
	border-radius: 30px;
	color: #777777;
}
.search-wrap .recent-word li span {
	display: block;
	font-size: var(--font-size-14);
	white-space: nowrap;
}
.search-wrap .recent-word li button {
	display: block;
	font-size: var(--font-size-14);
}
.library-list {
	padding: 40px 0;
}
.library-list .list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 20px;
}
.library-list .list li {
	width: calc((100% - 100px) / 6);
}
.library-list .list li a {
	position: relative;
	display: block;
	border-radius: 5px;
	box-shadow: 0 0 9px rgba(0, 0, 0, .1);
	overflow: hidden;
}
.library-list .list li a .image {
	position: relative;
	transition: all 0.2s ease-in-out;
}
.library-list .list li a .image-thumbnail {
	background: #f5f5f5;
}
.library-list .list li a .image-hover {
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	opacity: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	transition: all 0.2s ease-in-out;
}
.library-list .list li a .image-hover::before {
	content: '\f518';
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3em;
	color: #fff;
}
.library-list .list li a .image-hover .view-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px;
}
.library-list .list li a .image-hover .view-info span {
	display: block;
	font-size: var(--font-size-14);
	color: #fff;
}
.library-list .list li a .image-hover .view-info .like::before {
	content: '\f164';
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	display: inline-block;
	margin-right: 5px;
}
.library-list .list li a .text {
	padding: 13px;
}
.library-list .list li a .text .subject {
	display: block;
	font-weight: 500;
	letter-spacing: -0.05em;
	min-height: 45px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.library-list .list li a .text .author-wrap {
	margin-top: 15px;
	display: flex;
	font-size: var(--font-size-14);
	color: #adadad;
}
.library-list .list li a .text .author-wrap .category {
	display: block;
	white-space: nowrap;
}
.library-list .list li a .text .author-wrap .author {
	display: block;
	position: relative;
	padding-left: 10px;
	margin-left: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.library-list .list li a .text .author-wrap .author::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 1px;
	height: 11px;
	background-color: #adadad;
}
.library-list .list li a:hover .image-hover {
	opacity: 1;
}
@media all and (max-width: 1315px) {
	.library-list .list li {
		width: calc((100% - 40px) / 3);
	}
}
@media all and (max-width: 1023px) {
	.library-filter {
		padding: 30px 20px;
	}
	.library-content {
		padding: 30px 20px 50px;
	}
	.library-list .list li {
		width: calc((100% - 20px) / 2);
	}
}
@media all and (max-width: 767px) {
	.library-filter {
		width: 100%;
		height: 70vh;
		position: fixed;
		top: auto;
		bottom: -100%;
		z-index: 150;
		opacity: 0;
		transition: all .3s ease-in-out;
		border-right: 0;
		padding: 0 20px 15px;
		border-radius: 20px 20px 0 0;
		box-shadow: 0 0 19px rgba(0, 0, 0, .15);
	}
	.library-filter .filter-title {
		position: sticky;
		top: 0;
		z-index: 9;
		background: #fff;
		padding: 15px 0 10px;
	}
	.library-filter .filter-title .btn.refresh {
		margin: 0 auto 0 20px;
		font-size: var(--font-size-13);
	}
	.library-filter .filter-title .filter-close {
		display: block;
		position: initial;
		font-size: var(--font-size-20);
		width: 25px;
		height: 25px;
	}
	.library-filter .filter-box {
		padding: 15px 0;
	}
	.library-filter .filter-box .filter-btn {
		top: 14px;
	}
	.library-filter .filter-box .filter-list a {
		font-size: var(--font-size-14);
	}
	.library-content {
		padding: 30px 15px;
	}
	.btn.opt-filter {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 42px;
		background: #f3f3f3;
		border: 1px solid #DFDFDF;
		color: #555555;
		border-radius: 5px;
		margin-right: 3px;
		transition: all 0.1s ease-in-out;
	}
	.btn.opt-filter.active {
		background: #fff;
	}
	.btn.opt-filter .number {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(-30%, -30%);
		background: var(--primary-color);
		color: #fff;
		width: 19px;
		height: 19px;
		border-radius: 50%;
		font-size: 0.65em;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.search-wrap .recent-word {
		margin-top: 8px;
		gap: 6px 3px;
	}
	.search-wrap .recent-word li {
		padding: 3px 8px;
	}
	.search-wrap .recent-word li span {
		font-size: 0.75em;
	}
	.search-wrap .recent-word li button {
		font-size: 0.75em;
	}
	.library-list .list {
		gap: 30px 20px;
	}
	.library-list .list li {
		width: calc((100% - 40px) / 3);
	}
	.library-list .list li a .image-hover::before {
		font-size: 2.25em;
	}
	.library-list .list li a .image-hover .view-info span {
		font-size: var(--font-size-13);
	}
	.library-list .list li a .text .subject {
		font-size: var(--font-size-13);
		min-height: 37px;
	}
	.library-list .list li a .text .author-wrap {
		font-size: 0.75em;
	}
	.library-list .list li a .text .author-wrap .author {
		padding-left: 6px;
		margin-left: 6px;
	}
	.library-list .list li a .text .author-wrap .author::before {
		height: 9px;
	}
	.libraryList-wrap .library-content {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.libraryList-wrap .search-basic-wrap {
		position: sticky;
		left: 0;
		top: 0;
		width: calc(100% + 30px);
		padding: 10px 15px;
		background: #fff;
		z-index: 10;
		margin: 0 -15px;
	}
	.libraryList-wrap .search-wrap .keyword {
		margin-top: 0;
	}
}
@media all and (max-width: 479px) {
	.library-list .list li {
		width: calc((100% - 20px) / 2);
	}
}
/* ## 서재 - 목록 e ## */




/* ## 채널 s ## */
.channel-visual {
	height: 260px;
	overflow: hidden;
}
.channel-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.channel-profile {
	margin: 40px 0;
	position: relative;
}
.channel-info-box {
	font-size: 0.95em;
	position: relative;
	min-height: 137px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.channel-info-box .img-box {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 137px;
	height: 137px;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #eee;
}
.channel-info-box .img-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.channel-info-box .desc-box {
	padding-left: 167px;
}
.channel-info-box .title {
	font-size: var(--font-size-30);
	font-weight: 600;
}
.channel-info-box .info-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	color: #6b6b6b;
}
.channel-info-box .info-list li {
	padding-right: 10px;
	margin-right: 10px;
	position: relative;
}
.channel-info-box .info-list li::before {
	display: block;
	content: "";
	width: 1px;
	height: 10px;
	background: #e5e5e5;
	position: absolute;
	right: 0;
	top: 6px;
}
.channel-info-box .info-list li:last-child::before {
	display: none;
}
.channel-info-box .url-list {
	margin-top: 15px;
	display: flex;
	align-items: center;
}
.channel-info-box .url-list li {
	margin-right: 12px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.channel-info-box .url-list a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--seconary-color);
	border-radius: 5px;
}
.channel-info-box .url-list .btn-default.opt-like {
	padding: 0 12px;
	height: 32px;
	font-size: var(--font-size-14);
	color: var(--seconary-color);
	border: 1px solid var(--seconary-color);
	background: transparent;
}
.channel-info-box .url-list .btn-default.opt-like::before {
	content: '\f164';
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	font-size: 16px;
	display: inline-block;
	margin-right: 7px;
}
.channel-info-box .url-list .btn-default.opt-like.active {
	color: #fff;
	background: var(--seconary-color);
}
.channel-info-box .url-list .btn-default.opt-like.active::before {
	color: #fff;
	font-weight: 300;
	animation: channel-btn 0.3s ease-in-out alternate;
}
.channel-info-box .url-list .ico-custom {
	color: var(--seconary-color);
	font-size: var(--font-size-18);
}
.channel-info-box .url-list .ico-custom.fa-house-chimney-heart {
	color: var(--seconary-color);
	font-size: 1em;
}
.channel-info-box .url-list img {
	width: 18px;
	max-height: 16px;
}
.channel-info-box .desc {
	margin-top: 6px;
}
.channel-info-box .count {
	display: block;
	margin-top: 2px;
	color: #6b6b6b;
}
.channel-profile-util {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.channel-profile-btn {
	position: relative;
}
.channel-profile-btn .btn-default {
	padding: 0 12px;
	height: 38px;
	margin-left: 5px;
	font-size: var(--font-size-14);
}
.channel-profile-btn .btn-default.active {
	background: #000;
	color: #fff;
}
.channel-profile-btn .btn-default .ico-custom {
	margin-right: 6px;
}
.channel-profile-btn .btn-default.active .ico-custom {
	animation: channel-btn 0.3s ease-in-out alternate;
}
@keyframes channel-btn {
	0% {
		transform: scale(0.5);
	}
	50% {
		transform: scale(1.5);
	}
	100% {
		transform: scale(1);
	}
}
.search-basic-wrap.opt-channel {
	width: 250px;
}
.search-basic-wrap.opt-channel .input {
	padding: 0 10px;
	height: 40px;
	font-size: var(--font-size-14);
	border: 1px solid #d2d2d2;
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
.search-basic-wrap.opt-channel .input-box::before {
	display: none;
}
.search-basic-wrap.opt-channel .btn {
	flex: 0 0 40px;
	font-size: var(--font-size-14);
	height: 40px;
	margin: 0;
	border: none;
	background: #aaa;
	color: #fff;
}
.channel-contents {
	border-top: 1px solid #d7d7d7;
	padding-bottom: 80px;
}
.channel-content-row {
	padding-top: 40px;
	margin-top: 50px;
	border-top: 1px solid #f2f2f2;
}
.channel-content-row:first-child {
	margin-top: 0;
	border-top: none;
}
.channel-slide {
	position: relative;
	display: flex;
	align-items: center;
}
.channel-slide .swiper-wrapper {
	align-items: flex-end;
}
.channel-slide .swiper {
	flex: 1 1 auto;
}
.channel-slide .swiper-slide {
	padding: 0 10px;
}
.channel-lnk {
	display: block;
	max-width: 195px;
	margin: 0 auto;
	width: 100%;
	padding-top: 5px;
	text-align: center;
}
.channel-lnk .img-box {
	position: relative;
	vertical-align: bottom;
	transition: all 0.2s ease-in-out;
}
.channel-lnk:hover .img-box {
	transform: translateY(-5px);
}
.channel-lnk .img-box::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: #b2b2b2;
	position: absolute;
	right: -4px;
	bottom: -4px;
	z-index: -1;
	filter: blur(0.5px);
	transition: all 0.3s ease-in-out;
}
.channel-lnk:hover .img-box::before {
	transform: rotate(3deg);
	background: #dadada;
}
.channel-lnk .image-thumbnail {
	background: #f3f3f3;
}
.channel-lnk .img-box img {
	width: 100%;
}
.channel-lnk .text-box {
	margin-top: 10px;
	text-align: left;
}
.channel-lnk .text-box .title {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-wrap: break-word;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.channel-lnk .text-box .etc {
	color: #a2a2a2;
	margin-top: 2px;
	font-size: var(--font-size-14);
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-wrap: break-word;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.channel-slide .swiper-btn-prev,
.channel-slide .swiper-btn-next {
	flex: 0 0 48px;
	height: 48px;
	border: 1px solid #e2e2e2;
	border-radius: 100%;
	color: #BFBFBF;
	font-size: var(--font-size-18);
	background: #fff;
}
.channel-board-item {
	display: block;
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	padding: 20px 25px;
	color: #484848;
	margin: 15px 0;
}
.channel-board-item .date {
	color: #a1a1a1;
	font-size: var(--font-size-14);
}
.channel-board-item .text {
	margin-top: 5px;
}
.mypage-content-list.opt-channel {
	margin: 0 -15px;
}
.mypage-content-list.opt-channel .mypage-content-item {
	padding: 20px 15px;
}
.mypage-content-list.opt-channel .desc-box {
	display: block;
	padding: 0;
	margin-top: 8px;
	align-items: normal;
}
.mypage-content-list.opt-channel .title {
	font-size: 1em;
	position: static;
	left: auto;
	top: auto;
	font-weight: normal;
}
.mypage-content-list.opt-channel .type {
	font-size: var(--font-size-14);
	padding: 0;
	margin: 0;
}
.mypage-content-list.opt-channel .type::before {
	display: none;
}
@media all and (max-width: 1023px) {
	.channel-visual {
		height: 100px;
	}
	.channel-contents {
		padding-bottom: 60px;
	}
	.channel-profile-util {
		position: relative;
		right: auto;
		top: auto;
		transform: translateY(0);
		padding: 5px 0 0 162px;
	}
	.search-basic-wrap.opt-channel .search-box {
		border: none;
	}
}
@media all and (max-width: 767px) {
	.channel-contents {
		padding-bottom: 40px;
	}
	.channel-profile {
		margin: 20px 0;
	}
	.channel-info-box {
		min-height: auto;
	}
	.channel-info-box .img-box {
		width: 65px;
		height: 65px;
		top: 0;
		transform: none;
	}
	.channel-info-box .desc-box {
		padding: 0;
	}
	.channel-info-box .title {
		word-break: break-word;
		font-size: 1.4em;
		line-height: 1.2;
	}
	.channel-info-box .title,
	.channel-info-box .info-list,
	.channel-info-box .desc,
	.channel-info-box .count {
		padding-left: 75px;
	}
	.channel-info-box .info-list {
		font-size: var(--font-size-14);
		margin-top: 3px;
	}
	.channel-info-box .info-list li {
		padding-right: 8px;
		margin-right: 6px;
	}
	.channel-info-box .desc {
		margin-top: 4px;
		font-size: var(--font-size-13);
	}
	.channel-info-box .count {
		font-size: 0.8em;
	}
	.channel-info-box .url-list {
		font-size: var(--font-size-14);
		flex-wrap: wrap;
		gap: 5px 0;
	}
	.channel-info-box .url-list li {
		margin-right: 8px;
	}
	.channel-info-box .url-list a {
		width: 30px;
		height: 29px;
	}
	.channel-info-box .url-list .btn-default.opt-like {
		min-width: 67px;
		height: 29px;
	}
	.channel-info-box .url-list .btn-default.opt-like::before {
		font-size: var(--font-size-18);
	}
	.channel-info-box .url-list img {
		width: 16px;
		max-height: 15px;
	}
	.channel-profile-util {
		position: relative;
		right: auto;
		top: auto;
		margin: 10px 0 0 -5px;
		padding: 0;
	}
	.channel-profile-btn {
		display: flex;
		align-items: center;
	}
	.channel-profile-btn .btn-default {
		height: 28px;
		font-size: 0.75em;
		padding: 0 9px;
	}
	.channel-content-row .mypage-content-filter {
		display: block;
	}
	.channel-search {
		display: none;
	}
	.search-basic-wrap.opt-channel {
		width: 100%;
		padding: 0 2px;
		margin-top: 10px;
	}
	.search-basic-wrap.opt-channel .input {
		height: 35px;
	}
	.search-basic-wrap.opt-channel .btn {
		flex: 0 0 35px;
		height: 35px;
	}
	.channel-content-row {
		padding-top: 20px;
		margin-top: 30px;
	}
	.channel-slide .swiper-slide {
		padding: 0;
	}
	.channel-slide .swiper-btn-prev,
	.channel-slide .swiper-btn-next {
		flex: 0 0 35px;
		height: 35px;
	}
	.channel-lnk {
		max-width: 200px;
	}
	.channel-lnk .text-box .title {
		font-size: 0.95em;
	}
	.channel-board-item {
		padding: 15px 20px;
	}
	.channel-board-item .text {
		font-size: 0.95em;
	}
	.mypage-content-list.opt-channel .title {
		font-size: 0.95em;
		margin-bottom: 5px;
	}
	.mypage-content-list.opt-channel {
		margin: 0 0 -10px;
	}
	.mypage-content-list.opt-channel .mypage-content-item {
		padding: 10px 0;
	}
}
/* ## 채널 e ## */





/* ## 제휴제안 s ## */
.proposal-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 10px;
	display: flex;
}
.proposal-wrap .title {
	width: 45%;
	background: url('../img/contents/proposal-bg.png') no-repeat left bottom;
}
.proposal-wrap .title h2 {
	margin-bottom: 65px;
	font-size: var(--font-size-30);
	letter-spacing: -0.05em;
}
.proposal-wrap .title h2 strong {
	font-weight: 700;
}
.proposal-wrap .title .address li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: var(--font-size-18);
}
.proposal-wrap .title .address li::before {
	content: '';
	background-repeat: no-repeat;
	background-position: center;
	width: 27px;
	height: 27px;
	display: inline-block;
	margin-right: 10px;
}
.proposal-wrap .title .address li.call::before {
	background-image: url('../img/contents/proposal-call.png');
}
.proposal-wrap .title .address li.map::before {
	background-image: url('../img/contents/proposal-map.png');
}
.proposal-form-wrap {
	width: 55%;
	padding: 50px 55px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(83, 83, 83, .08);
}
.proposal-form-wrap .proposal-form-title {
	font-size: var(--font-size-24);
	font-weight: 700;
	margin-bottom: 40px;
}
.proposal-form {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 26px;
}
.proposal-form .input-text {
	width: 100%;
}
.proposal-form .input-text.col50 {
	width: calc((100% - 26px) / 2);
}
.proposal-form .input-text label {
	display: none;
}
.proposal-form .input-text input {
	width: 100%;
	height: 50px;
	border-color: #d5d5d5;
	border-radius: 10px;
}
.proposal-form .input-text select {
	width: 100%;
	height: 50px;
	border-color: #d5d5d5;
	border-radius: 10px;
}
.proposal-form .input-text textarea {
	width: 100%;
	height: 230px;
	border-color: #d5d5d5;
	border-radius: 10px;
	resize: none;
}
.proposal-form .input-group {
	display: flex;
	align-items: center;
	gap: 5px;
}
.proposal-form .input-group span {
	font-size: var(--font-size-14);
}
.proposal-form .btn-default {
	width: 100%;
	margin-top: 15px;
}
.info-default-popup-box.opt-proposal {
	margin-top: 40px;
}
.info-default-popup-box.opt-delete .icon {
	margin-bottom: 20px;
	font-size: var(--font-size-30);
	color: var(--primary-color);
}
.info-default-popup-box.opt-delete .title-sub-sm {
	margin-bottom: 5px;
}
@media all and (max-width: 1023px) {
	.proposal-container {
		padding: 50px 15px;
	}
	.proposal-wrap .title {
		padding-right: 20px;
		background-position: left center;
		background-size: 90%;
	}
	.proposal-wrap .title h2 {
		margin-bottom: 40px;
		font-size: var(--font-size-24);
	}
	.proposal-wrap .title h2 br {
		display: none;
	}
	.proposal-wrap .title .address li {
		font-size: 1em;
	}
	.proposal-form-wrap {
		padding: 30px;
	}
	.proposal-form-wrap .proposal-form-title {
		font-size: var(--font-size-20);
		margin-bottom: 22px;
	}
	.proposal-form {
		gap: 20px 0;
	}
	.proposal-form .input-text.col50 {
		width: 100%;
	}
}
@media all and (max-width: 767px) {
	.proposal-container {
		flex-direction: column;
		gap: 15px 0;
	}
	.proposal-wrap .title {
		width: 100%;
		background-position: right bottom;
		background-size: 160px;
		padding-bottom: 50px;
	}
	.proposal-wrap .title h2 {
		margin-bottom: 20px;
		font-size: var(--font-size-20);
	}
	.proposal-wrap .title h2 br {
		display: block;
	}
	.proposal-wrap .title .address li {
		margin-bottom: 5px;
		font-size: var(--font-size-14);
	}
	.proposal-wrap .title .address li::before {
		background-size: 23px;
		margin-right: 5px;
	}
	.proposal-form-wrap {
		width: 100%;
		padding: 22px;
	}
	.proposal-form-wrap .proposal-form-title {
		font-size: var(--font-size-18);
	}
	.proposal-form {
		gap: 12px 0;
	}
	.proposal-form .check-text {
		font-size: var(--font-size-14);
	}
}
/* ## 제휴제안 e ## */




/* ## 고객사례 s ## */
.case-wrap {
	max-width: 1500px;
	margin: 0 auto;
	padding: 80px 10px 0;
}
.case-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.case-text {
	position: relative;
	width: 30%;
	height: 300px;
}
.case-text li {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	padding-top: 30px;
}
.case-text li h2 {
	margin-bottom: 30px;
	font-size: 2.25em;
	font-weight: 700;
	letter-spacing: -0.05em;
	word-break: keep-all;
}
.case-text li h2 strong {
	display: inline-block;
	font-weight: 700;
	color: var(--primary-color);
}
.case-text li p {
	color: #555;
	word-break: keep-all;
}
.case-text li .underline {
	display: inline-block;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-color: inherit;
}
.case-text li.active {
	transform: translateY(0);
	transition: all 1s ease-in-out;
	opacity: 1;
}
.case-image {
	display: flex;
	justify-content: center;
	width: 70%;
	height: 300px;
	gap: 1%;
}
.case-image li {
	position: relative;
	width: 8%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	transition: all 1s ease-in-out;
}
.case-image li .image {
	width: 100%;
	height: 100%;
}
.case-image li .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.case-image li .comment {
	position: absolute;
	bottom: 20px;
	left: 20px;
}
.case-image li .comment p {
	position: relative;
	padding: 9px 27px;
	background: rgba(255, 255, 255, 0.68);
	border-radius: 30px;
	font-weight: 600;
	letter-spacing: -0.05em;
	opacity: 0;
	white-space: nowrap;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}
.case-image li .comment p::before {
	content: '';
	position: absolute;
	bottom: 115%;
	left: 0;
	width: 48px;
	height: 51px;
	background: url('../img/contents/case-ico.png') no-repeat center;
}
.case-image li.active {
	width: 45%;
}
.case-image li.active .comment p {
	opacity: 1;
	visibility: visible;
}
@media all and (max-width: 1023px) {
	.case-wrap {
		padding: 40px 15px 0;
	}
	.case-text li h2 {
		margin-bottom: 0;
		font-size: var(--font-size-24);
	}
	.case-text li p {
		display: none;
	}
	.case-image li .comment p {
		font-size: var(--font-size-14);
	}
	.case-image li.active {
		width: 60%;
	}
}
@media all and (max-width: 767px) {
	.case-container {
		flex-direction: column;
	}
	.case-text {
		width: 100%;
		height: 85px;
	}
	.case-text li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding-top: 0;
	}
	.case-text li h2 {
		font-size: var(--font-size-20);
	}
	.case-image {
		width: 100%;
		height: 180px;
	}
	.case-image li {
		border-radius: 5px;
	}
	.case-image li .comment {
		bottom: 15px;
		left: 15px;
	}
	.case-image li .comment p {
		padding: 7px 18px;
		font-size: var(--font-size-13);
	}
	.case-image li .comment p::before {
		background-size: 38px;
		background-position: left bottom;
	}
	.case-image li.active {
		width: 64%;
	}
}
/* ## 고객사례 e ## */






/* ## 방침 s ## */
.etc-text-contents {
	padding: 40px 10px 100px;
	max-width: 1500px;
	margin: 0 auto;
}
.etc-text-item {
	margin-bottom: 50px;
}
.etc-text-item .title {
	margin-bottom: 10px;
	font-size: var(--font-size-18);
	font-weight: 600;
}
.etc-text-item .text-box {
	margin: 5px 0;
}
.etc-text-item ol.list li {
	list-style: decimal inside;
	margin-bottom: 5px;
}
.etc-text-item ol.list .list {
	padding-left: 20px;
	margin: 5px 0;
}
.etc-text-item ol.list ol.list li {
	list-style: upper-alpha inside;
}
.etc-text-item ol.list ol.list ol.list li {
	list-style: lower-roman inside;
}
@media all and (max-width: 1023px) {
	.etc-text-contents {
		padding: 40px 20px 80px;
	}
	.etc-text-item {
		margin-bottom: 30px;
	}
}
@media all and (max-width: 767px) {
	.etc-text-contents {
		padding: 20px 10px 60px;
		font-size: var(--font-size-14);
	}
	.etc-text-item {
		margin-bottom: 25px;
	}
	.etc-text-item .title {
		margin-bottom: 5px;
	}
	.etc-text-item ol.list .list {
		padding-left: 10px;
	}
}
/* ## 방침 e ## */





/* ## 스크롤 s ## */
.infinite-scroll {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.infinite-scroll .mouse {
	display: block;
	font-size: var(--font-size-30);
	color: #999;
}
.infinite-scroll .scroll {
	display: block;
	font-size: var(--font-size-18);
	color: #999;
}
.infinite-scroll .scroll i {
	margin-left: 3px;
	font-size: var(--font-size-13);
}
@media all and (max-width: 767px) {
	.infinite-scroll .mouse {
		font-size: var(--font-size-24);
	}
	.infinite-scroll .scroll {
		font-size: var(--font-size-14);
	}
}
/* ## 스크롤 e ## */





/* ## 통계 s ## */
.stats-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 65px;
	border-bottom: 1px solid #D4D4D4;
	padding: 0 40px;
}
.stats-close {
	color: #666666;
}
.stats-close .ico-custom {
	margin-left: 5px;
}
.stats-contents {
	padding: 40px 10px 100px;
	max-width: 1500px;
	margin: 0 auto;
}
.stats-title {
	padding: 30px;
	text-align: center;
	color: #272727;
	font-weight: 600;
	font-size: var(--font-size-28);
	background: #FFEBE9;
	margin-bottom: 45px;
}
.stats-row {
	display: flex;
	margin: -20px -15px 20px;
	flex-wrap: wrap;
}
.stats-box {
	flex: 0 0 50%;
	padding: 15px;
}
.stats-item {
	border: 1px solid #D4D4D4;
	border-radius: 5px;
	overflow: hidden;
	height: 100%;
}
.stats-item.mypage-content-item {
	padding: 0;
	border: none;
	align-items: center;
	border-radius: 0;
}
.stats-item-top {
	padding: 10px 10px;
	color: #999999;
	border-bottom: 1px solid #D4D4D4;
	text-align: center;
}
.stats-item-card {
	padding: 30px 25px;
}
.stats-date-box {
	display: flex;
	justify-content: center;
	align-items: center;
}
.stats-date-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #bbbbbb;
	border-radius: 5px;
}
.stats-date-btn .btn {
	padding: 0 12px;
	border-left: 1px solid #bbbbbb;
	height: 42px;
	color: #555555;
	transition: all 0.2s ease-in-out;
}
.stats-date-btn .btn:first-child {
	border-left: none;
}
.stats-date-btn .btn:hover {
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.stats-date-btn .btn.active {
	background: #bbbbbb;
	color: #fff;
}
.stats-date-item {
	display: flex;
	justify-content: space-around;
}
.stats-date-item .date {
	font-size: var(--font-size-30);
	color: #222222;
	font-weight: 600;
	letter-spacing: -1px;
}
.stats-date-item .date-move {
	color: #ACACAC;
	margin: 2px 20px 0;
}
.stats-date-result {
	background: #FFF7DF;
	margin: 30px -25px -30px;
	padding: 20px;
	border-radius: 10px 10px 0 0;
}
.stats-date-result .list-box {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stats-date-result .list-box li {
	text-align: center;
	padding: 20px 4%;
	position: relative;
}
.stats-date-result .list-box li::before {
	display: block;
	content: "";
	width: 1px;
	height: 15px;
	background: #E3E3E3;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.stats-date-result .list-box li:first-child::before {
	display: none;
}
.stats-date-result .list-box .title {
	font-size: var(--font-size-14);
	margin-bottom: 5px;
	color: #999;
}
.stats-date-result .list-box .num {
	font-size: var(--font-size-24);
	font-weight: 600;
}
.stats-date-result .list-box .desc {
	font-size: var(--font-size-14);
	font-weight: 600;
	color: #e8877d;
}
.stats-date-result .desc-box {
	text-align: right;
	font-size: var(--font-size-13);
	margin-top:5px;
	color: #e8877d;
}
.stats-item-card .card-title {
	font-size: var(--font-size-20);
	color: #111111;
	font-weight: 600;
	margin-bottom: 20px;
}
.stats-item-card .card-title.opt-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #D4D4D4;
	margin: -30px -25px 30px;
	padding: 20px 30px;
}
.stats-item-card .card-title .etc {
	color: #999999;
	font-size: 0.8em;
	font-weight: 500;
	align-self: flex-end;
}
.stats-chart-box {
	position: relative;
}
.stats-chart-box canvas {
	width: 100% !important;
}
.table-board {
	text-align: center;
}
.table-board table {
	width: 100%;
	table-layout: fixed;
	border-top: 1px solid #555555;
	color: #555555;
}
.table-board th,
.table-board td {
	padding: 5px 10px;
}
.table-board .table-title {
	padding: 10px;
	color: #999999;
	font-size: 0.95em;
}
.table-board .title {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-wrap: break-word;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.table-board .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #E2E2E2;
	border-radius: 5px;
	color: #DFDFDF;
	font-size: var(--font-size-14);
	transition: all 0.2s ease-in-out;
	margin: 0 1px;
}
.table-board .btn:hover {
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.table-board tbody tr {
	border-top: 1px solid #D4D4D4;
}
.table-board .num {
	color: var(--primary-color);
}
@media all and (max-width: 1200px) {
	.stats-header {
		padding: 0 10px;
	}
	.stats-row {
		margin: 0 -10px;
	}
	.stats-box {
		padding: 10px;
	}
	.stats-item-card {
		padding: 20px;
	}
	.stats-item-card .card-title.opt-line {
		margin: -20px -20px 20px;
		padding: 20px;
	}
	.stats-item.mypage-content-item .mypage-content-desc {
		padding-left: 20px;
	}
	.stats-date-btn .btn {
		height: 38px;
	}
	.stats-date-item .date {
		font-size: var(--font-size-24);
	}
	.stats-date-result .list-box li {
		padding: 20px 4%;
	}
}
@media all and (max-width: 1023px) {
	.stats-header {
		padding: 0 20px;
	}
	.stats-contents {
		padding: 30px 20px 80px;
	}
	.stats-title {
		padding: 20px;
		margin-bottom: 20px;
	}
	.stats-row {
		display: block;
		margin: 0;
	}
	.stats-box {
		flex: 0 0 100%;
		padding: 15px 0;
	}
}
@media all and (max-width: 767px) {
	.stats-contents {
		padding: 20px 10px 40px;
	}
	.stats-title {
		font-size: var(--font-size-20);
		padding: 10px 10px;
		margin-bottom: 10px;
	}
	.stats-item-card {
		padding: 15px;
	}
	.stats-date-box {
		flex-direction: column;
	}
	.stats-date-btn .btn {
		height: 32px;
		font-size: var(--font-size-14);
	}
	.stats-date-item {
		margin-top: 8px;
	}
	.stats-date-item .date {
		font-size: var(--font-size-20);
	}
	.stats-date-item .date-move {
		margin: 0 15px;
	}
	.stats-date-result {
		margin: 15px -15px -15px;
		padding: 15px;
	}
	.stats-date-result .list-box {
		flex-wrap: wrap;
	}
	.stats-date-result .list-box li {
		flex: 0 0 50%;
		padding: 10px 10px;
	}
	.stats-date-result .list-box li::before {
		display: none;
	}
	.stats-date-result .list-box .num {
		font-size: var(--font-size-20);
	}
	.stats-box {
		padding: 10px 0;
	}
	.stats-item-card .card-title {
		font-size: var(--font-size-18);
		margin-bottom: 10px;
	}
	.stats-item-card .card-title.opt-line {
		margin: -15px -15px 15px;
		padding: 15px;
	}
	.table-board {
		font-size: var(--font-size-14);
	}
	.table-board th, .table-board td {
		padding: 5px;
	}
	.table-board .table-title {
		padding: 10px 5px;
	}
}
@media all and (max-width: 500px) {
	.table-board {
		overflow-x: auto;
	}
	.table-board table {
		width: 600px;
	}
}

.stats-v2.stats-wrap {
	background: #e9f4ff;
}
.stats-v2 .stats-contents {
	padding:0 10px 60px;
}
.stats-v2 .stats-header {
	display: block;
	text-align: center;
	height: auto;
	border-bottom: none;
	padding-top:50px;
}
.stats-v2 .stats-logo img {
	max-width: 110px;
}
.stats-v2 .stats-title {
	background: none;
	padding:5px 10px 0;
	font-size: 2em;
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom:60px;
}
.stats-v2 .stats-close {
	position: absolute;
	right: 20px;
	top:20px;
}
.stats-v2 .stats-item.mypage-content-item {
	background: none;
	border-radius: 0;
}
.stats-v2 .mypage-content-item .img-box {
	border-radius: 10px;
	flex:0 0 34%;
	max-height: 300px;
	height: 100%;
	max-width: 240px;
}
.stats-v2 .mypage-content-item .img-box img {
	border-radius: 10px;
	width: 100%;
	max-height: none;
}
.stats-v2 .mypage-content-desc .tag-box {
	border-top:0;
	padding-top:0;
	color: #000;
}
.stats-v2 .mypage-content-desc .etc-box {
	margin-top:40px;
}
.stats-v2 .stats-item {
	border:none;
	background: #fff;
	border-radius: 10px;
}
.stats-v2 .stats-item-card {
	padding:30px;
}
.stats-v2 .stats-item-card .card-title {
	border:none;
	margin:0 0 30px;
	padding:0;
}
.stats-v2 .stats-item-card .card-title .title {
	position: relative;
	font-weight: 600;
}
.stats-v2 .stats-item-card .card-title .title::after {
	display: block;
	content:"";
	width: 100%;
	height: 3px;
	background:#e9f4ff;
	position: absolute;
	left:0;
	bottom:-5px;
}
.stats-v2 .stats-item-top {
	border:none;
	padding:25px 30px 0;
	text-align: left;
}
.stats-v2 .stats-item-top + .stats-item-card {
	padding-top:15px;
}
.stats-v2 .stats-date-result {
	margin:0;
	padding:0;
	background:none;
	border-radius: 0;
}
.stats-v2 .stats-date-result .list-box {
	gap:5px 3%;
}
.stats-v2 .stats-date-result .list-box li {
	flex:1;
	border-radius: 10px;
	padding:20px 10px;
	display: flex;
	flex-direction: column;
	height: 145px;
	justify-content: center;
	color: #fff;
	gap:2px 0;
}
.stats-v2 .stats-date-result .list-box li:nth-child(1) {background:#449eff;}
.stats-v2 .stats-date-result .list-box li:nth-child(2) {background:#2766e7;}
.stats-v2 .stats-date-result .list-box li:nth-child(3) {background:#1552ce;}
.stats-v2 .stats-date-result .list-box li::before {
	display: none;
}
.stats-v2 .stats-date-result .list-box .title {
	font-size: 1em;
	color: #fff;
	font-weight: 300;
	margin:0;
}
.stats-v2 .stats-date-result .list-box .num {
	font-size: 2.2em;
}
.stats-v2 .stats-date-result .list-box .desc {
	color: #ffe513;
	font-size: 1em;
	font-weight: 400;
}
.stats-v2 .stats-date-box {
	margin-bottom: 30px;
}
.stats-v2 .stats-date-item .date {
	display: flex;
	align-items: center;
	gap:0 10px;
}
.stats-v2 .stats-date-item .date::after {
	display: block;
	content:"\f133";
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	color: #c6c6c6;
	font-size: var(--font-size-15);
}
.stats-v2 .stats-box .bg-box {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	height: 100%;
}
.stats-v2 .stats-box .bg-box img {
	max-width: 70%;
}
@media all and (max-width: 1023px) {
	.stats-v2 .stats-box:has(.bg-box) {
		display: none;
	}
}
@media all and (max-width: 767px) {
	.stats-v2 .stats-contents {
		padding-bottom:40px;
	}
	.stats-v2 .stats-logo img {
		max-width: 100px;
	}
	.stats-v2 .stats-title {
		font-size: var(--font-size-28);
		padding-top:0;
		margin-bottom: 30px;
	}
	.stats-v2 .stats-item-top {
		padding:20px 20px 0;
		font-size: var(--font-size-14);
	}
	.stats-v2 .stats-item-card {
		padding:20px;
	}
	.stats-v2 .stats-item-top + .stats-item-card {
		padding-top:5px;
	}
	.stats-v2 .stats-date-box {
		margin-bottom: 20px;
	}
	.stats-v2 .stats-date-result .list-box {
		flex-wrap: nowrap;
	}
	.stats-v2 .stats-date-result .list-box li {
		height: 135px;
	}
	.stats-v2 .stats-date-result .list-box .title {
		font-size: var(--font-size-14);
	}
	.stats-v2 .stats-date-result .list-box .num {
		font-size: var(--font-size-24);
	}
	.stats-v2 .stats-date-result .list-box .desc {
		font-size: var(--font-size-14);
	}
}
/* ## 통계 e ## */






/* ## 서비스 소개 s ## */
.video-wrap {
	background: url('../img/contents/video-bg.jpg') no-repeat center / cover;
	text-align: center;
	padding-bottom: 30px;
}
.video-wrap .title {
	padding: 75px 0 30px;
	font-size: 2.75em;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.video-wrap .keyword {
	width: 170px;
	height: 77px;
}
.video-wrap .keyword .swiper {
	width: 100%;
	height: 100%;
}
.video-wrap .keyword .swiper-slide strong {
	font-size: 1.25em;
	font-weight: 700;
	color: #ffee95;
}
.video-wrap p {
	font-size: 1.125em;
	line-height: 1.8;
	color: #fff;
}
.video-wrap .video-box {
	padding: 70px 20px;
}
.video-wrap .video-box .video {
	position: relative;
	width: 100%;
	overflow: hidden;
	pointer-events: none;
	max-width: 1020px;
	height: 62vh;
	margin: 0 auto;
	border-radius: 20px;
}
.video-wrap .video-box .video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 140%;
	object-fit: cover;
}
@media screen and (max-width: 1023px) {
	.video-wrap .video-box .video {
		height: 50vw;
		border-radius: 10px;
	}
	.video-wrap .video-box .video iframe {
		height: 160%;
	}
}
@media screen and (max-width: 767px) {
	.video-wrap .title {
		padding: 50px 0 0;
		font-size: var(--font-size-20);
	}
	.video-wrap .keyword {
		width: 80px;
		height: 34px;
	}
	.video-wrap p {
		display: none;
	}
	.video-wrap .video-box {
		padding: 30px 20px;
	}
}
.service-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 10px;
}
.service-wrap .service {
	display: flex;
	align-items: center;
	padding: 50px 0;
}
.service-wrap .service .image-box {
	width: 50%;
}
.service-wrap .service .text-box {
	width: 50%;
	padding-left: 50px;
}
.service-wrap .service .text-box span {
	display: block;
	margin-bottom: 35px;
	font-size: var(--font-size-24);
	color: var(--primary-color);
	font-weight: 600;
}
.service-wrap .service .text-box h2 {
	margin-bottom: 48px;
	font-size: 2.5em;
	font-weight: 700;
	letter-spacing: -0.05em;
}
.service-wrap .service .text-box .text-list > p {
	display: flex;
	margin-bottom: 10px;
	font-size: var(--font-size-18);
	color: #929292;
}
.service-wrap .service .text-box .text-list > p::before {
	content: '-';
	display: block;
	margin-right: 5px;
}
.service-wrap .service:nth-child(even) {
	flex-direction: row-reverse;
}
.service-wrap .service:nth-child(even) .image-box {
	text-align: right;
}
@media screen and (max-width: 1023px) {
	.service-wrap {
		padding: 70px 15px;
	}
	.service-wrap .service .image-box {
		width: 40%;
	}
	.service-wrap .service .text-box {
		width: 60%;
	}
	.service-wrap .service .text-box span {
		font-size: var(--font-size-20);
	}
	.service-wrap .service .text-box h2 {
		font-size: 2em;
	}
	.service-wrap .service .text-box .text-list > p {
		font-size: 1em;
	}
	.service-wrap .service:nth-child(odd) .text-box {
		padding-left: 70px;
	}
}
@media screen and (max-width: 767px) {
	.service-wrap {
		padding: 50px 15px;
	}
	.service-wrap .service .text-box {
		padding: 0 20px 0 0;
	}
	.service-wrap .service .text-box span {
		margin-bottom: 5px;
		font-size: var(--font-size-13);
		font-weight: normal;
	}
	.service-wrap .service .text-box h2 {
		margin-bottom: 25px;
		font-size: var(--font-size-18);
		word-break: keep-all;
	}
	.service-wrap .service .text-box h2 br {
		display: none;
	}
	.service-wrap .service .text-box .text-list > p {
		margin-bottom: 2px;
		font-size: var(--font-size-13);
	}
	.service-wrap .service:nth-child(odd) .text-box {
		padding: 0 0 0 20px;
	}
}
/* ## 서비스 소개 e ## */





/* ## 사용설명서 s ## */
.manual-wrap {
	background: url('../img/contents/video-bg.jpg') no-repeat center / cover;
	text-align: center;
}
.manual-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 130px 10px 190px;
}
.manual-wrap .title {
	margin-bottom: 90px;
	font-size: 2.75em;
	font-weight: 600;
	color: #fff;
}
.manual-wrap .title span {
	color: #ffeb63;
}
.manual-list {
	display: flex;
	justify-content: space-between;
	gap: 70px 2.5%;
}
.manual-list > li {
	flex: 1 1 0;
}
.manual-list > li h4 {
	font-size: var(--font-size-24);
	font-weight: 500;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 25px;
}
.manual-youtube-thumb {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
}
.manual-youtube-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.manual-youtube-thumb::before,
.manual-youtube-thumb::after {
	display: block;
	content: "";
	position: absolute;
}
.manual-youtube-thumb::before {
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
	left: 0;
	top: 0;
	z-index: 1;
}
.manual-youtube-thumb::after {
	width: 50px;
	height: 50px;
	background: url("../img/editor/ico-preview-youtube.svg") no-repeat center center;
	background-size: 50px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.manual-youtube-thumb.ready {
	background: #afd6ff;
	pointer-events: none;
}
.manual-youtube-thumb.ready p {
	width: 100%;
	font-size: var(--font-size-24);
	font-weight: 700;
	font-style: italic;
	color: #fff;
	text-transform: uppercase;
	position: absolute;
	top: 50%;
	transform: translateY(-70%);
}
.manual-youtube-thumb.ready::before,
.manual-youtube-thumb.ready::after {
	display: none;
}
.manual-youtube-popup .modal-popup-box {
	max-width: 880px;
}
.manual-youtube-popup .video-box .video {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 10px;
}
.manual-youtube-popup .video-box .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1499px) {
	.manual-container {
		padding: 80px 20px 100px;
	}
	.manual-wrap .title {
		font-size: var(--font-size-30);
	}
	.manual-list {
		flex-wrap: wrap;
	}
	.manual-list > li {
		flex: 1 1 48.75%;
	}
}
@media screen and (max-width: 767px) {
	.manual-container {
		padding: 50px 20px 80px;
	}
	.manual-wrap .title {
		margin-bottom: 70px;
		font-size: var(--font-size-20);
	}
	.manual-list {
		gap: 50px 0;
	}
	.manual-list > li {
		flex: 1 1 100%;
	}
	.manual-list > li h4 {
		font-size: var(--font-size-18);
		margin-bottom: 15px;
	}
	.manual-youtube-thumb {
		margin-bottom: 15px;
	}
	.manual-youtube-popup .modal-popup-close {
		font-size: var(--font-size-24);
	}
}
/* ## 사용설명서 e ## */





/* ## 섭피디 s ## */
.survey-list-btn {
	margin: -65px 0 15px;
	text-align: right;
}
.survey-list-btn .btn-default {
	gap: 5px;
}
.survey-list {
	margin-bottom: 50px;
}
.survey-list-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 10px;
}
.survey-list-item .survey-title-wrap {
	display: flex;
	align-items: center;
	flex: 0 1 58%;
}
.survey-list-item .survey-state {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	margin-right: 20px;
	background: #333;
	border-radius: 10px;
	font-size: var(--font-size-14);
	color: #fff;
}
.survey-list-item .survey-state.opt-progress {
	background: var(--primary-color);
}
.survey-list-item .survey-state.opt-end {
	background: #c1c1c1;
}
.survey-list-item .survey-state.opt-edit {
	background: #56ca85;
}
.survey-list-item .survey-state.opt-expect {
	background: #c766ff;
}
.survey-list-item .title-box {
	flex: 1 1 0;
}
.survey-list-item .title-box .title {
	display: block;
	margin-bottom: 5px;
	font-size: var(--font-size-18);
	font-weight: 700;
	color: #262626;
}
.survey-list-item .title-box .date {
	font-size: var(--font-size-14);
	color: #989898;
}
.survey-list-item .survey-util-wrap {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.survey-list-item .etc-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 18px;
}
.survey-list-item .etc-item {
	position: relative;
	font-size: 0.95em;
	color: #989898;
}
.survey-list-item .etc-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -9px;
	transform: translateY(-50%);
	width: 1px;
	height: 13px;
	background: #eee;
}
.survey-list-item .etc-item .num {
	margin-left: 3px;
	font-weight: 700;
	color: #262626;
}
.survey-list-item .btn-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 20px;
}
.survey-list-item .chart-btn {
	display: block;
	padding: 8px 20px 9px;
	background: #9e9e9e;
	border-radius: 30px;
	font-size: var(--font-size-14);
	line-height: 1;
	color: #fff;
}
.survey-list-item .chart-btn.opt-active {
	background: var(--seconary-color);
}
.survey-list-item .chart-btn:not(.opt-active) {
	pointer-events: none;
}
.survey-list-item .circle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #ededed;
	border-radius: 50%;
}
.survey-list-item .circle-btn .ico-custom {
	font-size: 0.75em;
	color: var(--seconary-color);
}
.survey-list-item .menu-btn {
	margin-left: 5px;
	font-size: var(--font-size-20);
	color: var(--seconary-color);
}
.survey-menu-list {
	display: none;
	position: absolute;
	top: 35px;
	right: -15px;
	width: 120px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	z-index: 5;
}
.survey-menu-list.active {
	display: block;
}
.survey-menu-list .btn {
	display: block;
	width: 100%;
	padding: 8px 0;
	font-size: var(--font-size-14);
	font-weight: 500;
	text-align: center;
}
.survey-menu-list .btn:hover {
	background: #f5f5f5;
}
@media screen and (max-width: 1023px) {
	.survey-list-item {
		flex-direction: column;
	}
	.survey-list-item .survey-title-wrap {
		width: 100%;
	}
	.survey-list-item .survey-util-wrap {
		justify-content: space-between;
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.survey-btn {
		margin: 0 0 10px;
	}
	.survey-btn .btn-default {
		width: 100%;
	}
	.survey-list-item {
		padding: 15px;
	}
	.survey-list-item .survey-state {
		width: 50px;
		height: 50px;
		margin-right: 10px;
		font-size: var(--font-size-13);
	}
	.survey-list-item .title-box .title {
		font-size: 1em;
	}
	.survey-list-item .survey-util-wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px 0;
	}
	.survey-list-item .etc-box {
		gap: 2px 12px;
	}
	.survey-list-item .etc-item {
		font-size: var(--font-size-14);
	}
	.survey-list-item .etc-item:not(:last-child)::after {
		display: none;
	}
	.survey-list-item .btn-box {
		align-self: flex-end;
		gap: 7px;
		margin-left: 0;
	}
	.survey-list-item .chart-btn {
		font-size: var(--font-size-13);
	}
	.survey-menu-list {
		right: -10px;
	}
	.survey-list-btn {
		margin:-50px 0 10px;
	}
	.survey-list-btn .btn-default {
		padding:6px 12px;
		font-size: var(--font-size-14);
	}
}


.survey-detail-wrap {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
.survey-nav {
	flex: 0 0 270px;
	border: 1px solid #eaeaea;
	border-radius: 10px;
	overflow: hidden;
}
.survey-nav li:not(:last-child) {
	border-bottom: 1px solid #eaeaea
}
.survey-nav .lnk {
	display: flex;
	align-items: center;
	min-height: 60px;
	padding: 0 30px;
	color: #4a4a4a;
}
.survey-nav .lnk.active {
	background: #f6f6f6;
	color: #000;
	font-weight: 600;
}
.survey-detail-cont {
	flex: 1 1 auto;
}
.survey-detail-cont .group-box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}
.survey-detail-cont .group-box .title {
	font-size: var(--font-size-30);
	color: var(--seconary-color);
	font-weight: 900;
	padding-left: 36px;
	position: relative;
	flex: 1 1 auto;
}
.survey-detail-cont .group-box .title::before {
	display: block;
	content: "\f15c";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 3px;
}
.survey-detail-cont .group-box .btn-default {
	padding:8px 20px;
}
.survey-detail-cont .group-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	flex: 0 0 100%;
	color: #989898;
	margin-top:3px;
	gap:5px 20px;
}
.survey-detail-cont .group-info .date {
	position: relative;
	padding-left:36px;
	font-size: var(--font-size-18);
}
.survey-detail-cont .group-info .date::before {
	font-family: "Font Awesome 6 Sharp";
	font-weight: 400;
	content:"\f133";
	position: absolute;
	left:0;
	top:1px;
	width: 21px;
	text-align: center;
}
.survey-detail-cont .group-info .info-box {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap:1px 30px;
}
.survey-detail-cont .group-info .info {
	position: relative;
}
.survey-detail-cont .group-info .info:not(:first-child)::before {
	display: block;
	content:"";
	width: 1px;
	height: 13px;
	background: #dcdcdc;
	position: absolute;
	top:50%;
	left:-15px;
	transform:translateY(-50%);
}
.survey-detail-cont .group-info .info .strong {
	color: #000;
	font-weight: 600;
}
.survey-detail-cont .card-box {
	border: 1px solid #eaeaea;
	border-radius: 10px;
	padding: 40px 35px;
	margin-top: 25px;
	position: relative;
}
.survey-detail-cont .card-box.group {
	background:var(--primary-color);
	color: #fff;
	position: relative;
	border:none;
}
.survey-detail-cont .card-box.group::before,
.survey-detail-cont .card-box.group::after {
	display: block;
	content:"";
	position: absolute;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
}
.survey-detail-cont .card-box.group::before {
	border-bottom: 40px solid #fff;
	right:-26px;
	bottom:-6px;
	transform:rotate(135deg);
}
.survey-detail-cont .card-box.group::after {
	border-bottom: 40px solid #f5d108;
	right:2px;
	bottom:22px;
	transform:rotate(-45deg);
}
.survey-detail-cont .card-box.group .card-title {
	font-size: var(--font-size-24);
}
.survey-detail-cont .card-box + .card-box.group {
	margin-top:100px;
}
.survey-detail-cont .card-box:has(.loading-default) {
	min-height: 500px;
}
.survey-detail-cont .card-title-box {
	margin-bottom: 20px;
}
.survey-detail-cont .card-type {
	color: var(--primary-color);
	margin-bottom: 5px;
}
.survey-detail-cont .card-title {
	font-size: var(--font-size-24);
	font-weight: 500;
}
.survey-detail-cont .card-title.required::after {
	display: inline-flex;
	align-items: center;
	content:"*";
	color: var(--primary-color);
	margin-left:5px;
}
.survey-detail-cont .card-title .desc {
	font-size: var(--font-size-13);
	font-weight: 500;
	margin-left:5px;
	color: #696969;
}
.survey-detail-cont .card-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.95em;
	color: #747474;
	margin-top: 15px;
	position: relative;
	padding-right: 150px;
}
.survey-detail-cont .card-info .select {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #616161;
	font-size: 0.95em;
	padding: 0 15px;
	flex: 0 0 100%;
}
.survey-detail-cont .result-item {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	background: #fafafa;
	border-radius: 10px;
	border: 1px solid #eaeaea;
	padding: 18px 25px;
	gap: 10px;
	color: #484848;
	margin-top: 10px;
	transition: 0.1s ease-in-out;
}
.survey-detail-cont .result-title {
	flex: 1 1 auto;
}
.survey-detail-cont .result-title .file {
	text-decoration: underline;
}
.survey-detail-cont .result-title .file:hover {
	color: var(--primary-color);
}
.survey-detail-cont .result-title .desc {
	color: #b4b4b4;
	font-size: var(--font-size-14);
	margin-left: 5px;
}
.survey-detail-cont .result-title .num {
	font-weight: 900;
	color: var(--primary-color);
	margin-right: 5px;
}
.survey-detail-cont .result-title .num {
	font-weight: 900;
	color: var(--primary-color);
}
.survey-detail-cont .result-item:has(.result-title .name):hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
.survey-detail-cont .result-item:has(.result-title .name):hover * {
	color: #fff;
}
.survey-detail-cont .result-info {
	color: #9e9e9e;
	font-size: var(--font-size-14);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.survey-detail-cont .result-info .info {
	position: relative;
}
.survey-detail-cont .result-info .info:not(:first-child)::before {
	display: block;
	content: "/";
	position: absolute;
	left: -12px;
	top: 0;
}
.survey-detail-cont .result-item .delete {
	color: #9e9e9e;
	line-height: 1;
	margin-top: -4px;
}
.survey-detail-cont .m-pagination.type01 {
	margin: 30px 0 0;
}
@media all and (max-width: 1023px) {
	.survey-detail-wrap {
		display: block;
	}
	.survey-nav {
		width: 100%;
		margin-bottom: 30px;
	}
	.survey-nav .list-box {
		display: flex;
	}
	.survey-nav li {
		flex: 1 1 auto;
	}
	.survey-nav li:not(:last-child) {
		border-bottom: none;
		border-right: 1px solid #eaeaea;
	}
	.survey-nav .lnk {
		justify-content: center;
		min-height: 55px;
	}
	.survey-detail-cont .group-box .title {
		font-size: var(--font-size-28);
	}
	.survey-detail-cont .group-box .title::before {
		top: 1px;
	}
	.survey-detail-cont .card-box + .card-box.group {
		margin-top:80px;
	}
	.survey-detail-cont .card-info {
		padding-right: 120px;
	}
	.survey-detail-cont .result-item .delete {
		margin-top: -1px;
	}
}
@media all and (max-width: 767px) {
	.survey-nav {
		margin-bottom: 25px;
	}
	.survey-nav .lnk {
		padding: 0 20px;
		min-height: 45px;
	}
	.survey-detail-cont .group-box {
		gap: 5px;
		margin-bottom:20px;
		justify-content: flex-start;
	}
	.survey-detail-cont .group-box .title {
		font-size: var(--font-size-20);
		padding-left: 24px;
	}
	.survey-detail-cont .group-box .btn-default {
		order:3;
		margin-top:10px;
	}
	.survey-detail-cont .card-box {
		padding: 20px;
		margin-top: 15px;
	}
	.survey-detail-cont .card-box + .card-box.group {
		margin-top:40px;
	}
	.survey-detail-cont .card-box.group::before,
	.survey-detail-cont .card-box.group::after {
		border-width: 25px;
	}
	.survey-detail-cont .card-box.group::before {
		right: -17px;
		bottom:-4px;
	}
	.survey-detail-cont .card-box.group::after {
		right: 1px;
		bottom:13px;
	}
	.survey-detail-cont .card-box.group .card-title {
		font-size: 1.3em;
		margin-bottom:3px;
	}
	.survey-detail-cont .card-box.group .card-desc {
		font-size: var(--font-size-14);
	}
	.survey-detail-cont .group-info .date {
		font-size: 1em;
		padding-left:24px;
	}
	.survey-detail-cont .group-info .date::before {
		width: 15px;
	}
	.survey-detail-cont .group-info .info-box {
		font-size: var(--font-size-14);
		gap:1px 15px;
	}
	.survey-detail-cont .group-info .info:not(:first-child)::before {
		left:-8px;
		height: 10px;
	}
	.survey-detail-cont .card-box:has(.loading-default) {
		min-height: 300px;
	}
	.survey-detail-cont .card-title-box {
		margin-bottom: 15px;
	}
	.survey-detail-cont .card-type {
		font-size: var(--font-size-14);
		margin-bottom: 2px;
	}
	.survey-detail-cont .card-title {
		font-size: var(--font-size-20);
	}
	.survey-detail-cont .card-info {
		margin-top: 10px;
		font-size: var(--font-size-14);
		padding-right: 0;
	}
	.survey-detail-cont .result-item {
		padding: 15px;
		gap: 5px;
	}
	.survey-detail-cont .result-title {
		font-size: 0.95em
	}
	.survey-detail-cont .result-info {
		font-size: var(--font-size-13);
		gap: 15px;
	}
	.survey-detail-cont .result-info .info:not(:first-child)::before {
		left: -10px;
	}
	.survey-detail-cont .card-info .select {
		position: static;
		right: auto;
		top: auto;
		transform: none;
	}
	.survey-detail-cont .result-item .delete {
		font-size: 1.1em;
		margin: 0;
	}
	.survey-detail-cont .m-pagination.type01 {
		margin-top: 20px;
	}
}


[data-graph="cont"] {
	display: none !important;
}
[data-graph="cont"].active {
	display: block !important;
}
.survey-detail-cont .chart-box {
	background: #fafafa;
	border: 1px solid #f2f2f2;
	border-radius: 10px;
	padding: 50px 80px;
	min-height: 500px;
}
.survey-detail-cont .chart-box .mypage-content-filter {
	margin-bottom:20px;
}
.survey-detail-cont .chart-box .mypage-content-filter.end {
	justify-content: flex-end;
}
.survey-detail-cont .chart-box .filter-box .btn:not(.active) {
	background:#fff;
}
.survey-detail-cont .chart-box .filter-box .ico-custom {
	margin-right:5px;
}
.survey-detail-cont .chart-box .type-box .btn {
	color: #bbb;
	background: #fff;
}
.survey-detail-cont .chart-item[data-graph-idx="pie"] {
	max-width: 420px;
	margin:0 auto;
}
.survey-detail-cont .table {
	margin-top: 30px;
}
.survey-detail-cont .table table {
	width: 100%;
	table-layout: fixed;
	text-align: center;
}
.survey-detail-cont .table tr {
	border-bottom: 1px solid #e8e8e8;
}
.survey-detail-cont .table :is(th, td) {
	padding: 10px 20px;
}
.survey-detail-cont .table .title {
	background: #eee;
}
.survey-detail-cont .table .sum {
	background: #b7b7b7;
}
.survey-detail-cont .table .max {
	background: #d8f6ff;
}
.survey-detail-cont .table .sum :is(th, td) {
	color: #fff;
	font-weight: 600;
}
@media all and (max-width: 1023px) {
	.survey-detail-cont .chart-box {
		padding: 40px;
		min-height: 200px;
	}
}
@media all and (max-width: 767px) {
	.survey-detail-cont .chart-box {
		padding: 0;
		background: none;
		border: none;
	}
	.survey-detail-cont .table {
		margin-top: 20px;
		font-size: 0.95em;
	}
	.survey-detail-cont .table :is(th, td) {
		padding: 10px;
	}
}
.survey-detail-cont.view .card-box {
	border:none;
	margin:0;
}



.survpd-service {
	letter-spacing: -1px;
}
.survpd-service .container {
	max-width: 1040px;
	padding:0 20px;
	margin:0 auto;
	width: 100%;
}
.survpd-service .btn-default-box {
	margin-top:80px;
}
.survpd-service .btn-default {
	min-width: 280px;
	border-radius: 50px;
	font-size: var(--font-size-20);
	height: 60px;
	gap: 10px;
	font-weight: 500;
}
.survpd-service .btn-default .ico-custom {
	opacity: 0.8;
	vertical-align: middle;
	margin-top:2px;
}
@media all and (max-width: 1023px) {
	.survpd-service .btn-default-box {
		margin-top:60px;
	}
	.survpd-service .btn-default {
		font-size: var(--font-size-18);
	}
}
@media all and (max-width: 767px) {
	.survpd-service .btn-default-box {
		margin-top:40px;
	}
	.survpd-service .btn-default {
		min-width: auto;
		height: 50px;
		font-size: 1em;
		font-weight: 400;
		padding:0 40px;
	}
}

.survpd-service-effect {
	padding:120px 0;
	background: linear-gradient(rgba(69,159,255,1) 0%, rgba(250,252,255,0) 80%);
	position: relative;
	z-index: 1;
}
.survpd-service-effect::before {
	display: block;
	content:"";
	width: 100%;
	height: 100%;
	position: absolute;
	left:0;
	top:0;
	background: url("../img/contents/survpd-service-spiral.png") no-repeat center bottom / 90%;
	z-index: -1;
}
.survpd-service-effect .title-box {
	text-align: center;
	color: #fff;
	padding-bottom:80px;
}
.survpd-service-effect .desc {
	font-size: var(--font-size-30);
	margin-bottom:5px;
}
.survpd-service-effect .title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap:10px;
	font-size: 3em;
	letter-spacing: -1.5px;
}
.survpd-service-effect .cont-box {
	text-align: center;
	position: relative;
}
.survpd-service-effect .text-box {
	display: inline-block;
	vertical-align: top;
	position: absolute;
	padding-bottom:10px;
	left:0;
	top:0;
	z-index: 1;
}
.survpd-service-effect .text-box::before {
	display: block;
	content:"";
	width: 22px;
	height: 27px;
	background:url("../img/contents/survpd-service-bubble1.png") no-repeat left top;
	position: absolute;
	left: -8px;
	bottom: 6px;
}
.survpd-service-effect .text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding:0 40px;
	height: 62px;
	border:1px solid var(--seconary-color);
	border-radius: 50px;
	font-size: var(--font-size-18);
	background:#fff;
	color: var(--seconary-color);
	font-weight: 500;
}
.survpd-service-effect .text-box .opt-strong {
	font-weight: 800;
}
.survpd-service-effect .text-box.opt-type2 {
	left:auto;
	top:auto;
	right: 0;
	bottom:0;
}
.survpd-service-effect .text-box.opt-type2::before {
	background-image: url("../img/contents/survpd-service-bubble2.png");
	left: auto;
	right:-7px;
	z-index: -1;
	opacity: 0.9;
}
.survpd-service-effect .text-box.opt-type2 .text {
	background:var(--seconary-color);
	color: #fff;
}
.survpd-service-effect .text-box .opt-point {
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.survpd-service-effect .text-box .opt-point::before {
	display: block;
	content:"";
	width: 5px;
	height: 5px;
	background:var(--seconary-color);
	border-radius: 100%;
	position: absolute;
	left:50%;
	top:-5px;
	transform:translateX(-50%);
}
.survpd-service-effect .text-box.opt-type2 .opt-point::before {
	background: #fff;
}
@media all and (max-width: 1023px) {
	.survpd-service-effect {
		padding:75px 0 100px;
	}
	.survpd-service-effect::before {
		background-size: 100%;
		background-position: center 72%;
	}
	.survpd-service-effect .text {
		padding:0 30px;
	}
	.survpd-service-effect .desc {
		font-size: var(--font-size-28);
	}
	.survpd-service-effect .title-box {
		padding-bottom:0;
	}
	.survpd-service-effect .title {
		font-size: 2.8em;
	}
	.survpd-service-effect .title img {
		max-width: 50px;
	}
}
@media all and (max-width: 767px) {
	.survpd-service-effect {
		padding:50px 0 70px;
	}
	.survpd-service-effect::before {
		background-position: center 58%;
	}
	.survpd-service-effect .desc {
		font-size: var(--font-size-18);
		margin:0;
	}
	.survpd-service-effect .title {
		font-size: 1.9em;
		gap:5px;
	}
	.survpd-service-effect .title img {
		max-width: 31px;
	}
	.survpd-service-effect .text {
		padding:0 20px;
		height: 50px;
		font-size: 1em;
	}
	.survpd-service-effect .text-box::before {
		width: 18px;
		height: 22px;
		background-size: contain;
		left: -7px;
		bottom:8px;
	}
	.survpd-service-effect .text-box .opt-point::before {
		width: 4px;
		height: 4px;
	}
	.survpd-service-effect .cont-box {
		padding: 65px 0 85px;
		margin-top: 40px;
	}
}

.survpd-service-info {
	margin-bottom: 100px;
}
.survpd-service-info .cont-box {
	position: relative;
	z-index: 1;
}
.survpd-service-info .cont-box::before,
.survpd-service-info .img-box::before {
	display: block;
	content:"";
	width: 400px;
	padding-top:400px;
	position: absolute;
	top:50%;
	transform:translateY(-50%);
	background: #edf7ff;
	border-radius: 100%;
	z-index: -1;
}
.survpd-service-info .cont-box.ico1::before {
	right: -10%;
}
.survpd-service-info .cont-box.ico2::before {
	left: -10%;
}
.survpd-service-info .cont-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.survpd-service-info .text-box {
	font-size: var(--font-size-30);
	position: relative;
	z-index: 1;
}
.survpd-service-info .opt-strong {
	font-weight: 800;
}
.survpd-service-info .opt-point {
	color: #1d2a6e;
}
.survpd-service-info .text-box img {
	max-width: 28px;
	vertical-align: middle;
	margin:-5px 5px 0 0;
}
.survpd-service-info .img-box {
	margin:0 0 0 -15%;
	position: relative;
	z-index: 1;
}
.survpd-service-info .cont-box.ico1 .img-box {
	margin:0 -15% 0 0;
}
.survpd-service-info .cont-box.ico1 .img-box::before {
	left: -40%;
}
.survpd-service-info .cont-box.ico2 .img-box::before {
	right: -10%;
}
.survpd-service-info .bubble {
	text-align: center;
	font-size: var(--font-size-28);
	padding:150px 50px 100px;
	line-height: 1.5;
	position: relative;
	border-bottom:3px solid #d7d7d7;
}
.survpd-service-info .bubble .desc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background:var(--primary-color);
	color: #fff;
	font-weight: 700;
	border-radius: 10px;
	padding:0 10px;
	height: 38px;
	position: relative;
	margin:0 8px;
	line-height: 1;
}
.survpd-service-info .bubble .desc:not(:last-of-type)::after {
	display: block;
	content:"";
	width: 5px;
	height: 5px;
	background:var(--seconary-color);
	border-radius: 100%;
	position: absolute;
	right:-10px;
	top:50%;
	transform:translateY(-50%);
}
.survpd-service-info .bubble img {
	max-width: 28px;
	margin:-5px 5px 0 0;
	vertical-align: middle;
}
.survpd-service-info .bubble::after {
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	bottom: -21px;
	transform: translateX(-50%) rotate(45deg);
	width: 20px;
	height: 32px;
	background: #fff;
	border-right: 3px solid #d7d7d7;
}
@media all and (max-width: 1023px) {
	.survpd-service-info .cont-row {
		gap:20px;
		margin-bottom:20px;
	}
	.survpd-service-info .cont-box::before,
	.survpd-service-info .cont-box .img-box::before {
		display: none;
	}
	.survpd-service-info .cont-box.ico1 .img-box {
		margin:0;
		max-width: 350px;
	}
	.survpd-service-info .cont-box.ico2 .img-box {
		margin:0;
		max-width: 400px;
	}
	.survpd-service-info .text-box {
		font-size: 1.65em;
	}
	.survpd-service-info .bubble {
		padding:80px 20px;
		font-size: var(--font-size-24);
	}
	.survpd-service-info .bubble .desc {
		height: 35px;
		font-weight: 500;
	}
}
@media all and (max-width: 767px) {
	.survpd-service-info {
		margin-bottom:40px;
	}
	.survpd-service-info .cont-row {
		flex-direction: column;
		text-align: center;
		margin-bottom:40px;
		gap:15px 0;
	}
	.survpd-service-info .cont-box.ico1 .cont-row {
		flex-direction: column-reverse;
	}
	.survpd-service-info .text-box {
		font-size: var(--font-size-20);
	}
	.survpd-service-info .text-box img {
		max-width: 20px;
	}
	.survpd-service-info .cont-box.ico1 .img-box {
		max-width: 200px;
	}
	.survpd-service-info .cont-box.ico2 .img-box {
		max-width: 225px;
	}
	.survpd-service-info .bubble {
		padding:20px 0 30px;
		font-size: var(--font-size-18);
	}
	.survpd-service-info .bubble .desc {
		height: 25px;
		font-weight: 400;
		padding: 0 7px 1px 7px;
		margin: 0 5px;
	}
	.survpd-service-info .bubble .desc:not(:last-of-type)::after {
		width: 3px;
		height: 3px;
		right: -6px;
	}
	.survpd-service-info .bubble img {
		max-width: 20px;
	}
}

.survpd-service-guide + .survpd-service-guide {
	margin-top:100px;
}
.survpd-service-guide .title-box {
	padding:40px 0;
}
.survpd-service-guide .title {
	font-weight: 800;
	color: var(--primary-color);
	font-size: 2.4em;
	display: flex;
	align-items: center;
	gap:10px;
	margin-bottom:10px;
}
.survpd-service-guide .title::before {
	display: block;
	content:"";
	background:url("../img/contents/survpd-emblem2.png") no-repeat left center / contain;
	width: 50px;
	height: 50px;
}
.survpd-service-guide .desc-box {
	font-size: var(--font-size-20);
	color: #777;
	display: flex;
	flex-wrap: wrap;
	gap:2px 30px;
}
.survpd-service-guide .desc {
	display: inline-flex;
	gap:5px;
}
.survpd-service-guide .desc::before {
	display: block;
	content:"·";
}
.survpd-service-guide .cont-box {
	padding:100px 0 120px;
}
.survpd-service-guide .cont-box.opt-gray {
	background: #f5f5f5;
}
.survpd-service-guide .img-box {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.survpd-service-guide .img-box iframe {
	width: 100%;
	height: 600px;
	vertical-align: top;
}
.survpd-service .banner {
	display: block;
}
.survpd-service .banner.mo {
	display: none;
}
.survpd-service .banner img {
	width: 100%;
}
@media all and (max-width: 1023px) {
	.survpd-service-guide + .survpd-service-guide {
		margin-top:50px;
	}
	.survpd-service-guide .title {
		font-size:var(--font-size-28);
	}
	.survpd-service-guide .title::before {
		width: 36px;
		height: 36px;
	}
	.survpd-service-guide .desc-box {
		font-size: var(--font-size-18);
		gap:2px 20px;
	}
	.survpd-service-guide .cont-box {
		padding:75px 0;
	}
}
@media all and (max-width: 767px) {
	.survpd-service-guide + .survpd-service-guide {
		margin-top:40px;
	}
	.survpd-service-guide .title {
		font-size: 1.4em;
		margin-bottom:5px;
	}
	.survpd-service-guide .title-box {
		padding:20px 0;
	}
	.survpd-service-guide .title::before {
		width: 26px;
		height: 26px;
	}
	.survpd-service-guide .desc-box {
		font-size: var(--font-size-14);
	}
	.survpd-service-guide .cont-box {
		padding:40px 0;
	}
	.survpd-service-guide .img-box iframe {
		height: 350px;
	}
	.survpd-service .banner.pc {
		display: none;
	}
	.survpd-service .banner.mo {
		display: block;
	}
}

.survpd-service-result {
	padding:100px 0;
}
.survpd-service-result .title-box {
	padding:40px 0;
}
.survpd-service-result .title {
	font-weight: 800;
	color: var(--primary-color);
	font-size: 2.4em;
	display: flex;
	align-items: center;
	gap:10px;
	margin-bottom:10px;
}
.survpd-service-result .title::before {
	display: block;
	content:"";
	background:url("../img/contents/survpd-service-icon.png") no-repeat left center / contain;
	width: 50px;
	height: 50px;
}
.survpd-service-result .cont-box {
	padding:60px 0;
}
.survpd-service-result .img-box:not(:last-child) {
	margin-bottom:100px;
}
.survpd-service-result .img-box {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
@media all and (max-width: 1023px) {
	.survpd-service-result {
		padding:50px 0;
	}
	.survpd-service-result .title {
		font-size:var(--font-size-28);
	}
	.survpd-service-result .title::before {
		width: 36px;
		height: 36px;
	}
	.survpd-service-result .cont-box {
		padding:40px 0;
	}
	.survpd-service-result .img-box:not(:last-child) {
		margin-bottom:50px;
	}
}
@media all and (max-width: 767px) {
	.survpd-service-result {
		padding:40px 0;
	}
	.survpd-service-result .title {
		font-size: 1.4em;
		margin-bottom:5px;
	}
	.survpd-service-result .title-box {
		padding:20px 0;
	}
	.survpd-service-result .title::before {
		width: 26px;
		height: 26px;
	}
	.survpd-service-result .cont-box {
		padding:20px 0;
	}
	.survpd-service-result .img-box:not(:last-child) {
		margin-bottom:40px;
	}
}

.survpd-service-review .title-box {
	padding:40px 0;
	text-align: center;
}
.survpd-service-review .title {
	font-weight: 800;
	font-size: 2.4em;
	margin-bottom:20px;
}
.survpd-service-review .title .strong {
	font-weight: inherit;
	color: var(--primary-color);
}
.survpd-service-review .desc {
	font-size: var(--font-size-18);
	color: #afafaf;
}
.survpd-service-review .cont-box {
	padding:60px 0;
	background: #f6f6f6 url("../img/contents/survpd-service-bg.png") repeat;
	overflow: hidden;
}
.survpd-service-review .img-box {
	display: flex;
	flex-wrap: wrap;
	gap: 35px 15px;
}
.survpd-service-review .img-box img:nth-child(3) {
	margin-left: auto;
}
@media all and (max-width: 1023px) {
	.survpd-service-review .title {
		font-size:var(--font-size-28);
	}
	.survpd-service-review .title::before {
		width: 36px;
		height: 36px;
	}
	.survpd-service-review .desc {
		font-size: 1em;
	}
	.survpd-service-review .cont-box {
		padding:40px 0;
	}
}
@media all and (max-width: 889px) {
	.survpd-service-review .img-box {
		gap: 25px 15px;
	}
	.survpd-service-review .img-box img:nth-child(odd) {
		margin-left: auto;
	}
}
@media all and (max-width: 767px) {
	.survpd-service-review .title {
		font-size: 1.4em;
		margin-bottom:10px;
	}
	.survpd-service-review .title-box {
		padding:20px 0;
	}
	.survpd-service-review .desc {
		font-size: var(--font-size-14);
		word-break: keep-all;
		text-wrap: pretty;
	}
	.survpd-service-review .img-box {
		gap: 15px 15px;
	}
}
/* ## 섭피디 e ## */


/* ## 문피디 s ## */
.moonpd-service {
	letter-spacing: -1px;
}
.moonpd-service .container {
	max-width: 1040px;
	padding:0 20px;
	margin:0 auto;
	width: 100%;
}
.moonpd-service .opt-yellow {
	color: #ffd601;
}
.moonpd-service .opt-strong {
	font-weight: 800;
}
.moonpd-service .title-box {
	text-align: center;
	word-break: keep-all;
}
.moonpd-service .title-box .title {
	margin-bottom: 60px;
	font-size: 2.75em;
	font-weight: 800;
	color: var(--seconary-color);
}
.moonpd-service .title-box .desc {
	font-size: var(--font-size-20);
	line-height: 1.5;
}
.moonpd-service .btn-default-box {
	margin-top: 70px;
}
.moonpd-service .btn-default {
	min-width: 260px;
	font-size: var(--font-size-18);
	height: 60px;
}
.moonpd-service :is(.swiper-btn-prev, .swiper-btn-next) {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f6f6f6;
	color: #c9c9c9;
}
.moonpd-service .swiper-btn-prev::after {
	content: "\f060";
	font-weight: 900;
}
.moonpd-service .swiper-btn-next::after {
	content: "\f061";
	font-weight: 900;
}
.moonpd-service .swiper-button-disabled {
	opacity: 0.5;
}
@media all and (max-width: 1023px) {
	.moonpd-service .title-box .title {
		margin-bottom: 50px;
		font-size: 2.125em;
	}
	.moonpd-service .title-box .desc {
		font-size: var(--font-size-18);
	}
	.moonpd-service .btn-default-box {
		margin-top: 50px;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service .title-box .title {
		margin-bottom: 40px;
		font-size: var(--font-size-28);
	}
	.moonpd-service .title-box .desc {
		font-size: 1em;
	}
	.moonpd-service .btn-default-box {
		margin-top: 40px;
	}
	.moonpd-service .btn-default {
		min-width: auto;
		height: 50px;
		font-size: 1em;
		padding:0 20px;
	}
	.moonpd-service :is(.swiper-btn-prev, .swiper-btn-next) {
		width: 38px;
		height: 38px;
	}
}

.moonpd-service-worth {
	background: url("../img/contents/moonpd-service-worth-bg.png") no-repeat center / cover;
	overflow: hidden;
}
.moonpd-service-worth .title-box {
	padding: 130px 0 30px;
}
.moonpd-service-worth .title-box .title {
	font-family: var(--secondary-font);
	font-size: 3.25em;
	color: #fff;
}
.moonpd-service-worth .title-box .desc {
	font-size: var(--font-size-24);
	font-weight: 300;
	color: #fff;
}
.moonpd-service-worth .cont-box {
	text-align: center;
}
@media all and (max-width: 1023px) {
	.moonpd-service-worth .title-box {
		padding: 100px 0 0;
	}
	.moonpd-service-worth .title-box .title {
		font-size: 2.5em;
	}
	.moonpd-service-worth .title-box .desc {
		font-size: var(--font-size-20);
	}
	.moonpd-service-worth .cont-box img {
		width: 400px;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service-worth {
		background-position-x: 25%;
	}
	.moonpd-service-worth .title-box {
		padding: 60px 0 0;
	}
	.moonpd-service-worth .title-box .title {
		font-size: var(--font-size-30);
	}
	.moonpd-service-worth .title-box .desc {
		font-size: var(--font-size-18);
	}
	.moonpd-service-worth .cont-box img {
		width: 300px;
	}
}

.moonpd-service-with {
	padding: 150px 0 60px;
}
.moonpd-service-with .cont-box {
	position: relative;
}
.moonpd-service-with .swiper {
	width: 100%;
	height: 100%;
}
.moonpd-service-with .swiper .swiper-wrapper {
	display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
}
.moonpd-service-with .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	height: 100px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #eaf0f5;
}
.moonpd-service-with .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
}
.moonpd-service-with :is(.swiper-btn-prev, .swiper-btn-next) {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	background: #eef5ff;
	color: #94bdff;
}
.moonpd-service-with .swiper-btn-prev {
	left: -65px;
}
.moonpd-service-with .swiper-btn-next {
	right: -65px;
}
@media all and (max-width: 1023px) {
	.moonpd-service-with {
		padding: 100px 0 50px;
	}
	.moonpd-service-with .swiper-slide {
		height: 80px;
	}
	.moonpd-service-with :is(.swiper-btn-prev, .swiper-btn-next) {
		display: none;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service-with {
		padding: 60px 0 30px;
	}
	.moonpd-service-with .swiper .swiper-wrapper {
		grid-template-rows: repeat(6, 1fr);
	}
	.moonpd-service-with .swiper-slide {
		margin-top: 8px;
		height: 70px;
	}
}

.moonpd-service-ebook {
	padding-top: 180px;
	background: linear-gradient(#fff, #e4f5ff);
	overflow: hidden;
}
.moonpd-service-ebook .list-box {
	display: flex;
	justify-content: space-between;
	text-align: center;
	padding-top: 130px;
}
.moonpd-service-ebook .list-box p {
	margin-top: 25px;
	font-weight: 700;
	font-size: var(--font-size-20);
}
@media all and (max-width: 1023px) {
	.moonpd-service-ebook {
		padding-top: 120px;
	}
	.moonpd-service-ebook .list-box {
		padding-top: 80px;
		justify-content: center;
		gap: 30px;
	}
	.moonpd-service-ebook .list-box p {
		margin-top: 20px;
		font-size: var(--font-size-18);
	}
	.moonpd-service-ebook .list-box img {
		width: 95px;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service-ebook {
		padding-top: 80px;
	}
	.moonpd-service-ebook .list-box {
		padding-top: 40px;
		flex-wrap: wrap;
		gap: 30px 20px;
	}
	.moonpd-service-ebook .list-box p {
		margin-top: 10px;
		font-size: 1em;
	}
	.moonpd-service-ebook .list-box img {
		width: 72px;
	}
}

.flow-text {
	margin-top: 100px;
	display: flex;
}
.flow-text .text {
	padding: 0 30px;
	font-size: 6em;
	font-weight: 500;
	color: #d4f0ff;
	white-space: nowrap;
	animation: 8s flow infinite linear;
}
@keyframes flow {
	0% {transform: translateX(0)}
	100% {transform: translateX(-200%)}
}
@media all and (max-width: 1023px) {
	.flow-text {
		margin-top: 60px;
	}
	.flow-text .text {
		padding: 0 20px;
		font-size: 4.5em;
	}
}
@media all and (max-width: 767px) {
	.flow-text {
		margin-top: 50px;
	}
	.flow-text .text {
		padding: 0 8px;
		font-size: 4em;
		letter-spacing: -3px;
	}
}

.moonpd-service-why {
	padding: 70px 0 180px;
	background: #e4f5ff;
}
.moonpd-service-why .list-box {
	padding-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
.moonpd-service-why .list-box li {
	flex: 0 0 calc((100% - 32px) / 2);
	padding: 35px 40px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(167,196,212,0.25);
}
.moonpd-service-why .list-box .tit {
	font-size: var(--font-size-24);
	font-weight: 800;
	color: #142b6f;
	padding: 20px 0;
}
.moonpd-service-why .list-box .desc {
	color: #707070;
	word-break: keep-all;
}
@media all and (max-width: 1023px) {
	.moonpd-service-why {
		padding: 70px 0 120px;
	}
	.moonpd-service-why .list-box {
		padding-top: 80px;
		gap: 20px;
	}
	.moonpd-service-why .list-box li {
		flex: 0 0 calc((100% - 25px) / 2);
		padding: 30px 35px;
	}
	.moonpd-service-why .list-box .tit {
		font-size: var(--font-size-20);
		padding: 15px 0;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service-why {
		padding: 60px 0 80px;
	}
	.moonpd-service-why .list-box {
		padding-top: 40px;
		gap: 15px;
	}
	.moonpd-service-why .list-box li {
		flex: 0 0 100%;
		padding: 22px 28px;
	}
	.moonpd-service-why .list-box .tit {
		font-size: var(--font-size-20);
	}
	.moonpd-service-why .list-box .desc {
		font-size: var(--font-size-14);
	}
	.moonpd-service-why .list-box img {
		width: 42px;
	}
}

.moonpd-service-detail {
	padding: 200px 0 150px;
}
.moonpd-service-detail .list-box > li {
	--point-color: #459fff;
	--light-color: #e9f4ff;
}
.moonpd-service-detail .list-box > li {
	position: relative;
	margin-bottom: 250px;
}
.moonpd-service-detail .list-box > li:last-child {
	margin-bottom: 0;
}
.moonpd-service-detail .list-box > li::after {
	position: absolute;
	bottom: 100%;
	right: 0;
	font-size: 5em;
	font-weight: 800;
	color: var(--light-color);
	text-transform: uppercase;
}
.moonpd-service-detail .list-box li:nth-child(1)::after {content: "edit";}
.moonpd-service-detail .list-box li:nth-child(2)::after {content: "statistics";}
.moonpd-service-detail .list-box li:nth-child(3)::after {content: "My Page";}
.moonpd-service-detail .list-box li:nth-child(4)::after {content: "Share";}
.moonpd-service-detail .swiper-slide {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.moonpd-service-detail .swiper-control {
	position: absolute;
	z-index: 5;
	bottom: 0;
	display: flex;
	gap: 10px;
}
.moonpd-service-detail .title-box {
	flex: 0 0 32%;
	background: #fff;
	text-align: left;
	padding-bottom: 62px;
	word-break: keep-all;
}
.moonpd-service-detail .title-box .title {
	margin: 20px 0 45px;
	color: #000;
}
.moonpd-service-detail .title-box .text {
	font-size: 1.625em;
	font-weight: 700;
	color: var(--point-color);
	margin-bottom: 15px;
}
.moonpd-service-detail .title-box .desc {
	font-size: var(--font-size-18);
	color: #858585;
}
.moonpd-service-detail .title-box .mark {
	display: inline-block;
	padding: 7px 22px;
	border-radius: 99px;
	background: #f2fbff;
	border: 1px solid var(--point-color);
	color: var(--point-color);
	font-size: var(--font-size-18);
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}
.moonpd-service-detail .img-box {
	flex: 0 0 560px;
	padding: 33px 33px 0;
	border-radius: 13px;
	background: var(--light-color);
	aspect-ratio: 3 / 2;
}
.moonpd-service-detail .img-box img {
	border-radius: 13px 13px 0 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.moonpd-service-detail .list-box > li:nth-child(even) {
	--point-color: #3dd1be;
	--light-color: #dafaf6;
}
.moonpd-service-detail .list-box > li:nth-child(even)::after {
	right: auto;
	left: 0;
}
.moonpd-service-detail .list-box > li:nth-child(even) .swiper-slide {
	flex-direction: row-reverse;
}
.moonpd-service-detail .list-box > li:nth-child(even) .swiper-control {
	left: 68%;
}
.moonpd-service-detail .list-box > li:nth-child(even) .title-box .mark {
	background: #fbfffd;
}
@media all and (max-width: 1023px) {
	.moonpd-service-detail {
		padding: 160px 0 110px;
	}
	.moonpd-service-detail .list-box > li {
		margin-bottom: 200px;
	}
	.moonpd-service-detail .list-box > li::after {
		font-size: 4em;
	}
	.moonpd-service-detail .swiper-control {
		gap: 8px;
	}
	.moonpd-service-detail .title-box {
		flex: 0 0 32%;
	}
	.moonpd-service-detail .title-box .title {
		margin: 10px 0 30px;
	}
	.moonpd-service-detail .title-box .text {
		font-size: var(--font-size-24);
	}
	.moonpd-service-detail .title-box .desc {
		font-size: 1em;
	}
	.moonpd-service-detail .title-box .mark {
		padding: 6px 20px;
		font-size: 1em;
	}
	.moonpd-service-detail .img-box {
		flex: 0 0 450px;
		padding: 30px 30px 0;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service-detail {
		padding: 60px 0;
	}
	.moonpd-service-detail .list-box > li {
		margin-bottom: 70px;
	}
	.moonpd-service-detail .list-box > li::after {
		display: none;
	}
	.moonpd-service-detail .swiper-slide {
		display: block;
	}
	.moonpd-service-detail .swiper-control {
		top: 0;
		right: 0;
		bottom: auto;
		left: auto !important;
	}
	.moonpd-service-detail .title-box {
		padding-bottom: 30px;
	}
	.moonpd-service-detail .title-box .title {
		margin: 10px 0 15px;
	}
	.moonpd-service-detail .title-box .text {
		font-size: 1.375em;
	}
	.moonpd-service-detail .title-box .mark {
		padding: 5px 16px;
		font-size: var(--font-size-14);
	}
	.moonpd-service-detail .img-box {
		padding: 20px 20px 0;
	}
}

.moonpd-service-system {
	padding: 130px 0;
	background: #f0f9ff;
}
.moonpd-service-system .list-box {
	padding-top: 90px;
	display: flex;
	gap: 20px;
}
.moonpd-service-system .list-box li {
	flex: 1 1 0;
	padding: 38px 34px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(69,135,240,0.35);
	position: relative;
	padding-bottom: 100px;
}
.moonpd-service-system .list-box .tit {
	margin-bottom: 16px;
	font-size: var(--font-size-24);
	font-weight: 700;
	color: #449eff;
}
.moonpd-service-system .list-box .desc {
	color: #707070;
}
.moonpd-service-system .list-box img {
	position: absolute;
	right: 30px;
	bottom: 25px;
}
@media all and (max-width: 1023px) {
	.moonpd-service-system {
		padding: 70px 0 90px;
	}
	.moonpd-service-system .list-box {
		padding-top: 60px;
	}
	.moonpd-service-system .list-box li {
		padding: 22px 25px;
		padding-bottom: 80px;
	}
	.moonpd-service-system .list-box .tit {
		font-size: 1.375em;
	}
	.moonpd-service-system .list-box img {
		right: 20px;
		bottom: 20px;
		width: 65px;
	}
}
@media all and (max-width: 767px) {
	.moonpd-service-system {
		padding: 50px 0 70px;
	}
	.moonpd-service-system .list-box {
		padding-top: 40px;
		flex-wrap: wrap;
	}
	.moonpd-service-system .list-box li {
		flex: 0 0 100%;
		padding-bottom: 50px;
	}
	.moonpd-service-system .list-box img {
		width: 55px;
	}
}

.moonpd-service-use {
	padding: 120px 0;
	background: url("../img/contents/moonpd-service-use-bg.png") left bottom;
}
.moonpd-service-use .title-box .title {
	margin-bottom: 40px;
}
@media all and (max-width: 1023px) {
	.moonpd-service-use {
		padding: 80px 0;
	}
}
/* ## 문피디 e ## */