@charset "utf-8";



.inner {
	position: relative;
	width: 100%;
	max-width: 1240px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

.m {
	display: none;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--key-color);
	z-index: 105;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
	box-sizing: border-box;
}
#header > .inner {
	height: 80px;
	gap: 50px;
}
#header .logo a img {
	vertical-align: middle;
}

#header .top_util {
	gap: 20px;
}
#header .top_util a {
	font-size: 12px;
	font-weight: 500;
	padding: 27px 0 0;
	font-family: 'Pretendard';
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: 20px;
	color: var(--white);
}
#header .top_util a.btn_login {
	background-image: url("../images/ic_login.svg");
}
#header .top_util a.btn_join {
	background-image: url("../images/ic_join.svg");
}
#header .top_util a.btn_logout {
	background-image: url("../images/ic_logout.svg");
}
#header .top_util a.btn_affiliate {
	background-image: url("../images/ic_affiliate.svg");
}
#header .top_util a.btn_memo {
	background-image: url("../images/ic_memo.svg");
}
#header .top_util a.btn_mypage {
	background-image: url("../images/ic_user.svg");
}
#header .top_area {
	background: var(--white);
}
#header .top_area .inner {
	height: 70px;
}
#header .gnb {
	flex: 1;
}
#header .gnb > ul {
	gap: 20px;
}
#header .gnb > ul > li {
	position: relative;
}
#header .gnb > ul > li > a {
	padding: 0 35px 0 15px;
	font-size: 16px;
	background: url("../images/arrow-down.svg")no-repeat calc(100% - 12px) 50%;
}
#header .gnb > ul > li > a:hover {
	color: var(--key-color);
}
#header .gnb > ul > li.no_child > a {
    display: block;
    padding: 0 15px;
    background: none;
    height: 19px;
    line-height: 19px;
    box-sizing: border-box;
}
#header .gnb > ul > li.h6 > a {
	background: url("../images/point_img.svg")no-repeat 100% 50% / 19px;
	padding-right: 27px!important;
}
#header .gnb > ul > li.h4.active > a {
	background: url("../images/arrow-down.svg")no-repeat calc(100% - 12px) 50%;
	padding-right: 35px!important;
}
#header .gnb > ul > li.active > a {
	color: var(--main_or);
	font-weight: 600;
}
#header .gnb > ul > li > .sub_category {
	display: none;
	position: absolute;
	width: 100%;
	padding-top: 20px;
}
#header .gnb > ul > li:hover > .sub_category {
	display: block;
}
#header .gnb .sub_category ul {
	position: relative;
	width: 100%;
	background: var(--white);
	text-align: center;
	overflow-y: auto;
    max-height: 80vh;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#header .gnb .sub_category ul::-webkit-scrollbar {
    display: none;
}
#header .gnb .sub_category ul li a {
	display: block;
	width: 100%;
	border-bottom: 1px solid #f3f3f3;
	padding: 12px 0;
	font-size: 14px;
}
#header .gnb .sub_category ul li a:hover {
	color: var(--key-color);
}
#header .gnb .sub_category ul li:last-child a {
	border-bottom: 0;
}
#header .top_search {
	flex: 1;
	max-width: 400px;
	border-radius: 20px;
	border: 1px solid #CDCDCD;
	overflow: hidden;
	box-sizing: border-box;
}
#header .top_search input {
	width: 100%;
	height: 40px;
	font-size: 16px;
	font-weight: 500;
	background: url("../images/ic_search.svg")no-repeat 12px 50%;
	padding: 0 12px 0 46px;
	font-family: 'Pretendard';
	box-sizing: border-box;
}
#header .btn_search {
	display: none;
	position: absolute;
	top: 10px;
	right: 45px;
}
#header .btn_search button {
	display: block;
	width: 40px;
	height: 40px;
	background: url("../images/ic_search.svg")no-repeat 50% 50%;
}

#header .menu {
	display: none;
    position: absolute;
    top: 10px;
    right: 10px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}
#header .menu a span {
	position: absolute;
	left: 10px;
	display: block;
	width: 20px;
	height: 2px;
	background: var(--black);
	transition: all .3s;
}
#header .menu a span:nth-child(1) {
	top: 13px;
}
#header .menu a span:nth-child(2) {
	top: 19px;
}
#header .menu a span:nth-child(3) {
	top: 25px;
}





.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 107;
	background: var(--white);
	overflow-y: auto;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}
.side_wrap.on {
	right: 0;
}
.side_wrap .top {
	padding: 65px 15px 25px;
}
.side_wrap .top .top_util {
	gap: 20px;
}
.side_wrap .top .top_util a {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 25px 0 0;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 17px;
    box-sizing: border-box;
}
.side_wrap .top .top_util a.btn_login {
	background-image: url("../images/ic_login.svg");
}
.side_wrap .top .top_util a.btn_join {
	background-image: url("../images/ic_join.svg");
}
.side_wrap .top .top_util a.btn_logout {
	background-image: url("../images/ic_logout.svg");
}
.side_wrap .top .top_util a.btn_memo {
	background-image: url("../images/ic_memo.svg");
}
.side_wrap .top .top_util a.btn_mypage {
	background-image: url("../images/ic_user.svg");
}
.side_wrap .top .side_close {
    position: absolute;
	top: 15px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: url("../images/ic_del.svg")no-repeat 50% 50% / 20px;
    z-index: 1;
}
.side_wrap.on .top .side_close {
	display: block;
}
.side_wrap .depth {
    padding: 0 0 30px;
}
.side_wrap .depth01 {
	position: relative;
	border-bottom: 1px solid #CDCDCD;
}
.side_wrap .depth01 a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.side_wrap .depth01 .arrow {
	position: absolute;
	top: 15px;
	right: 15px;
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images/arrow-down.svg")no-repeat 50% 50%;
}
.side_wrap .depth01.active .arrow {
	background: url("../images/arrow-down-white.svg")no-repeat 50% 50%;
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
	border-bottom: 1px solid #CDCDCD;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}



#container {
	width: 100%;
	padding-top: 200px;
}

.content {
	gap: 30px;
}


.list_table {
	font-family: 'Pretendard';
	gap: 20px;
}
.list_table .thead {
	border-radius: 10px;
	border: 1px solid #E2E2E2;
	padding: 20px 10px;
	box-sizing: border-box;
}
.list_table .thead .th {
	padding: 0 10px;
	text-align: center;
	box-sizing: border-box;
}
.list_table .tbody .tr {
	padding: 15px 10px;
	border-bottom: 1px solid #F4F4F4;
	box-sizing: border-box;
}
.list_table .tbody .td {
	padding: 0 10px;
	gap: 7px;
	font-weight: 500;
	text-align: center;
	box-sizing: border-box;
}
.list_table .th,
.list_table .td {
    width: 100px;
}
.list_table .check {
	width: 25px;
	padding: 0!important;
}
.list_table .check input {
	display: none;
}
.list_table .check input + label {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 2px;
	border: 1px solid #E2E2E2;
	box-sizing: border-box;
	margin: 0 auto;
	box-sizing: border-box;
}
.list_table .check input:checked + label {
	border: 1px solid var(--key-color);
	background: var(--key-color) url("../images/check.svg")no-repeat 50% 50% / 15px;
}
.list_table .auto {
    flex: 1;
}
.list_table .tbody .td .badge {
	font-size: 12px;
	padding: 5px;
	border-radius: 5px;
}
.list_table .tbody .td .text {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-align: left;
}
.list_table .td img {
	width: 16px;
	margin-right: 3px;
}
.list_table .fix {
	background: #F7F7F7;
}
.list_table .memo_btn {
	width: 20px;
	height: 20px;
	background: url("../images/ic_memo_black.svg")no-repeat 50% 50% / 100%;
}




.tbody {
	font-family: 'Pretendard';
}
.tbody .cont .th {
	position: relative;
	width: 120px;
	min-height: 55px;
	font-size: 16px;
	padding: 16px 0;
	border-top: 1px solid #E3E0EC;
	background: #F9F9F9;
	box-sizing: border-box;
}
.tbody .cont > .flex:last-child .th {
	border-bottom: 1px solid #E3E0EC;
}
.tbody .cont .th:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
}
.tbody .cont .th span {
    position: absolute;
    z-index: 1;
    top: 50%;
	left: 0;
	width: 100%;
    transform: translateY(-50%);
	text-align: center;
	font-family: 'Pretendard';
}
.tbody .cont .th button {
	width: 73px;
	height: 37px;
	border-radius: 3px;
	border: 0.5px solid rgba(90, 92, 105, 0.5);
	background: var(--white);
	color: #5A5C69;
	font-size: 14px;
	margin-top: 10px;
	box-sizing: border-box;
}
.tbody .cont .td {
	flex: 1;
	position: relative;
	padding: 15px 20px;
	border-top: 1px solid #E3E0EC;
}
.tbody .cont > .flex:last-child .td {
	border-bottom: 1px solid #E3E0EC;
}
.tbody .cont .td select {
    max-width: 150px;
    background-color: #f9f9f9;
    border-radius: 5px;
	opacity: 1;
}
.tbody .cont .td input[type=text],
.tbody .cont .td input[type=password] {
	width: 100%;
	height: 25px;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	color:var(--black);
	font-family: 'Pretendard';
	box-sizing: border-box;
}
.tbody .cont .td input[type=date] {
	position: relative;
	width: 100%;
    height: 30px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	background: url("../images/ico-calendar.svg")no-repeat 0 50% / 22px;
	padding-left: 30px;
}
.tbody .cont .td input[type=date]::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 0;
	top: 0; 
	width: 100%; 
	height: 100%; 
	background: transparent;
	color: transparent;
	cursor: pointer; 
}
.tbody .cont .td textarea {
	width: 100%;
	height: 135px;
	resize: none;
	padding: 0;
	border: 0;
	font-size: 16px;
}
.tbody .cont .td .grid2 {
	margin: -5px 0;
}
.tbody .cont .td .radio {
	gap: 15px;
}
.tbody .cont .td .radio > div input[type=radio] {
	display: none;
}
.tbody .cont .td .radio > div input[type=radio] + label {
	position: relative;
	font-size: 16px;
	color: #000;
	padding-left: 25px;
}
.tbody .cont .td .radio > div input[type=radio] + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #A5AEBC;
	background: var(--white);
	box-sizing: border-box;
}
.tbody .cont .td .radio > div input[type=radio]:checked + label:before {
	border: 1px solid var(--key-color);
	background: transparent;
}
.tbody .cont .td .radio > div input[type=radio]:checked + label:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--key-color);
}
.tbody .cont .no_padding {
	padding: 0!important;
}
.tbody .cont .td .check {
	gap: 10px;
}
.tbody .cont .td .check > div {
	position: relative;
}
.tbody .cont .td .check input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
	margin: 0;
}
.tbody .cont .td .check input + label {
	position: relative;
	font-weight: 400;
	padding-left: 23px;
}
.tbody .cont .td .check input + label:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 2px;
	border: 1px solid #aaa;
	box-sizing: border-box;
}
.tbody .cont .td .check input:checked + label:before {
	background: var(--key-color) url("../images/check.svg")no-repeat 50% 50% / 13px;
	border: 1px solid var(--key-color);
}
.tbody .cont .td .item {
	border-bottom: 1px solid #E0E5EC;
}
.tbody .cont .td .item:last-child {
	border-bottom: 0;
}
.tbody .cont .td .item > span {
	width: 106px;
	padding: 20px 0;
	text-align: center;
	border-right: 1px solid #E0E5EC;
	box-sizing: border-box;
}
.tbody .cont .td .item > div {
	flex: 1;
	width: 100%;
	padding: 18px 20px;
	box-sizing: border-box;
}
.tbody .cont .td .preview {
	gap: 20px;
}
.tbody .cont .td .preview .first {
	position: relative;
	width: 100%;
}
.tbody .cont .td .preview .first input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.tbody .cont .td .preview .first label {
	position: relative;
	width: 280px;
	height: 140px;
	background: #F8F9FC url("../images/label_img.svg")no-repeat 50% 50%;
	border: 1px solid #E0E5EC;
	box-sizing: border-box;
}
.tbody .cont .td .preview .box {
	position: relative;
	width: calc(20% - 16px);
	height: 0;
	padding-bottom: 18%;
	overflow: hidden;
	border: 1px solid #E0E5EC;
    box-sizing: border-box;
}
.tbody .cont .td .preview .box img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tbody .cont .td .preview .box .delBtn {
	position: absolute;
	top: 5px;
	right: 5px;
	display: block;
	width: 20px;
	height: 20px;
	background: rgba(255,255,255,0.5) url("../images/ic_del.svg")no-repeat 50% 50% / 11px;
	border-radius: 50%;
}
.tbody + .btn_area {
	justify-content: center;
	margin-top: 30px;
	gap: 10px;
}
.tbody + .btn_area button {
	flex: 1;
	height: 46px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
}



#footer {
	margin-top: 150px;
	background: #F7F7F7;
	padding: 50px 0;
}
#footer .inner {
	max-width: 1560px;
	gap: 50px;
}
#footer .logo a img {
	vertical-align: middle;
}
#footer .info {
	flex: 1;
	font-family: 'SUIT';
}
#footer .info .top {
	margin-bottom: 20px;
}
#footer .info .top a {
	font-size: 20px;
	margin-right: 20px;
	letter-spacing: -1px;
}
#footer .info .addr {
	margin-bottom: 20px;
	font-size: 0;
}
#footer .info .addr span {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 16px;
	letter-spacing: -0.8px;
}
#footer .info .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: var(--black);
	position: absolute;
	top: 5px;
	right: 0;
}
#footer .info .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}
#footer .info .addr span:last-child:after {
	display: none;
}
#footer .info .addr a {
}
#footer .info .icon {
	margin-bottom: 20px;
	gap: 20px;
}
#footer .info .icon span {
	font-size: 16px;
	letter-spacing: -0.8px;
}
#footer .info .icon span a {
}
#footer .info .icon span.tel {
	background: url("../images/ico-phone.svg")no-repeat 0 50%;
}
#footer .info .icon span.fax {
	background: url("../images/ico-fax.svg")no-repeat 0 50%;
}
#footer .info .icon span.adr {
	background: url("../images/ico-addr.svg")no-repeat 0 50%;
}
#footer .info .icon span.mail {
	background: url("../images/ico-mail.svg")no-repeat 0 50%;
}
#footer .info .copy {
	font-size: 14px;
}

#footer_fix {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: var(--white);
	border-radius: 10px 10px 0px 0px;
	padding: 10px 0;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
	box-sizing: border-box;
	z-index: 5;
}
#footer_fix ul li {
	flex: 1;
	text-align: center;
}
#footer_fix ul li a {
	display: block;
	width: 100%;
	font-size: 12px;
	background-position: 50% 10px;
	background-repeat: no-repeat;
	padding-top: 50px;
	box-sizing: border-box;
}
#footer_fix ul li.ft01 a {
	background-image: url("../images/ft01.svg");
}
#footer_fix ul li.ft01.active a {
	background-image: url("../images/ft01_on.svg?v=1");
}
#footer_fix ul li.ft02 a {
	background-image: url("../images/ft02.svg");
}
#footer_fix ul li.ft02.active a {
	background-image: url("../images/ft02_on.svg?v=1");
}
#footer_fix ul li.ft03 a {
	background-image: url("../images/ft03.svg");
}
#footer_fix ul li.ft03.active a {
	background-image: url("../images/ft03_on.svg?v=1");
}
#footer_fix ul li.ft04 a {
	background-image: url("../images/ft04.svg");
}
#footer_fix ul li.ft04.active a {
	background-image: url("../images/ft04_on.svg?v=1");
}
#footer_fix ul li.ft05 a {
	background-image: url("../images/ft05.svg");
}
#footer_fix ul li.ft05.active a {
	background-image: url("../images/ft05_on.svg?v=1");
}




.modal {
	display: none;
}
.modal .black_bg {
	display: block;
}
.modal .modal_cont {
    width: 90%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 106;
	background: var(--white);
	border-radius: 10px;
}
.modal .modal_cont.w500 {
	max-width: 500px;
}
.modal .modal_cont .scroll {
	position: relative;
	background: var(--white);
	max-height: calc(95vh - 55px);
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 50px 20px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 10px;
    right: 15px;
	z-index: 1;
	width: 24px;
	height: 24px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50%;
}
.modal .bar {
	background: #1E1E1E;
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	padding: 11px 50px 11px 20px;
	font-family: 'Pretendard';
}
.modal .txt {
	font-family: 'Pretendard';
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}
.modal .btn_area > * {
	flex: 1;
	width: 100%;
	height: 46px;
	font-size: 16px;
	font-weight: 500;
}


.not_scroll {
	overflow: hidden;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 106;
}


#memo_pop .modal_cont {
	max-width: 500px;
}
#memo_pop .form {
	padding: 10px 10px 30px;
	box-sizing: border-box;
}
#memo_pop .form .memo_write_btn {
	display: block;
	width: 100%;
	height: 56px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}
#memo_pop .form .tabs {
	gap: 10px;
}
#memo_pop .form .tabs button {
	flex: 1;
	height: 56px;
	font-size: 16px;
	color: var(--black);
	font-weight: 500;
	border-bottom: 2px solid var(--white);
	font-family: 'Pretendard';
	box-sizing: border-box;
}
#memo_pop .form .tabs button.active {
	color: var(--key-color);
	border-bottom: 2px solid var(--key-color);
}
#memo_pop .form .scroll {
	padding: 10px;
	max-height: calc(95vh - 176px);
}
#memo_pop .form .memo_list {
	gap: 10px;
}
#memo_pop .form .memo_list .item {
	position: relative;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	padding: 20px 90px 20px 20px;
	font-family: 'Pretendard';
	box-sizing: border-box;
}
#memo_pop .form .memo_list .item.new {
	border: 1px solid var(--key-color);
}
#memo_pop .form .memo_list .item .top {
	color: #7C7C7C;
	letter-spacing: -0.32px;
	margin-bottom: 10px;
}
#memo_pop .form .memo_list .item .cont {
	margin-bottom: 10px;
}
#memo_pop .form .memo_list .item .cont button {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 16px;
	line-height: 1.1;
}
#memo_pop .form .memo_list .item .date {
	color: #7C7C7C;
	font-size: 14px;
	letter-spacing: -0.28px;
}
#memo_pop .form .memo_list .item .del_btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 30px;
	border-radius: 5px;
	background: #AAA;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
}
#memo_pop .form .memo_read .form {
	gap: 20px;
	font-family: 'Pretendard';
}
#memo_pop .form .memo_read .top {
	color: #7C7C7C;
	gap: 10px;
}
#memo_pop .form .memo_read .top span {
	font-size: 14px;
}
#memo_pop .form .memo_read .content {
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	background: var(--white);
	padding: 20px;
	line-height: 1.5;
	letter-spacing: -0.32px;
	box-sizing: border-box;
}
#memo_pop .form .memo_read .btn_area {
	justify-content: center;
	gap: 10px;
}
#memo_pop .form .memo_read .btn_area button {
	width: 78px;
	height: 34px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
}

#memo_write_pop .modal_cont {
	max-width: 500px;
}
#memo_write_pop .scroll {
	padding: 20px;
}
#memo_write_pop .top {
	padding: 15px;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	margin-bottom: 20px;
	font-family: 'Pretendard';
	box-sizing: border-box;
}
#memo_write_pop .top strong {
	letter-spacing: -0.32px;
}
#memo_write_pop .top strong:after {
	content: '|';
	font-size: 16px;
	font-weight: 600;
	margin: 0 5px;
}
#memo_write_pop .top input {
	flex: 1;
	width: 100%;
	font-size: 16px;
	letter-spacing: -0.32px;
	font-family: 'Pretendard';
}
#memo_write_pop .content {
	margin-bottom: 20px;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	background: var(--white);
	padding: 20px;
	line-height: 1.5;
	letter-spacing: -0.32px;
	box-sizing: border-box;
}
#memo_write_pop .content textarea {
	display: block;
	width: 100%;
	height: calc(95vh - 261px);
	min-height: 50px;
	resize: none;
	padding: 0;
	font-size: 16px;
	font-family: 'Pretendard';
	border: 0;
}
#memo_write_pop .btn_area {
	justify-content: center;
	gap: 10px;
}
#memo_write_pop .btn_area button {
	width: 78px;
	height: 34px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Pretendard';
}


.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 5px;
	font-family: 'Pretendard';
}
.pagenavi ol li.first img, 
.pagenavi ol li.last img {
    width: 12px;
    vertical-align: -1px;
}
.pagenavi ol li.prev img, 
.pagenavi ol li.next img {
    width: 16px;
    vertical-align: -3px;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #7c7c7c;
}
.pagenavi ol li.this a {
	background: var(--key-color);
	color: #fff;
	border-radius: 50%;
}

 

.search_filter {
	border-radius: 10px;
	background: var(--white);
	padding: 20px;
	gap: 24px;
	border: 1px solid #CDCDCD;
	box-sizing: border-box;
}
.search_filter .select_box {
	gap: 10px;
}
.search_filter .select_box select {
	flex: 1;
	height: 46px;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	font-family: 'Pretendard';
}
.search_filter .theme_main {
    display: none;
}
.search_filter .theme_list {
    display: block;
}
.search_filter .theme > h3 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 15px;
}
.search_filter .theme .btn_box {
	gap: 5px;
}
.search_filter .theme .btn_box input {
	display: none;
}
.search_filter .theme .btn_box input + label {
	position: relative;
	width: calc(11.111% - 5px);
	height: 46px;
	line-height: 46px;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	background: var(--white);
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	box-sizing: border-box;
}
.search_filter .theme .btn_box input:checked + label {
	border: 1px solid var(--key-color);
	color: var(--main_or);
	background: rgba(120, 81, 251, 0.10);
	font-weight: 600;
}
.search_filter .search_box {
	gap: 10px;
}
.search_filter .search_box input {
	flex: 1;
	width: 100%;
	height: 46px;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	background: var(--white);
	font-family: 'Pretendard';
	padding: 0 20px;
	font-size: 16px;
	box-sizing: border-box;
}
.search_filter .search_box button {
	height: 46px;
	padding: 0 25px;
	border-radius: 10px;
	font-weight: 600;
}

h3.tit {
	position: relative;
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
	font-family: 'GmarketSans';
}


.prd h4 {
	font-size: 26px;
	font-weight: 400;
	text-align: center;
	padding: 20px 20px 0;
	line-height: 1.2;
	box-sizing: border-box;
}
.prd .list {
	box-sizing: border-box;
}
.prd .list ul {
	gap: 10px;
}
.prd .list .swiper {
	padding: 20px;
	margin-top: -20px;
	box-sizing: border-box;
}
.prd .list .swiper-slide {
	width: 224px;
}
.prd .list .swiper-slide .box {
	border-radius: 10px;
	background: var(--white);
	padding: 15px;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}
.prd .list .swiper-slide .box .thumb {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.prd .list .swiper-slide .box .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.prd .list .swiper-slide .box .txt {
	padding: 15px 5px;
	gap: 5px;
}
.prd .list .swiper-slide .box .txt .name p {
	font-size: 16px;
	max-width: calc(100% - 24px);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.prd .list .swiper-slide .box .wish_btn {
	width: 24px;
	height: 24px;
	background: url("../images/ic_heart.svg")no-repeat 50% 50% / 100%;
}
.prd .list .swiper-slide .box .wish_btn.on {
	background: url("../images/ic_heart_on.svg?v=1")no-repeat 50% 50% / 100%;
}
.prd .list .swiper-slide .box .txt .addr {
	font-size: 12px;
	color: #7C7C7C;
	font-weight: 500;
	font-family: "Pretendard";
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.prd .list .swiper-slide .box .txt .run_time {
	font-size: 12px;
	color: #7C7C7C;
	font-weight: 500;
	font-family: "Pretendard";
}
.prd .list .swiper-slide .box .txt .run_time span {
	display: inline-block;
}
.prd .list .swiper-slide .box .btn_form {
	gap: 5px;
}
.prd .list .swiper-slide .box .btn_form a {
	flex: 1;
	height: 30px;
	line-height: 30px;
	border-radius: 5px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
}
.prd .list .swiper-slide .box .btn_form a.w100 {
	flex: none;
	font-size: 16px;
	height: 36px;
	line-height: 38px;
}
.prd .list .swiper-slide .box .btn_form a img {
	vertical-align: middle;
	width: 15px;
	margin-right: 5px;
}
.prd .list .type_list li {
	width: 100%!important;
}
.prd .list .type_list .box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.prd .list .type_list .thumb {
	width: 80px;
	height: 80px;
	padding-bottom: 0;
}
.prd .list .type_list .txt {
	flex: 1;
	padding: 0;
}
.prd .list .type_list li .btn_form {
	margin-top: 10px;
}


.agreement {
	white-space: pre-line;
	line-height: 1.5;
}




@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1240px) {
	#header .gnb > ul {
		gap: 10px;
	}
	#header .gnb > ul > li.no_child > a {
		padding: 0 10px;
	}
	#header .top_search {
		max-width: 300px;
	}

	.prd .list .swiper {
		margin: -20px -20px 0;
	}
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 60px;
	}
	#header .btn_search,
	#header .menu {
		display: block;
	}
	#header .gnb,
	#header .top_util {
		display: none;
	}
	#header .top_area {
		display: none;
	}
	#header .top_area .inner {
		height: 65px;
	}
	#header .top_search {
		position: absolute;
		top: 10px;
		left: 10px;
		width: calc(100% - 20px);
		max-width: 100%;
	}
	
	#container {
		padding-top: 90px;
	}

	.search_filter .theme_list .btn_box input + label {
		width: calc(16.666% - 5px);
	}

	.tbody .cont .th {
		font-size: 14px;
		min-height: 45px;
	}
	.tbody .cont .td input[type=text] {
		font-size: 14px;
	}
	.tbody .cont .td input[type=date] {
		font-size: 14px;
	}
	.tbody .cont .td textarea {
		font-size: 14px;
	}
	.tbody .cont .td select {
		font-size: 14px;
	}
	.tbody .cont .td .check input + label {
		font-size: 14px;
	}
	.tbody .cont .td .item > span {
		width: 85px;
		font-size: 14px;
		padding: 13px 0;
	}
	.tbody .cont .td .item > div {
		padding: 10px 15px;
	}
	.tbody .cont .td .preview {
		gap: 10px;
	}
	.tbody .cont .td .preview .first label {
		width: 230px;
		height: 110px;
	}
	.tbody .cont .td .preview .box {
		width: calc(20% - 8px);
	}
	

	#footer {
		margin-top: 70px;
		padding-bottom: 130px;
	}
	#footer .info {
		flex: none;
		width: 100%;
	}
	#footer_fix {
		display: block;
	}
	

	.agreement {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.m {
		display: block;
	}

	#footer .inner {
		gap: 30px;
	}
	#footer .info .top a {
		font-size: 16px;
		margin-right: 10px;
	}
	#footer .info .addr {
        gap: 10px;
    }
	#footer .info .addr span {
		padding-right: 0;
		margin-right: 0;
		width: 100%;
		font-size: 14px;
	}
	#footer .info .addr span:after {
		display: none;
	}
	#footer .info .icon {
		gap: 10px;
	}
	#footer .info .icon span {
		width: 100%;
		margin-right: 0;
		font-size: 14px;
		background-size: 15px !important;
	}


	.modal .modal_cont .scroll {
		padding: 40px 20px;
	}
	.modal .close {
		top: 13px;
	}
	.modal .bar {
		padding: 15px 45px 15px 15px;
	}
	.modal .bar h3 {
		font-size: 18px;
	}
	.modal .txt {
		font-size: 16px;
	}

	#memo_pop .form .memo_write_btn {
		height: 48px;
	}
	#memo_pop .form .tabs button {
		height: 42px;
	}
	#memo_pop .form .memo_list .item {
		padding: 20px 20px 25px;
	}
	
	
	.pagenavi ol {
		gap: 0px;
	}

	.search_filter .theme > h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.search_filter .theme_list .btn_box input + label {
		width: calc(33.333% - 4px);
	}
	.search_filter .theme .btn_box input + label {
		font-size: 14px;
	}


	.list_table .thead {
		display: none;
	}
	.list_table .tbody .tr {
		gap: 10px 0;
		border-bottom: 1px solid #CDCDCD;
		padding: 10px 5px;
	}
	.list_table .td {
		width: auto!important;
		font-size: 14px;
		padding: 0 5px!important;
		border-left: 1px solid var(--black);
	}
	.list_table .td.bl0 {
		border-left: 0!important;
	}
	.list_table .td.w1 {
		border-left: 0;
	}
	.list_table .td.num {
		display: none;
	}
	.list_table .fix .td.num {
		display: block;
	}
	.list_table .td.bl0 {
		border-left: 0;
		padding-left: 0;
	}
	.list_table .td.view:before {
		content: '조회수 ';
	}
	.list_table .auto {
		flex: none;
		width: 100%!important;
		order: 100;
		border-left: 0;
	}


	.tbody .cont .th {
		width: 100%;
		text-align: left;
		padding: 10px;
		min-height: auto;
	}
	.tbody .cont .th:before {
		display: none;
	}
	.tbody .cont .th span {
		position: static;
		transform: none;
	}
	.tbody .cont .th br {
		display: none;
	}
	.tbody .cont .th button {
		width: 58px;
		height: 28px;
		margin-top: 0;
		margin-left: 10px;
	}
	.tbody .cont .td {
		flex: none;
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
	}
	.tbody .cont .td .preview .box {
        width: calc(33.3333% - 7px);
        padding-bottom: 25%;
    }
	.tbody .cont .td select {
		max-width: 100%;
	}
	.tbody + .btn_area button {
		height: 41px;
		font-size: 14px;
	}
}
@media screen and (max-width: 480px) {
	.prd h4 {
		font-size: 20px;
	}


	.search_filter .select_box select {
		flex: none;
		width: 100%;
	}
	.search_filter .theme_list .btn_box input + label {
		width: calc(50% - 3px);
	}
	.search_filter .search_box input {
		flex: none;
	}
	.search_filter .search_box button {
		width: 100%;
	}

	
	.pagenavi ol li a {
		width: 24px;
		height: 24px;
		line-height: 25px;
		font-size: 13px;
	}
}
@media screen and (max-width: 380px) {
	.search_filter .theme .btn_box input + label {
        font-size: 12px;
    }

	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 21px;
        font-size: 12px;
    }

	.tbody .cont .td .preview .first label {
        width: 100%;
        height: 110px;
        background-size: 102%;
    }
}