@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1480px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: relative;
}
#header .logo {
	justify-content: center;
	gap: 20px;
	padding: 10px 50px;
	border-bottom: 1px solid #D9D9D9;
	box-sizing: border-box;
}
#header .logo > div {
	gap: 10px;
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}
#header .logo > div p {
	font-size: 14px;
	font-weight: 700;
}
#top_area {
	position: sticky;
	top: 0;
	border-bottom: 3px solid #6A2CD8;
	background: var(--white);
	z-index: 3;
	box-sizing: border-box;
}
#top_area > ul {
	height: 56px;
	justify-content: center;
	gap: 60px;
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
#top_area > ul > li {
	position: relative;
}
#top_area > ul > li > a {
	display: block;
	min-width: 160px;
	font-weight: 600;
	text-align: center;
}
#top_area > ul > li:hover a {
	color: var(--key-color);
}
#top_area > ul > li .sub_category {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 33px;
	z-index: 1;
	box-sizing: border-box;
}
#top_area > ul > li:hover .sub_category {
	display: block;
}
#top_area > ul > li .sub_category ul {
	border: 1px solid var(--border-secondary);
	background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
	text-align: center;
	box-sizing: border-box;
}
#top_area > ul > li .sub_category ul li a {
	display: block;
	width: 100%;
	color: #777;
	padding: 10px 0;
	box-sizing: border-box;
}
#top_area > ul > li .sub_category ul li a:hover {
	background: var(--key-color);
	color: var(--white);
}
#header .menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 15px;
}
#header .menu a {
	position: relative;
	display: block;
	width: 26px;
	height: 26px;
}
#header .menu a span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 5px;
	background: var(--black);
}
#header .menu a span:nth-child(1) {
	top: 6px;
}
#header .menu a span:nth-child(2) {
	top: 12px;
}
#header .menu a span:nth-child(3) {
	top: 18px;
}





.side_wrap {
	width: 280px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: #fff;
	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 .scrollFunc .top {
	position: relative;
	padding: 35px 20px 10px;
}
.side_wrap .scrollFunc .top .side_close {
	position: absolute;
	top: 20px;
    right: 20px;
	display: block;
	width: 15px;
	height: 15px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 100%;
}
.side_wrap .scrollFunc .login_util {
    margin-top: 20px;
    width: 100%;
}
.side_wrap .scrollFunc .login_util a {
	flex: 1;
	text-align: center;
	font-size: 14px;
	background: #dadada;
    padding: 5px 0;
	border-right: 1px solid #c5c5c5;
}
.side_wrap .scrollFunc .login_util a:last-child {
	border-right: 0;
}
.side_wrap .scrollFunc .depth {
    padding: 0px 15px;
    overflow-y: auto;
    height: calc(100vh - 100px);
}
.side_wrap .scrollFunc .depth01 {
	margin: 20px 0;
}
.side_wrap .scrollFunc .depth01 > button {
	position: relative;
	width: 100%;
	text-transform: capitalize;
	font-weight: 600;
	text-align: left;
}
.side_wrap .scrollFunc .depth01 > button:after {
	content: '';
	position: absolute;
	top: 3px;
	right: 0;
	display: block;
	width: 12px;
	height: 12px;
	background: url("../images/arrow-right.svg")no-repeat 50% 50%;
	transform: rotate(90deg);
}
.side_wrap .scrollFunc .depth01.no_child > button:after {
	display: none!important;
}
.side_wrap .scrollFunc .depth01.active > button {
	color: var(--key-color);
}
.side_wrap .scrollFunc .depth01.active > button:after {
	transform: rotate(-90deg);
}
.side_wrap .scrollFunc .depth02 {
	max-height: 0;
	overflow: hidden;
	padding-left: 10px;
	box-sizing: border-box;
}
.side_wrap .scrollFunc .active .depth02 {
	max-height: 500px;
}
.side_wrap .scrollFunc .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
	margin: 20px 0;
}
.side_wrap .scrollFunc .depth .depth02 li:last-child a {
	margin-bottom: 0;
}

.login_pop {
	display: none;
}
.login_pop .close_login {
    width: 30px;
    height: 30px;
    background: url("../images/arrow-right.svg") no-repeat 50% 50% / 15px;
    transform: rotate(180deg);
    margin: 10px 10px 20px;
}
.login_pop .form {
	gap: 20px;
    padding: 0 15px;
    box-sizing: border-box;
}
.login_pop .form input[type=text],
.login_pop .form input[type=password] {
	height: 50px;
	border-radius: 5px;
	border: 1px solid var(--border-secondary);
	background: var(--white);
	padding: 0 16px;
	font-size: 14px;
	box-sizing: border-box;
}
.login_pop .form .login_btn {
	width: 100%;
	height: 46px;
	background: #333;
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
}
.login_pop .form .auto_login {
	position: relative;
}
.login_pop .form .auto_login input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.login_pop .form .auto_login input[type=checkbox] + label {
	position: relative;
	color: #777;
	font-size: 14px;
	font-weight: 500;
	padding-left: 25px;
	box-sizing: border-box;
}
.login_pop .form .auto_login input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	border: 1px solid #777;
	background: var(--white);
	box-sizing: border-box;
}
.login_pop .form .auto_login input[type=checkbox]:checked + label:before {
	border: 1px solid var(--key-color);
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50%;
}
.login_pop .form .login_util a {
	flex: 1;
	color: #777;
	font-size: 14px;
	border-right: 1px solid #777;
	text-align: center;
	box-sizing: border-box;
}
.login_pop .form .login_util a:last-child {
	border-right: 0;
}

.memo > .title {
    background: var(--key-color);
    color: var(--white);
    font-size: 20px;
    padding: 15px 20px;
    box-sizing: border-box;
}
.memo > .title .close {
    width: 20px;
    height: 20px;
    background: url("../images/ic_close_white.svg")no-repeat 50% 50% / 100%;
}
.memo_list {
	gap: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.memo_list .item {
	position: relative;
	border-radius: 10px;
	border: 1px solid #CDCDCD;
	padding: 20px 75px 20px 20px;
	box-sizing: border-box;
}
.memo_list .item .top {
	color: #7C7C7C;
	letter-spacing: -0.32px;
	margin-bottom: 10px;
}
.memo_list .item .top span {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    line-height: 15px;
    background: #f00;
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    margin-left: 3px;
    text-align: center;
}
.memo_list .item .cont {
    display: block;
	width: 100%;
	text-align: left;
	font-size: 16px;
	line-height: 1.1;
	margin-bottom: 10px;
	font-weight: 700;
}
.memo_list .item .date {
	color: #7C7C7C;
	font-size: 14px;
	margin-top: 5px;
}
.memo_list .item .del_btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 30px;
	border-radius: 5px;
	background: #777;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
}
.memo_view {
    padding: 20px;
}
.memo_view .top {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}
.memo_view .top .info {
    gap: 5px;
}
.memo_view .top .info .thumb {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
}
.memo_view .top .info .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.memo_view .content {
    padding: 15px 0;
    line-height: 1.3;
}
.memo_view .btn_area {
	gap: 10px;
	justify-content: center;
}
.memo_view .btn_area a {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
}
.memo_form {
    padding: 20px;
	box-sizing: border-box;
}
.memo_form .form {
	gap: 60px;
}
.memo_form .form .item {
	position: relative;
}
.memo_form .form .item p {
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #777;
}
.memo_form .form .item .util {
	gap: 10px;
}
.memo_form .form .item .util > * {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
.memo_form .form .item input[type=text] {
	width: 100%;
	height: 50px;
    font-size: 14px;
	border-radius: 5px;
	border: 1px solid #E2E5EA;
	padding: 0 15px;
	box-sizing: border-box;
}
.memo_form .form .item .desc {
	font-weight: 500;
}
.memo_form .form .item textarea {
	width: 100%;
	height: 200px;
    border: 1px solid #DEDEDE;
	resize: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 14px;
    box-sizing: border-box;
}
.memo_form .send_select {
	gap: 15px;
	margin-top: 30px;
}
.memo_form .send_select > div {
	position: relative;
}
.memo_form .send_select > div input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.memo_form .send_select > div input + label {
	display: inline-block;
	padding-left: 25px;
	box-sizing: border-box;
}
.memo_form .send_select > div input + label:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #777;
	border-radius: 50%;
	box-sizing: border-box;
}
.memo_form .send_select > div input:checked + label:before {
	border: 5px solid var(--key-color)
}
.memo_form .btn_area {
    justify-content: center;
	margin-top: 60px;
}
.memo_form .btn_area button {
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
}

#search_member .modal_cont {
	padding-bottom: 10px;
	max-width: 450px;
	background: #f7f7f7;
}
#search_member .form {
	padding: 60px 20px 10px;
}
#search_member .form select {
	height: 46px;
	border: 1px solid var(--border);
    max-width: 115px;
    font-size: 14px;
    border-radius: 5px;
    background-size: 20px;
    padding: 0 10px;
    background-position: calc(100% - 10px);
	margin-right: 10px;
	box-sizing: border-box;
}
#search_member .form .white_bg {
	flex: 1;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--border);
	padding: 0 20px;
	border-radius: 5px;
	gap: 10px;
	box-sizing: border-box;
}
#search_member .form input {
	flex: 1;
	width: 100%;
	height: 46px;
	font-size: 14px;
	box-sizing: border-box;
}
#search_member .form .btn_search {
	width: 18px;
	height: 18px;
	background: url("../images/ic_search.svg")no-repeat 50% 50% / 100%;
}
#search_member .result {
	padding: 10px 20px 20px;
	gap: 15px;
	box-sizing: border-box;
}
#search_member .result h4 {
	font-weight: 500;
}
#search_member .result .list {
	max-height: calc(100vh - 311px);
    overflow-y: auto;
	border: 1px solid var(--border);
	background: var(--white);
	border-radius: 5px;
	padding: 15px;
	box-sizing: border-box;
}
#search_member .result .list .item {
	position: relative;
	padding: 2px 0;
}
#search_member .result input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
#search_member .result input[type=checkbox] + label {
	position: relative;
	display: block;
	width: 100%;
	padding-left: 25px;
	box-sizing: border-box;
}
#search_member .result input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 2px;
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
}
#search_member .result input[type=checkbox]:checked + label:before {
	border: 1px solid var(--key-color);
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50% / 12px;
}
#search_member .result button {
	width: 100%;
	height: 45px;
	border-radius: 5px;
	font-size: 16px;
}

.black-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
	display: none;
}




#container {
	position: relative;
	width: 100%;
	align-items: start;
	gap: 30px;
	max-width: 1480px;
	padding: 30px 20px 50px;
	margin: 0 auto;
	box-sizing: border-box;
}
.content_left {
	order: 0;
	width: 290px;
	gap: 30px;
}
.content_left .left_login .form {
	gap: 20px;
}
.content_left .left_login .form input[type=text],
.content_left .left_login .form input[type=password] {
	height: 50px;
	border-radius: 5px;
	border: 1px solid var(--border-secondary);
	background: var(--white);
	padding: 0 16px;
	font-size: 14px;
	box-sizing: border-box;
}
.content_left .left_login .form .login_btn {
	width: 100%;
	height: 46px;
	background: #333;
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
}
.content_left .left_login .form .auto_login {
	position: relative;
}
.content_left .left_login .form .auto_login input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.content_left .left_login .form .auto_login input + label {
	position: relative;
	color: #777;
	font-size: 14px;
	font-weight: 500;
	padding-left: 25px;
	box-sizing: border-box;
}
.content_left .left_login .form .auto_login input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	border: 1px solid #777;
	background: var(--white);
	box-sizing: border-box;
}
.content_left .left_login .form .auto_login input:checked + label:before {
	border: 1px solid var(--key-color);
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50%;
}
.content_left .left_login .form .login_util a {
	flex: 1;
	color: #777;
	font-size: 14px;
	border-right: 1px solid #777;
	text-align: center;
	box-sizing: border-box;
}
.content_left .left_login .form .login_util a:last-child {
	border-right: 0;
}
.content_left .left_login .login_on {
	padding: 20px;
	box-sizing: border-box;
}
.content_left .left_login .login_on .top {
	gap: 10px;
}
.content_left .left_login .login_on .top .profile {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #ebebeb;
	box-sizing: border-box;
}
.content_left .left_login .login_on .top .profile img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content_left .left_login .login_on .top .txt h4 {
	font-size: 20px;
	margin-bottom: 10px;
}
.content_left .left_login .login_on .top .txt span {
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 5px;
	box-sizing: border-box;
}
.content_left .left_login .login_on .my_level {
	gap: 5px;
	font-size: 14px;
}
.content_left .left_login .login_on .my_level > p {
	min-width: 38px;
	text-align: center;
	color: #1A1A1A;
}
.content_left .left_login .login_on .my_level .bar {
    position: relative;
	flex: 1;
	width: 100%;
    height: 20px;
    border-radius: 20px;
    background: #F5F5F5;
    overflow: hidden;
    box-sizing: border-box;
}
.content_left .left_login .login_on .my_level .bar .line {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--key-color);
    height: 100%;
    border-radius: 20px;
}
.content_left .left_login .login_on .my_level .bar .line span {
    position: absolute;
    top: -1px;
    left: 7px;
    color: var(--white);
    text-shadow: 0px 0px 2px var(--black);
}
.content_left .left_login .login_on .my_point {
	gap: 8px;
	font-size: 14px;
}
.content_left .left_login .login_on .my_point p {
	color: #1A1A1A;
}
.content_left .left_login .login_on .my_point > div {
	gap: 5px;
}
.content_left .left_login .login_on .my_point strong {
	font-weight: 800;
}
.content_left .left_login .login_on .btn_area {
	gap: 10px;
}
.content_left .left_login .login_on .btn_area a {
	flex: 1;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 5px;
	color: var(--white);
	font-size: 14px;
}
.content_left .left_login .login_on .btn_area a.btn_memo {
	background-color: #8966BF;
}
.content_left .left_login .login_on .btn_area a.btn_modify {
	background-color: #BE5168;
}
.content_left .chat_box {
	gap: 10px;
}
.content_left .chat_box h4 .close {
	display: none;
	width: 35px;
	height: 35px;
	background: url("../images/ic_close.svg")no-repeat 50% 50%;
}
.content_left .chat_box .gray_box {
	background-color: #F7F7F7;
	gap: 20px;
	padding: 20px 10px;
	box-sizing: border-box;
}
.content_left .chat_box .now {
	gap: 10px;
	color: #777;
	font-size: 12px;
	font-weight: 700;
}
.content_left .chat_box .chat_list_box {
	position: relative;
	margin-bottom: 15px;
}
.content_left .chat_box .chat_list_box .danger {
	position: absolute;
	bottom: -45px;
	left: 0;
	width: 100%;
	color: var(--white);
	padding: 10px;
	gap: 10px;
	z-index: 1;
	box-sizing: border-box;
}
.content_left .chat_box .chat_list_box .danger.red {
	background: #D75746;
}
.content_left .chat_box .chat_list_box .danger.black {
	background: #535353;
}
.content_left .chat_box .chat_list_box .danger .thumb {
	position: relative;
	width: 25px;
	height: 25px;
	overflow: hidden;
}
.content_left .chat_box .chat_list_box .danger .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content_left .chat_box .chat_list_box .danger p {
	flex: 1;
	width: 100%;
	font-size: 10px;
	line-height: 1.3;
}
.content_left .chat_box .chat_list {
	border-radius: 5px;
	border: 1px solid #E2E5EA;
	background: var(--white);
	padding: 0 0 20px;
	gap: 30px;
	box-sizing: border-box;
}
.content_left .chat_box .chat_list ul {
    padding: 0 10px;
	min-height: 180px;
    max-height: 425px;
    overflow-y: auto;
	box-sizing: border-box;
}
.content_left .chat_box .chat_list ul::-webkit-scrollbar {
    width: 5px;
}
.content_left .chat_box .chat_list ul::-webkit-scrollbar-thumb {
    background-color: var(--key-color);
	border-radius: 50px;
}
.content_left .chat_box .chat_list ul li {
	position: relative;
	margin-bottom: 20px;
}
.content_left .chat_box .chat_list ul li:first-child {
	padding-top: 20px;
}
.content_left .chat_box .chat_list ul li .info {
	position: relative;
	gap: 5px;
}
.content_left .chat_box .chat_list ul li .info .thumb {
	position: relative;
	width: 25px;
	height: 25px;
	overflow: hidden;
	cursor: pointer;
}
.content_left .chat_box .chat_list ul li .info .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content_left .chat_box .chat_list ul li .info strong {
	font-size: 14px;
	cursor: pointer;
}
.content_left .chat_box .chat_list ul li .info ul {
	display: none;
    position: absolute;
	top: 45px;
    left: 45px;
    padding: 5px 10px;
	min-width: 120px;
	min-height: auto;
    max-height: none;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
	border-radius: 5px;
	box-sizing: border-box;
	z-index: 1;
}
.content_left .chat_box .chat_list ul li.active .info ul {
	display: block;
}
.content_left .chat_box .chat_list ul li .info ul li {
	margin: 0;
	font-size: 13px;
	padding: 3px 0;
	gap: 5px;
	text-align: left;
}
.content_left .chat_box .chat_list ul li .info ul li p {
    flex: 1;
    padding-right: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
	font-size: 12px;
    color: #aaa;
    font-weight: 500;
}
.content_left .chat_box .chat_list ul li .info ul li:first-child {
	padding-top: 3px;
}
.content_left .chat_box .chat_list ul li .info ul li span {
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 5px;
    box-sizing: border-box;
}
.content_left .chat_box .chat_list ul li .cont {
	margin-top: 5px;
	font-size: 14px;
}
.content_left .chat_box .write_box {
	padding: 10px 10px 0;
	border-top: 1px solid #E2E5EA;
	box-sizing: border-box;
}
.content_left .chat_box .write_box > div {
	gap: 10px;
}
.content_left .chat_box .write_box > div p {
	padding: 10px;
	border-radius: 5px;
	background: #F7F7F7;
	color: #777;
	font-size: 12px;
	font-weight: 600;
	box-sizing: border-box;
}
.content_left .chat_box .write_box > div textarea {
	width: 100%;
	height: 100px;
	resize: none;
	border: 0;
	padding: 10px;
	color: #333;
	font-size: 14px;
	box-sizing: border-box;
}
.content_left .chat_box .write_box > div .btn_area {
	justify-content: end;
}
.content_left .chat_box .write_box > div .btn_area button {
	width: 50px;
	height: 32px;
	border-radius: 5px;
	background: #D5D5D5;
	color: var(--white);
	font-size: 14px;
	box-sizing: border-box;
}
.content_left .chat_box .write_box > div textarea.active + .btn_area button {
	background: var(--key-color);
}
.sponser > h4 {
	margin-bottom: 10px;
}
.sponser .slide .swiper-slide .img img {
	width: 100%;
}
.sponser .slide .swiper-slide p {
	text-align: center;
	color: #777;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-top: 10px;
}
.sponser .slide .swiper-pagination {
	position: static;
	margin-top: 5px;
}
.sponser .slide .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: #D9D9D9;
	opacity: 1;
}
.sponser .slide .swiper-pagination-bullet-active {
	background: #333;
}


.content_right {
	display: none;
	order: 2;
	width: 230px;
	gap: 30px;
}
.content_right .rank .tabs > .flex > * {
	height: 34px;
	font-size: 11px;
}
.content_right .rank .box {
	border: 1px solid var(--border);
	border-top: 0;
	padding: 10px;
	box-sizing: border-box;
}
.content_right .rank .box ul {
	gap: 10px;
}
.content_right .rank .box ul li {
	gap: 5px;
	font-size: 12px;
}
.content_right .rank .box ul li .nick {
	gap: 5px;
	flex: 1;
}
.content_right .rank .box ul li .nick span {
	position: relative;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #C8C8C8;
	color: var(--white);
	font-size: 8px;
	font-weight: 700;
	justify-content: center;
	text-align: center;
}
.content_right .rank .box ul li .nick p {
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.content_right .rank .box ul li strong {
	color: #E91B23;
}
.content_right .side_board {
	border: 1px solid var(--border);
	border-top: 2px solid var(--key-color);
}
.content_right .side_board h4 {
	color: #777;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
}
.content_right .side_board .box {
	padding: 10px;
	box-sizing: border-box;
}
.content_right .side_board .box ul {
	gap: 10px;
}
.content_right .side_board .box ul li {
	gap: 5px;
	font-size: 12px;
}
.content_right .side_board .box ul li .subject {
	gap: 5px;
	flex: 1;
}
.content_right .side_board .box ul li .subject span {
	position: relative;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--key-color);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	justify-content: center;
	text-align: center;
}
.content_right .side_board .box ul li .subject p {
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.content_right .side_board .box ul li strong {
	color: #777;
	font-weight: 400;
}
.content_right .side_notice .box ul li .subject span {
	background: #E91B23;	
}



.content_center {
	order: 1;
	flex: 1;
	width: calc(100% - 320px);
}
.content_center .inner {
	padding: 0;
	gap: 30px;
}


.title_area {
	gap: 10px;
}
.title_area > strong {
	font-size: 20px;
}
.title_area .navi {
	color: #777;
}
.title_area .navi li:after {
	content: '>';
	margin: 0 5px;
}
.title_area .navi li:last-child:after {
	display: none;
}
.title_area .navi li a {
	color: #777;
}



.tbody .head {
	position: relative;
	background: #FAF7FE;
	color: var(--key-color);
	border-bottom: 1px solid #DEDEDE;
	font-size: 16px;
	font-weight: 500;
	padding: 20px;
}
.tbody .cont .th {
	position: relative;
	width: 120px;
	font-size: 16px;
	padding: 16px 0;
	box-sizing: border-box;
}
.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%);
}
.tbody .cont .td {
	flex: 1;
	position: relative;
	padding: 15px 20px;
}
.tbody .cont .td select {
    max-width: 150px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.tbody .cont .td input[type=text],
.tbody .cont .td input[type=password] {
	width: 100%;
	height: 46px;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	color:#000;
	border: 1px solid #DEDEDE;
	padding: 0 10px;
	border-radius: 5px;
	box-sizing: border-box;
}
.tbody .cont .td input[type=date] {
	position: relative;
	width: 100%;
    height: 46px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	font-family: inherit;
	background: url("../images/ico-calendar.svg")no-repeat 10px 50% / 22px;
	border: 1px solid #DEDEDE;
	padding: 0 10px 0 40px;
	border-radius: 5px;
	box-sizing: border-box;
}
.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 .td .photo_box {
	position: relative;
	gap: 10px;
}
.tbody .cont .td .photo_box input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.tbody .cont .td .photo_box label {
    position: relative;
    display: block;
    width: 130px;
    height: 100px;
    background: #f9f9f9 url("../images/label_thumbs.svg") no-repeat 50% 50%;
    border: 1px solid #dedede;
    box-sizing: border-box;
}
.tbody .cont .td .photo_box label .img_box {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
}
.tbody .cont .td .photo_box label .img_box img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tbody .cont .td .photo_box .preview {
	gap: 10px;
}
.tbody .cont .td .photo_box .preview .item {
    position: relative;
    width: calc(25% - 8px);
    height: 0;
    padding-bottom: 20%;
    border: 1px solid #dedede;
    box-sizing: border-box;
}
.tbody .cont .td .photo_box .preview .item img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tbody .cont .td .photo_box .del_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 25px;
	height: 25px;
	background: rgba(255,255,255,0.5) url("../images/ic_close.svg")no-repeat 50% 50% / 15px;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	box-sizing: border-box;
}
.tbody .cont .td.list_thumb {
	position: relative;
	gap: 15px;
}
.tbody .cont .td.list_thumb .img {
	position: relative;
	width: 100%;
	max-width: 370px;
    height: 200px;
}
.tbody .cont .td.list_thumb .img img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tbody .cont .td.list_thumb > div {
	position: relative;
}
.tbody .cont .td.list_thumb input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.tbody .cont .td.list_thumb label {
    width: 110px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
}
.tbody .cont .td.list_thumb .upload_name {
	flex: 1;
	width: 100%;
}



.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.50);
	z-index: 37;
}
.modal .modal_cont {
    width: 90%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 38;
	background: #fff;
	border-radius: 10px;
}
.modal .modal_cont .scroll {
	position: relative;
	background: #fff;
	max-height: calc(95vh - 60px);
    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: 30px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px;
    right: 20px;
	z-index: 1;
	width: 24px;
	height: 24px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	background: #1E1E1E;
	border-radius: 5px;
	color: #fff;
	font-weight: 500;
	font-size: 24px;
	padding: 15px 25px;
	box-sizing: border-box;
}
.modal .btn_blue {
	display: block;
	margin: 30px auto 0;
}

.login_modal .modal_cont {
	max-width: 450px;
}
.login_modal .form p {
	margin-bottom: 15px;
}
.login_modal .form .login_btn {
	height: 44px;
	border-radius: 5px;
}


.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: #F7F7F7;
	padding: 20px 0 40px;
	box-sizing: border-box;
}
#footer .inner {
	gap: 30px;
}
#footer .info {
	flex: 1;
	width: 100%;
	gap: 20px;
}
#footer .info .addr {
	color: var(--border-primary);
	gap: 5px 10px;
}
#footer .info span {
	position: relative;
}
#footer .info .bottom {
	padding: 14px 0;
	gap: 5px 10px;
}
#footer .info .bottom .util {
	gap: 20px;
}
#footer .info .bottom .util a {
	color: var(--gray);
}
#footer .info .bottom .copy {
	color: var(--gray);
}

#chat_fix {
	display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 5;
}
#chat_fix button {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 12px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.7);
}



.pagenavi ol {
	text-align: center;
	justify-content: center;
	gap: 5px;
}
.pagenavi ol li {
}
.pagenavi ol li.first,
.pagenavi ol li.prev,
.pagenavi ol li.next,
.pagenavi ol li.last {
	margin: 0;
}
.pagenavi .first a {
	background: url("../images/navi-first.svg")no-repeat 50% 50%;
}
.pagenavi .prev a {
	background: url("../images/navi-prev.svg")no-repeat 50% 50%;
}
.pagenavi .next a {
	background: url("../images/navi-next.svg")no-repeat 50% 50%;
}
.pagenavi .last  a {
	background: url("../images/navi-last.svg")no-repeat 50% 50%;
}
.pagenavi ol li a {
	display: block;
	width: 40px;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	border-radius: 5px;
	color: var(--sub_black_02);
}
.pagenavi ol li.this a {
	background: #35393E;
	color: #fff;
}



.tabs > .flex {
	gap: 5px;
	border-bottom: 2px solid var(--key-color);
	box-sizing: border-box;
}
.tabs > .flex > * {
	flex: 1;
	height: 49px;
	line-height: 1;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
	color: #777;
	font-size: 16px;
	text-align: center;
	border-radius: 10px 10px 0px 0px;
	border: 1px solid var(--border);
	background: var(--white);
	box-sizing: border-box;
}
.tabs > .flex > *.active {
	background: var(--key-color);
	color: var(--white);
	border: 1px solid var(--key-color);
}
.tabs > .flex > * span {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


.list_table th {
	text-align: center;
	border-top: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
	padding: 15px 5px;
}
.list_table td {
	text-align: center;
	border-bottom: 1px solid #E0E0E0;
	padding: 15px 5px;
}
.list_table td .text {
	flex: 1;
	width: 100%;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	font-weight: 500;
}
.list_table td .new_icon {
	width: 15px;
	height: 15px;
	line-height: 15px;
	background: #FF4500;
	color: var(--white);
	text-align: center;
	font-size: 10px;
	font-weight: 600;
}
.list_table td .img {
	position: relative;
	width: 45px;
	height: 45px;
	overflow: hidden;
}
.list_table td .img img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_table .fix td {
	background: #F7F7F7;
}
.list_table .fix td .badge {
	background: var(--key-color);
	color: var(--white);
	padding: 5px 10px;
	border-radius: 5px;
	box-sizing: border-box;
}
.list_table .fix td .text {
	font-weight: 700;
}
.list_table .user_td {
	position: relative;
	cursor: pointer;
}
.list_table .user_td .name {
	gap: 5px;
}
.list_table .user_td .name p {
	flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	text-align: left;
}
.list_table .user_td .thumb {
	position: relative;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	overflow: hidden;
}
.list_table .user_td .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_table .user_td ul {
	display: none;
    position: absolute;
	top: 45px;
    left: 45px;
    padding: 5px 10px;
	min-width: 120px;
    border: 1px solid var(--border);
    background: var(--white);
	border-radius: 5px;
	box-sizing: border-box;
	z-index: 1;
}
.list_table .active .user_td ul {
	display: block;
}
.list_table .user_td ul li {
	margin: 0;
	font-size: 13px;
	padding: 3px 0;
	gap: 5px;
	text-align: left;
}
.list_table .user_td ul li p {
    flex: 1;
    padding-right: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
	font-size: 12px;
    color: #aaa;
    font-weight: 500;
}
.list_table .user_td ul li:first-child {
	padding-top: 3px;
}
.list_table .user_td ul li span {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-sizing: border-box;
}
.list_table .user_td ul li span img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.agree_modal .box {
	white-space: pre-line;
}


.board_search_box {
	position: relative;
}
.board_search_box .btn_group {
    position: absolute;
    top: 45px;
    right: 15px;
}
.board_search {
    gap: 10px;
    justify-content: center;
    padding: 10px;
    background: #F7F7F7;
	box-sizing: border-box;
}
.board_search select {
    max-width: 130px;
    border-radius: 5px;
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 0 20px;
    font-size: 14px;
    background-size: 18px;
    background-position: calc(100% - 17px);
}
.board_search .search_box {
	flex: 1;
	max-width: 350px;
	border: 1px solid var(--border);
	background: var(--white);
	gap: 10px;
	padding: 0 20px;
	border-radius: 5px;
	box-sizing: border-box;
}
.board_search .search_box input[type=text] {
	flex: 1;
	height: 52px;
    font-size: 14px;
	color: #333;
}
.board_search .search_box .search_btn {
	width: 20px;
	height: 20px;
    background: url("../images/ic_search.svg") no-repeat 50% 50% / 100%;
}




@media screen and (max-width: 1480px) {
	#top_area > ul {
		gap: 30px;
	}
	#top_area > ul > li > a {
		min-width: 132px;
	}

	#container {
		gap: 20px;
	}
	.content_left {
		width: 260px;
	}
	.content_right {
		width: 200px;
	}
	.content_center {
		width: calc(100% - 280px);
	}
}
@media screen and (max-width: 1024px) {
	#header .logo img {
		width: 70px;
	}
	#header .logo > div {
		font-size: 28px;
	}
	#header .logo > div p {
		font-size: 12px;
	}
	#header .menu {
		display: block;
	}
	#top_area {
		display: none;
	}


	#container {
        gap: 0px;
    }
	.content_left {
		width: 0;
	}
	.content_left .left_login,
	.content_left .chat_box,
	.content_left .sponser,
	.content_right {
		display: none!important;
	}

	.content_left .chat_box.open {
		display: block!important;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		background: var(--white);
		overflow-y: auto;
	}
	.content_left .chat_box.open h4 {
		padding: 10px 15px;
		box-sizing: border-box;
	}
	.content_left .chat_box.open h4 .close {
		display: block;
	}
	.content_left .chat_box .chat_list ul {
		max-height: none;
		height: calc(100vh - 266px);
	}

	#footer {
		font-size: 14px;
	}
	#footer h1 img {
		width: 80px;
	}
	#footer .info .bottom {
		padding: 0;
	}

	#chat_fix {
		display: block;
	}


	.title_area .navi {
		font-size: 14px;
	}

	.tabs > .flex > * {
		font-size: 14px;
		height: 42px;
	}

	.tbody .cont .th {
		font-size: 14px;
	}
	.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.list_thumb label {
		font-size: 14px;
	}
	.tbody .cont .td .radio > div input[type=radio] + label {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	#header .logo {
		gap: 10px;
	}
	#header .logo img {
        width: 55px;
    }
	#header .logo > div {
        font-size: 22px;
    }
	#header .logo > div p {
        font-size: 10px;
    }
	#header .menu {
		top: 30px;
	}

	.board_search_box {
		margin-top: 30px;
	}
	.board_search_box .btn_group {
		position: static;
    }
	.board_search_box .btn_group a {
		width: 100%!important;
	}
	.board_search select {
		max-width: 100%;
		height: 40px;
		padding: 0 10px;
		background-position: calc(100% - 10px) 50%;
	}
	.board_search .search_box {
		max-width: 100%;
		padding: 0 10px;
	}
	.board_search .search_box input[type=text] {
		height: 40px;
	}

	.title_area > strong {
		width: 100%;
		text-align: center;
	}
	.title_area .navi {
		display: none;
	}

	.content_center > .inner {
		gap: 20px;
	}

	.pagenavi ol li a {
		width: 30px;
		height: 28px;
		line-height: 28px;
	}

	.memo_form .select_btn {
		top: -20px;
		right: 0;
		font-size: 12px;
	}
	.memo_form .select_btn + input {
		margin-top: 0;
	}


	.tbody .cont .th {
		width: 100%;
		text-align: left;
		padding: 0;
	}
	.tbody .cont .th:before {
		display: none;
	}
	.tbody .cont .th span {
		position: static;
		transform: none;
	}
	.tbody .cont .td {
		padding: 10px 0px 20px;
	}
	.tbody .cont .td .photo_box label {
		width: 100%;
		padding-bottom: 20%;
	}
	.tbody .cont .td .photo_box .preview .item {
		width: calc(50% - 5px);
		padding-bottom: 30%;
	}
	.tbody .cont .td select {
		max-width: 100%;
	}
	.tbody .cont .td.list_thumb .img {
		max-width: 100%;
		height: 0;
		padding-bottom: 40%;
	}
	.tbody .cont .td.list_thumb label {
		width: 100%;
		order: 1;
	}
	.tbody .cont .td.list_thumb .upload_name {
		order: 0;
		font-size: 14px;
	}


	.list_table .user_td .thumb {
		width: 30px;
		height: 30px;
	}
	.list_table .user_td ul {
		top: 25px;
		left: 0;
	}

	.modal h3 {
		font-size: 20px;
		padding: 10px 20px;
	}
	.modal .close {
		top: 10px;
	}
	.modal .modal_cont .scroll {
		padding: 20px;
	}
}
@media screen and (max-width: 480px) {
	#footer h1 {
		width: 100%;
	}


	#search_member .form select {
		max-width: 100%;
		margin: 0 0 10px;
	}
}
@media screen and (max-width: 380px) {
	#header .logo img {
        width: 48px;
    }
	#header .logo > div {
		width: 100%;
		gap: 5px;
	}
	#header .logo > div p {
        font-size: 8px;
    }
	#header .menu {
        top: 50px;
    }
}