@charset "utf-8";
/* 댓글 전체 영역 (하단 고정) */
body {
  --comm-list-height: 3px;
}
#comm-list2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 10px 40px;
  height: calc(40px + var(--comm-list-height)); /* 한 댓글 높이 */
  align-items: center;
  display: flex;
  z-index: 999;
}

#comm-list2 .total {
  font-size: 12px;
}

/* 리스트 아이템 */
#comm-list2 li {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  color: #fff;
  display: flex;
  padding-top: calc(var(--comm-list-height) + 20px);
}
/* 활성화된 댓글 */
#comm-list2 li.active {
  opacity: 1;
  transform: translateY(0);
}

#boatd-total {
  color: #999999;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -0.05em;
  z-index: 2;
}
#boatd-total strong {
  color: #000000;
}

#board-sch {
  border-top: 1px solid #dddddd;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}
#board-sch .where {
  border: 1px solid #cccccc;
  height: 35px;
  padding: 0 0 0 5px;
  width: 100px;
}
#board-sch .keyword {
  border: 1px solid #cccccc;
  box-sizing: border-box;
  height: 35px;
  padding: 0 10px;
  width: 250px;
}
#board-sch > button,
#board-sch > a {
  padding: 0 10px;
  vertical-align: top;
}

#board-cat {
  margin: -3px -3px 20px -3px;
}
#board-cat ul > li {
  display: inline-block;
  margin: 3px;
  vertical-align: top;
}
#board-cat ul > li a {
  border: 1px solid #cccccc;
  border-radius: 40px;
  color: #999999;
  display: block;
  font-size: 15px;
  line-height: 40px;
  padding: 0 20px;
  text-decoration: none;
}
#board-cat ul > li.active a {
  border-color: #000000;
  color: #000000;
}
#board-cat ul > li:hover a {
  color: #000000;
}

#board-list table.notice {
  background: #ffffff;
  border-top: 1px solid #333333;
  margin-bottom: 40px;
  width: 100%;
}
#board-list table.notice tr > * {
  border: 1px solid #dddddd;
  border-width: 1px 0 1px 0;
  font-size: 15px;
  letter-spacing: -0.05em;
  padding: 20px 10px;
}
#board-list table.notice thead th {
  border-bottom: 1px solid #000000;
  border-top: none;
  color: #000000;
  letter-spacing: -0.05em;
  padding: 20px 0;
}
#board-list table.notice tbody td {
  text-align: center;
}
#board-list table.notice tbody tr:hover > * {
  background: #fafafa;
}
#board-list table.notice tbody.notice td {
  background: #fafafa;
}
#board-list table.notice td a {
  letter-spacing: -0.05em;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}
#board-list table.notice td.no {
  color: #999999;
  font-size: 14px;
}
#board-list table.notice td.no strong {
  color: #000000;
  font-weight: normal;
}
#board-list table.notice td.sbj {
  text-align: left;
}
#board-list table.notice td.sbj a {
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  word-break: break-all;
}
#board-list table.notice td.sbj a:hover {
  color: #000000;
}
#board-list table.notice td.sbj .cat {
  color: #999999;
  font-weight: normal;
  margin-right: 15px;
  position: relative;
}
#board-list table.notice td.sbj .cmt {
  color: #e4002b;
  font-family: Arial, Tahoma;
  font-size: 13px;
  font-weight: bold;
  margin-left: 10px;
}
#board-list table.notice td.sbj strike {
  color: #999999;
}
#board-list table.notice td.sbj img {
  height: 18px;
  width: 18px;
  margin-top: -4px;
}
#board-list table.notice td.sbj img.reply-ico {
  height: 15px;
  margin-top: -4px;
  width: 15px;
}
#board-list table.notice td.mobile-info {
  display: none;
}

#board-list .list {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
  margin-top: 15px;
}
#board-list .list > li {
  border-radius: 4px;
  display: inline-block;
  margin: 7px;
  position: relative;
  vertical-align: top;
  width: calc(33.3% - 14px);
  overflow: hidden;
}
#board-list .list > li:before {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
#board-list .list > li > input[type="checkbox"] {
  left: 15px;
  position: absolute;
  top: 15px;
  z-index: 4;
}
#board-list .list .tmb {
  background: url("../../../../../layout/images/blank-tmb.jpg") no-repeat center center / cover;
  overflow: hidden;
  padding-bottom: 58%;
  position: relative;
}
#board-list .list .tmb .link {
  background-position: center center;
  background-size: cover;
  height: calc(100% - 2px);
  left: 1px;
  position: absolute;
  top: 1px;
  width: calc(100% - 2px);
  z-index: 3;
}
#board-list .list .info {
  padding: 20px;
  position: relative;
  z-index: 2;
}
#board-list .list .info .tit {
  color: #000000;
  display: block;
  letter-spacing: -0.05em;
  min-height: 40px;
}
#board-list .list .info .tit .sbj {
  box-sizing: border-box;
  color: #000000;
  display: inline;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  text-align: left;
  word-break: break-all;
}
#board-list .list .info .txt {
  color: #999;
  display: block;
  font-size: 14px;
  letter-spacing: -0.05em;
  line-height: 18px;
  margin-top: 15px;
  word-break: break-all;
}
#board-list .list .info .cmt {
  color: #e4002b;
  font-family: Arial, Tahoma;
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}
#board-list .list .info .date {
  color: #999999;
  display: block;
  font-size: 14px;
  margin-top: 15px;
}
#board-list .list .info .writer {
  color: #999999;
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
#board-list .list .info .tit img {
  height: 18px;
  margin-top: -4px;
  width: 18px;
}
#board-list .list .info .tit img.reply-ico {
  height: 15px;
  margin-top: -4px;
  width: 15px;
}

#board-paging {
  margin: 0 auto;
}

#board-write h3 {
  color: #000000;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: -0.05em;
}
#board-write table {
  width: 100%;
}
#board-write table tr > * {
  border: 1px solid #f1f1f1;
  border-width: 1px 0 1px 0;
  letter-spacing: -0.05em;
  padding: 15px;
}
#board-write table thead th {
  background: #f7f7f7;
  border-top: 1px solid #000000;
  color: #000000;
  font-weight: normal;
}
#board-write table tbody th {
  color: #000000;
  text-align: left;
}
#board-write table tbody tr:first-child > * {
  border-top: 1px solid #000000;
}
#board-write table td.subject {
  padding: 10px 0;
}
#board-write table td.subject .inp {
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 16px;
  height: 45px;
  padding: 0 15px;
}
#board-write table td.article {
  border: none;
  padding: 0;
}
#board-write .bytetxt {
  color: #999999;
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
#board-write .uploaded_wrap {
  background: #f7f7f7;
  border-radius: 3px;
  margin-top: 10px;
  padding: 15px;
}
#board-write .uploaded {
  color: #000000;
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
#board-write .temp-btn {
  border: 1px solid #333333;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  display: inline-block;
  font-size: 0;
  height: 37px;
  inline-size: none;
  overflow: hidden;
  vertical-align: middle;
}
#board-write .temp-btn button {
  display: inline-block;
  line-height: 37px;
  padding: 0 15px;
  vertical-align: middle;
}
#board-write .temp-btn button.load-btn {
  background: none;
  border: none;
  border-left: 1px solid #eeeeee;
  cursor: pointer;
}
#board-write .temp-btn button.load-btn strong {
  color: #6b52e9;
  font-size: 14px;
  font-weight: bold;
}
#board-write .temp-btn button.save-btn {
  background: none;
  border: none;
  color: #000000;
  font-size: 14px;
  letter-spacing: -1px;
}

#board-view .view-tit {
  border-top: 1px solid #000000;
}
#board-view .view-tit h3 {
  border-bottom: 1px solid #dddddd;
  color: #000000;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -0.05em;
  line-height: 22px;
  padding: 30px 20px;
  position: relative;
}
#board-view .view-tit h3 em {
  color: #666666;
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  position: relative;
}
#board-view .view-tit h3 img {
  height: 18px;
  margin-top: -4px;
  width: 18px;
}
#board-view .view-tit .info {
  border-bottom: 1px solid #cccccc;
  padding: 25px 20px;
  text-align: left;
}
#board-view .view-tit .info li {
  color: #999999;
  display: inline-block;
  font-size: 14px;
  letter-spacing: -0.05em;
  margin: 0 40px 0 0;
}
#board-view .view-tit .info li a {
  color: #000000;
}
#board-view .view-tit .info li strong {
  color: #000000;
  margin-right: 10px;
}
#board-view table {
  width: 100%;
}
#board-view table tr > * {
  border: 1px solid #f1f1f1;
  border-width: 1px 0 1px 0;
  letter-spacing: -0.05em;
  padding: 15px 10px;
}
#board-view table tbody tr:first-child > * {
  border-top: none;
}
#board-view table tbody th {
  color: #000000;
  text-align: left;
}
#board-view .article-wrap {
  padding: 40px 20px;
  vertical-align: top;
}
#board-view .article {
  min-height: 400px;
}
#board-view .article .nostyle p {
  margin: 30px 0;
}
#board-view .article img {
  height: auto !important;
  max-width: 800px !important;
}
#board-view .img-wrap {
  margin-bottom: 50px;
  text-align: center;
}
#board-view .fileinfo a {
  font-size: 15px;
  letter-spacing: -0.05em;
  word-break: break-all;
}
#board-view .fileinfo a:after {
  content: "";
  display: block;
  margin-bottom: 5px;
}
#board-view .fileinfo .byte,
#board-view .fileinfo .cnt {
  color: #999999;
  font-size: 14px;
  letter-spacing: -0.05em;
  margin-right: 10px;
}
#board-view .drop-box {
  background: #fde8e9;
  border: 1px solid #f4cdcf;
  color: #5b5252;
  display: block;
  font-size: 12px;
  line-height: 16px;
  padding: 20px 10px;
  text-align: center;
}

#board-ft-list {
  margin-top: 150px;
}
#board-likes {
  margin-top: 80px;
  text-align: center;
}
#board-likes > button {
  background: none;
  border: none;
  display: inline-block;
  margin: 0 10px;
  width: 30px;
}
#board-likes > button img {
  height: auto;
  width: 25px;
}
#board-likes > button p {
  color: #000000;
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-top: 5px;
}

#board-pwd {
  border: 1px solid #dddddd;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 30px auto;
  overflow: hidden;
  width: 400px;
}
#board-pwd table {
  width: 100%;
}
#board-pwd table tr > * {
  padding: 20px;
  text-align: center;
}
#board-pwd table thead th {
  border-bottom: 1px solid #dddddd;
  font-weight: normal;
}

#board-comment {
  margin: 50px 0;
}
#board-comment .total {
  color: #999999;
  display: block;
  font-size: 13px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
#board-comment .total strong {
  color: #fff;
  font-size: 16px;
}
#board-comment #board-nodata {
  background: #f7f7f7;
}

#board-seek {
  margin: 50px 0;
}
#board-seek > li {
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 50px;
  margin-bottom: -1px;
  padding: 0 200px 0 110px;
  position: relative;
}
#board-seek > li strong {
  background: #f7f7f7;
  color: #000;
  font-weight: normal;
  height: 100%;
  left: 0;
  letter-spacing: -0.05em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 90px;
}
#board-seek > li strong i {
  color: #999;
  margin-left: 4px;
}
#board-seek > li .sbj {
  color: #333;
  display: block;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -0.05em;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}
#board-seek > li .sbj .cmt {
  color: #e4002b;
  font-family: Arial, Tahoma;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
}
#board-seek > li .writer {
  position: absolute;
  right: 100px;
  top: 0;
}
#board-seek > li .date {
  color: #999;
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 0;
}

#comm-form {
  margin-bottom: 15px;
}
#comm-form .gue-writer {
  margin-bottom: 5px;
}
#comm-form .gue-captcha {
  margin-top: 5px;
}
#comm-form .gue-captcha .tbltxt {
  display: inline-block;
  margin-left: 5px;
}
#comm-form fieldset {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  zoom: 1;
}
#comm-form fieldset > * {
  float: left;
}
#comm-form fieldset textarea {
  background: none;
  border: 1px solid #ddd;
  border-right: none;
  min-height: 130px;
  resize: none;
  width: 87%;
}
#comm-form fieldset .sbm {
  height: 130px;
  width: 13%;
}

#comm-re-form {
  background: #f7f7f7;
  display: none;
  padding: 0 20px 20px 40px;
  position: relative;
}
#comm-re-form .gue-captcha {
  margin-top: 5px;
}
#comm-re-form .gue-captcha .tbltxt {
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
}
#comm-re-form .rep-ico {
  height: 13px;
  left: 20px;
  position: absolute;
  top: 5px;
  width: 13px;
}
#comm-re-form .gue-writer {
  margin-bottom: 5px;
}
#comm-re-form fieldset {
  padding-right: 150px;
  position: relative;
}
#comm-re-form fieldset textarea {
  min-height: 130px;
}
#comm-re-form fieldset .re_sbm {
  height: 130px;
  position: absolute;
  right: 0;
  top: 0;
  width: 145px;
}
#comm-re-form #captcha,
#comm-re-form #re-captcha {
  height: 25px;
  padding: 0 5px;
  vertical-align: top;
  width: 70px;
}

#comm-list {
}
#comm-list > li {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  position: relative;
}
#comm-list .comm-btn {
  position: absolute;
  right: 15px;
  top: 15px;
}
#comm-list .comm-btn a {
  color: #666666;
  font-size: 12px;
  letter-spacing: -0.05em;
  margin-left: 10px;
  text-decoration: none;
}
#comm-list .comm-btn a img {
  height: 13px;
  vertical-align: middle;
  width: 13px;
}
#comm-list .info {
  border-bottom: 1px solid #ddd;
  padding: 15px;
}
#comm-list .info .writer {
  color: #000000;
  margin-right: 10px;
}
#comm-list .info .writer a {
  color: #000000;
}
#comm-list .info .writer img {
  display: inline-block;
  vertical-align: middle;
}
#comm-list .info .writer img.ico {
  height: 18px;
  width: 18px;
}
#comm-list .info .writer p {
  display: inline-block;
}
#comm-list .info .date {
  color: #999999;
  font-size: 12px;
}
#comm-list .info img {
  height: 13px;
  width: 13px;
}
#comm-list .comment {
  background: #f7f7f7;
  line-height: 22px;
  padding: 15px;
}
#comm-list .comment > a[data-profile] {
  color: #000000;
  font-weight: bold;
}
#comm-list .comment > p {
  display: inline;
}
#comm-list .comment #comm-re-form {
  margin: 5px 0;
  padding: 0;
}
#comm-list .comment #comm-re-form .rep-ico {
  display: none;
}
#comm-list .comm-list-li.reply {
  margin-left: 20px;
}

#board-nodata {
  border-bottom: 1px solid #f1f1f1;
  color: #999999;
  display: block;
  margin-top: -1px;
  padding: 40px 0;
  text-align: center;
}

#ctrpop {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  display: none;
  height: 380px;
  left: 50%;
  margin-left: -200px;
  margin-top: -190px;
  overflow: hidden;
  padding-top: 60px;
  position: fixed;
  top: 50%;
  width: 400px;
  z-index: 301;
}
#ctrpop .tit {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  left: auto;
  line-height: 60px;
  padding: 0 25px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 302;
}
#ctrpop .tit h2 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
#ctrpop .tit .close {
  color: #333;
  display: block;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  width: 60px;
}
#ctrpop .cont {
  box-sizing: border-box;
  height: 100%;
  overflow-y: auto;
  padding: 15px 20px 15px 20px;
  width: 100%;
}
#ctrpop .cont p {
  display: block;
  font-size: 14px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  text-align: center;
}
#ctrpop .cont p strong {
  color: #e4002b;
  font-size: 20px;
  margin: 0 5px;
}
#ctrpop .cont .ctr-btn {
  text-align: center;
}
#ctrpop .cont em {
  color: #999999;
  display: block;
  font-size: 13px;
  margin: 30px 0;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
#ctrpop .cont em:before {
  background: #f1f1f1;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 150px;
}
#ctrpop .cont em:after {
  background: #f1f1f1;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 150px;
}
#ctrpop .cont select {
  height: 40px;
  margin-bottom: 10px;
  width: 100%;
}

#ctrpop-bg {
  background: rgba(0, 0, 0, 0.2);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
}

#mbpop {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  display: none;
  height: 380px;
  left: 50%;
  margin-left: -200px;
  margin-top: -190px;
  overflow: hidden;
  padding-top: 60px;
  position: fixed;
  top: 50%;
  width: 400px;
  z-index: 301;
}
#mbpop .tit {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  left: auto;
  line-height: 60px;
  padding: 0 25px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 302;
}
#mbpop .tit h2 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
#mbpop .tit .close {
  color: #333;
  display: block;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  width: 60px;
}
#mbpop .cont {
  box-sizing: border-box;
  height: 100%;
  overflow-y: auto;
  padding: 20px 30px;
}
#mbpop .mb-tbl {
  width: 100%;
}
#mbpop .mb-tbl tbody tr > * {
  border-bottom: 1px solid #f7f7f7;
  font-size: 14px;
  padding: 10px;
  letter-spacing: -0.03em;
}
#mbpop .mb-tbl tbody th {
  color: #000000;
  font-weight: bold;
  text-align: left;
}
#mbpop .mb-tbl tbody td {
  color: #999999;
}
#mbpop .sment {
  display: block;
  font-size: 14px;
  letter-spacing: -0.05em;
  line-height: 20px;
  margin-bottom: 20px;
  text-align: center;
}
#mbpop .mb-btn {
  text-align: center;
}
#mbpop-bg {
  background: rgba(0, 0, 0, 0.2);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
}

#temppop {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  display: none;
  height: 380px;
  left: 50%;
  margin-left: -300px;
  margin-top: -190px;
  overflow: hidden;
  padding-top: 60px;
  position: fixed;
  top: 50%;
  width: 600px;
  z-index: 301;
}
#temppop .tit {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  left: auto;
  line-height: 60px;
  padding: 0 25px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 302;
}
#temppop .tit h2 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
#temppop .tit .close {
  color: #333;
  display: block;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  right: 0;
  text-align: center;
  text-decoration: none;
  top: 0;
  width: 60px;
}
#temppop .cont {
  box-sizing: border-box;
  height: 100%;
  overflow-y: auto;
  padding: 20px 30px;
}
#temppop .tbl {
  width: 100%;
}
#temppop .tbl tbody tr > * {
  border-bottom: 1px solid #f1f1f1;
  font-size: 15px;
  padding: 18px 10px;
  letter-spacing: -0.03em;
}
#temppop .tbl tbody td .sbj {
  color: #333333;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: -1px;
}
#temppop .tbl tbody td .date {
  color: #999999;
  display: block;
  font-size: 13px;
  letter-spacing: -1px;
  text-align: right;
}
#temppop .tbl tbody td .remove-btn {
  color: #666666;
  font-size: 13px;
}
#temppop .sment {
  border-bottom: 1px solid #333333;
  color: #999999;
  display: block;
  font-size: 14px;
  letter-spacing: -0.05em;
  line-height: 20px;
  padding-bottom: 15px;
}
#temppop .mb-btn {
  text-align: center;
}
#temppop-bg {
  background: rgba(0, 0, 0, 0.2);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
}

.board-mb-profileimg {
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  display: inline-block;
  height: 23px;
  position: relative;
  vertical-align: middle;
  width: 23px;
}
.board-mb-profileimg:after {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* 모바일 목록 */
@media all and (max-width: 767px) {
  .responsive #bo_list .float-left.float-md-none {
    margin-right: 0.75rem;
  }
  .responsive #bo_list .na-title {
    margin-bottom: 0.14rem;
  }
}
.na-videowrap {
  margin: 2rem auto 1rem;
}

/* gallery */
#bo_gallery .chk-box {
  position: absolute;
  bottom: 5px;
  right: 10px;
  z-index: 2;
}
#bo_gallery .wr-now {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* 게시판 읽기 */
#bo_v_title {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -1px;
}
#bo_v_con {
  min-height: 200px;
  word-break: break-all;
  overflow: hidden;
}
@media all and (max-width: 575px) {
  .responsive #bo_v_title {
    font-size: 20px;
    line-height: 1.5;
  }
  .responsive #bo_v_con {
    min-height: 140px;
  }
}

#bo_v_con img {
  max-width: 100%;
  height: auto;
}
#bo_v_img {
  width: 100%;
  text-align: center;
  overflow: hidden;
  zoom: 1;
}
#bo_v_img:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#bo_v_img a.view_image {
  display: block;
}
#bo_v_img img {
  margin-bottom: 1rem;
}

/* 게시판 읽기 : SNS 공유 */
#bo_v_sns_icon {
  margin: -5px auto;
}
#bo_v_sns_icon img {
  width: 40px;
  border-radius: 50%;
  margin: 5px;
}

/* 게시판 댓글 : 내용 */
.cmt-reply {
  top: 0;
  left: -16px;
}
.by-writer {
  background: #fbefef !important;
  border-top: 1px solid #f6cece !important;
}
.cmt-content {
  word-break: break-all;
  overflow: hidden;
}
.cmt-content img {
  max-width: 100%;
  height: auto;
}

/* 게시판 댓글 : 대댓글, 수정, 삭제 */
.cmt-btn ul {
  list-style: none;
  margin: 0;
}
.cmt-btn ul > li {
  float: left;
  font-size: 12px;
  padding: 0 10px;
}
.cmt-btn ul > li::before {
  float: left;
  color: #ccc;
  content: "|";
  margin-left: -12px;
}
.cmt-btn ul > li:last-child {
  padding-right: 0;
}
.cmt-btn ul > li:first-child::before,
.cmt-btn ul > li.no-bar::before {
  content: "";
  margin-left: 0;
}
.cmt-btn ul > li > a {
  float: left;
  color: #888;
  white-space: nowrap;
}

/* 게시판 댓글 : 쓰기폼 */
#fviewcomment #wr_content {
  resize: none;
}
@media all and (max-width: 575px) {
  .responsive .cmt-box {
    border-right: 0 !important;
  }
  .responsive #bo_vc_w .cmt-box {
    border-left: 0 !important;
    border-radius: 0 !important;
  }
  .responsive #bo_vc_login {
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
  }
}

/* 게시판 댓글 : SNS 등록 */
#bo_vc_opt ol {
  margin: 0;
  padding: 0;
  list-style: none;
  zoom: 1;
  background: #ccc;
  border-radius: 3px;
}
#bo_vc_opt ol:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#bo_vc_opt ol li {
  float: left;
  margin: 0;
}
#bo_vc_send_sns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  zoom: 1;
}
#bo_vc_send_sns ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#bo_vc_send_sns ul li {
  float: left;
  margin: 0 1rem 0 0;
}
#bo_vc_send_sns input {
  margin: 0 0 0 0.5rem;
}

/* 게시판 쓰기 */
#bo_w .list-group-item {
  padding-left: 0;
  padding-right: 0;
  border-left: 0;
  border-right: 0;
}
#bo_w #wr_content {
  margin-bottom: 1rem !important;
}
/* 포트폴리오 갤러리 - 리스트 및 카테고리 부분 */
.sly-tab li a {
  border: 1px solid #000;
  background-color: #fff;
  font-weight: 500;
  color: #000;
}
.sly-tab li.active a {
  border-bottom: 1px solid #000;
  background-color: #000;
  color: #fff;
  font-weight: 700;
}
#bo_cate_ul {
  gap: 8px;
}
.na-title .na-subject {
  display: flex;
  flex-direction: column;
}
.catt {
  font-weight: 700;
}
/* 포트폴리오 갤러리 */
.pf-article {
  position: relative;
}
.pf-article div {
  color: #000;
  line-height: 1.8;
  font-size: 16px;
}
.pf-slider-wrap h1 {
  color: #fff !important;
}
.pf-history h1 {
  color: #fff !important;
}
.pf-head {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background-color: #151515;
  padding: 3rem 0;
}
.pf-head div,
.pf-head p {
  color: #fff !important;
}
.pf-head .pf-info {
  padding: 2rem 3rem;
}
.pf-head .pf-info #bo_v_title {
  padding-bottom: 1.6rem;
  font-size: 36px !important;
}
.pf-head .pf-info p {
  font-size: 16px;
  line-height: 1.8;
}
#bo_v_subcategory {
  color: #6c757d !important;
}
.pf-head .pf-img {
  padding: 2rem 3rem;
}
.pf-head .pf-img a img {
  height: auto;
  width: 100%;
  border-radius: 0 !important;
}
.pf-slider-wrap {
  padding-bottom: 5rem;
}
.pf-slider-wrap h1 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  padding-left: 40px;
}
.pf-slider-wrap h3 {
  padding-left: 40px;
  padding-bottom: 1rem;
}
.pf-features {
  padding: 5rem 40px;
}
.pf-features h1 {
  font-size: 64px;
  padding-bottom: 2rem;
  font-weight: 700;
}
.pf-features .pf-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.pf-features .pf-feature-wrap .pf-feature {
  padding: 3rem;
  border: 2px solid #000;
  line-height: 1.4;
}
.pf-features .pf-feature-wrap .pf-feature i {
  font-size: 36px;
  padding-bottom: 2rem;
}
.pf-features .pf-feature-wrap .pf-feature h2 {
  font-weight: 700;
  padding-bottom: 0.6rem;
}
.pf-history {
  padding: 5rem 40px;
  line-height: 1.8;
}
.pf-history h1 {
  font-size: 64px;
  padding-bottom: 2rem;
  font-weight: 700;
}
.pf-history ul li {
  display: list-item;
  font-size: 15px;
  color: #fff;
}
.pf-history ul li::marker {
  content: "- "; /* 마커 내용 */
  color: #a5a5a5; /* 마커 색상 */
  font-size: 1em; /* 마커 크기 */
}
.pf-news {
  padding: 40px;
  width: 100%;
}
.pf-news .main-news-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.pf-news .main-news-wrap a {
  border: 2px solid #000;
  border-radius: 2rem;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  text-align: center;
}
.pf-news .main-news-wrap h1 {
  font-size: 64px;
  font-weight: 700;
}
.pf-news ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.pf-news ul li img {
  width: 100%;
  margin-bottom: 1.4rem;
}
.pf-news ul li h2 {
  padding-bottom: 1rem;
}
.pf-news ul li h3 {
  font-size: 13px;
}

.pf-ptf {
  padding: 5rem 40px;
}
.pf-ptf h1 {
  font-size: 64px;
  font-weight: 700;
  padding-bottom: 4rem;
}
.pf-partners {
  padding: 5rem 40px;
}
.pf-partners h1 {
  font-size: 64px;
  font-weight: 700;
  padding-bottom: 4rem;
}
.pf-partners .pf-logo-wrap {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 60px;
  width: 100%;
}
.pf-partners .pf-logo-wrap li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-partners .pf-logo-wrap li img {
  width: 60%;
  filter: grayscale(100%) opacity(80%);
}
.item img {
  aspect-ratio: 16/9;
}

.embla {
  /* max-width: 48rem; */
  width: 100%;
  margin: auto;
  --slide-height: 30rem;
  --slide-spacing: 1rem;
  --slide-size: 33%;
}
.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
  padding-left: 40px;
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}
.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  /* height: var(--slide-height); */
  height: 100%;
  user-select: none;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.embla__slide__number img {
  object-fit: cover;
  width: 100%;
}
.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding: 0 40px;
}
.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}
.embla__button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 3rem;
  height: 3rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
}
.embla__button:disabled {
  color: var(--detail-high-contrast);
}
.embla__button__svg {
  width: 35%;
  height: 35%;
}
.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: calc((2rem - 1.4rem) / 2 * -1);
}
.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}
.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}
* {
  --brand-primary: rgb(47, 112, 193);
  --brand-secondary: rgb(116, 97, 195);
  --brand-alternative: rgb(19, 120, 134);
  --background-site: rgb(249, 249, 249);
  --background-code: rgb(244, 244, 244);
  --text-body: rgb(234, 234, 234);
  --text-comment: rgb(99, 94, 105);
  --text-high-contrast: rgb(49, 49, 49);
  --text-medium-contrast: rgb(99, 94, 105);
  --text-low-contrast: rgb(116, 109, 118);
  --detail-high-contrast: rgb(192, 192, 192);
  --detail-medium-contrast: rgb(54, 49, 61);
  --detail-low-contrast: rgb(240, 240, 242);
  --admonition-note: rgb(46, 109, 188);
  --admonition-warning: rgb(255, 196, 9);
  --admonition-danger: rgb(220, 38, 38);
  --brand-primary-rgb-value: 47, 112, 193;
  --brand-secondary-rgb-value: 116, 97, 195;
  --brand-alternative-rgb-value: 19, 120, 134;
  --background-site-rgb-value: 249, 249, 249;
  --background-code-rgb-value: 244, 244, 244;
  --text-body-rgb-value: 234, 234, 234;
  --text-comment-rgb-value: 99, 94, 105;
  --text-high-contrast-rgb-value: 49, 49, 49;
  --text-medium-contrast-rgb-value: 99, 94, 105;
  --text-low-contrast-rgb-value: 116, 109, 118;
  --detail-high-contrast-rgb-value: 192, 192, 192;
  --detail-medium-contrast-rgb-value: 54, 49, 61;
  --detail-low-contrast-rgb-value: 240, 240, 242;
  --admonition-note-rgb-value: 46, 109, 188;
  --admonition-warning-rgb-value: 255, 196, 9;
  --admonition-danger-rgb-value: 220, 38, 38;
}
#section-01 {
  margin-top: -160px;
}
@media (max-width: 768px) {
  .pf-head .pf-info #bo_v_title {
    font-size: 26px !important;
  }
  .embla__dots {
    justify-content: space-between;
    margin-right: 0;
  }
  .embla__dot {
    -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    width: 0.8rem;
    height: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .embla__dot:after {
    box-shadow: inset 0 0 0 0.1rem var(--detail-medium-contrast);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    content: "";
  }
  .embla__dot--selected:after {
    box-shadow: inset 0 0 0 0.1rem var(--text-body);
  }
  .embla__button {
    -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: inset 0 0 0 0.1rem var(--detail-medium-contrast);
    width: 2rem;
    height: 2rem;
    z-index: 1;
    border-radius: 50%;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .embla__button__svg {
    width: 35%;
    height: 35%;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .section-body {
    padding-top: 8rem;
  }
  /* .section-sub-header {
      margin-top: -6.4rem;
    } */
  #section-01 {
    margin-top: -90px;
  }
  #section-05 span {
    font-size: 20px;
  }
  .smallmcounter .counter-label {
    line-height: 1.25 !important;
  }
}

@media (max-height: 800px) {
  .sections-nav-link {
    padding-left: 2rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 1rem;
  }
  .nav-link {
    padding: 0.25rem 1rem;
  }
  .sections-nav-container {
    top: calc(((100vh - 160px) / 2) - 80px);
  }
}

@media all and (max-width: 575px) {
  #bo_w .list-group-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .responsive #bo_w #wr_content {
    max-height: 160px !important;
  }
  .pf-head {
    display: grid;
    grid-template-columns: unset;
    background-color: #151515;
    color: #fff;
    padding: 3rem 0;
  }
  .pf-features .pf-feature-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pf-partners .pf-logo-wrap li img:nth-child(1) {
    width: 100%;
  }
  .pf-partners .pf-logo-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
  }
}

/* for mobile */
@media screen and (max-width: 1000px) {
  #mod_board_top_source {
    margin-bottom: 20px;
  }
  #mod_board_bottom_source {
    margin-top: 20px;
  }

  #boatd-total {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #boatd-total strong {
    color: #000000;
  }

  #board-sch {
    margin-top: 20px;
    padding: 10px 0;
  }
  #board-sch .where {
    margin-bottom: -1px;
    width: 100%;
  }
  #board-sch .keyword {
    margin-bottom: 5px;
    width: 100%;
  }
  #board-sch > button,
  #board-sch > a {
    padding: 0 10px;
  }

  #board-cat {
    margin: -2px -2px 20px -2px;
  }
  #board-cat ul > li {
    margin: 2px;
  }
  #board-cat ul > li a {
    border-radius: 30px;
    font-size: 13px;
    line-height: 30px;
    padding: 0 15px;
  }

  #board-list table.notice {
    margin-bottom: 20px;
  }
  #board-list table.notice colgroup {
    display: none;
  }
  #board-list table.notice tr {
    display: block;
    position: relative;
  }
  #board-list table.notice tr > * {
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    letter-spacing: -0.05em;
    padding: 15px 10px;
  }
  #board-list table.notice thead th {
    display: none;
  }
  #board-list table.notice td {
    display: none;
  }
  #board-list table.notice td.chk {
    border: none;
    display: block;
    position: absolute;
    right: 0;
    text-align: right;
    top: 6px;
    width: 30px;
  }
  #board-list table.notice td.sbj {
    border-bottom: none;
    display: block;
    padding: 10px 35px 7px 10px;
    width: auto;
  }
  #board-list table.notice td.sbj a {
    color: #333;
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 19px;
  }
  #board-list table.notice td.sbj .cat {
    display: block;
    font-size: 13px;
    margin-right: 0;
    padding-right: 0;
  }
  #board-list table.notice td.sbj .cat:after {
    display: none;
  }
  #board-list table.notice td.sbj .cmt {
    font-size: 12px;
    margin-left: 5px;
  }
  #board-list table.notice td.sbj img {
    height: 15px;
    width: 15px;
  }
  #board-list table.notice td.sbj img.reply-ico {
    height: 13px;
    margin-top: -3px;
    width: 13px;
  }
  #board-list table.notice th.like,
  #board-list table.notice td.like {
    display: none;
  }
  #board-list table.notice td.mobile-info {
    border-top: none;
    display: block;
    margin-bottom: -1px;
    padding-bottom: 15px;
    padding-top: 0;
    text-align: left;
    width: 100%;
  }
  #board-list table.notice td.mobile-info ul li {
    color: #999999;
    display: inline-block;
    font-size: 13px;
    letter-spacing: -0.05em;
    margin-right: 12px;
    vertical-align: top;
  }
  #board-list table.notice td.mobile-info ul li a {
    font-size: 13px;
  }
  #board-list table.notice td.mobile-info ul li > strong {
    color: #666666;
    font-weight: bold;
    margin-right: 5px;
  }

  #board-list .list {
    margin: -3px;
    margin-top: 10px;
  }
  #board-list .list > li {
    margin: 3px;
    width: calc(50% - 6px);
  }
  #board-list .list > li > input[type="checkbox"] {
    left: 10px;
    top: 10px;
  }
  #board-list .list .info {
    padding: 15px;
  }
  #board-list .list .info .tit .sbj {
    font-size: 14px;
  }
  #board-list .list .info .txt {
    font-size: 13px;
    margin-top: 10px;
  }
  #board-list .list .info .date {
    font-size: 13px;
    margin-top: 10px;
  }
  #board-list .list .info .writer {
    font-size: 13px;
  }
  #board-list .list .info .tit img {
    height: 15px;
    margin-top: -2px;
    width: 15px;
  }
  #board-list .list .info .tit img.reply-ico {
    height: 15px;
    margin-top: -2px;
    width: 15px;
  }

  #board-write h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #board-write table colgroup {
    display: none;
  }
  #board-write table tr > * {
    padding: 10px 5px;
  }
  #board-write table thead th {
    font-size: 13px;
  }
  #board-write table tbody th {
    font-size: 13px;
    letter-spacing: -0.05em;
    width: 70px;
  }
  #board-write table td.subject .inp {
    font-size: 14px;
    padding: 0 10px;
  }
  #board-write .bytetxt {
    display: block;
    font-size: 13px;
    line-height: 13px;
    margin: 5px 0 0 0;
  }
  #board-write .uploaded {
    font-size: 13px;
  }

  #board-view .view-tit h3 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.05em;
    line-height: 22px;
    padding: 20px 5px;
  }
  #board-view .view-tit h3 em {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 5px;
    margin-right: 0;
  }
  #board-view .view-tit h3 em:after {
    display: none;
  }
  #board-view .view-tit .info {
    line-height: 18px;
    padding: 10px 5px;
  }
  #board-view .view-tit .info li {
    font-size: 13px;
    letter-spacing: -0.05em;
    margin: 5px 15px 0 0;
  }
  #board-view .view-tit .info li strong {
    margin-right: 5px;
  }
  #board-view table colgroup {
    display: none;
  }
  #board-view table th {
    font-size: 13px;
    letter-spacing: -0.05em;
    width: 70px;
  }
  #board-view table tr > * {
    padding: 10px 5px;
  }
  #board-view .article-wrap {
    padding: 20px 5px;
  }
  #board-view .article {
    min-height: 200px;
  }
  #board-view .article .nostyle p {
    margin: 15px 0;
  }
  #board-view .article img {
    height: auto !important;
    max-width: 100% !important;
  }
  #board-view .img-wrap {
    margin-bottom: 20px;
  }
  #board-view .fileinfo a {
    font-size: 13px;
  }
  #board-view .fileinfo .byte,
  #board-view .fileinfo .cnt {
    font-size: 13px;
    margin-right: 10px;
  }

  #board-ft-list {
    margin-top: 100px;
  }

  #board-likes {
    margin-top: 30px;
  }
  #board-likes > button {
    width: 20px;
  }
  #board-likes > button img {
    width: 20px;
  }

  #board-pwd {
    margin: 20px auto;
    width: 100%;
  }

  #board-comment {
    margin: 30px 0;
  }
  #board-comment .total {
    font-size: 13px;
  }
  #board-comment .total strong {
    font-size: 15px;
  }

  #board-seek {
    margin: 30px 0;
  }
  #board-seek > li {
    line-height: 20px;
    padding: 12px 12px 12px 90px;
  }
  #board-seek > li strong {
    box-sizing: border-box;
    height: 100%;
    padding-top: 15px;
    width: 70px;
  }
  #board-seek > li .sbj {
    font-size: 14px;
  }
  #board-seek > li .sbj .cmt {
    font-size: 11px;
    margin-left: 5px;
  }
  #board-seek > li .writer {
    font-size: 13px;
    letter-spacing: -0.05em;
    line-height: 13px;
    position: static;
  }
  #board-seek > li .writer .board-mb-profileimg {
    display: none;
  }
  #board-seek > li .date {
    font-size: 13px;
    line-height: 13px;
    margin-left: 10px;
    position: static;
  }

  #comm-form {
    margin-bottom: 10px;
  }
  #comm-form fieldset textarea {
    border-color: #eeeeee;
    min-height: 130px;
    width: 80%;
  }
  #comm-form fieldset .sbm {
    height: 130px;
    min-width: 0;
    width: 20%;
  }
  #comm-list .info {
    padding: 15px;
  }
  #comm-list .info .date {
    display: block;
    font-size: 12px;
    margin-top: 4px;
  }
  #comm-list .comment p {
    font-size: 13px;
  }

  #comm-re-form {
    padding: 0 10px 10px 40px;
  }
  #comm-re-form fieldset {
    padding-right: 80px;
  }
  #comm-re-form fieldset textarea {
    min-height: 80px;
  }
  #comm-re-form fieldset .re_sbm {
    height: 80px;
    width: 75px;
  }

  /* layer popup */
  #ctrpop {
    height: 60%;
    left: 5%;
    margin-left: 0;
    margin-top: 0;
    padding-top: 50px;
    top: 20%;
    width: 90%;
  }
  #ctrpop .tit {
    line-height: 50px;
    padding: 0 15px;
  }
  #ctrpop .tit h2 {
    font-size: 14px;
  }
  #ctrpop .tit .close {
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  #ctrpop .cont em:before {
    width: 100px;
  }
  #ctrpop .cont em:after {
    width: 100px;
  }

  #mbpop {
    height: 60%;
    left: 5%;
    margin-left: 0;
    margin-top: 0;
    padding-top: 50px;
    top: 20%;
    width: 90%;
  }
  #mbpop .tit {
    line-height: 50px;
    padding: 0 15px;
  }
  #mbpop .tit h2 {
    font-size: 14px;
  }
  #mbpop .tit .close {
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  #mbpop .cont {
    padding: 15px;
  }
  #mbpop .mb-tbl colgroup {
    display: none;
  }
  #mbpop .mb-tbl tbody th {
    font-size: 13px;
    width: 60px;
  }
  #mbpop .mb-tbl tbody td {
    font-size: 13px;
  }

  #temppop {
    height: 60%;
    left: 5%;
    margin-left: 0;
    margin-top: 0;
    padding-top: 50px;
    top: 20%;
    width: 90%;
  }
  #temppop .tit {
    line-height: 50px;
    padding: 0 15px;
  }
  #temppop .tit h2 {
    font-size: 14px;
  }
  #temppop .tit .close {
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  #temppop .cont {
    padding: 15px;
  }
  #temppop .sment {
    font-size: 13px;
  }
  #temppop .tbl colgroup {
    display: none;
  }
  #temppop .tbl tbody th {
    font-size: 13px;
    width: 60px;
  }
  #temppop .tbl tbody td {
    font-size: 13px;
  }
  #temppop .tbl tbody td .sbj {
    font-size: 14px;
  }

  .board-mb-profileimg {
    height: 16px;
    width: 16px;
  }
}

/* 모달 공유하기 */
:root {
  --bg: #0b0f1a;
  --card: #121829;
  --text: #e6e8ef;
  --muted: #9aa3b2;
  --accent: #7c5cff;
  --ring: rgba(124, 92, 255, 0.45);
  --border: #23283a;
}
.s-card {
  background: linear-gradient(180deg, #151a2d 0%, #0f1424 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  width: min(720px, 100%);
  box-shadow: 0 10px 30px #00000066, inset 0 1px 0 #ffffff10;
}
.s-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.s-title {
  font-size: 24px;
  font-weight: 700;
}
.s-desc {
  color: var(--muted);
  margin-top: 6px;
}
.s-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #141a2d;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 1px 0 #ffffff12 inset, 0 8px 16px #00000033;
  transition: transform 0.06s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.s-btn:hover {
  border-color: #2e3551;
}
.s-btn:active {
  transform: translateY(1px);
}
.s-btn.s-primary {
  background: linear-gradient(180deg, #7c5cff, #6846ff);
  border-color: #7c5cff;
  box-shadow: 0 10px 20px var(--ring), 0 1px 0 #ffffff66 inset;
}
.s-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 60px;
  top: 30px;
}

/* Modal */
.s-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  z-index: 9;
}
.s-modal-backdrop[aria-hidden="false"] {
  display: flex;
}
.s-modal {
  width: min(560px, 100%);
  background: var(--card);
  color: var(--text);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px #00000080;
}
.s-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.s-modal-title {
  font-weight: 700;
  font-size: 18px;
}
.s-modal-body {
  padding: 14px;
}

.s-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 480px) {
  .s-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s-share-item {
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 14px 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #10162a;
  cursor: pointer;
  text-align: center;
  min-height: 104px;
  transition: transform 0.06s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.s-share-item:hover {
  border-color: #2e3551;
  box-shadow: 0 8px 22px #00000030 inset;
}
.s-share-item:active {
  transform: translateY(1px);
}
.s-share-item svg {
  width: 28px;
  height: 28px;
}
.s-share-label {
  font-size: 13px;
  color: var(--muted);
}

.s-url-box {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.s-url-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0e1426;
  color: #0e1426;
}

.s-visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media all and (max-width: 575px) {
  .s-share-btn {
    top: 220px;
    font-size: 10px;
    gap: 6px;
    padding: 7px 8px;
    right: 16px;
    left: unset;
  }
}

@media all and (min-width: 576px) and (max-width: 1000px) {
  .s-share-btn {
    top: 248px;
    font-size: 10px;
    gap: 6px;
    padding: 7px 8px;
    right: unset;
    left: 30px;
  }
}
