:root {
    --main-color: #3C4986;
    --bg-color: #F9F9F9;
    --bg-color-02: #F5F5F5;
    --black-color: #3A3A3A;
    --sub-txt-color: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --border-color: #D9D9D9;
    --red-color: #DA6257;
    --yellow-color: #FF9800;
}
* {
    box-sizing: border-box;
    /*
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    */
    -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  height: 5%;
    background: rgba(0, 0, 0, .2);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
background: var(--bg-color);
}
html {
    scroll-behavior : smooth;
}
body {
    font-family: "Pretendard", "Open Sans";
    position: relative;
}

/*공통*/
input:read-only {
    background-color: var(--bg-color);
}
.input {
    width: auto;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
.input-lg {
    height: 50px;
    line-height: 50px;
}
.wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.wrap.st {
    position: relative;
}
.user-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.top-btn {
    position: fixed;
    bottom: 52px;
    right: 12px;
    width: 50px;
    height: 50px;
    border-radius: 3px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: #000;
    cursor: pointer;
    z-index: 98;
}
.top-btn img {
    width: 20px;
    height: 20px;
}
main {
    min-height: calc(100dvh - 310px);
    padding-top: 158px;
}
.yc-txt {
    color: var(--yellow-color);
}
.rc-txt {
    color: var(--red-color);
}

/*페이지네이션*/
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin: 0 !important;
}
.pagination li {
    width: 36px;
    min-width: 36px;
    height: 35px;
}
.pagination li:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.pagination li:not(.arrow):hover a {
    color: var(--main-color);
}
.pagination li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    border: none !important;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.pagination li.on a {
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color);
}
.pagination li:hover a {
    font-weight: 500;
    color: #fff !important;
    background-color: var(--main-color);
}
.pagination li a > img {
    width: 6px;
}


/*header*/

.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
    position: relative;
    display: block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}
#ham_btn + label > span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    border-radius: 5px;
    transition: all 300ms;
}
#ham_btn:checked + label > span:nth-child(1) {
    top: 50%;
    transform: translate(0, -50%);
    transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
    opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
    bottom: 0;
    background-color: var(--red-color) !important;
}
#ham_btn:checked + label > span:nth-child(3) {
    top: 50%;
    transform: translate(0, -50%);
    transform: rotate(-45deg);
}


.header-wrap {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.header-tp {
    background-color: #fff;
    height: 50px;
}
.logo {
    display: block;width: 180px;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-tp .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-tp .btn-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-tp .btn-wrap a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.header-tp .btn-wrap a img {
    width: 24px;
}
.header-tp .btn-wrap .name {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.header-tp .btn-wrap .name span {
     color: var(--red-color);
}

.header-bt {
    background-color: var(--black-color);
    width: 100%;
    height: 60px;
}
.header-bt .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gnb {
    display: flex;
    align-items: center;
}
.gnb > li {
    display: flex;
    align-items: center;
}
.gnb > li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 18px;
}
.gnb > li > a {
    font-family: 'OneMobileTitle';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.gnb > li > a:hover {
    color: #aaa;
    text-decoration: none !important;
}

.header-search {
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #535458;
    border-radius: 48px;
    padding: 8px 16px;
}
.header-search button {
    width: 18px;
    height: 18px;
    min-width: 18px;
}
.header-search input {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #fff;
}

/*footer*/
footer {
    background-color: #2A2A2A;
    margin-top: 100px;
    padding-bottom: 40px;
}
.footer-wrap {
    display: flex;
    flex-direction: column;
}
.footer-tp {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 130px;
}

.fnb {
    display: flex;
    align-items: center;
    gap: 24px;
}
.fnb > li {
    display: flex;
    align-items: center;
}
.fnb > li > a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.fnb > li > a:hover {
    color: #aaa;
}

.footer-bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.footer-bt .footer-btn {
    display: flex;
    gap: 48px;
}
.footer-bt .footer-btn a {
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
    cursor: pointer;
}
.footer-bt .footer-btn a:hover {
    color: #ccc;
}
.copy {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    letter-spacing: 2px;
}
.copy b {
    font-weight: 600;
}

/*메인*/
.intro-area {
    display: flex;
    align-items: stretch;
    margin-bottom: 48px;
    overflow: hidden;
    gap: 24px;
}
.banner-slider {
    flex: 3;
    height: 255px;
    aspect-ratio: 3 / 1;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px;
}
.banner-slider .swiper-slide {
    height: 100%;
}
.banner-slider .img-box {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner-slider .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    flex: 1;
}
.scroll-item {
    min-height: 0;
    overflow: hidden;
    overflow-y: auto;
}
.rank-area .tit {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 500;
    color: var(--yellow-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--yellow-color);
}
.rank-area .tit > img {
    width: 18px;
}
.rank-area .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.rank-area .item:last-child {
    border-bottom: none;
    padding: 10px 0 0;
}
.rank-area .item .name {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.rank-area .item .name > img {
    width: 16px;
}
.rank-area .item .point {
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow-color);
}

.tit-lg {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--black-color);
}
.tit-sm {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--black-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.tit-sm:hover {
    text-decoration: none !important;
}
.tit-sm > img {
    width: 18px;
}
.tit-sm span {
    color: var(--red-color);
}
.tit-sm:hover {
    color: var(--sub-txt-color-02);
}

.board-list {
    width: 100%;
}
.board-list li {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 12px;
    border-bottom: 1px solid var(--border-color);
}
.board-list li.fixed {
    background-color: var(--bg-color);
}
.board-list li.empty {
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    color: var(--sub-txt-color);
}
.board-list li .thumb {
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--red-color);
    white-space: nowrap;
}
.board-list li .thumb img {
    width: 14px;
}
.board-list li .tit {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.board-list li .tit > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.board-list li .tit > a:hover {
    text-decoration: underline;
}
.board-list li .tit > a .category {
    color: var(--red-color);
}
.board-list li .tit .review-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 3px 8px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: #fff;
    font-size: 12px;
    font-weight: 500;
    color: var(--yellow-color);
}
.board-list li .tit .review-point > img {
    width: 10px;
}
.board-list li .tit .reply-cnt {
    padding: 3px 8px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: #fff;
    font-size: 12px;
    font-weight: 500;
    color: var(--red-color);
}
.board-list li .writer {
    min-width: 110px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.board-list li .writer img {
    width: 16px;
}
.board-list li .writer:hover {
    color: var(--sub-txt-color-02);
}
.user-ballon {
    position: absolute;
    width: 200px;
    left: 50%;
    z-index: 100;
    transform: translateX(-50%);
    bottom: calc(100% + 12px);
    background: rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    text-align: left;
    border-radius: 4px;
    padding: 12px;
    display: none;
}
.user-ballon::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.board-list li .view {
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: var(--sub-txt-color);
    white-space: nowrap;
}
.board-list li .view img {
    width: 14px;
}
.board-list li .date {
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: var(--sub-txt-color);
    white-space: nowrap;
}


.board-grid {
    margin-top: 24px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.board-grid.sm {
    grid-template-columns: repeat(1, 1fr);
}
.board-grid .item {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.board-category {
    display: flex;
    flex-direction: column;
}

.expl-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.expl-tab > button {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    position: relative;
}
.expl-tab > button img {
    width: 16px;
}
.expl-tab > button .ballon {
    display: none;
    position: absolute;
    width: 250px;
    right: 0;
    bottom: calc(100% + 12px);
    background: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    border-radius: 4px;
    padding: 12px;
}
.expl-tab > button:hover .ballon {
    display: block;
}
.expl-tab > button .ballon::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -6px;
    right: 12px;
}

.category-tab {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid var(--black-color);
    border-bottom: 1px solid var(--border-color);
}
.category-tab a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.category-tab a:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin: 0 24px;
    font-size: 14px;
    font-weight: 300;
    color: var(--sub-txt-color-03) !important;
}
.category-tab a.on {
    color: var(--red-color);
    text-decoration: underline;
}
.category-tab a:hover {
    color: var(--red-color);
    text-decoration: underline;
}


.bt-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.bt-area form {
    width: 100%;
}


.board-rt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.btn-box {
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-box.justify-end {
    width: 100%;
    justify-content: flex-end;
}
.btn-box a, .btn-box button {
    width: 100px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.btn-box img {
    width: 16px;
}
.solid-btn {
    background-color: #fff;
    border: 1px solid;
    color: var(--black-color) !important;
    border: 1px solid var(--border-color);
}
.solid-btn:hover {
    opacity: .8;
    color: var(--black-color) !important;
    text-decoration: none !important
}
.bc-btn {
    background-color: var(--black-color);
    color: #fff;
}
.bc-btn:hover {
    opacity: .8;
    color: #fff !important;
    text-decoration: none !important
}
.mc-btn {
    background-color: var(--main-color);
    color: #fff !important;
}
.mc-btn:hover {
    opacity: .8;
    color: #fff !important;
    text-decoration: none !important;
}
.rc-btn {
    background-color: var(--red-color);
    color: #fff !important;
}
.rc-btn:hover {
    opacity: .8;
    color: #fff !important;
    text-decoration: none !important
}
.btn-large {
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    font-size: 14px;
}

.board-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    height: 35px;
}
.board-search select {
    border: none;
    border-right: 1px solid var(--border-color);
    width: 100px;
    height: 100%;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.board-search input {
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    width: 200px;
    height: 100%;
    padding: 0 16px;
}
.board-search button {
    width: 35px;
    min-width: 35px;
    height: 35px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.board-search button img {
    width: 16px;
}

.mc-txt {
    color: var(--main-color) !important;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 400;
    color: #fff;
}
.user-info .name {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 4px;
}
.user-info .name img {
    width: 16px;
}
.user-info .point {
    display: flex;
    justify-content: space-between;
}
.user-info .point span {
    display: inline-block;
}
.user-info .point span:first-child {
    font-size: 13px;
    color: #ccc;
}
.user-info .point span:nth-child(2) {
    font-size: 13px;
    color: var(--yellow-color);
}
.user-info .message-btn {
    background-color: var(--main-color);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    height: 25px;
    line-height: 25px;
    border-radius: 4px;
    text-align: center;
    margin-top: 8px;
}
.user-info .message-btn:hover {
    opacity: .9;
}



/*모달*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 102;
  display: none;
}
.modal.terms .modal-box {
    max-width: 800px;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
.modal .modal-box .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--main-color);
}
.modal .modal-box .tit-box span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.modal .modal-box .tit-box button {
  display: inline-block;
}
.modal .modal-box .tit-box img {
  width: 15px;
  height: 15px;
}
.modal .modal-box .content {
      background-color: white;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  height: auto;
  overflow-y: auto;
  padding: 16px;
}
.modal .modal-box .content .read-box {
    background-color: #f5f5f5;
    padding: 8px;
    margin-bottom: 16px;
}
.modal .modal-box .content .to {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.modal .modal-box .content .to span:first-child {
    color: var(--sub-txt-color-02);
}
.modal .modal-box .content .to span:nth-child(2) {
    font-weight: 500;
    color: var(--black-color);
}
.modal .modal-box .content textarea {
    width: 100%;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px;
    color: var(--black-color);
}
.modal .modal-box .content > button {
    background-color: var(--main-color);
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
}
.modal .modal-box .content > button:hover {
    opacity: .9;
}
.modal .terms-box {
    height: 250px;
    font-size: 12px;
    overflow: hidden;
    overflow-y: auto;
    line-height: 1.3;
}


.tit-area {
    display: flex;
    flex-direction: column;
}
.tit-area .tit {
    padding: 16px 24px;
    background-color: var(--bg-color);
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color);
    line-height: 1.2;
    border-bottom: 1px solid var(--border-color);
}
.view-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-info .lt {
    display: flex;
    align-items: center;
}
.view-info .rt {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.view-info .lt > span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.view-info .rt > span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.view-info .lt > span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}
.view-info .lt > span img {
    width: 14px;
}
.view-info .writer {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}
.view-info .writer::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 16px;
}
.view-info .writer img {
    width: 14px;
}
.view-info .thumb {
    color: var(--red-color);
}
.view-info .view, .view-info .date, .view-info .area, .view-info .price {
    color: var(--sub-txt-color-02);
}
.view-info .review-point {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--yellow-color);
}

.editor-area {
    padding: 48px 24px;
    min-height: 200px;
    font-size: 14px;
    line-height: 1.3;
}
.editor-area.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.thumb-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}
.thumb-area .item {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 35px;
    display: flex;
    align-items: center;
}
.thumb-area .item button {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.thumb-area .item button img {
    width: 16px;
}
.thumb-area .item .cnt {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    border-left: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 400;
    color: var(--red-color);
}

.question-info {
    cursor: pointer;
    position: relative;
}

.question-info .ballon {
    display: none;
    position: absolute;
    width: 250px;
    left: 0;
    bottom: calc(100% + 12px);
    background: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    text-align: left;
    border-radius: 4px;
    padding: 12px;
}
.question-info:hover .ballon {
    display: block;
}
.question-info .ballon::after {
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -6px;
    left: 6px;
}

.reply-area {
    margin-top: 48px;
}
.reply-area .reply-cnt {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.reply-area .reply-cnt img {
    width: 16px;
}
.reply-area .reply-cnt span {
    font-weight: 500;
    color: var(--red-color);
}

.reply-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.reply-list li.empty {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    background-color: var(--bg-color);
    border-radius: 4px;
    padding: 12px 16px;
    text-align: center;
}

.reply-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.reply-list li.gap-none {
    border-radius: 4px;
    overflow: hidden;
    gap: 0;
    border: 1px solid var(--border-color);
}
.txt-tit {
    background-color: #f5f5f5;
    font-size: 14px;
    color: var(--red-color);
    padding: 8px;
    border-radius: 4px 4px 0 0;
}
.reply-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    border-radius: 6px;
    padding: 8px 16px;
}
.reply-info.gc-txt {
    font-size: 14px;
    color: var(--sub-txt-color-03);
    background-color: #f6f9ff;
}
.reply-info .name {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.reply-info .name img {
    width: 16px;
}
.reply-info .name .me {
    display: inline-block;
    background-color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: var(--red-color);
    border: 1px solid var(--red-color);
    border-radius: 3px;
    padding: 2px 3px;
}
.reply-info .name .choice {
    display: inline-block;
    background-color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    border-radius: 3px;
    padding: 2px 3px;
}

.reply-info .rt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.reply-info .rt button, .reply-info .rt span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    display: flex;
    align-items: center;
}
.reply-info .rt button::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 16px;
    background-color: var(--border-color);
}
.reply-info .rt button.reply-choice {
    color: var(--red-color);
}

.reply-list li .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
    padding: 8px 16px;
}
.reply-list li.re {
    padding-left: 18px;
}
.reply-list li.re::before {
    position: absolute;
    left: 0;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('../images/icons/reply_re_icon.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.reply-write {
    display: flex;
    align-items: stretch;
}
.reply-write textarea {
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 16px;
    width: 100%;
    height: 100px;
    font-size: 14px;
    line-height: 1.3;
}
.reply-write > button {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color);
}
.reply-write > button:hover {
    opacity: .9;
}

.form-area {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.input-box > p {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.input-box input[type="text"], .input-box input[type="file"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
.input-box select {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.user-box {
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}
.user-banner {
    width: 100%;
    height: 200px;
    position: relative;
}
.user-banner .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.user-banner .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.user-banner .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-banner .txt-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.user-banner .txt-box .txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.user-banner .txt-box .txt p:first-child {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    line-height: 1.3;
}
.user-banner .txt-box .txt p:nth-child(2) {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
.user-banner .txt-box .user-logo {
    width: 90px;
}
.user-banner .txt-box .user-logo img {
    width: 100%;
    object-fit: contain;
}

.user-form {
    width: 100%;
    background-color: #fff;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.user-form .input-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.user-form .input-item > p {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}
.user-form .input-item > p span {
    font-size: 12px;
    font-weight: 400;
    color: var(--red-color);
}
.user-form .input-item > p::after {
    content: "*";
    color: var(--red-color);
    margin-left: 4px;
}
.user-form .input-item > p.ns::after {
    display: none;
}
.user-form .input-item .expl {
    font-size: 12px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
}
.user-form .input-item .expl span {
    color: var(--red-color);
}
.user-form .input-item .expl-lg {
    font-size: 14px;
    color: var(--sub-txt-color);
    text-align: center;
    line-height: 1.3;
}

.input-terms {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}
.input-terms .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.input-terms .item label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--sub-txt-color-02);
    cursor: pointer;
}
.input-terms .item label input {
    margin: 0;
    width: 14px;
    height: 14px;
}
.input-terms .item label span {
    color: var(--red-color);
}
.input-terms .item button {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    text-decoration: underline;
}

.find-link {
    font-size: 14px;
    color: var(--sub-txt-color-03);
    text-align: right;
}
.register-link {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sub-txt-color-03);
}
.register-link:hover {
    color: var(--sub-txt-color-03) !important;
    text-decoration: none !important;
}
.register-link span {
    color: var(--main-color);
    text-decoration: underline;
}

.user-delete {
    text-align: center;
    font-size: 12px;
    color: var(--sub-txt-color-03);
    text-decoration: underline;
}

.dashboard {
    background-color: var(--black-color);
    border-radius: 16px;
    overflow: hidden;
    margin: 24px 0 48px;
    padding: 24px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.dashboard .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
}
.dashboard .item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2)
}
.dashboard .item > p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.dashboard .item > div {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}


.mypage-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-top: 1px solid var(--black-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.mypage-tab.mb-0 {
    margin-bottom: 0;
}
.mypage-tab a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
}
.mypage-tab a:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin: 0 24px;
    font-size: 14px;
    font-weight: 300;
    color: var(--sub-txt-color-03) !important;
}
.mypage-tab a.on {
    color: var(--red-color);
    text-decoration: underline;
}
.mypage-tab a:hover {
    color: var(--red-color);
    text-decoration: underline;
}


.talk-list {
    display: flex;
    flex-direction: column;
}
.talk-list li {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}
.talk-list li.empty {
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    color: var(--sub-txt-color);
}
.talk-list li .lt {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.talk-list li .lt .from {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.talk-list li .lt .from img {
    width: 20px;
}
.mypage-btn {
    display: flex;
    gap: 2px;
    white-space: nowrap;
}
.mypage-btn > button {
    width: auto;
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    padding: 0 6px;
    height: 25px;
    line-height: 25px;
    border-radius: 3px;
}
.mypage-btn > button:hover {
    opacity: .9;
}
.talk-list li .content {
    width: 100%;
    font-size: 14px;
    height: 20px;
    font-weight: 400;
    line-height: 1.3;
    position: relative;
}
.talk-list li .date {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
    color: var(--sub-txt-color-03);
    line-height: 1.3;
}



/*하단 네비게이션*/
.fixed-nav {
    background-color: var(--bg-color);
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9;
    padding-bottom: env(safe-area-inset-bottom, 48px);
}
.nav-area {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hot {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hot::after {
    content: "";
    width: 1px;
    height: 12px;
    display: inline-block;
    background-color: var(--border-color);
}
.hot-slider {
    overflow: hidden;
}
.now {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
.now-slider {
    overflow: hidden;
}

.nav-area .head {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.nav-area .head img {
    width: 16px;
}
.fixed-slider  {
    width: 100%;
}
.fixed-slider .swiper-slide {
    width: 100%;
}
.fixed-slider .swiper-slide a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fixed-slider .swiper-slide a:hover {
    text-decoration: none !important;
}
.fixed-slider .swiper-slide .num {
    width: 16px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--black-color);
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}
.fixed-slider .swiper-slide .tit {
    width: 100%;
    height:  auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.fixed-slider .swiper-slide .tit .category {
    color: var(--red-color);
}
.bottom-btn {
    display: flex;
    background-color: var(--black-color);
}
.bottom-btn > button, .bottom-btn > a {
    width: 45px;
    min-width: 45px;
    height: 40px;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.bottom-btn a img, .bottom-btn button img {
    width: 20px;
}
.bottom-btn a .num, .bottom-btn button .num {
    position: absolute;
    top: -8px;
    width: 16px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--red-color);
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}
.info-head {
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-body {
    display: flex;
    align-items: center;
    gap: 8px;
}
.read-btn {
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.new-badge {
    display: inline-block;
    margin-right: 2px;
}
.new-badge img {
    width: 12px;
}

.note-modal-footer {
    height: 60px !important;
}
.note-modal-footer .note-btn {
    color: var(--black-color) !important;
}
.note-modal .note-modal-body label {
    font-size: 14px !important;
}



.alarm-box {
    display: none;
    width: 500px;
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
}
.alarm-box .tit-box {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background-color: var(--bg-color-02);
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.alarm-box .alarm-expl {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 12px 16px;
    background-color: var(--bg-color-02);
    font-size: 14px;
    color: var(--sub-txt-color-02);
}
.alarm-box .alarm-expl span {
    color: var(--red-color);
}
.alarm-box .tit-box img {
    width: 16px;
}
.alarm-list {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    max-height: 170px;
    overflow: hidden;
    overflow-y: auto;
}
.alarm-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}
.alarm-list li.empty {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}
.alarm-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.alarm-list li a:hover {
    text-decoration: none;
}
.alarm-list li a .tit {
    font-size: 14px;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.alarm-list li a .tit span {
    color: var(--red-color);
}
.alarm-list li a .name {
    min-width: 85px;
    text-align: right;
    white-space: nowrap;
    font-size: 14px;
    color: var(--sub-txt-color-02);
}