@charset "utf-8";

/* 게시판 목록 */
#bo_gall {
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

#bo_gall .title {
  display: flex;
  width: 1360px;
  justify-content: space-between;
  align-items: center;
}

#bo_gall .title h3 {
  color: #000;
  font-size: 48px;
  font-weight: 800;
  display: flex;
  align-items: self-end;
  gap: 16px;
}

#bo_gall .title h3 span {
  font-size: 23px;
  font-weight: 600;
  color: #eee;
  padding-bottom: 8px;
  display: flex;
  gap: 20px;
}

#bo_gall .title h3 span a {
  color: #5c5c5c;
  letter-spacing: -0.5px;
  position: relative;
}

#bo_gall .title h3 span a:hover {
  opacity: 0.7;
}

#bo_gall .title h3 span a:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 16px;
    display: block;
    background-color: #ddd;
    position: absolute;
    top: 6px;
    right: -11px;
}

#bo_gall h4 {
  display: flex;
  width: 100%;
  max-width: 1360px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}

#bo_gall h4 a {
  display: flex;
  border: 1px solid #ddd;
  padding: 5px 14px;
  font-size: 12px;
  border-radius: 20px;
  display: none;
}

#bo_gall h4 p {
  font-size: 26px;
  font-weight: 700;
}

#bo_gall .row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  position: relative;
}

#bo_gall .row p.mark {
  position: absolute;
  top: -250px;
}

#bo_gall .order {
  position: absolute;
  z-index: 9999999;
  top: 20px;
  right: 20px;
}

#bo_cate_ul {
  margin-top: 0;
}

#fboardlist {
  width: 100%;
}

.td_subject img {
  margin-left: 3px;
}

.empty_list {
  padding: 20px 0 !important;
  color: #666;
  text-align: center;
  font-size: 16px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.selec_chk {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
}

.chk_box {
  position: relative;
}

.chk_box input[type="checkbox"]+label {
  position: relative;
  padding-left: 20px;
  color: #676e70;
  vertical-align: baseline;
}

.chk_box input[type="checkbox"]+label:hover {
  color: #2172f8;
}

.chk_box input[type="checkbox"]+label span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  display: block;
  background: #fff;
  border: 1px solid #d0d4df;
  border-radius: 3px;
}

.write_div .chk_box input[type="checkbox"]+label,
.bo_vc_w .chk_box input[type="checkbox"]+label {
  padding-left: 20px;
}

.write_div .chk_box input[type="checkbox"]+label span,
.bo_vc_w .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 #d0d4df;
  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% #3a8afd;
  border-color: #1471f6;
  border-radius: 3px;
}

.all_chk.chk_box input[type="checkbox"]+label span {
  top: 0;
  left: 0;
}


@media screen and (max-width: 800px) {
  #bo_gall .title {
    align-items: end;
  }

  #bo_gall .title h3 {
    font-size: 40px;
    flex-direction: column;
    align-items: baseline;
  }

  #bo_gall .title h3 span {
    font-size: 20px;
  }
}

@media screen and (max-width: 500px) {
  #bo_gall .title h3 span {
    font-size: 18px;
  }
}



/* 갤러리 목록 */
#gall_ul {
  display: flex;
  width: 100%;
  max-width: 1600px;
  align-items: center;
  align-content: center;
  gap: 40px;
  align-self: stretch;
  flex-wrap: wrap;
}

#gall_ul .item {
  display: flex;
  width: calc(100% / 3 - 27px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background-color: #eee;
}

#gall_ul .item .inner {
  padding-top: 100%;
}

#gall_ul .item .chk_box {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 7;
}

#gall_ul .item .text {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 60px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
  background: rgba(37, 55, 131, 0.8);
  color: var(--White, #FFF);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  opacity: 0;
}

#gall_ul .item:hover .text {
  opacity: 1;
}

#gall_ul .item .text h4 {
  font-size: 30px;
  font-weight: 600;
  word-break: keep-all;
}

#gall_ul .item .text p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

#gall_ul .item .text a{
  padding: 10px 0px 4px 0px;
  border-bottom: 0.3px solid var(--White, #FFF);
  font-size: 15px;
  color: #fff;
}

#gall_ul .item .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#gall_ul .item .img img {
  width: 104%;
  height: 104%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/***********************************
  보기페이지
***********************************/
  #bo_v header {
  display: flex;
  height: 900px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 200px;
  align-self: stretch;
  position: relative;
}

#bo_v header .view_image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

#bo_v header .view_image img {
  position: absolute;
  width: auto;
  height: 105%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#bo_v header .view_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url(<path-to-image>) lightgray -2504.34px -259.393px / 260.887% 313.064% no-repeat; */
  background: #000;
  opacity: 0.5;
}

#bo_v header .info {
  display: flex;
  width: 1360px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  color: #fff;
  z-index: 9;
  position: relative;
  bottom: 70px;
}

#bo_v header .info h3 {
  color: var(--White, #FFF);
  font-size: 48px;
  font-weight: 800;
}

#bo_v header .info .inner {
  display: flex;
  justify-content: space-between;
  align-self: stretch;

}

#bo_v header .info .inner ul.about {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

#bo_v header .info .inner .about li {
  display: flex;
  width: 220px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

#bo_v header .info .inner .about li h4 {
  display: flex;
  height: 34px;
  align-items: flex-start;
  border-bottom: 1px solid var(--White, #FFF);
  color: var(--White, #FFF);
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}

#bo_v header .info .inner .about li p {
  color: var(--White, #FFF);
  font-size: 16px;
  font-weight: 400;
}

#bo_v header .info .inner .bt_wrap {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

#bo_v header .info .inner .bt_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 55px;
  height: 55px;
  background-color: #2A2A2A;
  border-radius: 50px;
  font-size: 16px;
}

#bo_v_overview {
  display: flex;
  padding: 150px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

#bo_v_overview .inner {
  display: flex;
  width: 100%;
  max-width: 1360px;
  padding: 10px 0px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 200px;
}

#bo_v_overview .inner h3 {
  color: #000;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: 700;
}

#bo_v_overview .inner .cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  flex: 1;
}

#bo_v_overview .inner p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 180%; /* 34.695px */
}

#bo_v_overview .bt {
  display: flex;
  padding: 0 24px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #040404;
  color: var(--White, #FFF);
  font-size: 16px;
  font-weight: 500;
}

#bo_v_overview .bt:hover {
  background: #494949;
}

#bo_v_overview .bt::after {
  content: url(img/bt.svg);
  margin-top: 3px;
}

#bo_v_overview .imgList {
  display: none;
  gap: 10px;
  width: 100%;
}

#bo_v_overview .imgList a {
  pointer-events: none;
}

#bo_v_overview .imgList li {
  width: calc(100% / 3);
  height: 320px;
  position: relative;
  overflow: hidden;
}

#bo_v_overview .imgList li img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#bo_v_movie {
  display: flex;
  padding: 150px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  align-self: stretch;
  background: #040404;
}

#bo_v_movie .inner {
  width: 100%;
  max-width: 1000px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.video-wrap iframe,
.video-wrap object,
.video-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.noCont {
  color: #fff;
  font-size: 2rem;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.noCont svg {
  width: 3em !important;
  height: 3em;
}

@media all and (max-width: 500px) {

}

/***********************************
  글쓰기 페이지
***********************************/
#bo_w {
  max-width: 1400px;
  margin: auto;
  padding: 100px 0;
}

.mt10 {
  margin-top: 10px !important;
}



/* 게시판 목록 공통 */
#bo_btn_top {
  width: 100%;
  display: flex;
  border-top: 1px solid #919191;
  padding-top: 40px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

#bo_btn_top:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.pg_current {
  background-color: #222;
  border: 1px solid #111;
}

.bo_fx {
  margin-bottom: 5px;
  zoom: 1;
}

.bo_fx:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.bo_fx ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#bo_list_total {
  float: left;
  line-height: 34px;
  font-size: 15px;
  color: #4e546f;
}

.btn_bo_user {
  display: flex;
  position: absolute;
  right: 0;
  gap: 4px;
}

.btn_bo_user li {

}

.btn_bo_user button {
  background: #f2f2f2;
  border: 1px solid #ddd;
  color: #333;
}

.btn_bo_user a {
  background: #222;
  border: 1px solid #111;
  color: #fff;
}

.btn_bo_user button, .btn_bo_user a {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font-size: 15px;
  padding: 0 10px;
  border-radius: 4px;
}

.btn_bo_user li a:hover {
  color: #fff;
}

.btn_bo_adm {
  float: left;
}

.btn_bo_adm li {
  float: left;
  margin-right: 5px;
}

.btn_bo_adm input {
  padding: 0 8px;
  border: 0;
  background: #d4d4d4;
  color: #666;
  text-decoration: none;
  vertical-align: middle;
}

.bo_notice td {
  background: #e6f8ff !important;
  border-bottom: 1px solid #c3dfe8;
}

.bo_notice td a {
  font-weight: bold;
}

.btn_bo_adm input {
  padding: 0 8px;
  border: 0;
  background: #d4d4d4;
  color: #666;
  text-decoration: none;
  vertical-align: middle;
}

.bo_notice td {
  background: #fff6fa !important;
  border-bottom: 1px solid #f8e6ee;
}

.bo_notice td a {
  font-weight: bold;
}

.bo_notice .notice_icon {
  display: inline-block;
  line-height: 25px;
  border-radius: 5px;
  font-weight: bold;
  color: #f9267f;
}

.more_opt {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: #fff;
  border: 1px solid #b8bfc4;
  z-index: 999;
}

.more_opt:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #b8bfc4 transparent;
}

.more_opt:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #fff transparent;
}

.more_opt li {
  border-bottom: 1px solid #f1f1f1;
  padding: 10px;
  float: inherit;
  margin: 0;
  color: #6b757c;
  text-align: left;
}

.more_opt li:last-child {
  border-bottom: 0;
}

.more_opt li button,
.more_opt li a {
  width: 100%;
  border: 0;
  background: #fff;
  color: #6b757c;
}

.more_opt li:hover a,
.more_opt li:hover button {
  color: #000;
}

.more_opt li i {
  float: right;
  line-height: 20px;
}

.td_num strong {
  color: #000;
}

.bo_cate_link {
  display: inline-block;
  background: #e2eaf6;
  color: #3a8afd;
  font-weight: normal !important;
  height: 20px;
  line-height: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.95em;
}

/* 글제목줄 분류스타일 */
.bo_cate_link:hover {
  text-decoration: none;
}

.bo_current {
  color: #e8180c;
}

#bo_list .profile_img {
  display: inline-block;
  margin-right: 5px;
}

#bo_list .profile_img img {
  border-radius: 50%;
}

#bo_list .cnt_cmt {
  display: inline-block;
  margin: 0 0 0 3px;
  font-weight: bold;
  color: #ed6478;
  font-size: 0.86em;
}

#bo_gall li.empty_list {
  padding: 85px 0;
  text-align: center;
}


/* 리스트 상단 검색바 */
.bo_sch form {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 4px;
}

.bo_sch form .box{
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 0 12px;
  display: flex;
  flex: 1;
  align-self: stretch;
  font-size: 15px;
  align-items: center;
}

.bo_sch form .box#sfl {
  display: none;
}

.sch_word {
  display: contents;
}


/* 게시판 쓰기 */
#char_count_desc {
  display: block;
  margin: 0 0 5px;
  padding: 0;
}

#char_count_wrap {
  margin: 5px 0 0;
  text-align: right;
}

#char_count {
  font-weight: bold;
}

#autosave_wrapper {
  position: relative;
}

#autosave_pop {
  display: none;
  z-index: 10;
  position: absolute !important;
  top: 34px;
  right: 0;
  width: 350px;
  height: auto !important;
  height: 180px;
  max-height: 180px;
  border: 1px solid #565656;
  background: #fff;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

#autosave_pop:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 45px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #000 transparent;
}

#autosave_pop:after {
  content: "";
  position: absolute;
  top: -7px;
  right: 45px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #fff transparent;
}

html.no-overflowscrolling #autosave_pop {
  height: auto;
  max-height: 10000px !important;
}

/* overflow 미지원 기기 대응 */
#autosave_pop strong {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#autosave_pop div {
  text-align: center;
  margin: 0 !important;
}

#autosave_pop button {
  margin: 0;
  padding: 0;
  border: 0;
}

#autosave_pop ul {
  padding: 15px;
  border-top: 1px solid #e9e9e9;
  list-style: none;
  overflow-y: scroll;
  height: 130px;
  border-bottom: 1px solid #e8e8e8;
}

#autosave_pop li {
  padding: 8px 5px;
  border-bottom: 1px solid #fff;
  background: #eee;
  zoom: 1;
}

#autosave_pop li:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#autosave_pop a {
  display: block;
  float: left;
}

#autosave_pop span {
  display: block;
  float: right;
  font-size: 0.92em;
  font-style: italic;
  color: #999;
}

.autosave_close {
  cursor: pointer;
  width: 100%;
  height: 30px;
  background: none;
  color: #888;
  font-weight: bold;
  font-size: 0.92em;
}

.autosave_close:hover {
  background: #f3f3f3;
  color: #3597d9;
}

.autosave_content {
  display: none;
}

.autosave_del {
  background: url(./img/close_btn.png) no-repeat 50% 50%;
  text-indent: -999px;
  overflow: hidden;
  height: 20px;
  width: 20px;
}

/* 게시판 댓글 */
.cmt_btn {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  font-weight: bold;
  margin: 30px 0 0px;
  padding: 0 0 15px;
}

.cmt_btn span.total {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  font-size: 1em;
  color: #3a8afd;
}

.cmt_btn span.cmt_more {
  float: right;
  display: inline-block;
  width: 15px;
  height: 10px;
  background: url(./img/btn_cmt.png) no-repeat right 2px;
  margin-top: 5px;
}

.cmt_btn_op span.cmt_more {
  background-position: right -8px;
}

.cmt_btn b {
  font-size: 1.2em;
  color: #000;
}

.cmt_btn span.total:after {
  position: absolute;
  bottom: -17px;
  left: 0;
  display: inline-block;
  background: #3a8afd;
  content: "";
  width: 100%;
  height: 2px;
}

#bo_vc {}

#bo_vc h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#bo_vc article {
  margin: 20px 0;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

#bo_vc article:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#bo_vc article .profile_img img {
  border-radius: 50%;
}

#bo_vc article .pf_img {
  float: left;
  margin-right: 10px;
}

#bo_vc article .pf_img img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#bo_vc article .cm_wrap {
  float: left;
  max-width: 870px;
  width: 90%;
}

#bo_vc header {
  position: relative;
  width: 100%;
}

#bo_vc header:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#bo_vc header .profile_img {
  display: none;
}

#bo_vc header .icon_reply {
  position: absolute;
  top: 15px;
  left: -20px;
}

#bo_vc .member,
#bo_vc .guest,
#bo_vc .sv_member,
#bo_vc .sv_guest {
  font-weight: bold;
}

.bo_vc_hdinfo {
  color: #777;
}

#bo_vc h1 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#bo_vc .cmt_contents {
  line-height: 1.8em;
  padding: 0 0 20px;
}

#bo_vc p a {
  text-decoration: underline;
}

#bo_vc p a.s_cmt {
  text-decoration: underline;
  color: #ed6479;
}

#bo_vc_empty {
  margin: 0;
  padding: 80px 0 !important;
  color: #777;
  text-align: center;
}

#bo_vc #bo_vc_winfo {
  float: left;
}

#bo_vc .bo_vl_opt {
  position: absolute;
  top: 0;
  right: 0;
}

.bo_vc_act {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  width: 58px;
  text-align: right;
  border: 1px solid #b8bfc4;
  margin: 0;
  list-style: none;
  background: #fff;
  zoom: 1;
  z-index: 9999;
}

.bo_vc_act:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #b8bfc4 transparent;
}

.bo_vc_act:after {
  content: "";
  position: absolute;
  top: -6px;
  right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #fff transparent;
}

.bo_vc_act li {
  border-bottom: 1px solid #f0f0f0;
}

.bo_vc_act li:last-child {
  border-bottom: 0;
}

.bo_vc_act li a {
  display: inline-block;
  padding: 10px 15px;
}

.bo_vc_act li a:hover {
  color: #3a8afd;
}

.bo_vc_w {
  position: relative;
  margin: 10px 0;
  display: block;
}

.bo_vc_w:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.bo_vc_w h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.bo_vc_w #char_cnt {
  display: block;
  margin: 0 0 5px;
}

.bo_vc_w textarea {
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  vertical-align: middle;
  border-radius: 3px;
  padding: 5px;
  width: 100%;
  height: 120px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

#wr_secret {}

.bo_vc_w_info {
  margin: 10px 0;
  float: left;
}

.bo_vc_w_info:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.bo_vc_w_info .frm_input {
  float: left;
  margin-right: 5px;
}

.bo_vc_w_info #captcha {
  padding-top: 10px;
  display: block;
  clear: both;
}

.bo_vc_w .btn_confirm {
  clear: both;
  margin-top: 10px;
}

.bo_vc_w .btn_confirm label {
  display: inline-block;
  margin-right: 10px;
  border-radius: 3px;
  font-size: 1.5em;
  text-align: center;
}

.bo_vc_w .btn_submit {
  height: 45px;
  padding: 0 20px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 1.083em;
}

.bo_vc_w .btn_confirm .secret_cm label {
  font-size: 1em !important;
}

.bo_vc_w_wr:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

.secret_cm {
  display: inline-block;
  float: left;
}

#bo_vc_send_sns {
  display: inline-block;
  float: left;
}

#bo_vc_sns {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  zoom: 1;
}

#bo_vc_sns:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#bo_vc_sns li {
  float: left;
  margin: 0 5px 0 0;
}

#bo_vc_sns .sns_li_f {
  border-radius: 3px;
  background: #3a589b;
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 10px;
}

#bo_vc_sns .sns_li_t {
  border-radius: 3px;
  background: #00aced;
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 10px;
}

#bo_vc_sns .sns_li_off {
  background: #bbb;
}

#bo_vc_sns a {
  display: inline-block;
  padding: 0 15px 0 5px;
}

#bo_vc_sns input {
  margin: 0 5px 0 0;
}

/*글쓰기*/
#bo_w #fwrite {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#bo_w .bo_v_option li {
  display: inline-block;
  float: left;
  text-align: left;
  margin: 0 5px 0 0;
}

#bo_w .bo_v_option li label {
  vertical-align: baseline;
}

#bo_w .bo_v_option .chk_box input[type="checkbox"]+label span {
  margin-left: 0;
  margin-right: 5px;
}

#bo_w .bo_w_select {
  display: flex;
  align-items: stretch;
  gap: 5px;
}

#bo_w .bo_w_select select, #bo_w .bo_w_select #cate2 {
  flex: 1;
}

#bo_w .write_div {
  font-size: 14px;
  position: relative;
}

#bo_w .write_div:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#bo_w .bo_w_info:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#bo_w .bo_w_info .frm_input {
  float: left;
  margin-bottom: 1%;
}

#bo_w #wr_password,
#bo_w #wr_homepage {
  margin-left: 1%;
}

#bo_w .wr_content.smarteditor2 iframe {
  background: #fff;
}

#bo_w .flex_div {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.bo_w_tit #autosave_wrapper, 
.flex_div input.frm_input,
.flex_div .file_wr {
  width: calc(100% - 500px);
}

.flex_div .explain {
  align-items: center;
  background-color: #f3f3f3;
  display: flex;
  padding: 5px 10px;
  flex: 1;
  font-weight: 300;
}

.flex_div .explain span {
  color: red;
}

#bo_w .bo_w_tit .frm_input {
  padding-right: 120px;
}

#bo_w .bo_w_tit #btn_autosave {
  position: absolute;
  top: 5px;
  right: 5px;
  line-height: 30px;
  height: 30px;
}

#bo_w .bo_w_link label {
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 3px 0 0 3px;
  height: 38px;
  line-height: 38px;
  width: 40px;
  font-size: 1.2em;
  text-align: center;
  color: #b2b2b2;
}

#bo_w .bo_w_link .frm_input {
  padding-left: 50px;
}

#bo_w .bo_w_flie .lb_icon {
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 3px 0 0 3px;
  height: 38px;
  line-height: 38px;
  width: 40px;
  font-size: 1.2em;
  text-align: center;
  color: #b2b2b2;
}

#bo_w .bo_w_flie .frm_file {
  padding-left: 50px;
  margin-top: 3px;
}

#bo_w .bo_w_flie .file_wr {
  position: relative;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  vertical-align: middle;
  border-radius: 3px;
  padding: 5px;
  height: 40px;
  margin: 0;
}

#bo_w .bo_w_flie .frm_input {
  margin: 10px 0 0;
}

#bo_w .bo_w_flie .file_del {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.92em;
  color: #7d7d7d;
}

#bo_w .bo_w_select select {
  border: 1px solid #d0d3db;
  width: 100%;
  height: 40px;
  border-radius: 3px;
}

#bo_v_con img {
  max-width: 1000px;
  width: 100%;
}

#imageList {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

#imageList img {
  width: 100%;
}




@media screen and (max-width: 1440px) {
  #bo_gall {
    padding: 100px 20px;
    gap: 40px;
  }

  #bo_gall .title {
    width: 100%;
  }

  #gall_ul {
    gap: 20px;
  }

  #gall_ul .item {
    width: calc(100% / 3 - 14px);
    padding: 30px;
  }

  #gall_ul .item .img img {
    width: 100%;
    height: 100%;
  }

  #bo_v header .info {
    width: 100%;
    padding: 0 50px;
  }

  #bo_v header .info .inner ul.about {
    gap: 40px;
  }

  #bo_v header .info .inner .about li {
    width: 160px;
  }

  #bo_v_overview {
    padding: 100px 50px;
  }

  #bo_v_overview .inner {
    gap: 100px;
  }
}


@media screen and (max-width: 1024px) {

  #bo_v header .info .inner .bt_wrap {
    display: none;
  }

  #bo_v header {
    height: 500px;
    padding-bottom: 50px;  
    gap: 40px;
  }

  #bo_v header .info h3 {
    font-size: 36px;
  }

  #bo_v header .info .inner .about li h4 {
    font-size: 16px;
  }

  #bo_v_overview .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  #bo_v_overview .inner p {
    font-size: 18px;
    line-height: 170%;
  }

  #bo_v_movie {
    padding: 100px 50px;
  }
}


@media screen and (max-width: 500px) {
  #bo_gall .title {
    width: 100%;
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }

  .search {width: 100%;}

  .search .sch_btn {width: 30px;}

  #bo_gall {
    padding: 50px 20px;
    gap: 30px;
  }

  #bo_gall .title h3 {
    font-size: 30px;
  }

  #bo_btn_top {
    flex-direction: column;
    gap: 10px;
  }

  .btn_bo_user {
    position: relative;
  }

  .bo_sch form .box, .btn_bo_user button, .btn_bo_user a {
    font-size: 13px;
  }

  .search {display: none;}

  #gall_ul .item {
    width: calc(100% / 2 - 10px);
    padding: 20px;
  }

  #bo_v_overview .inner {
    gap: 50px;
    flex-direction: column;
  }

  #bo_v header .info .inner .about li {
    width: calc(100% / 3);
    gap: 14px;
  }

  #bo_v header .info {
    padding: 0 30px;
    gap: 30px;
  }

  #bo_v header .info h3 {
    font-size: 34px;
    word-break: auto-phrase;
  }

  #bo_v header .info .inner ul.about {
    gap: 20px;
    width: 100%;
  }

  #bo_v header .info .inner .about li h4 {
    font-size: 12px;
    height: 30px;
  }

  #bo_v header .info .inner .about li p {
    font-size: 14px;
  }

  #bo_v_overview, #bo_v_movie {
    padding: 60px 30px;
    gap: 30px;
  }

  #bo_v_movie img {
    width: 50px;
  }
}