@charset "UTF-8";
input[type=checkbox] {
  padding: 0;
  min-width: 20px;
  max-width: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
input[type=checkbox]:hover, input[type=checkbox]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=checkbox]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1.5px #bbc1d0;
          box-shadow: 0 0 0 1.5px #bbc1d0;
  background-color: white;
  -webkit-transition: -webkit-box-shadow 200ms linear;
  transition: -webkit-box-shadow 200ms linear;
  transition: box-shadow 200ms linear;
  transition: box-shadow 200ms linear, -webkit-box-shadow 200ms linear;
}
input[type=checkbox]:hover::before {
  -webkit-box-shadow: 0 0 0 1.5px var(--accent-color);
          box-shadow: 0 0 0 1.5px var(--accent-color);
}
input[type=checkbox]:checked::before {
  background: url("./img/icon_check.svg") 50% 51% no-repeat;
  background-size: 16px;
}
input[type=checkbox]:checked:hover::before {
  -webkit-box-shadow: 0 0 0 1.5px var(--accent-color);
          box-shadow: 0 0 0 1.5px var(--accent-color);
}

.list-container {
  width: 100%;
  color: #373f57;
}
.list-container * {
  font-family: "Pretendard Variable";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.04em;
}
.list-container section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .list-container section {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.list-container section .width-con {
  width: 100%;
  max-width: 1440px;
}
.list-container form {
  display: contents;
}
.list-container h2 {
  font-size: 38px;
  font-weight: 600;
}
.list-container h3 {
  color: #0d1015;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}
.list-container h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}
.list-container .important-notice-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 80px;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background: #333;
  color: #fff;
}
.list-container .important-notice-section .width-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.list-container .important-notice-section .width-con .important-notice-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.list-container .important-notice-section .width-con .important-notice-title p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
}
.list-container .important-notice-section .width-con .list-wrap {
  width: 100%;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .list-container .important-notice-section .width-con .list-wrap .important-notice-list {
    grid-template-columns: 1fr;
  }
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 30px 20px;
  width: 100%;
  height: 160px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: 8px;
  height: 100%;
  background: url(/user/img/btn_arrow_forward.svg) no-repeat 50%;
  background-size: contain;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a .date b {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a .date span {
  color: rgba(34, 34, 34, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a .important-notice {
  color: #222;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a .important-notice h4 {
  margin-bottom: 8px;
  line-height: 1.2em;
  height: 1.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-container .important-notice-section .width-con .list-wrap .important-notice-list li a .important-notice p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-container .important-notice-section .width-con .caption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
.list-container .notice-section {
  padding-top: 60px;
}
.list-container .notice-section .board_title {
  padding: 80px;
  border: none;
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.list-container .notice-section .board_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
.list-container .notice-section .board_list .board_btn_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .list-container .notice-section .board_list .board_btn_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_total {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_total span {
  margin: 0 4px 0 10px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--accent-color);
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 720px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .read-chk-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .read-chk-wrapper #is_read {
  margin-right: 2px;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .read-chk-wrapper label[for=is_read] {
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
@media screen and (max-width: 720px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .read-chk-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .read-chk-wrapper {
    display: none;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper {
    width: 100%;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .select {
  padding: 10px;
  background: url("./img/dropdownbtn.png") no-repeat 89% 50%;
  background-size: 14px;
  -webkit-transition: border 250ms linear;
  transition: border 250ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .select:hover {
    border-color: var(--accent-color);
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .select:active {
  border-color: var(--accent-color);
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper {
  position: relative;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input {
  width: 100%;
  max-width: 240px;
  height: 40px;
  padding: 10px;
  background: #f4f6fb;
  border-radius: 10px;
  border: 1px solid transparent;
  outline: none;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-webkit-input-placeholder {
  color: #babbcb;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-moz-placeholder {
  color: #babbcb;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input:-ms-input-placeholder {
  color: #babbcb;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-ms-input-placeholder {
  color: #babbcb;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::placeholder {
  color: #babbcb;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input:focus {
  border-color: var(--accent-color);
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input {
  -webkit-appearance: searchfield;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-webkit-search-decoration, .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-webkit-search-cancel-button, .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-webkit-search-results-button, .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input {
    max-width: unset;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper *::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch-clear {
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/user/img/btn_delete_circle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 125ms linear;
  transition: all 125ms linear;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch-input-wrapper .sch_input:focus ~ .sch-clear {
  opacity: 1;
  visibility: visible;
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch_btn {
  padding: 14px 20px;
  width: 60px;
  height: 40px;
  background: #4f535a;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: -1px;
  color: #ffffff;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch_btn:hover {
    background: #76797e;
  }
}
.list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch_btn:active {
  background: #76797e;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper .sch_btn {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .list-container .notice-section .board_list .board_btn_top .bo_list_search .sch-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.list-container .notice-section .board_list .tbl_wrap {
  margin: 0 0 30px;
}
.list-container .notice-section .board_list .tbl_wrap tr {
  height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff !important;
  border-bottom: 1px solid #e1e5ef !important;
  line-height: 1.2em;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .tbl_wrap tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 6px 20px;
    height: 108px;
  }
}
.list-container .notice-section .board_list .tbl_wrap tr .td_chk input {
  margin-right: 8px;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .tbl_wrap tr .td_chk {
    display: none;
  }
}
.list-container .notice-section .board_list .tbl_wrap tr .td_num {
  width: 80px;
  font-size: 14px;
  font-weight: 500;
  color: #969dae;
  text-align: right;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .tbl_wrap tr .td_num {
    width: auto;
  }
}
.list-container .notice-section .board_list .tbl_wrap tr .td_num2 {
  font-size: 14px;
  font-weight: 300;
  color: #969dae;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .tbl_wrap tr .td_subject {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.list-container .notice-section .board_list .tbl_wrap tr .td_subject .bo_tit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .tbl_wrap tr .td_subject .bo_tit a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
}
.list-container .notice-section .board_list .tbl_wrap tr .td_subject .bo_tit a div {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-container .notice-section .board_list .tbl_wrap tr .td_subject .bo_tit a div .sch_word {
  color: var(--accent-color);
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
}
.list-container .notice-section .board_list .tbl_wrap tr .td_datetime {
  width: 112px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .list-container .notice-section .board_list .tbl_wrap tr .td_datetime {
    padding: 0;
    width: auto;
  }
}
.list-container .notice-section .board_list .tbl_wrap .bo_notice td {
  background-color: transparent !important;
  border: none;
}
.list-container .notice-section .board_list .tbl_wrap .bo_notice > .td_subject > .bo_tit > a {
  color: var(--accent-color) !important;
}
.list-container .notice-section .board_list .btn_bo_user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-container .notice-section .board_list .btn_bo_user .btn {
  height: 32px;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  color: #373f57;
  background: #f4f6fb;
  text-align: center;
}
.list-container .notice-section .board_list .btn_bo_user .btn_b01 {
  width: 70px;
}
.list-container .notice-section .board_list .btn_bo_user .btn_b02 {
  color: #ffffff;
  background: #4f535a;
  border-radius: 10px;
}
.list-container[data-lo="1"] .important-notice-section .important-notice-list a.visited .date b {
  color: #969dae !important;
}
.list-container[data-lo="1"] .important-notice-section .important-notice-list a.visited .date b::after {
  content: "/읽음";
}
.list-container[data-lo="1"] .notice-section .board_list .bo_tit a.is-notice::before {
  content: "읽지않음";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
}
.list-container[data-lo="1"] .notice-section .board_list .bo_tit a.is-notice.visited::before {
  content: "읽음";
  color: #969dae;
}
.list-container[data-lo="1"] .notice-section .board_list .bo_tit a.is-notice.visited div {
  color: #7a7a7a !important;
}
.list-container:not([data-lo="1"]) .important-notice-section .important-notice-list a:visited .date b {
  color: #969dae !important;
}
.list-container:not([data-lo="1"]) .notice-section .board_list .bo_tit a.is-notice::before {
  content: "읽지않음";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
}
.list-container:not([data-lo="1"]) .notice-section .board_list .bo_tit a.is-notice.visited::before {
  content: "읽음";
  color: #969dae;
}
.list-container:not([data-lo="1"]) .notice-section .board_list .bo_tit a.is-notice.visited div {
  color: #7a7a7a !important;
}

.view-container {
  --res-padding: 40px;
}
@media screen and (max-width: 759px) {
  .view-container {
    --res-padding: 16px;
  }
}
.view-container * {
  font-family: "Pretendard Variable";
  font-style: normal;
  letter-spacing: -0.04em;
}
.view-container h2 {
  font-size: 38px;
  font-weight: 600;
}
.view-container h3 {
  color: #0d1015;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}
.view-container h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}
.view-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px var(--res-padding);
  width: 100%;
  background-color: #333;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 1019px) {
  .view-container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 759px) {
  .view-container {
    padding: 0;
  }
}
.view-container .width-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
}
.view-container .width-con .view-important-wrapper {
  width: 100%;
}
.view-container .width-con .view-important-wrapper ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 30px 20px;
  width: 100%;
  height: 160px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.view-container .width-con .view-important-wrapper ul li a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  width: 8px;
  background: url(/user/img/btn_arrow_forward.svg) no-repeat 50%;
  background-size: contain;
}
.view-container .width-con .view-important-wrapper ul li a > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.view-container .width-con .view-important-wrapper ul li a .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.view-container .width-con .view-important-wrapper ul li a .date b {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
}
.view-container .width-con .view-important-wrapper ul li a .date span {
  color: rgba(34, 34, 34, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.view-container .width-con .view-important-wrapper ul li a .important-notice {
  color: #222;
}
.view-container .width-con .view-important-wrapper ul li a .important-notice h4 {
  margin-bottom: 8px;
  line-height: 1.2em;
  height: 1.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.view-container .width-con .view-important-wrapper ul li a .important-notice p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.view-container .width-con .view-important-wrapper ul li a.visited .date b {
  color: #969dae !important;
}
.view-container .width-con .view-important-wrapper ul li a.visited .date b::after {
  content: "/읽음";
}
.view-container .width-con .main-con {
  position: sticky;
  top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1019px) {
  .view-container .width-con .main-con {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.view-container .width-con .main-con .view-board-con,
.view-container .width-con .main-con .view-other-con {
  padding-left: var(--res-padding);
  padding-right: var(--res-padding);
  border-radius: 24px;
}
@media screen and (max-width: 1019px) {
  .view-container .width-con .main-con .view-board-con,
  .view-container .width-con .main-con .view-other-con {
    margin: 0 var(--res-padding);
  }
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-board-con,
  .view-container .width-con .main-con .view-other-con {
    margin: 0;
    border-radius: 0;
  }
}
.view-container .width-con .main-con .view-board-con {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}
.view-container .width-con .main-con .view-board-con .view-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .view-container .width-con .main-con .view-board-con .view-wrapper {
    width: 100% !important;
    padding: 0 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-board-con .view-wrapper {
    padding: 0 4px;
  }
}
.view-container .width-con .main-con .view-board-con .view-wrapper .view-title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.view-container .width-con .main-con .view-board-con .view-wrapper .view-date {
  margin-bottom: 40px;
  color: #4e5968;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
}
.view-container .width-con .main-con .view-board-con .view-wrapper .view-contents {
  max-width: 100%;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 1.25em;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .view-container .width-con .main-con .view-board-con .view-wrapper .view-contents {
    padding: 0;
  }
}
.view-container .width-con .main-con .view-board-con .view-wrapper .view-contents img {
  width: 100%;
  cursor: pointer;
}
.view-container .width-con .main-con .view-board-con .view-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.view-container .width-con .main-con .view-board-con .view-btn-wrapper .btn {
  margin-top: 40px;
  padding: 5px 12px;
  height: 32px;
  background: #f4f6fb;
  border: none;
  border-radius: 999px;
}
.view-container .width-con .main-con .view-other-con {
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.view-container .width-con .main-con .view-other-con .view-next-wrapper li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  align-items: center;
  padding: 24px 0;
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-other-con .view-next-wrapper li {
    display: grid;
    grid-template-columns: 38px 62px auto;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 20px;
    grid-row-gap: 6px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
.view-container .width-con .main-con .view-other-con .view-next-wrapper li a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  color: inherit;
  font-size: 17px;
  line-height: 30px;
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-other-con .view-next-wrapper li a {
    grid-area: 1/2/2/4;
    line-height: 1em;
  }
}
.view-container .width-con .main-con .view-other-con .view-next-wrapper li span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.view-container .width-con .main-con .view-other-con .view-next-wrapper li .nb_tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-other-con .view-next-wrapper li .nb_tit {
    grid-area: 1/1/3/2;
  }
}
.view-container .width-con .main-con .view-other-con .view-next-wrapper li .nb_date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-other-con .view-next-wrapper li .nb_date {
    grid-area: 2/2/3/3;
  }
}
.view-container .width-con .main-con .view-other-con .view-next-wrapper li .wr-hit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-other-con .view-next-wrapper li .wr-hit {
    grid-area: 2/3/3/4;
    text-align: left;
  }
}
.view-container .width-con .main-con .view-other-con .goto-list {
  text-align: center;
}
.view-container .width-con .main-con .view-other-con .goto-list .btn {
  width: 100px;
  height: 40px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 125ms linear;
  transition: all 125ms linear;
}
@media (hover: hover) and (pointer: fine) {
  .view-container .width-con .main-con .view-other-con .goto-list .btn:hover {
    border-color: rgb(255, 255, 255);
  }
}
.view-container .width-con .main-con .view-other-con .goto-list .btn::active {
  border-color: rgb(255, 255, 255);
}
.view-container .width-con .main-con .view-important-con {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1019px) {
  .view-container .width-con .main-con .view-important-con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.view-container .width-con .main-con .view-important-con h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
  padding: 0 var(--res-padding);
}
.view-container .width-con .main-con .view-important-con .view-important-wrapper {
  overflow: hidden;
  padding: 0 var(--res-padding);
}
@media screen and (max-width: 759px) {
  .view-container .width-con .main-con .view-important-con .view-important-wrapper {
    padding: var(--res-padding);
  }
}
.view-container .width-con .main-con .view-important-con .view-important-wrapper ul li {
  width: 280px;
}
.view-container .width-con .view-important-wrapper ul li a {
  background-color: rgba(255, 255, 255, 0.08);
}
.view-container .width-con .view-important-wrapper ul li a::after {
  -webkit-filter: invert(1) brightness(1);
          filter: invert(1) brightness(1);
}
.view-container .width-con .view-important-wrapper ul li a .date b,
.view-container .width-con .view-important-wrapper ul li a .date span {
  color: rgba(255, 255, 255, 0.7);
}
.view-container .width-con .view-important-wrapper ul li a .important-notice {
  color: #fff;
}
.view-container .width-con .view-important-wrapper ul li a .important-notice p {
  color: rgba(255, 255, 255, 0.5);
}
.view-container .width-con .view-important-wrapper ul li a.visited .date b {
  color: #969dae !important;
}
.view-container .width-con .view-important-wrapper ul li a.visited .date b::after {
  content: "/읽음";
}
.view-container .width-con .side-con {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  position: sticky;
  top: 20px;
}
@media screen and (max-width: 1019px) {
  .view-container .width-con .side-con {
    display: none;
  }
}
.view-container .width-con .side-con .view-important-wrapper {
  width: 100%;
}
.view-container .width-con .side-con .view-important-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.write-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.write-container * {
  font-family: "Pretendard Variable";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.06em;
  color: #000;
}
.write-container .write-wrapper {
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1080px) {
  .write-container .write-wrapper {
    width: 100%;
    padding: 10px;
  }
}
.write-container .write-wrapper .notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  margin: 60px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.write-container .write-wrapper form {
  display: contents;
}
.write-container .write-wrapper .write-body-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.write-container .write-wrapper .write-body-wrapper .write-subject {
  width: 100%;
}
.write-container .write-wrapper .write-body-wrapper .write-subject input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 2px solid #bbc1d0;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.write-container .write-wrapper .write-body-wrapper .write-content {
  margin-bottom: 50px;
}
.write-container .write-wrapper .write-body-wrapper .write-content #smart_editor2 {
  min-width: 400% !important;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn {
  width: 100%;
  height: 40px;
  position: relative;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn #upload_btn {
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #f4f6fb;
  border: none;
  border-radius: 10px;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn #upload_btn::-webkit-input-placeholder {
  color: #c3c5cc;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn #upload_btn::-moz-placeholder {
  color: #c3c5cc;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn #upload_btn:-ms-input-placeholder {
  color: #c3c5cc;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn #upload_btn::-ms-input-placeholder {
  color: #c3c5cc;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn #upload_btn::placeholder {
  color: #c3c5cc;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn::after {
  content: "파일선택";
  position: absolute;
  bottom: 0px;
  right: 10px;
  padding: 6.5px 7px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #bbc1d0;
  border-radius: 6px;
  cursor: pointer;
}
.write-container .write-wrapper .write-body-wrapper .upload-btn input {
  cursor: pointer;
}
.write-container .write-wrapper .btn_wrapper {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.write-container .write-wrapper .btn_wrapper .btn {
  height: 40px;
  color: #373f57;
  font-size: 15px;
  background-color: #ffffff;
  border: 1px solid #bbc1d0;
  border-radius: 10px;
}
.write-container .write-wrapper .btn_wrapper .btn:hover {
  border: 1px dashed #9747ff;
}
.write-container .write-wrapper .btn_wrapper .submit-btn {
  background: #4f535a;
  color: #ffffff;
  border: 1px solid #4f535a;
}
.write-container .write-wrapper .btn_wrapper .submit-btn:hover {
  background: #76797e;
}

.pagination-container {
  width: 100%;
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-container .pagination_wrap {
  gap: 20px;
}
.pagination-container .pagination_wrap .page {
  border: none !important;
}

.btn_cke_sc {
  display: none !important;
}