@charset "UTF-8";
/* 게시판 */
.board-default-wrap .board-table {
  width: 100%;
}
.board-default-wrap .board-table table {
  table-layout: fixed;
  width: 100%;
  font-size: 1.6rem;
  border-top: 2px solid #000;
}
.board-default-wrap .board-table table colgroup .num {
  width: 80px;
}
.board-default-wrap .board-table table colgroup .category {
  width: 120px;
}
.board-default-wrap .board-table table colgroup .label {
  width: 80px;
}
.board-default-wrap .board-table table colgroup .register {
  width: 190px;
}
.board-default-wrap .board-table table colgroup .name {
  width: 160px;
}
.board-default-wrap .board-table table colgroup .date {
  width: 120px;
}
.board-default-wrap .board-table table colgroup .view {
  width: 80px;
}
.board-default-wrap .board-table table colgroup .file {
  width: 100px;
}
.board-default-wrap .board-table table tr {
  border-bottom: 1px solid var(--line);
}
.board-default-wrap .board-table table tr.bg-red {
  background: #ffe3e3 !important;
}
.board-default-wrap .board-table table tr th {
  padding: 18px 0;
  text-align: center;
  font-weight: 800;
  position: relative;
}
.board-default-wrap .board-table table tr th:not(:first-child)::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 0;
  width: 1px;
  height: 14px;
  background: #c5c9d6;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.board-default-wrap .board-table table tr td {
  padding: 18px 5px;
  text-align: center;
}
.board-default-wrap .board-table table tr td.down-icon img {
  width: 15px;
  height: auto;
}
.board-default-wrap .board-table table tr td.category {
  font-weight: 600;
}
.board-default-wrap .board-table table tr td.category.type-1 {
  color: var(--blue);
}
.board-default-wrap .board-table table tr td.category.type-2 {
  color: var(--green);
}
.board-default-wrap .board-table table tr td.category.type-3 {
  color: var(--pink);
}
.board-default-wrap .board-table table tr td.category.type-4 {
  color: var(--orange);
}
.board-default-wrap .board-table table tr td.category.type-5 {
  color: #14aabb;
}
.board-default-wrap .board-table table tr td.category.type-6 {
  color: #4a5ca1;
}
.board-default-wrap .board-table table tr td.category.type-7 {
  color: #7c14bb;
}
.board-default-wrap .board-table table tr td.category.type-8 {
  color: #d16200;
}
.board-default-wrap .board-table table tr td.category.type-9 {
  color: #058338;
}
.board-default-wrap .board-table table tr td.category.type-10 {
  color: #a485ff;
}
.board-default-wrap .board-table table tr td a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  text-decoration: underline;
}
.board-default-wrap .board-table table tr td .down-btn {
  display: inline-block;
  text-align: center;
}
.board-default-wrap .board-table table tr td .down-btn > img {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 3px;
}
.board-default-wrap .board-table table tr td .down-btn > img:hover {
  background: #eee;
}
.board-default-wrap .board-table table tr.fixed {
  background: #f2f3f4;
}
.board-default-wrap .board-table table tr.fixed .num {
  font-weight: 800;
  font-size: 1.5rem;
}
.board-default-wrap .board-table table tr.fixed .title {
  font-weight: 800;
}
.board-default-wrap .board-list {
  border-top: 1px solid #8d8d8d;
}
.board-default-wrap .board-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
}
.board-default-wrap .board-list .item:hover .title .tit {
  text-decoration: underline;
}
.board-default-wrap .board-list .item:hover .date-arr svg path {
  fill: #000;
}
.board-default-wrap .board-list .item .title {
  width: calc(100% - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.board-default-wrap .board-list .item .title .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 250px);
  font-size: 1.8rem;
  font-weight: 500;
}
.board-default-wrap .board-list .item .title .label {
  width: 250px;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 3px;
  text-align: center;
}
.board-default-wrap .board-list .item .date-arr {
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.board-default-wrap .board-list .item .date-arr .date {
  font-size: 1.7rem;
  color: #888;
}
.board-default-wrap .board-list .item .date-arr svg {
  width: 20px;
  height: 20px;
}
.board-default-wrap .board-list .item .date-arr svg path {
  fill: #999;
}
.board-default-wrap .gallery-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
.board-default-wrap .gallery-group.type-2 {
  grid-template-columns: repeat(4, 1fr);
}
.board-default-wrap .gallery-group.type-3 .item {
  position: relative;
  border: 1px solid #c5c5c5;
  padding: 20px;
  border-radius: 10px;
}
.board-default-wrap .gallery-group.type-3 .item:hover {
  border: 1px solid var(--theme);
}
.board-default-wrap .gallery-group.type-3 .item .thumbnail-area {
  border-radius: 10px;
}
.board-default-wrap .gallery-group.type-3 .item .title-area .label.type-1 {
  background: none;
  color: var(--theme);
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.board-default-wrap .gallery-group.type-3 .item .title-area .label.type-2 {
  background: none;
  color: var(--green);
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.board-default-wrap .gallery-group.type-3 .item .title-area .label.type-3 {
  background: none;
  color: var(--pink);
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.board-default-wrap .gallery-group.type-3 .item .title-area .btn-wrap {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  display: block;
}
.board-default-wrap .gallery-group.type-3 .item .title-area .btn-wrap .more {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0px 0px 5px 5px;
  background: var(--theme);
  border-color: var(--theme);
  color: #fff;
}
.board-default-wrap .gallery-group .item {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.board-default-wrap .gallery-group .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.board-default-wrap .gallery-group .item:hover .title-area .tit {
  text-decoration: underline;
}
.board-default-wrap .gallery-group .item .thumbnail-area {
  width: 100%;
  padding-bottom: 56%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 15px;
  border-radius: 20px;
}
.board-default-wrap .gallery-group .item .thumbnail-area.empty {
  background-color: #F3F3F3;
}
.board-default-wrap .gallery-group .item .thumbnail-area.empty .thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30%;
  height: auto;
  opacity: 0.5;
}
.board-default-wrap .gallery-group .item .thumbnail-area .thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
}
.board-default-wrap .gallery-group .item:hover .thumbnail-area:not(.empty) .thumbnail {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}
.board-default-wrap .gallery-group .item.no-image .thumbnail-area {
  background-color: #F3F3F3;
}
.board-default-wrap .gallery-group .item.no-image .thumbnail-area .thumbnail {
  width: 30% !important;
  height: auto;
  opacity: 0.5;
}
.board-default-wrap .gallery-group .item .title-area .label {
  display: inline-block;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
}
.board-default-wrap .gallery-group .item .title-area .label.disabled {
  color: #a7a7a7;
}
.board-default-wrap .gallery-group .item .title-area .label.type-1 {
  background: var(--blue);
  color: #fff;
}
.board-default-wrap .gallery-group .item .title-area .label.type-2 {
  background: var(--green);
  color: #fff;
}
.board-default-wrap .gallery-group .item .title-area .label.type-3 {
  background: var(--pink);
  color: #fff;
}
.board-default-wrap .gallery-group .item .title-area .label.type-4 {
  background: var(--orange);
  color: #fff;
}
.board-default-wrap .gallery-group .item .title-area .label.type-6 {
  background: #14aabb;
  color: #fff;
}
.board-default-wrap .gallery-group .item .title-area .label.recruiting {
  background: var(--theme);
}
.board-default-wrap .gallery-group .item .title-area .label.closed {
  background: #333;
}
.board-default-wrap .gallery-group .item .title-area .tit {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 5px 0;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-default-wrap .gallery-group .item .title-area .desc {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-default-wrap .gallery-group .item .title-area .info span {
  font-size: 1.4rem;
  color: #666;
  padding-right: 10px;
}
.board-default-wrap .gallery-group .item .title-area .info span strong {
  font-weight: 600;
  padding-right: 2px;
}
.board-default-wrap .card-list-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.board-default-wrap .card-list-group .item {
  --item-padding: 20px;
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  padding: var(--item-padding) var(--item-padding) calc(var(--item-padding) * 3.5);
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.board-default-wrap .card-list-group .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.board-default-wrap .card-list-group .item .label {
  display: inline-block;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
}
.board-default-wrap .card-list-group .item .label.type-1 {
  background: var(--pink);
}
.board-default-wrap .card-list-group .item .label.type-2 {
  background: var(--green);
}
.board-default-wrap .card-list-group .item .tit {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-default-wrap .card-list-group .item .txt {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-default-wrap .card-list-group .item .info {
  position: absolute;
  bottom: var(--item-padding);
  left: var(--item-padding);
  width: calc(100% - var(--item-padding) * 2);
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}
.board-default-wrap .card-list-group .item .info span {
  font-size: 1.4rem;
  color: #666;
  padding-right: 10px;
}

.empty-area {
  text-align: center;
  padding: 120px 0;
}
.empty-area.border {
  border-top: 1px solid var(--line);
}
.empty-area .txt {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  opacity: 0.6;
  color: #999;
}
.empty-area .txt:after {
  content: "";
  width: 100px;
  height: 45px;
  background-image: url("../img/board/empty_ico.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1024px) {
  .board-default-wrap .board-table table {
    font-size: 1.5rem;
  }
  .board-default-wrap .board-table table thead {
    display: none;
  }
  .board-default-wrap .board-table table colgroup {
    display: none;
  }
  .board-default-wrap .board-table table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 12px 3px;
  }
  .board-default-wrap .board-table table tr.fixed {
    padding: 12px 10px;
  }
  .board-default-wrap .board-table table tr td {
    font-size: 1.2rem;
    color: #555;
    position: relative;
    padding: 2px 0;
  }
  .board-default-wrap .board-table table tr td span {
    letter-spacing: -0.5px;
  }
  .board-default-wrap .board-table table tr td:before {
    content: attr(data-name) " ";
    font-weight: 700;
    padding-right: 2px;
    letter-spacing: -0.5px;
  }
  .board-default-wrap .board-table table tr td.num:not(.pin) {
    display: none;
  }
  .board-default-wrap .board-table table tr td.pin {
    display: block;
    width: 20px;
  }
  .board-default-wrap .board-table table tr td.pin img {
    width: 15px;
    height: 13px;
  }
  .board-default-wrap .board-table table tr td.pin ~ .title {
    padding: 5px 0 7px 0;
  }
  .board-default-wrap .board-table table tr td.title {
    font-size: 1.5rem;
    font-weight: 600;
    width: 100%;
    padding: 3px 0;
  }
  .board-default-wrap .board-table table tr td.title:before {
    display: none;
  }
  .board-default-wrap .board-table table tr td.down-td {
    display: none;
  }
  .board-default-wrap .board-table table tr td a {
    color: #222;
    text-align: left !important;
  }
  .board-default-wrap .board-list .item {
    padding: 25px 10px;
  }
  .board-default-wrap .board-list .item .title .tit {
    font-size: 1.9rem;
  }
  .board-default-wrap .board-list .item .date-arr .date {
    font-size: 1.5rem;
  }
  .board-default-wrap .board-list .item .date-arr svg {
    width: 15px;
    height: 15px;
  }
  .board-default-wrap .gallery-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .board-default-wrap .gallery-group.type-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .board-default-wrap .gallery-group .item .thumbnail-area {
    padding-bottom: 56%;
  }
  .board-default-wrap .gallery-group .item .title-area .tit {
    font-size: 1.6rem;
  }
  .board-default-wrap .gallery-group .item .title-area .desc {
    font-size: 1.4rem;
  }
  .board-default-wrap .card-list-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .board-default-wrap .card-list-group .item .tit {
    font-size: 1.9rem;
  }
  .board-default-wrap .card-list-group .item .txt {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .board-default-wrap .board-table table {
    font-size: 1.4rem;
  }
  .board-default-wrap .board-list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    padding: 15px 10px;
  }
  .board-default-wrap .board-list .item .title {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
  }
  .board-default-wrap .board-list .item .title .tit {
    font-size: 1.6rem;
    width: 100%;
  }
  .board-default-wrap .board-list .item .title .label {
    font-size: 1.4rem;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .board-default-wrap .board-list .item .date-arr {
    width: 100%;
  }
  .board-default-wrap .board-list .item .date-arr .date {
    font-size: 1.4rem;
  }
  .board-default-wrap .board-list .item .date-arr svg {
    display: none;
  }
  .board-default-wrap .gallery-group {
    grid-template-columns: 1fr;
  }
  .board-default-wrap .gallery-group.type-2 {
    grid-template-columns: 1fr;
  }
  .board-default-wrap .gallery-group .item .thumbnail-area {
    padding-bottom: 56%;
  }
  .board-default-wrap .gallery-group .item .title-area .tit {
    font-size: 1.6rem;
  }
  .board-default-wrap .gallery-group .item .title-area .desc {
    font-size: 1.4rem;
  }
  .board-default-wrap .card-list-group {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .board-default-wrap .card-list-group .item {
    --item-padding: 15px;
  }
  .board-default-wrap .card-list-group .item .tit {
    font-size: 1.6rem;
  }
  .board-default-wrap .card-list-group .item .txt {
    font-size: 1.4rem;
    padding-top: 5px;
    color: #666;
  }
  .board-default-wrap .card-list-group .item .label {
    font-size: 1.2rem;
    padding: 3px 10px;
  }
  .board-default-wrap .card-list-group .item .info {
    padding-top: 5px;
  }
  .board-default-wrap .card-list-group .item .info span {
    font-size: 1.2rem;
  }

  .empty-area {
    padding: 80px 0;
  }
  .empty-area .txt {
    font-size: 1.4rem;
  }
  .empty-area .txt:after {
    width: 80px;
    height: 36px;
    top: -60px;
  }
}
@media (max-width: 475px) {
  .board-default-wrap .board-table table tr td.mo-w100 {
    width: 100% !important;
  }
  .board-default-wrap .board-list .item {
    gap: 5px;
  }
  .board-default-wrap .board-list .item .title .tit {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .board-default-wrap .board-list .item .date-arr .date {
    font-size: 1.4rem;
  }
  .board-default-wrap .gallery-group {
    gap: 30px 15px;
  }
  .board-default-wrap .gallery-group .item .thumbnail-area {
    padding-bottom: 56%;
    margin-bottom: 12px;
  }
  .board-default-wrap .gallery-group .item .thumbnail-area.empty .thumbnail {
    width: 25%;
  }
  .board-default-wrap .gallery-group .item .title-area .label {
    font-size: 1.2rem;
    padding: 3px 10px;
    margin-bottom: 7px;
  }
  .board-default-wrap .gallery-group .item .title-area .tit {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }
  .board-default-wrap .gallery-group .item .title-area .desc {
    font-size: 1.3rem;
  }
  .board-default-wrap .gallery-group .item .title-area .info {
    line-height: 1.2;
  }
  .board-default-wrap .gallery-group .item .title-area .info span {
    font-size: 1.3rem;
  }
}
.tool-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tool-wrap .total-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}
.tool-wrap .total-count .txt {
  font-size: 1.5rem;
  color: #666;
}
.tool-wrap .total-count .txt .num {
  color: var(--theme);
  font-weight: 700;
}
.tool-wrap .total-count .txt .total {
  color: #666;
}
.tool-wrap .total-count .selectbox {
  min-width: 80px;
}
.tool-wrap .total-count .selectbox:after {
  top: 9px;
  right: 10px;
  width: 5px;
  height: 5px;
  opacity: 0.7;
}
.tool-wrap .total-count .selectbox select {
  padding: 5px 10px;
  font-size: 1.3rem;
}
.tool-wrap .total-count .right-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.tool-wrap .total-count .toggle-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 4px;
}
.tool-wrap .total-count .toggle-wrap .label {
  font-size: 1.4rem;
  font-weight: 500;
}
.tool-wrap .total-count .toggle-wrap input {
  display: none;
}
.tool-wrap .total-count .toggle-wrap .slider {
  position: relative;
  width: 30px;
  height: 15px;
  background-color: #ccc;
  border-radius: 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.tool-wrap .total-count .toggle-wrap .slider::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tool-wrap .total-count .toggle-wrap input:checked + .slider {
  background-color: #000;
}
.tool-wrap .total-count .toggle-wrap input:checked + .slider::before {
  -webkit-transform: translateX(12px);
          transform: translateX(12px);
}
.tool-wrap .search-input {
  position: relative;
  width: 650px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tool-wrap .search-input .selectbox {
  width: 25%;
  border-right: 0;
}
.tool-wrap .search-input .selectbox select {
  line-height: normal;
  border: 0;
}
.tool-wrap .search-input .input {
  width: 100%;
  border: 1px solid var(--line);
  background-color: #fff;
}
.tool-wrap .search-input .input input {
  font-size: 1.6rem;
  padding: 8px 60px 8px 15px;
  width: 100%;
  display: block;
  background: #fff;
}
.tool-wrap .search-input .button {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tool-wrap .search-input .button button {
  display: block;
  width: 100%;
  height: 100%;
}
.tool-wrap .search-input .button button > img {
  width: 24px;
  height: 24px;
}
.tool-wrap .selectbox {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
}
.tool-wrap .selectbox:after {
  content: "";
  width: 5px;
  height: 5px;
  right: 10px;
  top: 14px;
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  cursor: pointer;
}
.tool-wrap .selectbox select {
  background: transparent;
  font-size: 1.5rem;
  padding: 8px 20px 8px 15px;
  width: 100%;
  cursor: pointer;
}
.tool-wrap .bord-filter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.tool-wrap .bord-filter-wrap .filter-btn {
  display: inline-block;
  padding: 5px 10px;
  min-width: 70px;
  text-align: center;
  border: 1px solid #d4d7dd;
  border-radius: 5px;
  background-color: #fff;
  color: #222;
  font-size: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 500;
  color: #666;
}
.tool-wrap .bord-filter-wrap .filter-btn:hover {
  border-color: var(--theme);
  color: var(--theme);
}
.tool-wrap .bord-filter-wrap .filter-btn.active {
  border-color: var(--theme);
  background-color: var(--theme);
  color: #fff;
  font-weight: 600;
}

.multi-tool .multi-search {
  width: 100%;
}
.multi-tool .multi-search .search-input {
  width: 100%;
  min-width: 630px;
  gap: 5px;
  max-width: 100%;
}
.multi-tool .multi-search .search-input .selectbox:after {
  right: 10px;
  width: 5px;
  height: 5px;
  top: 16px;
}
.multi-tool .multi-search .search-input .selectbox select {
  padding-left: 10px;
  padding-right: 13px;
}
.multi-tool .multi-search .search-input.layout-2 .selectbox {
  width: 25%;
}
.multi-tool .multi-search .search-input.layout-3 .selectbox {
  width: 30%;
}
.multi-tool .multi-search .search-input.layout-5 .selectbox {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}
.multi-tool .multi-search .search-input .selectbox {
  border-right: 1px solid var(--line);
}

@media (max-width: 900px) {
  .tool-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 10px;
  }
  .tool-wrap .total-count {
    padding-top: 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tool-wrap .total-count.has-right-btn {
    padding-right: 70px;
  }
  .tool-wrap .total-count.has-right-btn .right-btn {
    bottom: -2px;
  }
  .tool-wrap .total-count.has-right-btn .right-btn .a-btn {
    padding: 6px 18px;
  }
  .tool-wrap .total-count .txt {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input {
    width: 100%;
  }
  .tool-wrap .bord-filter-wrap {
    margin: 15px 0 5px;
  }
  .tool-wrap .bord-filter-wrap .filter-btn {
    font-size: 1.4rem;
  }

  .multi-tool .multi-search .search-input {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 57px;
    min-width: auto;
  }
  .multi-tool .multi-search .search-input.layout-2 .selectbox {
    width: calc(50% - 5px);
  }
  .multi-tool .multi-search .search-input.layout-3 .selectbox {
    width: calc(33% - 3px);
  }
}
@media (max-width: 768px) {
  .tool-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 10px;
  }
  .tool-wrap .total-count {
    padding-top: 30px;
  }
  .tool-wrap .total-count .txt {
    font-size: 1.4rem;
  }
  .tool-wrap .total-count .filter-checkbox {
    margin-left: 0;
  }
  .tool-wrap .search-input {
    width: 100%;
  }
  .tool-wrap .search-input .input {
    width: 100%;
  }
}
@media (max-width: 475px) {
  .tool-wrap {
    padding-bottom: 5px;
  }
  .tool-wrap .search-input .selectbox {
    width: 80px;
  }
  .tool-wrap .search-input .selectbox:after {
    right: 10px;
    top: 16px;
    width: 5px;
    height: 5px;
  }
  .tool-wrap .search-input .selectbox select {
    font-size: 1.4rem;
    padding: 8px 15px 8px 10px;
  }
  .tool-wrap .search-input .input input {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
  .tool-wrap .search-input .input input::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .input input::placeholder {
    font-size: 1.4rem;
  }
  .tool-wrap .search-input .button {
    width: 50px;
  }
  .tool-wrap .search-input .button button {
    font-size: 1.4rem;
    font-weight: 800;
  }
  .tool-wrap .search-input .button button > img {
    width: 20px;
    height: 20px;
  }
  .tool-wrap .total-count {
    padding-top: 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .tool-wrap .total-count .input-check label {
    font-size: 1.4rem;
  }

  .multi-tool .tool-wrap {
    gap: 0;
  }
  .multi-tool .multi-search {
    padding: 0;
    background-color: transparent;
  }
  .multi-tool .multi-search .search-input {
    padding-right: 0;
  }
  .multi-tool .multi-search .search-input .button {
    height: 42px;
    top: unset;
    bottom: 0;
  }
  .multi-tool .multi-search .search-input .button button {
    padding: 10px 0;
  }
}
.board-detail .post-title {
  padding: 20px 0px;
  border-top: 2px solid #000;
  word-break: keep-all;
}
.board-detail .post-title .tit {
  font-size: 2.7rem;
  padding-bottom: 20px;
  width: 100%;
}
.board-detail .post-title .info-wrap {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.board-detail .post-title .info {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.board-detail .post-title .info span {
  display: inline-block;
  font-size: 1.5rem;
  color: #666;
  font-weight: 600;
  position: relative;
  letter-spacing: -0.7px;
}
.board-detail .post-title .info span:not(:last-child) {
  padding-right: 25px;
}
.board-detail .post-title .info span:not(:last-child):after {
  content: "";
  width: 1px;
  height: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  background: #aaa;
}
.board-detail .post-title .info span strong {
  color: #444;
  font-weight: 800;
  padding-right: 5px;
}
.board-detail .post-title .info .btn-wrap {
  display: inline-block;
  margin-top: 0;
}
.board-detail .post-title .info .btn-wrap .a-btn {
  padding: 5px 15px;
  margin: 0 !important;
}
.board-detail .post-cont {
  padding: 60px 10px;
  line-height: 2;
  border-bottom: 1px solid var(--line);
  font-size: 1.6rem !important;
}
.board-detail .post-cont .tab-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.board-detail .post-cont .tab-area ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.board-detail .post-cont .tab-area ul li.active a {
  color: #ffffff;
  font-weight: 600;
  background: var(--navy);
}
.board-detail .post-cont .tab-area ul li a {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 10px 6px;
  font-weight: 500;
  color: #777;
  background: #ededed;
  border-radius: 4px;
}
.board-detail .post-cont p {
  font-size: 1.6rem !important;
  font-weight: 500;
  line-height: 1.6;
}
.board-detail .post-cont img {
  max-width: 100% !important;
}
.board-detail .answer {
  padding: 30px 30px 30px 60px;
  border-bottom: 1px solid var(--line);
  background: #f2f2f2;
  position: relative;
}
.board-detail .answer:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 15px;
  height: 15px;
  border-left: 5px solid #adadad;
  border-bottom: 5px solid #adadad;
}
.board-detail .answer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
}
.board-detail .answer .info p {
  font-size: 1.6rem;
  position: relative;
}
.board-detail .answer .info p:not(:last-child) {
  padding-right: 10px;
}
.board-detail .answer .info p:not(:last-child):after {
  content: "";
  width: 1px;
  height: 12px;
  position: absolute;
  top: 3px;
  right: -1px;
  background: #aaa;
}
.board-detail .answer .info p.admin {
  font-weight: 700;
}
.board-detail .answer .txt {
  font-size: 1.6rem;
  line-height: 1.6;
}
.board-detail .answer .file-area {
  margin-top: 15px;
}
.board-detail .answer .file-area .row {
  border-bottom: 0;
  margin: 0 5px 5px 0;
  display: inline-block;
  background: #fff;
  width: auto;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 10px 15px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.board-detail .answer .file-area .row .tit {
  font-size: 1.4rem;
}
.board-detail .file-area {
  width: 100%;
}
.board-detail .file-area .row {
  width: 100%;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
}
.board-detail .file-area .row .tit {
  color: #555;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
  word-break: break-all;
}
.board-detail .file-area .row .tit:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/board/file.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.board-detail .file-area .row .tit:hover {
  text-decoration: underline;
}
.board-detail .file-area .row.down-row {
  background-color: #fff;
}
.board-detail .file-area .row.down-row .down-btn {
  font-size: 1.5rem;
}
.board-detail .file-area .row.down-row .down-btn:hover {
  text-decoration: underline;
}
.board-detail .file-area .row.down-row .down-btn > img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

.nav-wrap .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d2d2d2;
}
.nav-wrap .row:hover {
  background-color: #f7f7f7;
}
.nav-wrap .label {
  width: 100px;
  overflow: hidden;
  padding: 15px 0 15px 25px;
  font-size: 1.5rem;
}
.nav-wrap .label img {
  opacity: 0.7;
  width: 20px;
  height: 20px;
}
.nav-wrap .label.prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.nav-wrap .label.next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.nav-wrap .title {
  width: calc(100% - 100px);
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #999;
}
.nav-wrap .title a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  font-size: 1.5rem;
  color: #000;
}
.nav-wrap .title a:hover {
  text-decoration: underline;
}

.detail-type2.board-detail .post-title {
  border-top: 0;
  text-align: center;
  border-bottom-color: #8D8D8D;
  padding-top: 0;
}
.detail-type2.board-detail .post-title .txt {
  background: #EAEAEE;
  color: #48535B;
  padding: 7px 30px;
  border-radius: 50px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
}
.detail-type2.board-detail .post-title .tit {
  padding-top: 20px;
  font-weight: 900;
  font-size: 3rem;
}
.detail-type2.board-detail .post-title .a-more {
  display: inline-block;
  color: #fff;
  background: #0C206A;
  font-size: 1.3rem;
  font-weight: 600;
  min-width: 140px;
  padding: 5px 20px;
  border-radius: 5px;
  line-height: 1.6;
}
.detail-type2.board-detail dl {
  font-size: 1.7rem;
  line-height: 2;
}
.detail-type2.board-detail dl .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 5px;
  border-bottom: 1px dashed var(--line);
}
.detail-type2.board-detail dl .row dt {
  font-weight: 900;
  width: 200px;
  position: relative;
}
.detail-type2.board-detail dl .row dd {
  width: calc(100% - 200px);
  line-height: 1.6;
}
.detail-type2.board-detail dl .row dd .txt {
  position: relative;
  padding-left: 10px;
}
.detail-type2.board-detail dl .row dd .txt:after {
  content: "";
  width: 3px;
  height: 3px;
  background: #555;
  border-radius: 5px;
  position: absolute;
  top: 14px;
  left: 0;
}
.detail-type2.board-detail dl .row dd .txt:not(:last-child) {
  padding-bottom: 10px;
}

.hash-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.hash-tag-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background: #dee6ed;
  border-radius: 5px;
  padding: 5px 10px;
}
.hash-tag-list .item .tag {
  font-size: 1.4rem;
  font-weight: 600;
  color: #444;
}
.hash-tag-list .item .remove {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.hash-tag-list .item .remove:hover {
  opacity: 1;
}
.hash-tag-list .item .remove img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .board-detail .post-title {
    padding: 20px 0;
  }
  .board-detail .post-cont {
    padding: 30px 0;
  }
  .board-detail .post-cont .list-table {
    overflow-x: auto;
  }
  .board-detail .post-cont .list-table table {
    min-width: 900px;
    width: 100%;
  }
  .board-detail .post-cont .tab-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .board-detail .post-cont .tab-area ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-width: 100px;
    max-width: calc(50% - 5px);
  }
  .board-detail .post-cont .tab-area ul li a {
    font-size: 1.4rem;
    padding: 8px;
  }
}
@media (max-width: 768px) {
  .board-detail .post-title .fixed {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .board-detail .post-title .tit {
    font-size: 2.2rem;
    padding-bottom: 13px;
  }
  .board-detail .post-title .info span {
    font-size: 1.4rem;
    margin: 2px 0;
  }
  .board-detail .post-cont p {
    font-size: 1.4rem !important;
  }
  .board-detail .answer {
    padding: 20px 20px 20px 35px;
  }
  .board-detail .answer:after {
    left: 15px;
    top: 18px;
    border-width: 3px;
    width: 12px;
    height: 12px;
  }
  .board-detail .answer p {
    font-size: 1.4rem !important;
  }
  .board-detail .answer .info p:not(:last-child) {
    padding-right: 0;
  }
  .board-detail .answer .info p:not(:last-child):after {
    display: none;
  }
  .board-detail .answer .file-area .row {
    padding: 7px 10px;
    border-radius: 3px;
  }
  .board-detail .file-area .row {
    padding: 8px;
  }
  .board-detail .file-area .row .tit {
    font-size: 1.25rem;
    padding-left: 18px;
  }
  .board-detail .file-area .row .tit:after {
    width: 15px;
    height: 15px;
  }

  .nav-wrap .label {
    width: 80px;
    font-size: 1.3rem;
    padding-left: 15px;
  }
  .nav-wrap .label img {
    width: 15px;
    height: 15px;
  }
  .nav-wrap .title {
    width: calc(100% - 80px);
    font-size: 1.3rem;
  }
  .nav-wrap .title a {
    font-size: 1.3rem;
  }

  .detail-type2.board-detail .post-title .tit {
    font-size: 2.3rem;
    padding: 10px 0 25px;
    line-height: 1.5;
  }
  .detail-type2.board-detail .post-title .txt {
    font-size: 1.4rem;
  }
  .detail-type2.board-detail .post-title .a-more {
    font-size: 1.3rem;
    margin: 3px;
  }
  .detail-type2.board-detail dl {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .detail-type2.board-detail dl .row {
    padding: 20px 5px;
  }
  .detail-type2.board-detail dl .row dt {
    width: 150px;
  }
  .detail-type2.board-detail dl .row dd {
    width: calc(100% - 150px);
  }
}
@media (max-width: 580px) {
  .detail-type2.board-detail .post-title .tit {
    font-size: 1.8rem;
    padding: 10px 0 15px;
  }
  .detail-type2.board-detail .post-title .txt {
    font-size: 1.3rem;
  }
  .detail-type2.board-detail .post-title .a-more {
    padding: 7px 15px;
    display: block;
    width: 100%;
    margin: 0 0 5px;
  }
  .detail-type2.board-detail dl .row {
    padding: 15px 5px;
  }
  .detail-type2.board-detail dl .row.cont {
    display: block;
  }
  .detail-type2.board-detail dl .row.cont dt {
    width: 100%;
    padding-bottom: 7px;
  }
  .detail-type2.board-detail dl .row.cont dd {
    width: 100%;
  }
  .detail-type2.board-detail dl .row .a-btn {
    width: 100%;
  }

  .hash-tag-list .item .tag {
    font-size: 1.3rem;
  }
}
@media (max-width: 475px) {
  .board-detail .post-title .tit {
    font-size: 1.9rem;
  }
  .board-detail .post-title .fixed {
    font-size: 1.2rem;
  }
  .board-detail .post-title .info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
  }
  .board-detail .post-title .info-wrap .a-btn, .board-detail .post-title .info-wrap button {
    width: 100%;
  }
  .board-detail .post-title .info {
    width: 100%;
  }
  .board-detail .post-title .info .btn-wrap {
    display: block;
    margin-top: 5px;
    width: 100%;
  }
  .board-detail .post-title .info .btn-wrap .a-btn, .board-detail .post-title .info .btn-wrap button {
    width: 100%;
  }
  .board-detail .post-title .info span {
    font-size: 1.3rem;
  }
  .board-detail .post-title .info span:not(:last-child) {
    padding-right: 10px;
  }
  .board-detail .post-title .info span:not(:last-child):after {
    display: none;
  }
  .board-detail .post-title .info span.btn-span {
    display: block;
  }
  .board-detail .post-title .info span strong {
    padding-right: 2px;
  }
}
.filter-select {
  padding: 12px 20px;
  background: #eceeef;
  border-radius: 5px;
  margin-bottom: 18px;
}
.filter-select .filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter-select .filter-group:not(:last-child) {
  margin-bottom: 15px;
}
.filter-select .title {
  font-size: 1.5rem;
  font-weight: 800;
  width: 90px;
}
.filter-select .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 90px);
}
.filter-select .checkbox .input-check input {
  display: none;
}
.filter-select .checkbox .input-check input:checked + label {
  border-color: #000;
  color: #000;
  font-weight: 800;
}
.filter-select .checkbox .input-check input:checked + label svg {
  fill: #000;
}
.filter-select .checkbox .input-check input.type-1:checked + label {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-select .checkbox .input-check input.type-1:checked + label svg {
  fill: var(--blue);
}
.filter-select .checkbox .input-check input.type-2:checked + label {
  border-color: var(--green);
  color: var(--green);
}
.filter-select .checkbox .input-check input.type-2:checked + label svg {
  fill: var(--green);
}
.filter-select .checkbox .input-check input.type-3:checked + label {
  border-color: var(--pink);
  color: var(--pink);
}
.filter-select .checkbox .input-check input.type-3:checked + label svg {
  fill: var(--pink);
}
.filter-select .checkbox .input-check input.type-4:checked + label {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-select .checkbox .input-check input.type-4:checked + label svg {
  fill: var(--orange);
}
.filter-select .checkbox .input-check input.type-5:checked + label {
  border-color: #14aabb;
  color: #14aabb;
}
.filter-select .checkbox .input-check input.type-5:checked + label svg {
  fill: #14aabb;
}
.filter-select .checkbox .input-check input.type-6:checked + label {
  border-color: #4a5ca1;
  color: #4a5ca1;
}
.filter-select .checkbox .input-check input.type-6:checked + label svg {
  fill: #4a5ca1;
}
.filter-select .checkbox .input-check input.type-7:checked + label {
  border-color: #7c14bb;
  color: #7c14bb;
}
.filter-select .checkbox .input-check input.type-7:checked + label svg {
  fill: #7c14bb;
}
.filter-select .checkbox .input-check input.type-8:checked + label {
  border-color: #d16200;
  color: #d16200;
}
.filter-select .checkbox .input-check input.type-8:checked + label svg {
  fill: #d16200;
}
.filter-select .checkbox .input-check input.type-9:checked + label {
  border-color: #058338;
  color: #058338;
}
.filter-select .checkbox .input-check input.type-9:checked + label svg {
  fill: #058338;
}
.filter-select .checkbox .input-check input.type-10:checked + label {
  border-color: #a485ff;
  color: #a485ff;
}
.filter-select .checkbox .input-check input.type-10:checked + label svg {
  fill: #a485ff;
}
.filter-select .checkbox .input-check label {
  font-weight: 600;
  font-size: 1.4rem;
  position: relative;
  padding: 5px 17px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #777;
  display: block;
  text-align: center;
  background: #fff;
  cursor: pointer;
}
.filter-select .checkbox .input-check label svg {
  fill: #ccc;
  margin-right: 2px;
  width: 12px;
  height: 9px;
}

@media (max-width: 1060px) {
  .filter-select .checkbox .input-check label {
    font-size: 1.3rem;
    padding: 7px 15px;
  }
  .filter-select .title {
    font-size: 1.6rem;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .filter-select .checkbox .input-check {
    text-align: center;
    min-width: auto;
  }
  .filter-select .checkbox .input-check label {
    font-size: 1.2rem;
  }
  .filter-select .title {
    font-size: 1.4rem;
    padding-right: 15px;
  }
}
@media (max-width: 475px) {
  .filter-select {
    padding: 5px 0 0;
    margin-bottom: 10px;
    background: transparent;
  }
  .filter-select .title {
    display: none;
  }
  .filter-select .checkbox {
    gap: 5px;
    width: 100%;
  }
}
/* 페이징 */
.paging {
  text-align: center;
  margin-top: 25px;
}
.paging ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.paging ul li {
  height: 27px;
  line-height: 27px;
  width: 27px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.paging ul li.arrow {
  position: relative;
  top: -4px;
  opacity: 0.55;
}
.paging ul li.arrow a {
  position: relative;
  top: 4px;
}
.paging ul li.arrow.first-page a, .paging ul li.arrow.prev-page a {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.paging ul li.arrow img {
  width: 100%;
  height: 100%;
}
.paging ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #4d4d4d;
  border-radius: 50%;
}
.paging ul li:hover a {
  background: #eaeaea;
}
.paging ul li.select a {
  background: #000;
  color: #fff;
}

@media (max-width: 520px) {
  .paging ul {
    gap: 0;
  }
  .paging ul li {
    margin: 0;
  }
  .paging ul li a {
    border-radius: 3px;
  }
}
/* 테이블 */
/* 기본 테이블 */
.default-table {
  width: 100%;
  position: relative;
}
.default-table.scroll {
  max-height: 960px;
  overflow-y: auto;
  overflow-x: auto;
}
.default-table.scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.default-table.scroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.default-table.scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #dcdcdc;
}
.default-table.scroll table {
  min-width: 720px;
}
.default-table.type-02 .check-area {
  padding: 10px 0;
}
.default-table.type-02 table tr th {
  background: #fffaef;
}
.default-table table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #8D8D8D;
  text-align: center;
}
.default-table table colgroup .tit {
  width: 120px;
}
.default-table table colgroup .w-170px {
  width: 170px;
}
.default-table table colgroup .w-100px {
  width: 105px !important;
}
.default-table table colgroup .w-120px {
  width: 120px;
}
.default-table table tr th {
  position: relative;
  padding: 10px 3px;
  font-size: 1.5rem;
  font-weight: 800;
  word-break: break-all;
  background: #ebebeb;
  word-break: break-all;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: center;
}
.default-table table tr td {
  position: relative;
  height: 45px;
  padding: 10px 3px;
  font-size: 1.5rem;
  line-height: 1.5;
  word-break: break-all;
  border-bottom: 1px solid var(--line);
  color: #555;
  background-color: #fff;
}
.default-table table tr td.right {
  text-align: right;
  padding-right: 25px;
}
.default-table table tr td.bd-left {
  border-left: 1px solid var(--line);
}
.default-table table tr td .mo {
  display: none;
}
.default-table table tr td .new {
  font-size: 1.1rem;
  background: #f05050;
  padding: 2px 6px;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}
.default-table table tr td .pop-link {
  font-weight: 600;
  color: #508deb;
  text-decoration: underline;
}
.default-table table tr td.bold {
  font-weight: 600;
}
.default-table table tr td.bold.red {
  color: var(--red);
}
.default-table table tr td.bold.blue {
  color: #508deb;
}
.default-table table .a-link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #508deb;
  text-align: left;
  display: block;
}
.default-table table .a-link:hover {
  text-decoration: underline;
}
.default-table table strong {
  font-weight: 900;
}
.default-table table .block {
  display: block;
}
.default-table table .input-radio.box-radio {
  margin: 0;
}
.default-table table .input-radio.box-radio input[type=radio] + label {
  padding: 4px 8px;
  min-width: 60px;
}
.default-table table .input-text {
  padding-top: 5px;
}
.default-table table .input-text:first-child {
  padding-top: 0;
}
.default-table table .input-text input {
  height: 38px;
}
.default-table.td-left table tr td {
  text-align: left;
  padding: 5px 10px;
}
.default-table.td-left table tr td:nth-child(n+2) {
  border-left: 1px solid var(--line);
}
.default-table.bd-table table {
  border-right: 1px solid var(--line);
}
.default-table.bd-table table tr th:nth-child(1) {
  border-left: 1px solid var(--line);
}
.default-table.bd-table table tr td {
  border-left: 1px solid var(--line);
}

.normal-table {
  position: relative;
  width: 100%;
}
.normal-table .table-tit {
  padding: 5px 0;
  border-bottom: 2px solid #D80C24;
  display: inline-block;
}
.normal-table .table-tit .tit {
  font-size: 2.1rem;
  font-weight: 700;
}
.normal-table .table-tit.pd-30 {
  padding-top: 30px;
}
.normal-table.pd-50 {
  padding-top: 50px;
}
.normal-table table {
  width: 100%;
  font-size: 1.5rem;
  border-top: 1px solid #aaa;
  table-layout: fixed;
  line-height: 1.4;
}
.normal-table table thead tr {
  background: #f4f4f4;
}
.normal-table table thead tr th {
  position: relative;
  font-weight: 600;
  vertical-align: middle;
  padding: 5px;
  text-align: center;
  height: 50px;
}
.normal-table table thead tr th:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background: #E1E1E1;
}
.normal-table table thead tr th:nth-child(1):after {
  width: 0;
  height: 0;
}
.normal-table table thead tr th.border-bot {
  border-bottom: 1px solid #E1E1E1;
}
.normal-table table thead tr th.border-left {
  border-left: 1px solid #E1E1E1;
}
.normal-table table tbody tr th {
  font-weight: 600;
}
.normal-table table tbody tr th.body-header {
  text-align: center;
  background: #f4f4f4;
  border: 1px solid #E1E1E1;
  border-left: 0;
  padding: 5px 3px;
}
.normal-table table tbody tr td {
  padding: 6px;
  text-align: left;
  height: 50px;
  border: 1px solid #d7dbe3;
  color: #333;
  word-break: break-all;
}
.normal-table table tbody tr td.text-center {
  text-align: center;
}
.normal-table table tbody tr td.td-bold {
  font-weight: 600;
}
.normal-table table tbody tr td:first-child {
  border-left: 0;
}
.normal-table table tbody tr td:last-child {
  border-right: 0;
}
.normal-table table tbody tr td.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.normal-table table tbody tr td span {
  font-weight: 500;
}
.normal-table table tbody tr td span.sub-text {
  font-weight: 400;
  color: #8d0303;
}

@media (max-width: 1024px) {
  .normal-table.pc {
    display: none;
  }
}
@media (max-width: 768px) {
  .normal-table .table-tit .tit {
    font-size: 1.5rem;
  }
  .normal-table table {
    font-size: 1.3rem;
  }
}
.ess {
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  margin: 0 0 8px 3px;
  background: #f05050;
}

.inner-table {
  padding-bottom: 0 !important;
}
.inner-table.full table {
  width: 100%;
}
.inner-table table {
  width: 700px;
  max-width: 100%;
  border-left: 1px solid var(--line);
}
.inner-table table tbody tr th {
  background: #fff;
}
.inner-table table tr th {
  padding: 5px;
  font-size: 1.3rem;
}
.inner-table table tr th.bd-right {
  border-right: 1px solid var(--line);
}
.inner-table table tr td {
  padding: 5px;
  font-size: 1.4rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.list-table.mo {
  display: none;
}
.list-table.mo .list-tit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 0 15px 25px;
  background: #e3e3e3;
}
.list-table.mo .list-tit::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--theme);
  position: absolute;
  left: 10px;
  top: 25px;
}
.list-table.mo .list-tit p {
  font-size: 1.6rem;
  font-weight: 800;
}
.list-table.mo ul li {
  border-bottom: 1px solid var(--line);
  padding: 15px 10px;
}
.list-table.mo ul li .top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 7px;
}
.list-table.mo ul li .top-area .tit {
  font-size: 1.7rem;
  font-weight: 700;
}
.list-table.mo ul li .bot-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-table.mo ul li .bot-area dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  padding-right: 20px;
}
.list-table.mo ul li .bot-area dl:last-child {
  padding-right: 0;
}
.list-table.mo ul li .bot-area dl dt {
  width: 70px;
  color: #9C9C9C;
  font-weight: 600;
}
.list-table.mo ul li .bot-area dl dd {
  width: calc(100% - 70px);
  color: #333;
}
.list-table .input-text input {
  height: 35px;
}
.list-table .input-radio.box-radio {
  margin: 0;
}
.list-table .input-radio.box-radio input[type=radio] + label {
  padding: 4px 8px;
  min-width: 60px;
}
.list-table .selectbox::after {
  top: 15px;
}
.list-table .selectbox select {
  line-height: 35px;
  padding: 0 35px 0 15px;
}

.link {
  font-weight: 600;
  color: #508deb;
}
.link:hover {
  text-decoration: underline;
}

@media (max-width: 2030px) {
  .default-table table colgroup .bid-tit {
    width: 350px;
  }
  .default-table table colgroup .rsut-tit {
    width: 280px;
  }
  .default-table table colgroup .bidder-tit {
    width: 350px;
  }
}
@media (max-width: 1200px) {
  .list-table.pc {
    display: none;
  }
  .list-table.mo {
    display: block;
  }
  .list-table.mo.pd-top {
    padding-top: 7px;
  }
}
@media (max-width: 1070px) {
  .m-scroll {
    overflow-x: auto;
  }
  .m-scroll table {
    width: 1070px;
  }
  .m-scroll table colgroup .w-170px {
    width: 100px;
  }
  .m-scroll table colgroup .w-100px {
    width: 75px !important;
  }

  .s-table table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 890px) {
  .default-table table colgroup .w-170px {
    width: 70px;
  }
  .default-table table colgroup .w-100px {
    width: 70px !important;
  }
  .default-table table tr th {
    font-size: 1.4rem;
    padding: 7px;
  }
  .default-table table tr td {
    font-size: 1.4rem;
    padding: 7px 7px 7px 10px;
  }
  .default-table.mo-ui table colgroup {
    display: none;
  }
  .default-table.mo-ui table thead {
    display: none;
  }
  .default-table.mo-ui table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 0 5px;
    gap: 0 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }
  .default-table.mo-ui table tr td {
    display: inline-block;
    height: auto;
    padding: 3px 0;
    text-align: left;
    border: none;
    margin-right: 8px;
  }
  .default-table.mo-ui table tr td:last-child {
    margin-right: 0;
  }
  .default-table.mo-ui table tr td.num {
    display: none;
  }
  .default-table.mo-ui table tr td.mo-tit {
    display: block;
    width: 100%;
    padding-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
  }
  .default-table.mo-ui table tr td .a-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
  }
  .default-table.mo-ui table tr td .mo {
    display: inline-block;
    font-weight: 600;
    margin-right: 5px;
  }
  .default-table.mo-ui table tr td .colr-blue {
    display: inline-block;
    margin-left: 5px;
  }
  .default-table.mo-ui table tr.fixed .noti-label {
    display: none;
  }
  .default-table.mo-ui table tr.fixed .noti-label.mo-label {
    display: inline-block;
  }

  .inner-table table tr th {
    font-size: 1.15rem;
  }
  .inner-table table tr td {
    font-size: 1.15rem;
  }
}
@media (max-width: 575px) {
  .list-table.mo {
    display: block;
  }
  .list-table.mo ul li .top-area {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .list-table.mo .box .info {
    gap: 8px;
  }
  .list-table.mo .box .info dl {
    width: 100%;
  }
  .list-table.mo .box .info .btn-wrap {
    margin-top: 7px;
  }
}
@media (max-width: 475px) {
  .default-table table colgroup .tit {
    width: 100px;
  }

  .inner-table table {
    width: 100%;
  }

  .list-table.mo ul li .top-area .tit {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=community.css.map */