@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");

:root {
  --main-font: "Nanum Gothic", sans-serif;

  /* 모노 컬러 */
  --mono-00: #F5F7FA;
  --mono-01: #fafafa;
  --mono-02: #f0f0f0;
  --mono-03: #d7d7d7;
  --mono-04: #a5a5a5;
  --mono-05: #505050;
  --mono-06: #232323;

  /* 메인 컬러 */
  --main-01: #3c4655;
  --main-02: #232d3c;

  /* 포인트 컬러 */
  --point-text-01: #ff6464;
  --up-02: #f00;
  --down-01: #06f;
  --point-01: #232d3c;
  --point-02: #3c64f0;
  --point-03: #ffaaaa;
  --naver-color: #03c75a;
  --kakao-color: #fee500;
  --orange: #ff7f22;
  --red: #ff375f;

  /* 카테고리 컬러 */
  --cate-01: #ffd7d7;
  --cate-02: #ebffe6;
  --cate-03: #feffb7;
  --cate-04: #d2e1ff;
}

/* 초기화 */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: var(--main-font);
  background: var(--mono-00);
  color: var(--mono-05);
}
body.swal2-shown {
  padding-right: 0 !important;
}
html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}
label,
input,
button,
select,
img {
  vertical-align: middle;
}
input,
button {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
}
input[type="submit"] {
  cursor: pointer;
}
button {
  cursor: pointer;
}

textarea,
select {
  font-family: var(--main-font);
  font-size: 1rem;
}
textarea {
  font-size: 1.3rem;
}
select {
  margin: 0;
}
p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}
hr {
  display: none;
}
pre {
  overflow-x: scroll;
  font-size: 1.1rem;
}
a {
  color: var(--mono-05);
  text-decoration: none;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.placeholdersjs {
  color: #aaa !important;
}

.text-success {
  color: var(--down-01) !important;
}

.chk_box {
  position: relative;
}
.chk_box input[type="checkbox"] + label {
  color: #676e70;
}
.chk_box input[type="checkbox"] + label:hover {
  color: #2172f8;
}
.chk_box input[type="checkbox"] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  display: block;
  margin: 0;
  background: #fff;
  border: 1px solid var(--mono-04);
  border-radius: 3px;
}
.chk_box input[type="checkbox"]:checked + label {
  color: #000;
}
.chk_box input[type="checkbox"]:checked + label span {
  background: url(./img/chk.png) no-repeat 50% 50% var(--main-02);
  border-color: var(--main-02);
  border-radius: 3px;
}

/* 레이아웃 크기 지정 */
#hd,
#wrapper,
#ft {
  min-width: 1240px;
}
/* 상단 헤더 배경색만 따로 지정 (여기에 추가!) */
#hd {
  background: #fff; 
}

#hd_pop,
#hd_wrapper,
#tnb .inner,
#gnb .gnb_wrap,
#container_wr {
  width: 1240px;
}

/* 팝업레이어 */
#hd_pop {
  z-index: 1000;
  position: relative;
  margin: 0 auto;
  height: 0;
}
#hd_pop h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.hd_pops {
  position: absolute;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.hd_pops img {
  max-width: 100%;
}
.hd_pops_con {
}
.hd_pops_footer {
  padding: 0;
  background: #000;
  color: #fff;
  text-align: left;
  position: relative;
}
.hd_pops_footer:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.hd_pops_footer button {
  padding: 10px;
  border: 0;
  color: #fff;
}
.hd_pops_footer .hd_pops_reject {
  background: #000;
  text-align: left;
}
.hd_pops_footer .hd_pops_close {
  background: #393939;
  position: absolute;
  top: 0;
  right: 0;
}

/* 상단 레이아웃 */
#hd_h1 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#tnb {
  border-bottom: 1px solid #383838;
  margin: 0 auto;
}
#tnb:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#tnb .inner {
  margin: 0 auto;
}

#hd_wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding-top: 0rem;
  zoom: 1;
  background: #fff; /* <--- 이 줄을 추가하세요! */
   z-index: 9999;
}
#hd_wrapper:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#logo {
  float: left;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  top: 0px;
  transform: translateY(35px);
  
}

#logo a img {
  width: 40rem;

  
}

.hd_sch_wr {
  float: left;
  padding: 30px 0;
  width: 445px;
  margin-left: 28px;
    position: relative;
  top: 20px;
}


#hd_sch {
  border-radius: 0.6rem;
  overflow: hidden;
}
#hd_sch legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999rem;
  overflow: hidden;
}
#hd_sch #sch_stx {
  float: left;
  width: 385px;
  height: 45px;
  padding: 0 2rem;
  border-radius: 0.6rem 0 0 0.6rem;
  border: 0.24rem solid var(--main-02);
  border-right: 0;
  font-size: 1.4rem;
  color: var(--mono-06);
  outline: none;
}
#hd_sch #sch_submit {
  float: left;
  padding: 0 2rem;
  height: 45px;
  border: 0;
  color: var(--main-02);
  background: initial;
  border-radius: 0 0.6rem 0.6rem 0;
  border: 0.24rem solid var(--main-02);
  border-left: 0;
  cursor: pointer;
  font-size: 1.6rem;
  outline: none;
}

#hd_define {
  float: left;
}
#hd_define:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#hd_define li {
  float: left;
  font-size: 1.083rem;
  line-height: 14px;
  border-right: 1px solid #4a4a4a;
  position: relative;
  text-align: center;
  margin: 15px 10px 15px 0;
  padding-right: 10px;
}
#hd_define li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
#hd_define li a {
  display: inline-block;
  color: #919191;
}
#hd_define li.active a {
  color: #fff;
}

#hd_qnb {
  float: right;
  text-align: right;
}
#hd_qnb:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#hd_qnb li {
  float: left;
  font-size: 1.083rem;
  line-height: 14px;
  border-right: 1px solid #4a4a4a;
  position: relative;
  text-align: center;
  margin: 15px 10px 15px 0;
  padding-right: 10px;
}
#hd_qnb li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
#hd_qnb li span {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
}
#hd_qnb li a {
  display: inline-block;
  color: #919191;
}
#hd_qnb .visit .visit-num {
  display: inline-block;
  line-height: 16px;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 10px;
  background: #da22f5;
  color: #fff;
  font-size: 10px;
}

/* 메인메뉴 */
#gnb {
  position: relative;
  background: #fff;
  
}
#gnb > h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#gnb .gnb_wrap {
  margin: 0 auto;
  position: relative;
}
#gnb .gnb_wrap:hover,
#gnb .gnb_wrap:focus,
#gnb .gnb_wrap:active {
  z-index: 3;
}
#gnb_1dul {
  display: flex;
  justify-content: center;
  padding: 0 14rem;
  background: var(--main-02);
}
#gnb #gnb_1dul {
  font-size: 1.083rem;
  zoom: 1;
}
#gnb ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#gnb .gnb_1dli {
  float: left;
  line-height: 55px;
  padding: 0px;
  position: relative;
  background: var(--main-02);
}
#gnb .gnb_1dli:hover > a {
  color: var(--main-02);
  background: #fff;
}

.gnb_1dli .bg {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  text-indent: -999px;
}
.gnb_1da {
  display: block;
  font-weight: bold;
  width: 16rem;
  padding: 0 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--mono-02);
  font-size: 1.6rem;
  font-weight: 600;
  border-top: 0.3rem solid var(--main-02);
}
.gnb_1da_1 {
  position: relative;
  bottom: 0.3rem;
}
.gnb_1dli.gnb_al_li_plus .gnb_1da {
}
.gnb_2dli:first-child {
  border: 0;
}
.gnb_2dul {
  display: none;
  position: absolute;
  top: 5.8rem;
  min-width: 16rem;
  padding-top: 2px;
}
.gnb_2dul .gnb_2dul_box {
  border-top: 0;
  padding: 0;
  -webkit-box-shadow: 0px 1px 5px rgba(97, 97, 97, 0.2);
  -moz-box-shadow: 0px 1px 5px rgba(97, 97, 97, 0.2);
  box-shadow: 0px 1px 5px rgba(97, 97, 97, 0.2);
}
.gnb_2da {
  display: block;
  padding: 1rem 1.5rem;
  line-height: 1.5rem;
  background: var(--main-02);
  font-size: 1.3rem;
  color: var(--mono-00);
  text-align: left;
  text-decoration: none;
}
a.gnb_2da:hover {
  color: var(--main-02);
  background: var(--mono-00);
  font-weight: 600;
}

.gnb_2da:focus,
.gnb_2da:hover {
  color: var(--mono-00);
  font-weight: 600;
}
.gnb_1dli_over .gnb_2dul {
  display: block;
  left: 0;
}
.gnb_1dli_over2 .gnb_2dul {
  display: block;
  right: 0;
}
.gnb_wrap .gnb_empty {
  padding: 10px 0;
  width: 100%;
  text-align: center;
  line-height: 2.7rem;
  color: #080808;
}
.gnb_wrap .gnb_empty a {
  color: #3a8afd;
  text-decoration: underline;
}
.gnb_wrap .gnb_al_ul .gnb_empty,
.gnb_wrap .gnb_al_ul .gnb_empty a {
  color: #555;
}

#gnb .gnb_menu_btn {
  background: #4158d1;
  color: #fff;
  width: 50px;
  height: 55px;
  border: 0;
  vertical-align: top;
  font-size: 18px;
}
#gnb .gnb_close_btn {
  background: #fff;
  color: #b6b9bb;
  width: 50px;
  height: 50px;
  border: 0;
  vertical-align: top;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
}
#gnb .gnb_mnal {
  float: right;
  padding: 0;
}

#gnb_all {
  display: none;
  position: absolute;
  border: 1px solid #c5d6da;
  width: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#gnb_all h2 {
  font-size: 1.3rem;
  padding: 15px 20px;
  border-bottom: 1px solid #e7eeef;
}
#gnb_all .gnb_al_ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#gnb_all .gnb_al_ul > li:nth-child(5n + 1) {
  border-left: 0;
}
#gnb_all .gnb_al_li {
  float: left;
  width: 20%;
  min-height: 150px;
  padding: 20px;
  border-left: 1px solid #e7eeef;
}
#gnb_all .gnb_al_li .gnb_al_a {
  font-size: 1.2rem;
  display: block;
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
  color: #3a8afd;
}
#gnb_all .gnb_al_li li {
  line-height: 2rem;
}
#gnb_all .gnb_al_li li a {
  color: #555;
}
#gnb_all_bg {
  display: none;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

/* 중간 레이아웃 */
#container_wr:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#container_wr {
  margin: 0 auto;
  padding: 0 1rem;
  zoom: 1;
}
#aside {
  float: right;
  width: 300px;
  padding: 0;
  height: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
/* 사이드 카드 디자인 추가 */
#aside > div {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(15,23,42,0.04);
  overflow: hidden;
  transition: all 0.2s ease;
}

#aside > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}

#container {
  position: relative;
  float: left;
  min-height: 1080px;
  height: auto !important;
  margin: 2rem 0;
  font-size: 1.3rem;
  width: 900px;
  zoom: 1;
}
#container:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#container_title {
  font-size: 1.3rem;
  margin: 0 auto;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#container_title span {
  display: block;
}

.lt_wr {
  width: 32%;
}
.lt_wr:nth-child(3n + 1) {
  clear: both;
}
.latest_wr,
.latest_top_wr {
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(15,23,42,0.04);
  transition: all 0.2s ease;
  overflow: hidden;
}

.latest_wr:hover,
.latest_top_wr:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}
.latest_bottom_wr {
  margin-bottom: 0;
}
.latest_wr .lt_more {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 0.6rem;
  background: initial;
  border: 0;
}
.latest_wr .lt_more .lt_more_icon {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  background: var(--point-01);
}
.latest_half_wrapper {
  display: flex;
  gap: 2.4rem;
}

/* 메인 페이지 section */
.section-list1,
.section-list2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-list1__half {
  width: 59.8rem;
}
.section-list1__tab {
  display: flex;
  gap: 1.5rem;
  padding: 0 1.5rem 0 3rem;
}
.nav-tabs.section-list1__tab {
  --bs-nav-tabs-border-width: 0.2rem;
  --bs-nav-tabs-border-color: var(--mono-02);
  --bs-nav-tabs-link-active-color: var(--point-01);
}
.nav-item.section-list1__title .nav-link {
  height: 6rem;
  font-size: 1.4rem;
  font-weight: 600;
  border: 0;
  color: var(--mono-04);
}
.nav-item.section-list1__title .nav-link:hover,
.nav-item.section-list1__title .nav-link:focus {
  color: var(--point-01);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--point-01);
}
.nav-item.section-list1__title .nav-link.active {
  color: var(--point-01);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--point-01);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.section-list1__item .section-list1__item-list:nth-child(even) {
  background: var(--mono-01);
}
.section-list1__item-list {
  display: flex;
}
.section-list1__item-link {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--mono-05);
  font-size: 1.4rem;
  padding: 1rem;
}
.section-list1__item-list--end {
  border-top: 0.2rem solid var(--mono-02);
}
.section-list1__item-link--index {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-list1__index-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--mono-05);
}
.section-list1__index-value-wrap {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.section-list1__index-value-wrap--up {
  color: var(--up-02);
}
.section-list1__index-value-wrap--down {
  color: var(--down-01);
}

.section-list2 {
  background: var(--mono-01);
}
.section-list2__tab {
  display: flex;
  padding: 1.4rem 1rem 1.4rem 1.5rem;
  border-bottom: 0.1rem solid var(--mono-02);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--point-01);
}
.section-list2__tab h2 {
  color: var(--point-01);
  font-size: 1.5rem;
  font-weight: 600;
}
.section-list2__item {
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
}
.section-list2__item li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}
.section-list2__item--content1 {
  display: flex;
  align-items: center;
}
.section-list2__item--content1 i {
  margin-right: 0.3rem;
}
.section-list2__item--content1 a {
  width: 20rem;
  display: flex;
}
.section-list2__item--content2 {
  display: flex;
  width: 6rem;
}
.section-list2__list-more {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.6rem;
  background: initial;
  border: 0;
}
.section-list2__list-more-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  background: var(--point-01);
  color: #fff;
}

.section-list2__rank-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.section-list2__rank-content .rank_bg {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--point-01);
}
.section-list2__rank-profile img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
}
.section-list2__rank-info {
  display: flex;
  flex-direction: column;
}
.section-list2__rank-info .rank_name {
  font-size: 1.4rem;
  font-weight: 600;
}
.section-list2__rank-info .profile_img {
  display: none;
}
.section-list2__rank-info .rank_name .sv_wrap {
  font-weight: 600;
}
section-list2__rank-info .rank_level {
  font-size: 1.3rem;
}
.section-list2__rank-change {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.3rem;
}
.section-list2__rank-change--up {
  color: var(--up-02);
}
.section-list2__rank-change--down {
  color: var(--down-01);
}
.section-list2__rank-change--none {
  color: var(--mono-04);
}

#main-tab-setting {
  position: absolute;
  top: 0.6rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.6rem;
  background: initial;
  border: 0;
}

/* 하단 광고 배너 */
.footer-ad-banner {
  margin: 20px auto 0;
  width: 1240px;
  padding: 0 10px;
}
.footer-ad-banner__img {
  width: 100%;
}

/* 하단 최신글 */
.footer-latest-container {
  margin: 20px auto 0;
  width: 1240px;
  padding: 0 10px;
  font-size: 1.3rem;
}

/* 하단 레이아웃 */
#ft {
  background: var(--main-02);
  margin: 4.8rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#ft_wr {
  width: 100%;
  padding: 1.5rem 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0.1rem solid var(--mono-02);
}
#ft_wr .ft_dv_bar {
  display: flex;
  align-items: center;
  height: 1.2rem;
  margin: 0 1rem;
  border-right: 0.1rem solid #fff;
}
#ft_wr2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3.5rem 0;
}
#ft_link {
  display: flex;
  align-items: center;
}
#ft_link a {
  display: flex;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 1rem;
}
#ft_catch {
  display: flex;
  justify-content: center;
  margin: 20px 0 10px;
}
#ft_address {
  color: var(--mono-00);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#ft_copy {
  color: var(--mono-00);
  font-size: 1.1rem;
}

/* 게시물 선택복사 선택이동 */
#copymove {
}
#copymove .win_desc {
  text-align: center;
  display: block;
}
#copymove .tbl_wrap {
  margin: 20px;
}
#copymove .win_btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  margin: 2rem;
}
.copymove_current {
  background: var(--point-01);
  padding: 3px 6px;
  color: var(--mono-00);
  border-radius: 3px;
}
.copymove_currentbg {
  background: #f4f4f4;
}

/* 화면낭독기 사용자용 */
#hd_login_msg {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.msg_sound_only,
.sound_only {
  display: inline-block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  overflow: hidden !important;
}

/* 본문 바로가기 */
#skip_to_container a {
  z-index: 100000;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#skip_to_container a:focus,
#skip_to_container a:active {
  width: 100%;
  height: 75px;
  background: #21272e;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 3.3rem;
}

/* ie6 이미지 너비 지정 */
.img_fix {
  width: 100%;
  height: auto;
}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {
  display: inline-block;
  position: relative;
}
#captcha legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999rem;
  overflow: hidden;
}
#captcha #captcha_img {
  height: 40px;
  border: 1px solid #898989;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
#captcha #captcha_mp3 {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  background: url("../../../img/captcha2.png") no-repeat;
  text-indent: -999px;
  border-radius: 3px;
}
#captcha #captcha_reload {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  background: url("../../../img/captcha2.png") no-repeat 0 -40px;
  text-indent: -999px;
  border-radius: 3px;
}
#captcha #captcha_key {
  margin: 0 0 0 3px;
  padding: 0 5px;
  width: 90px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.333rem;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  vertical-align: top;
}
#captcha #captcha_info {
  display: block;
  margin: 5px 0 0;
  font-size: 0.95rem;
  letter-spacing: -0.1rem;
}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {
  display: block;
  margin: 0 0 5px;
  width: 187px;
}
#captcha.m_captcha #captcha_img {
  width: 160px;
  height: 60px;
  border: 1px solid #e9e9e9;
  margin-bottom: 3px;
  margin-top: 5px;
  display: block;
}
#captcha.m_captcha #captcha_reload {
  position: static;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  background: url("../../../img/captcha2.png") no-repeat 0 -40px;
  text-indent: -999px;
}
#captcha.m_captcha #captcha_reload span {
  display: none;
}
#captcha.m_captcha #captcha_key {
  margin: 0;
  padding: 0 5px;
  width: 115px;
  height: 29px;
  border: 1px solid #b8c9c2;
  background: #f7f7f7;
  font-size: 1.333rem;
  font-weight: bold;
  text-align: center;
  line-height: 29px;
  margin-left: 3px;
}
#captcha.m_captcha #captcha_info {
  display: block;
  margin: 5px 0 0;
  font-size: 0.95rem;
  letter-spacing: -0.1rem;
}
#captcha.m_captcha #captcha_mp3 {
  width: 31px;
  height: 31px;
  background: url("../../../img/captcha2.png") no-repeat 0 0;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
  text-indent: -9999px;
  border: none;
}

/* ckeditor 5 */
.ck.ck-editor__editable {
  min-height: 600px !important;
}
#bo_v_con div {
  position: relative;
  margin-bottom: 1rem;
}
#bo_v_con iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ck-powered-by {
  display: none !important;
}

/* ckeditor 단축키 */
.cke_sc {
  margin: 0 0 5px;
  text-align: right;
}
.btn_cke_sc {
  display: inline-block;
  padding: 0 10px;
  height: 23px;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #000;
  text-decoration: none;
  line-height: 1.9rem;
  vertical-align: middle;
  cursor: pointer;
}
.cke_sc_def {
  margin: 0 0 5px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  text-align: center;
}
.cke_sc_def dl {
  margin: 0 0 5px;
  text-align: left;
  zoom: 1;
}
.cke_sc_def dl:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.cke_sc_def dt,
.cke_sc_def dd {
  float: left;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid #e9e9e9;
}
.cke_sc_def dt {
  width: 20%;
  font-weight: bold;
}
.cke_sc_def dd {
  width: 30%;
}

/* ckeditor 태그 기본값 */
#bo_v_con ul {
  display: block;
  list-style-type: disc;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
#bo_v_con ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
#bo_v_con li {
  display: list-item;
}

/* 버튼 */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0;
  box-shadow: none;
  border-radius: 0.6rem;
}
.btn-default {
  --bs-btn-color: var(--mono-02);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-02);
  --bs-btn-hover-bg: var(--point-01);
  --bs-btn-hover-border-color: var(--point-01);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--mono-02);
  --bs-btn-active-bg: var(--point-01);
  --bs-btn-active-border-color: var(--point-01);
  --bs-btn-disabled-color: var(--mono-02);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  box-shadow: none;
  height: 5.5rem;
}
.btn-icon {
  --bs-btn-color: var(--mono-04);
  --bs-btn-bg: none;
  --bs-btn-border-color: none;
  --bs-btn-hover-color: var(--point-01);
  --bs-btn-hover-bg: none;
  --bs-btn-hover-border-color: none;
  --bs-btn-focus-shadow-rgb: var(--point-01);
  --bs-btn-active-color: var(--point-01);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: none;
  --bs-btn-disabled-color: var(--mono-04);
  --bs-btn-disabled-bg: none;
  --bs-btn-disabled-border-color: none;
  box-shadow: none;
  width: 2.4rem;
  height: 2.4rem;
}
.btn-icon-2 {
  --bs-btn-color: var(--point-01);
  --bs-btn-bg: none;
  --bs-btn-border-color: none;
  --bs-btn-hover-color: var(--mono-04);
  --bs-btn-hover-bg: none;
  --bs-btn-hover-border-color: none;
  --bs-btn-focus-shadow-rgb: var(--point-01);
  --bs-btn-active-color: var(--mono-04);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: none;
  --bs-btn-disabled-color: var(--mono-04);
  --bs-btn-disabled-bg: none;
  --bs-btn-disabled-border-color: none;
  box-shadow: none;
  width: 2.4rem;
  height: 2.4rem;
}
.btn-icon-outline {
  --bs-btn-color: var(--mono-03);
  --bs-btn-bg: var(--mono-00);
  --bs-btn-border-color: var(--mono-02);
  --bs-btn-hover-color: var(--mono-03);
  --bs-btn-hover-bg: var(--mono-02);
  --bs-btn-hover-border-color: var(--mono-02);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--point-01);
  --bs-btn-active-border-color: var(--point-01);
  --bs-btn-disabled-color: var(--mono-03);
  --bs-btn-disabled-bg: var(--mono-00);
  --bs-btn-disabled-border-color: var(--mono-02);
  box-shadow: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
}
.btn-icon-text {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--main-01);
  --bs-btn-hover-border-color: var(--main-01);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--main-02);
  --bs-btn-active-border-color: var(--main-02);
  --bs-btn-disabled-color: var(--mono-00);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  gap: 0.6rem;
  box-shadow: none;
  height: 2.4rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
}
.btn-text {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--main-01);
  --bs-btn-hover-border-color: var(--main-01);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--main-02);
  --bs-btn-active-border-color: var(--main-02);
  --bs-btn-disabled-color: var(--mono-00);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  box-shadow: none;
  height: 2.4rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
}
.btn-text-2 {
  --bs-btn-color: var(--mono-05);
  --bs-btn-bg: var(--mono-03);
  --bs-btn-border-color: var(--mono-03);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--mono-04);
  --bs-btn-hover-border-color: var(--mono-04);
  --bs-btn-focus-shadow-rgb: var(--mono-05);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--mono-05);
  --bs-btn-active-border-color: var(--mono-05);
  --bs-btn-disabled-color: var(--mono-05);
  --bs-btn-disabled-bg: var(--mono-03);
  --bs-btn-disabled-border-color: var(--mono-03);
  box-shadow: none;
  height: 2.4rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
}
.btn-icon-text-box-1 {
  --bs-btn-color: var(--mono-04);
  --bs-btn-bg: var(--mono-02);
  --bs-btn-border-color: var(--mono-02);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--mono-04);
  --bs-btn-hover-border-color: var(--mono-04);
  --bs-btn-focus-shadow-rgb: var(--main-05);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--mono-05);
  --bs-btn-active-border-color: var(--mono-05);
  --bs-btn-disabled-color: var(--mono-02);
  --bs-btn-disabled-bg: var(--mono-04);
  --bs-btn-disabled-border-color: var(--mono-04);
  box-shadow: none;
  display: flex;
  gap: 0.6rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  width: 9rem;
  height: 3rem;
}
.btn-icon-text-box-2 {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--main-01);
  --bs-btn-hover-border-color: var(--main-01);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--main-02);
  --bs-btn-active-border-color: var(--main-02);
  --bs-btn-disabled-color: var(--mono-00);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  width: 9rem;
  height: 3rem;
}
.btn-icon-text-box-2__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-round-text {
  --bs-btn-color: var(--mono-05);
  --bs-btn-bg: var(--mono-00);
  --bs-btn-border-color: var(--mono-03);
  --bs-btn-hover-color: var(--mono-05);
  --bs-btn-hover-bg: var(--mono-02);
  --bs-btn-hover-border-color: var(--mono-03);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--point-01);
  --bs-btn-active-border-color: var(--point-01);
  --bs-btn-disabled-color: var(--mono-05);
  --bs-btn-disabled-bg: var(--mono-00);
  --bs-btn-disabled-border-color: var(--mono-03);
  box-shadow: none;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-radius: 5rem;
  width: 8rem;
}
.btn-round-text-2 {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-05);
  --bs-btn-hover-bg: var(--mono-02);
  --bs-btn-hover-border-color: var(--mono-03);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--mono-05);
  --bs-btn-active-bg: var(--mono-00);
  --bs-btn-active-border-color: var(--mono-03);
  --bs-btn-disabled-color: var(--mono-05);
  --bs-btn-disabled-bg: var(--mono-00);
  --bs-btn-disabled-border-color: var(--mono-03);
  box-shadow: none;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-radius: 5rem;
  width: 8rem;
}

/* form control */
.form-check-input {
  margin-top: 0.15em;
  font-size: 1.6rem;
}
.form-check-input:checked {
  background-color: var(--main-02);
  border-color: var(--main-02);
}
.form-check-input[type="checkbox"] {
  border-radius: 0.3rem;
}
.form-select {
  --bs-form-select-bg-img: url("../img/select_drop.svg");
  display: block;
  width: 100%;
  min-width: 15rem;
  height: 4rem;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--mono-02);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select__search-category {
  font-size: 1.1rem;
  color: var(--mono-05);
  padding: 1.2rem 1rem;
  border: 0.1rem solid var(--mono-02);
}

/* modal */
.modal-search {
  --bs-modal-width: 400px;
  --bs-modal-footer-border-color: var(--mono-02);
}
.modal-sm {
  --bs-modal-width: 400px;
}

/* 게시판 검색창 */
.modal-search .modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 0;
}
.modal-search .modal-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.modal-search .modal-body {
  padding: 1.5rem 2.5rem;
}
.modal-search .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-search .modal-footer {
  padding: 2rem;
  margin: 0 1rem;
}
.modal-search .modal-footer .btn {
  width: 6rem;
}
.modal-search .form-control {
  font-size: 1.3rem;
}
.modal-open {
  overflow: auto;
  padding-right: 0 !important;
}

/* dropdown */
.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1.1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(
    var(--bs-border-radius) - var(--bs-border-width)
  );
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--mono-05);
  --bs-dropdown-link-hover-bg: var(--mono-01);
  --bs-dropdown-link-active-color: var(--mono-05);
  --bs-dropdown-link-active-bg: var(--mono-02);
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.btn_close {
  border: 1px solid #dcdcdc;
  cursor: pointer;
  border-radius: 3px;
  background: #fff;
}
a.btn_close {
  text-align: center;
  line-height: 50px;
}

a.btn_frmline,
button.btn_frmline {
  display: inline-block;
  width: 128px;
  padding: 0 5px;
  height: 40px;
  border: 0;
  background: #434a54;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  vertical-align: top;
} /* 우편번호검색버튼 등 */
a.btn_frmline {
}
button.btn_frmline {
  font-size: 1rem;
}

/* 기본테이블 */
.tbl_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 5px;
  background: #fff;
  border-top: 1px solid var(--mono-02);
  border-bottom: 1px solid var(--mono-02);
}
.tbl_wrap caption {
  padding: 10px 0;
  font-weight: bold;
  text-align: left;
}
.tbl_head01 {
  margin: 0 0 10px;
}
.tbl_head01 caption {
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.tbl_head01 thead th {
  padding: 2rem 0;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--mono-04);
  text-align: center;
  border-bottom: 0.1rem solid var(--mono-02);
  height: 40px;
}
.tbl_head01 thead th a {
  color: var(--mono-04);
}
.tbl_head01 thead th.th_left {
  text-align: left;
}
.tbl_head01 thead th input {
  vertical-align: top;
} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th,
.tbl_head01 tfoot td {
  padding: 10px 0;
  border-top: 0.1rem solid var(--mono-02);
  border-bottom: 0.1rem solid var(--mono-02);
  background: #d7e0e2;
  text-align: center;
}
.tbl_head01 tbody th {
  padding: 8px 0;
  border-bottom: 0.1rem solid var(--mono-02);
}
.tbl_head01 td {
  color: #666;
  padding: 10px 5px;
  border-top: 0.1rem solid var(--mono-02);
  border-bottom: 0.1rem solid var(--mono-02);
  height: 4.5rem;
  word-break: break-all;
}
.tbl_head01 tbody tr:hover td {
  background: #fafafa;
}

.tbl_head02 {
  margin: 0 0 10px;
}
.tbl_head02 caption {
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.tbl_head02 thead th {
  padding: 5px 0;
  border-top: 1px solid #d1dee2;
  border-bottom: 1px solid #d1dee2;
  background: #e5ecef;
  color: #383838;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: -0.1rem;
}
.tbl_head02 thead a {
  color: #383838;
}
.tbl_head02 thead th input {
  vertical-align: top;
} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th,
.tbl_head02 tfoot td {
  padding: 10px 0;
  border-top: 1px solid #c1d1d5;
  border-bottom: 1px solid #c1d1d5;
  background: #d7e0e2;
  text-align: center;
}
.tbl_head02 tbody th {
  padding: 5px 0;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
}
.tbl_head02 td {
  padding: 5px 3px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
  line-height: 1.4rem;
  word-break: break-all;
}
.tbl_head02 a {
}
/* ===================================================
   [피드백 완벽 반영] 흔들림 없는 고밀도 미래형 게시판
   =================================================== */


/* 폼 테이블 */
.tbl_frm01 {
  margin: 0 0 20px;
}
.tbl_frm01 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_frm01 th {
  width: 70px;
  padding: 7px 13px;
  border: 1px solid #e9e9e9;
  border-left: 0;
  background: #f5f8f9;
  text-align: left;
}
.tbl_frm01 td {
  padding: 7px 10px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: transparent;
}
.wr_content textarea,
.tbl_frm01 textarea,
.form_01 textarea,
.frm_input {
  border: 1px solid var(--mono-02);
  background: #fff;
  color: #000;
  vertical-align: middle;
  border-radius: 5px;
  padding: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tbl_frm01 textarea {
  padding: 2px 2px 3px;
}
.frm_input {
  height: 40px;
}

.full_input {
  width: 100%;
}
.half_input {
  width: 49.5%;
}
.twopart_input {
  width: 385px;
  margin-right: 10px;
}
.tbl_frm01 textarea,
.write_div textarea {
  width: 100%;
  height: 100px;
}
.tbl_frm01 a {
  text-decoration: none;
}
.tbl_frm01 .frm_file {
  display: block;
  margin-bottom: 5px;
}
.tbl_frm01 .frm_info {
  display: block;
  padding: 0 0 5px;
  line-height: 155%;
  font-size: 1.3rem;
}

.form-control {
  display: block;
  width: auto;
  height: 4rem;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--mono-05);
  background-color: var(--mono-00);
  background-clip: padding-box;
  border: 0.1rem solid var(--mono-02);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.4rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.register-input {
  flex-grow: 1;
  width: 100%;
  border: 0.1rem solid var(--mono-02);
}
.register-input::placeholder {
  color: var(--mono-04);
}

/*기본 리스트*/
.list_01 ul {
  border-top: 1px solid #ececec;
}
.list_01 li {
  border-bottom: 1px solid #ececec;
  background: #fff;
  padding: 10px 15px;
  list-style: none;
  position: relative;
}
.list_01 li:nth-child(odd) {
  background: #f6f6f6;
}
.list_01 li:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.list_01 li:hover {
  background: #f9f9f9;
}
.list_01 li.empty_li {
  text-align: center;
  padding: 20px 0;
  color: #666;
}

/*폼 리스트*/
.form_01 h2 {
  font-size: 1.167rem;
}
.form_01 li {
  margin-bottom: 10px;
}
.form_01 ul:after,
.form_01 li:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.form_01 .left_input {
  float: left;
}
.form_01 .margin_input {
  margin-right: 1%;
}
.form_01 textarea {
  height: 100px;
  width: 100%;
}
.form_01 .frm_label {
  display: inline-block;
  width: 130px;
}

/* 자료 없는 목록 */
.empty_table {
  padding: 50px 0 !important;
  text-align: center;
}
.empty_list {
  padding: 20px 0 !important;
  color: #666;
  text-align: center;
}

/* 필수입력 */
.required,
textarea.required {
  background-image: url("../img/require.png") !important;
  background-repeat: no-repeat !important;
  background-position: right top !important;
}

/* 테이블 항목별 정의 */
.td_board {
  width: 80px;
  text-align: center;
}
.td_category {
  width: 80px;
  text-align: center;
}
.td_chk {
  text-align: center;
}
.td_date {
  width: 60px;
  text-align: center;
}
.td_datetime {
  width: 110px;
  text-align: center;
}
.td_group {
  width: 80px;
  text-align: center;
}
.td_mb_id {
  width: 100px;
  text-align: center;
}
.td_mng {
  width: 80px;
  text-align: center;
}
.td_name {
  width: 100px;
  text-align: left;
}
.td_nick {
  width: 100px;
  text-align: center;
}
.td_num {
  width: 50px;
  text-align: center;
}
.td_numbig {
  width: 80px;
  text-align: center;
}
.td_stat {
  width: 60px;
  text-align: center;
}

.txt_active {
  color: #5d910b;
}
.txt_done {
  color: #e8180c;
}
.txt_expired {
  color: #ccc;
}
.txt_rdy {
  color: #8abc2a;
}

/* 새창 기본 스타일 */
.new_win {
  position: relative;
}
.new_win .tbl_wrap {
  margin: 0 20px;
}
.new_win #win_title {
  font-size: 1.3rem;
  height: 50px;
  line-height: 30px;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.new_win #win_title .sv {
  font-size: 0.75rem;
  line-height: 1.2rem;
}
.new_win .win_ul {
  margin-bottom: 15px;
  padding: 0 20px;
}
.new_win .win_ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.new_win .win_ul li {
  float: left;
  background: #fff;
  text-align: center;
  padding: 0 10px;
  border: 1px solid #d6e9ff;
  border-radius: 30px;
  margin-left: 5px;
}
.new_win .win_ul li:first-child {
  margin-left: 0;
}
.new_win .win_ul li a {
  display: block;
  padding: 8px 0;
  color: #6794d3;
}
.new_win .win_ul .selected {
  background: #3a8afd;
  border-color: #3a8afd;
  position: relative;
  z-index: 5;
}
.new_win .win_ul .selected a {
  color: #fff;
  font-weight: bold;
}
.new_win .win_desc {
  position: relative;
  margin: 10px;
  border-radius: 5px;
  font-size: 1rem;
  background: #f2838f;
  color: #fff;
  line-height: 50px;
  text-align: left;
  padding: 0 20px;
}
.new_win .win_desc i {
  font-size: 1.2rem;
  vertical-align: baseline;
}
.new_win .win_desc:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 50px;
  background: #da4453;
  border-radius: 3px 0 0 3px;
}
.new_win .frm_info {
  font-size: 0.92rem;
  color: #919191;
}
.new_win .win_total {
  float: right;
  display: inline-block;
  line-height: 30px;
  font-weight: normal;
  font-size: 0.75rem;
  color: #3a8afd;
  background: #f6f6f6;
  padding: 0 10px;
  border-radius: 5px;
}
.new_win .new_win_con {
  margin: 20px 0;
  padding: 0 20px 20px;
}
.new_win .new_win_con:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.new_win .new_win_con2 {
  margin: 20px 0;
}
.new_win .btn_confirm:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.new_win .win_btn {
  text-align: center;
}
.new_win .cert_btn {
  margin-bottom: 30px;
  text-align: center;
}
.new_win .btn {
  width: 8rem;
  letter-spacing: -1.2px;
}

/* 검색결과 색상 */
.sch_word {
  color: var(--red);
  font-weight: 600;
  line-height: 18px;
}

/* 자바스크립트 alert 대안 */
#validation_check {
  margin: 100px auto;
  width: 500px;
}
#validation_check h1 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
#validation_check p {
  margin-bottom: 20px;
  padding: 30px 20px;
  border: 1px solid #e9e9e9;
  background: #fff;
}

/* 사이드뷰 */
.sv_wrap {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: normal;
}
.sv_wrap .sv {
  z-index: 1000;
  display: none;
  margin: 5px 0 0;
  font-size: 1.3rem;
  background: var(--mono-00);
  text-align: center;
  -webkit-box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.sv_wrap .sv a:last-child {
  border-bottom: 0;
}
.sv_wrap .sv a {
  display: inline-block;
  margin: 0;
  padding: 8px 12px;
  white-space: nowrap;
  font-weight: 400;
  line-height: initial;
  text-decoration: none;
  border-bottom: 0.1rem solid var(--mono-02);
}
.sv_wrap .sv a:hover {
  color: #000;
}
.sv_wrap .profile_img {
  display: flex;
  align-items: center;
}
.sv_member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mono-05);
  white-space: nowrap;
}
.sv_member .profile_img img {
  width: 1.5rem;
  height: 1.5rem;
}
.sv_on {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 23px;
  left: 0px;
  width: auto;
  height: auto;
}
.sv_nojs .sv {
  display: block;
}

/* 페이징 */
.pg_wrap {
  clear: both;
  float: left;
  display: inline-block;
  margin: 3rem 0;
}
.pg_wrap:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.pg {
  text-align: center;
}
.pg_page,
.pg_current {
  display: inline-block;
  vertical-align: middle;
  background: var(--mono-00);
  border: 1px solid var(--mono-02);
}
.pg a:focus,
.pg a:hover {
  text-decoration: none;
}
.pg_page {
  color: var(--mono-05);
  font-size: 1.2rem;
  height: 24px;
  line-height: 20px;
  min-width: 24px;
  text-decoration: none;
  border-radius: 0.5rem;
}
.pg_page:hover {
  background-color: #fafafa;
}
.pg_prev {
  /* text-indent: -999px; */
  /* overflow: hidden; */
  /* background: url("../img/btn_prev.gif") no-repeat 50% 50% var(--mono-00); */
  padding: 0;
  /* border: 1px solid var(--mono-02); */
  border: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pg_next {
  /* text-indent: -999px; */
  /* overflow: hidden; */
  /* background: url("../img/btn_next.gif") no-repeat 50% 50% var(--mono-00); */
  padding: 0;
  /* border: 1px solid var(--mono-02); */
  border: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pg_start:hover,
.pg_prev:hover,
.pg_end:hover,
.pg_next:hover {
  background-color: #fafafa;
}

.pg_current {
  display: inline-block;
  background: var(--point-01);
  border: 1px solid var(--point-01);
  font-size: 1.2rem;
  color: var(--mono-00);
  height: 24px;
  line-height: 20px;
  min-width: 24px;
  border-radius: 0.5rem;
}

/* cheditor 이슈 */
.cheditor-popup-window *,
.cheditor-popup-window :after,
.cheditor-popup-window :before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Mobile화면으로 */
#device_change {
  display: block;
  margin: 0.3rem;
  padding: 0.5rem 0;
  border: 1px solid #eee;
  border-radius: 2rem;
  background: #fff;
  color: #000;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
}

/* custom components */
/*
   ==========================================================================
   Nunchis Korea's International Community - theme.css
   Location: FTP > www > theme > css > custom.css
   Generated by Nunchis AI (2026-05-22 11:34 KST)
   👉 "글자색 찐하게" 요구 사항 완벽 반영
   ==========================================================================
*/

/* * custom components */
/* 게시판 틀 */
.board-wrap {
  width: 900px;
  min-height: 1080px;
  height: auto !important;
  border: 0.2rem solid var(--mono-02);
  border-radius: 0.5rem;
}
.board-wrap__title {
  border-bottom: 0.2rem solid var(--mono-02);
  padding: 1.6rem 3rem;
  font-size: 1.8rem;
  font-weight: 700; /* 👉 글꼴 더 두껍게 (찐하게) */
  color: var(--main-02);
}
.board-wrap__title a,
.board-wrap__title span {
  margin-bottom: 0;
  padding: 0 0.5rem;
  font-size: 1.8rem;
  font-weight: 700; /* 👉 글꼴 더 두껍게 (찐하게) */
  color: var(--main-02);
}
.board-wrap__body {
  padding: 0 1rem;
}
.board-wrap__tab-wrap {
  padding: 1rem 2rem;
  border-bottom: 0.2rem solid var(--mono-02);
}
.board-wrap__tab {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.board-wrap__tab-item {
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 500; /* 기본 글꼴 더 두껍게 (찐하게) */
  color: var(--mono-04);
}
.board-wrap__tab-item a {
  font-weight: 500; /* 기본 글꼴 더 두껍게 (찐하게) */
  color: var(--mono-04);
}
.board-wrap__tab-item__active {
  color: var(--point-01);
  font-weight: 700; /* 👉 활성 글꼴 더 두껍게 (찐하게) */
  border-bottom: 0.3rem solid var(--point-01); /* 👉 밑줄 더 두껍게 */
}
.board-wrap__tab-item__active a {
  color: var(--point-01);
}
.board-wrap__tab-item:focus,
.board-wrap__tab-item:hover,
.board-wrap__tab-item:active {
  font-weight: 700; /* 👉 호버 시 글꼴 더 두껍게 (찐하게) */
  color: var(--point-01);
  border-bottom: 0.3rem solid var(--point-01); /* 👉 밑줄 더 두껍게 */
}

/* ==========================================================================
   🔥 [Nunchis 메인] 악성 네모 테두리 파괴 및 구역별 완벽 분리
   ========================================================================== */

/* 1. [공통] 모든 탭의 상하좌우 징그러운 박스 테두리 영구 삭제 */
.nav-tabs {
  border-bottom: 1px solid #E2E8F0 !important;
  gap: 15px !important;
}
.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link {
  background-color: transparent !important;
  /* 부트스트랩 기본 테두리 강제 파괴 */
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  
  padding: 6px 4px !important;
  font-size: 14px !important;
  font-weight: 700 !important; /* 👉 글꼴 더 두껍게 (찐하게) */
  color: #666666 !important; /* 👉 더 짙은 회색으로 변경 (찐하게) */
  border-bottom: 2px solid transparent !important; 
}

/* 2. [기본 활성화] KOREA VIBES, GENERAL 등 -> 주황색 글씨 + 주황색 밑줄 */
.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-link.active {
  background-color: transparent !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  
  font-weight: 800 !important; /* 👉 활성 글꼴 더 두껍게 (찐하게) */
  color: #FF7A1A !important;
  border-bottom: 3px solid #FF7A1A !important; /* 👉 밑줄 더 두껍게 (찐하게) */
}

/* ==========================================================================
   3. [네이비 찐하게 + 선 없음] 
   👉 오직 JOIN ME, HELP WANTED, KOREA SNAPS 세 구역만!
   ========================================================================== */
/* 사진으로 확인한 match(조인), merc(용병) 완벽 타격! */
.nav-tabs .nav-link.active[id*="match"],
.nav-tabs .nav-link.active[data-bs-target*="match"],
.nav-tabs .nav-link.active[id*="merc"], 
.nav-tabs .nav-link.active[data-bs-target*="merc"],
/* KOREA SNAPS (스냅) 타격 */
.nav-tabs .nav-link.active[id*="snap"],
.nav-tabs .nav-link.active[data-bs-target*="snap"],
.nav-tabs .nav-link.active[id*="gallery"],
.nav-tabs .nav-link.active[data-bs-target*="gallery"] {
  color: #101F3C !important; /* 👉 더 짙은 네이비색으로 변경 (찐하게) */
  font-weight: 900 !important; /* 👉 글꼴 가장 두껍게 (최대 찐하게) */
  border-bottom: none !important; /* 주황색 밑줄 완벽 차단! (선 없음) */
  background-color: transparent !important;
}

/* ==========================================================================
   4. [네이비 글씨 + 선 없음] 
   👉 THINGS TO DO, OFFICIAL UPDATES 등
   👉 사용자의 "네이비로 바꿔줄래" 요청 반영: 글자 색상을 네이비(#1A2B4C)로 변경
   ========================================================================== */
/* 박스 모양 및 글자 색상 잡기 (일반 및 활성 모두 적용) */
.nav-tabs .nav-link[id*="thing"], .nav-tabs .nav-link[data-bs-target*="thing"],
.nav-tabs .nav-link[id*="todo"], .nav-tabs .nav-link[data-bs-target*="todo"],
.nav-tabs .nav-link[id*="official"], .nav-tabs .nav-link[data-bs-target*="official"],
.nav-tabs .nav-link[id*="update"], .nav-tabs .nav-link[data-bs-target*="update"] {
  color: #1A2B4C !important; /* 👉 글자 색상을 네이비로 변경 */
  padding: 8px 16px !important;
  border-radius: 6px !important;
  margin-bottom: 2px !important;
}

/* 활성화 시 배경색 및 밑줄 차단 */
.nav-tabs .nav-link.active[id*="thing"], .nav-tabs .nav-link.active[data-bs-target*="thing"],
.nav-tabs .nav-link.active[id*="todo"], .nav-tabs .nav-link.active[data-bs-target*="todo"],
.nav-tabs .nav-link.active[id*="official"], .nav-tabs .nav-link.active[data-bs-target*="official"],
.nav-tabs .nav-link.active[id*="update"], .nav-tabs .nav-link.active[data-bs-target*="update"] {
  background-color: #E6F7FF !important; /* 배경색은 유지 */
  /* color는 위에서 !important로 네이비로 고정됨 */
  border-bottom: none !important; /* 밑줄 차단 */
}

/* custom function class */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collapsing {
  transition: height 0.1s ease;
}

/* sweet alert 2 */
div:where(.swal2-container) .swal2-html-container {
  font-size: 1.3rem !important;
  margin: 0 !important;
  padding: 0 3rem 2rem !important;
}
.swal2-modal {
  width: 350px !important;
  padding: 0 0 3.2rem;
  z-index: 100001;
}
.alert__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-02);
  padding: 3.6rem 3rem 2rem;
}
.alert__text {
  font-size: 1.3rem;
  color: var(--mono-05);
}
.alert__confirm-btn {
  font-size: 1.1rem !important;
  color: var(--mono-00) !important;
  padding: 0 1rem !important;
  width: 8rem !important;
  height: 2.4rem !important;
  background: var(--point-01) !important;
}
.alert__cancel-btn {
  font-size: 1.1rem !important;
  color: var(--mono-05) !important;
  padding: 0 1rem !important;
  width: 8rem !important;
  height: 2.4rem !important;
  background: var(--mono-03) !important;
}

.add-favorite {
  color: var(--point-01) !important;
}

.level-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================================
   [Nunchis] KOREA SNAP - 타이틀 확대 + 우측 버튼 + 슬림 카드
   =================================================== */

/* ---------------------------------------------------
   1. 상단 영역 (타이틀 확대 & 카테고리 & 우측 버튼)
   --------------------------------------------------- */
/* [추가됨] 게시판 메인 타이틀 (KOREA SNAPS) 시원하게 확대! */
#wrapper #container_title span, 
#wrapper #container_title a,
#bo_gall h2 {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 20px !important;
    display: inline-block !important;
}

/* 카테고리 탭 (전체, 잡담 등) */
#bo_gall #bo_cate ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    border-bottom: 2px solid #f1f5f9 !important; 
    padding-bottom: 12px !important;
    margin-bottom: 20px !important;
}
#bo_gall #bo_cate a {
    font-size: 15px !important;
    color: #64748b !important;
    text-decoration: none !important;
}
#bo_gall #bo_cate a:hover {
    color: #0f172a !important;
    font-weight: 600 !important;
}

/* 토탈 건수 및 상단 버튼 영역 틀 */
#bo_gall #bo_btn_top {
    display: flex !important;
    justify-content: space-between !important; /* Total은 왼쪽, 버튼은 오른쪽으로 쫙 밀어냄 */
    align-items: center !important;
    margin-bottom: 20px !important;
    font-size: 13px !important;
    color: #64748b !important;
    width: 100% !important;
}

/* [추가됨] 글쓰기, 돋보기(검색), 목록 버튼 등 오른쪽으로 정렬 */
#bo_gall .btn_bo_user {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important; /* 버튼들 사이의 간격 */
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
#bo_gall .btn_bo_user li {
    margin: 0 !important;
}
#bo_gall .btn_bo_user .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* ---------------------------------------------------
   2. 갤러리 카드 영역 (얇고 날렵한 디자인 - 기존과 동일)
   --------------------------------------------------- */
#bo_gall .gall_row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#bo_gall .gall_li {
    width: 100% !important;
    margin: 0 !important;
    clear: none !important;
    list-style: none !important;
}

/* 카드 겉모습 */
#bo_gall .gall_box {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 0 !important; 
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02) !important; 
    transition: all 0.2s ease !important;
}
#bo_gall .gall_box:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06) !important;
    border-color: #cbd5e1 !important;
}

/* 사진 영역 */
#bo_gall .gall_img {
    order: 1 !important;
    width: 100% !important;
    height: 180px !important;
    margin: 0 !important;
    overflow: hidden !important;
}
#bo_gall .gall_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    transition: transform 0.3s ease !important;
}
#bo_gall .gall_box:hover .gall_img img {
    transform: scale(1.05) !important;
}

/* ---------------------------------------------------
   3. [핵심] 얇은 한 줄 스타일 텍스트 칸 (기존과 동일)
   --------------------------------------------------- */
#bo_gall .gall_con {
    order: 2 !important;
    padding: 12px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
}

/* 제목 영역 */
#bo_gall .gall_text_href {
    order: 1 !important;
    margin-bottom: 4px !important;
}
#bo_gall .bo_tit {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
#bo_gall .bo_cnt {
    display: none !important;
}

/* 하단 작성자 및 날짜 영역 */
#bo_gall .gall_info {
    order: 2 !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    font-size: 12px !important; 
    color: #94a3b8 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
#bo_gall .gall_info .sound_only {
    display: none !important; 
}

/* ---------------------------------------------------
   4. 불필요한 요소 숨김 및 반응형 (기존과 동일)
   --------------------------------------------------- */
#bo_gall .gall_chk, 
#bo_gall .gall_option {
    display: none !important;
}

@media (max-width: 1200px) {
    #bo_gall .gall_row { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
    #bo_gall .gall_row { grid-template-columns: repeat(2, 1fr) !important; }
    #bo_gall .gall_img { height: 160px !important; } 
}
@media (max-width: 480px) {
    #bo_gall .gall_row { grid-template-columns: repeat(1, 1fr) !important; }
}
/* ===================================================
   게시판 이중 테두리 제거
   - 바깥 #container 카드만 유지
   - 안쪽 테이블 박스(.tbl_wrap)는 투명 처리
   =================================================== */

#bo_list .tbl_wrap,
#bo_v .tbl_wrap,
#bo_w .tbl_wrap,
.bo_fx + .tbl_wrap {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

/* 테이블 자체의 위아래 굵은 선도 약하게 정리 */
#bo_list .tbl_wrap table,
#bo_v .tbl_wrap table,
#bo_w .tbl_wrap table {
    border-top: 0 !important;
    border-bottom: 0 !important;
    background: transparent !important;
}

/* 게시판 목록 줄만 깔끔하게 유지 */
#bo_list .tbl_head01 td,
#bo_v .tbl_head01 td,
#bo_w .tbl_head01 td {
    border-top: 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
/* ===================================================
   메인 화면 이중 테이블 정리 - Nunchis Soft Card
   =================================================== */

/* 전체 배경을 조금 더 밝고 부드럽게 */
body {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 35%, #f3f7fb 100%) !important;
}

/* 메인 섹션 카드는 유지 */
.latest_wr,
.latest_top_wr,
.section-list1,
.section-list2 {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045) !important;
  overflow: hidden !important;
}

/* hover 시 흔들리는 느낌 제거 */
.latest_wr:hover,
.latest_top_wr:hover,
#aside > div:hover {
  transform: none !important;
}

/* 내부 테이블 박스 제거 */
.latest_wr .tbl_wrap,
.latest_top_wr .tbl_wrap,
.section-list1 .tbl_wrap,
.section-list2 .tbl_wrap,
.latest_wr .tbl_head01,
.latest_top_wr .tbl_head01,
.section-list1 .tbl_head01,
.section-list2 .tbl_head01 {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 내부 테이블의 위아래 테두리 제거 */
.latest_wr .tbl_wrap table,
.latest_top_wr .tbl_wrap table,
.section-list1 .tbl_wrap table,
.section-list2 .tbl_wrap table,
.latest_wr .tbl_head01 table,
.latest_top_wr .tbl_head01 table,
.section-list1 .tbl_head01 table,
.section-list2 .tbl_head01 table {
  background: transparent !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  box-shadow: none !important;
}

/* 테이블 헤더는 아주 연하게 */
.latest_wr .tbl_head01 thead th,
.latest_top_wr .tbl_head01 thead th,
.section-list1 .tbl_head01 thead th,
.section-list2 .tbl_head01 thead th {
  background: #f8fafc !important;
  border-bottom: 1px solid #edf2f7 !important;
  color: #64748b !important;
  font-weight: 700 !important;
}

/* 행 구분선만 얇게 유지 */
.latest_wr .tbl_head01 td,
.latest_top_wr .tbl_head01 td,
.section-list1 .tbl_head01 td,
.section-list2 .tbl_head01 td {
  border-top: 0 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  background: transparent !important;
}

/* 줄 hover는 배경만 살짝 */
.latest_wr .tbl_head01 tbody tr:hover td,
.latest_top_wr .tbl_head01 tbody tr:hover td,
.section-list1 .tbl_head01 tbody tr:hover td,
.section-list2 .tbl_head01 tbody tr:hover td {
  background: #f8fbff !important;
}

/* 섹션 탭 하단 라인 부드럽게 */
.nav-tabs.section-list1__tab {
  border-bottom-color: #edf2f7 !important;
}

/* 탭 활성 컬러를 Nunchis 오렌지로 */
.nav-item.section-list1__title .nav-link.active {
  color: #ff6b00 !important;
  border-bottom-color: #ff6b00 !important;
}

.nav-item.section-list1__title .nav-link:hover,
.nav-item.section-list1__title .nav-link:focus {
  color: #ff6b00 !important;
  border-bottom-color: #ff6b00 !important;
}

/* 사이드 카드도 시안처럼 조금 부드럽게 */
#aside > div {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045) !important;
}
/* ===================================================
   Nunchis 메인 기본 정리
   =================================================== */

/* 전체 배경만 밝게 */
body {
    background: #f8fafc !important;
}

/* 메인 컨테이너는 박스처럼 감싸지 않음 */
#container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* 메인 섹션 카드만 살림 */
.latest_wr,
.latest_top_wr {
    background: #fff !important;
    border: 1px solid #e8eef5 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045) !important;
    overflow: hidden !important;
}

/* 카드가 움직이는 효과 제거 */
.latest_wr:hover,
.latest_top_wr:hover,
#aside > div:hover {
    transform: none !important;
}

/* 기본 테이블은 너무 강하게 건드리지 않음 */
.tbl_wrap table,
#bo_list table {
    border-collapse: collapse !important;
    background: transparent !important;
}
/* ===================================================
   Nunchis Main Mood - Soft Blue + White Card Style
   적용 위치: default.css 맨 아래
   =================================================== */

/* 전체 배경: 위는 흰색, 아래로 갈수록 은은한 하늘색 */
body {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfdff 22%,
    #f5faff 58%,
    #eef7ff 100%
  ) !important;
}

/* 왼쪽 전체 컨테이너는 박스처럼 감싸지 않음 */
#container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* 메인 최신글 카드 공통 */
.latest_wr,
.latest_top_wr {
  background: #ffffff !important;
  border: 1px solid #e6eef7 !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(15, 42, 80, 0.065) !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

/* 카드 hover: 움직임 없이 그림자만 살짝 */
.latest_wr:hover,
.latest_top_wr:hover {
  transform: none !important;
  border-color: #dbe8f5 !important;
  box-shadow: 0 12px 30px rgba(15, 42, 80, 0.08) !important;
}

/* 오른쪽 사이드 카드 */
#aside > div {
  background: #ffffff !important;
  border: 1px solid #e6eef7 !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(15, 42, 80, 0.065) !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

#aside > div:hover {
  transform: none !important;
  border-color: #dbe8f5 !important;
  box-shadow: 0 12px 30px rgba(15, 42, 80, 0.08) !important;
}

/* 하단 latest 카드도 같은 톤 */
.footer-latest-container .latest_wr {
  background: #ffffff !important;
  border: 1px solid #e6eef7 !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(15, 42, 80, 0.065) !important;
  overflow: hidden !important;
}

.footer-latest-container .latest_wr:hover {
  transform: none !important;
  border-color: #dbe8f5 !important;
  box-shadow: 0 12px 30px rgba(15, 42, 80, 0.08) !important;
}

/* 섹션 탭 라인 부드럽게 */
.nav-tabs.section-list1__tab {
  border-bottom-color: #edf3fa !important;
}

/* 활성 탭: Nunchis 오렌지 */
.nav-item.section-list1__title .nav-link.active {
  color: #ff5a1f !important;
  border-bottom-color: #ff5a1f !important;
}

.nav-item.section-list1__title .nav-link:hover,
.nav-item.section-list1__title .nav-link:focus {
  color: #ff5a1f !important;
  border-bottom-color: #ff5a1f !important;
}

/* 더보기 동그라미 버튼 톤 정리 */
.latest_wr .lt_more .lt_more_icon,
.section-list2__list-more-icon {
  background: #0b1f3a !important;
  color: #ffffff !important;
}

/* 기본 테이블은 너무 강하지 않게 */
.tbl_wrap table,
#bo_list table {
  background: transparent !important;
  border-collapse: collapse !important;
}

/* 메인 latest 안쪽 테이블 선은 연하게 */
.latest_wr .tbl_head01 thead th,
.latest_top_wr .tbl_head01 thead th {
  background: transparent !important;
  border-bottom: 1px solid #edf3fa !important;
  color: #94a3b8 !important;
}

.latest_wr .tbl_head01 td,
.latest_top_wr .tbl_head01 td {
  border-top: 0 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  background: transparent !important;
}

/* 메인 latest 행 hover */
.latest_wr .tbl_head01 tbody tr:hover td,
.latest_top_wr .tbl_head01 tbody tr:hover td {
  background: #f8fbff !important;
}

/* 푸터와 메인 사이 배경 자연스럽게 */
#ft {
  margin-top: 4.8rem !important;
}
/* 하단 구조 재배치 */
.footer-latest-container .footer_top_pair {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.footer-latest-container .section-list1__half {
    flex: 1 1 0;
    width: auto !important;
    min-width: 0;
}

/* Things to Do 전체 가로 */
.things_full_wr {
    width: 100% !important;
    margin-top: 0;
}

/* Things to Do 내부 여백 */
.things_full_wr .section-list1__items {
    width: 100%;
}

/* Things to Do 카드가 전체 폭에서 4개로 나오게 */
.things_full_wr .todo_grid,
.things_full_wr .things_grid,
.things_full_wr .todo_insta_grid,
.things_full_wr .todo_cards,
.things_full_wr .todo_list {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

/* 모바일 */
@media (max-width: 768px) {
    .footer-latest-container .footer_top_pair {
        flex-direction: column;
    }

    .things_full_wr .todo_grid,
    .things_full_wr .things_grid,
    .things_full_wr .todo_insta_grid,
    .things_full_wr .todo_cards,
    .things_full_wr .todo_list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
/* GENERAL + OFFICIAL UPDATES 같은 줄 */
.main_bottom_pair {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.main_bottom_pair .main_bottom_half {
    flex: 1 1 0;
    width: auto !important;
    min-width: 0;
}

/* Things to Do 전체 가로 */
.footer-latest-container .things_full_wr {
    width: 100% !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .main_bottom_pair {
        flex-direction: column;
    }
}
/* ===================================================
   Nunchis bottom layout final tuning
   GENERAL | OFFICIAL UPDATES + THINGS TO DO spacing
   =================================================== */

/* 메인 컨테이너 아래 강제 여백 제거 */
#container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

/* GENERAL + OFFICIAL 줄 */
.main_bottom_pair {
    display: flex !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
}

/* 반반 카드 */
.main_bottom_pair .main_bottom_half {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    margin-bottom: 0 !important;
}

/* footer latest 자체를 위로 당김 */
.footer-latest-container {
    margin-top: -34px !important;
    padding-top: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Things to Do 전체 가로 */
.footer-latest-container .things_full_wr {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Things to Do 내부 상단 여백 줄이기 */
.things_full_wr .section-list1__items {
    padding-top: 0 !important;
}

/* 푸터와 Things to Do 사이 */
#ft {
    margin-top: 20px !important;
}
/* ===================================================
   GENERAL + OFFICIAL 최종 폭 조정
   General을 늘리면 Official도 오른쪽으로 밀리는 방식
   =================================================== */

#container,
#container_wr,
#wrapper,
#contents {
    overflow: visible !important;
}

/* 조절값 */
:root {
    --bottom-extend: 229px;   /* 전체를 오른쪽으로 늘리는 기본값 */
    --general-add: 36px;      /* General만 추가로 늘리는 값 */
    --bottom-gap: 20px;
}

/* GENERAL + OFFICIAL 묶음 */
.main_bottom_pair {
    display: grid !important;

    /*
      핵심:
      첫 번째 칸 GENERAL = 기존 비율 + general-add
      두 번째 칸 OFFICIAL = 기존 크기 유지
      그래서 GENERAL이 늘어난 만큼 OFFICIAL이 오른쪽으로 밀림
    */
    grid-template-columns:
        calc(42.5% + var(--general-add))
        57.5% !important;

    gap: var(--bottom-gap) !important;
    align-items: stretch !important;

    /*
      General이 늘어난 만큼 전체 폭도 같이 늘림
      그래야 Official이 줄어들지 않고 오른쪽으로 이동함
    */
    width: calc(100% + var(--bottom-extend) + var(--general-add)) !important;
    max-width: none !important;

    margin-top: 0 !important;
    margin-bottom: 22px !important;

    position: relative !important;
    z-index: 5 !important;
}

/* 각 카드 */
.main_bottom_pair .main_bottom_half {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

/* 카드 높이 */
.main_bottom_pair .latest_wr,
.main_bottom_pair .section-list1 {
    min-height: 260px !important;
}

/* Things to Do와 간격 */
.things_full_wr {
    margin-top: 0 !important;
}
/* =====================================================
   NUNCHIS BLACK HEADER / FOOTER
   상단 메뉴 + 하단 footer 검정화
===================================================== */

/* 상단 메뉴 바 */
#gnb_1dul,
#gnb .gnb_1dli,
#gnb .gnb_wrap,
#gnb .gnb_2da {
    background: #050505 !important;
    background-color: #050505 !important;
}

/* 상단 메뉴 글자 */
#gnb .gnb_1da {
    color: #ffffff !important;
    background: #050505 !important;
    border-top-color: #050505 !important;
}

/* 메뉴 hover */
#gnb .gnb_1dli:hover > a,
#gnb .gnb_1da:hover {
    color: #ffffff !important;
    background: #111111 !important;
    border-top-color: #ff5a1f !important;
}

/* 2차 메뉴 */
#gnb .gnb_2da {
    color: #ffffff !important;
    background: #050505 !important;
}

#gnb .gnb_2da:hover {
    color: #ff5a1f !important;
    background: #111111 !important;
}

/* 하단 footer */
#ft {
    background: #050505 !important;
    background-color: #050505 !important;
}

/* footer 위쪽 링크 영역 */
#ft_wr {
    background: #050505 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
}

/* footer 아래 영역 */
#ft_wr2 {
    background: #050505 !important;
}

/* footer 링크 */
#ft_link a {
    color: rgba(255,255,255,.75) !important;
}

#ft_link a:hover {
    color: #ff5a1f !important;
}

/* footer 구분선 */
#ft_wr .ft_dv_bar {
    border-right-color: rgba(255,255,255,.25) !important;
}

/* 이메일 / 카피라이트 */
#ft_address,
#ft_copy {
    color: rgba(255,255,255,.68) !important;
}