/* 공지사항 열람 */
.notice_view {
  padding-bottom: 145px;
}

.notice_view .banner {
  width: 100%;
  height: auto;
}

.notice_view .banner img {
  width: 100%;
}

.notice_view .table_box {
  border-bottom: none;
}

.notice_view .table_box .table_th {
  cursor: unset;
}

.notice_view .notice_ment {
  width: 100%;
  height: 406px;
  padding: 20px;
  border: 1px solid #D9D9D9;
  font-size: 15px;
  overflow: auto;
}

.notice_view .btn_wrap {
  position: relative;
  margin-top: 20px;
}

.notice_view .btn_group.pc_only {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}

.notice_view .btn_group.pc_only .btn {
  width: 80px;
  margin-right: 12px;
  background: transparent;
  border: 1px solid var(--main_orange);
  color: var(--main_orange);
}

.notice_view .btn_group.pc_only .btn.prev {
  border-color: #ACACAC;
  color: #ACACAC;
}
.notice_view .btn_group.pc_only .btn.next {
  color: var(--main_orange);
}

.notice_view .btn_group .btn:last-child {
  margin-right: 0;
}

.notice_view .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  font-size: 14px;
}

.notice_view .list_link {
  width: 113px;
  margin: auto;
}



/* ================================= 테블릿 ================================= */
@media screen and (max-width: 1400px) {
  .notice_view {
    padding-bottom: calc(100vw*(145/1400));
  }

  .notice_view .notice_ment {
    height: calc(100vw*(406/1400));
    padding: calc(100vw*(20/1400));
    font-size: calc(100vw*(15/1400));
  }

  .notice_view .btn_wrap {
    margin-top: calc(100vw*(20/1400));
  }

  .notice_view .btn_group .btn {
    width: calc(100vw*(80/1400));
    margin-right: calc(100vw*(12/1400));
  }

  .notice_view .btn {
    height: calc(100vw*(32/1400));
    font-size: calc(100vw*(14/1400));
  }

  .notice_view .list_link {
    width: calc(100vw*(113/1400));
  }
}







/* ================================= 모바일 ================================= */
@media all and (max-width: 900px) {
  .notice_view {
    padding-bottom: calc(100vw*(170/428));
  }
  .notice_view .mb_table_sub_box::after {
    display: none;
  }

  .notice_view .mb_table_sub_box {
    padding: calc(100vw*(10/428)) 0;
  }

  .notice_view .mb_tb_top {
    display: flex;
  }

  .notice_view .mb_table_sub_box .num {
    width: 15%;
    margin-right: 0;
  }

  .notice_view .mb_table_sub_box .num.date {
    width: 65%;
    margin-right: 0;
    color: #ACACAC;
  }

  .notice_view .mb_table_sub_box .num.view {
    width: 20%;
    text-align: right;
  }

  .notice_view .mb_tb_btm {
    display: flex;
    margin-top: calc(100vw*(20/428));
  }

  .notice_view .mb_table_sub_box .num.name {
    width: 70%;
    margin-top: 0;
  }
  .notice_view .btn_group {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    font-size: calc(100vw*(14/428));
  }
  .notice_view .btn_group .next::before {
    content: "";
    width: calc(100vw*(1/428));
    height: calc(100vw*(14/428));
    background: #F5F5F5;
    display: inline-block;
    margin: 0 calc(100vw*(10/428));
    vertical-align: middle;
  }

  .notice_view .notice_ment {
    height: calc(100vw*(224/428));
    /* max-height: calc(100vw*(450/428)); */
    padding: calc(100vw*(15/428));
    font-size: calc(100vw*(14/428));
  }

  .notice_view .btn_wrap {
    margin-top:  calc(100vw*(41/428));
  }
  .notice_view .list_link {
    width:  calc(100vw*(113/428));
    height:  calc(100vw*(32/428));
    font-size:  calc(100vw*(14/428));
  }
}