html {
  margin: 0 auto;
}

body {
  list-style: none;
  min-height: 100%;
  box-sizing: border-box;
  margin: 0px auto;
  background-color: #fdfdfd;
  text-decoration: none;
  text-align: center;
  font-family: 'Pretendard', 'Noto Sans KR';
}

a {
  text-decoration: none;
}

h1 {
  width: 100%;
  text-align: center;
}
.top {
}

.top a {
  color: #282828;
  font-size: 15px
}

.top::after {
  content: '';
  display: block;
  clear: both;
}

.find::after {
  content: '';
  display: block;
  clear: both;
}
main .find{margin-top: 5%;}

.fid {
  display: inline-block;
  line-height: 40px;
  float: revert;
  width: 100%;
  height: 40px;
  text-align: center;
  background-color: aliceblue;
/* border-radius: 5px; */
transition: all 0.3s;
}
.fid a {display: block; color: #4373B4;}
.fid:hover,.fid:active,.fid:focus{background-color: rgb(218, 238, 255);}


.form {
  text-align: center;
}

.login-page {
  width: 100%;
  padding: 10px 0 0;
  margin: auto;
}

input {
  font-family: 'Pretendard', 'Noto Sans KR';
}

.form input {
  font-family: 'Pretendard', 'Noto Sans KR';
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.2s;
}

.form input:hover,.form input:active,.form input:focus{background-color: #eeeeee;}

.form button {
  border-radius: 50rem;
  font-family: 'Pretendard', 'Noto Sans KR';
  outline: 0;
  background: #3054E7;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: #3054E7;
  filter: brightness(150%);
}

.form .message {
  margin: 15px 0 0;
  color: #ffffff;
  font-size: 12px;
}

.form .message a {
  color: #4CAF50;
  text-decoration: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 300px;

}

.container:before,
.container:after {
  content: "";
  display: block;
  clear: both;
}

.container .info {
  margin: 50px auto;
  text-align: center;
}


.bottom {
  border-bottom: 1px solid #282828;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 15%;
}

#plus {
  color: #0253B3;
}

.bottom h3 {
  color: #3054E7;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.footer {
  font-size: 0.73rem;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  color: #303030;
  background-color: #f2f2f2;
}

.notice {
  margin-top: 10px;
  line-height: 1.8;
}

table {
  width: 100%;
  color: #4A4A4A;
}

table a {
  color: #4A4A4A;
  text-decoration: none;
}

tr {
  width: 100%;
  font-size: 0.8rem;
}

.title {
  text-align: left;
  overflow: hidden;
  width: 238px;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.date {
  text-align: right;
}













/*  My class */
.gnb {
  display: flex;
  justify-content: space-between;
  padding: 1rem 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: white;
}

.gnb_logo {
  text-align: left;
}

.gnb_logo img {
  width: 60%;
  margin-top: 3px;
}

.logo {    margin-bottom: 10.5%;
  margin-top: 35%;}

.logo img {
  width: 88%;
  margin: 0 auto;
}

.logout {
  width: 73px;
  height: 33px;
  color: #FFFFFF;
  background: #3054E7;
  border-radius: 5px;
  border: none;
  font-size: 13.5px;
  font-weight: 400;
  font-family: 'Pretendard', 'Noto Sans KR';
}

section {
  margin: 0 20px !important;
  background-color: #fff;
}

main {
  padding: 0 20px 8rem 20px !important;
  /* background-color: rgba(248, 248, 248); */
  background-image: linear-gradient(rgba(248, 248, 248, .1), rgba(248, 248, 248, .2)), url(../img/bg_2.png);
  background-repeat: repeat;
}

.subtop {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 1.75rem;
}

.search__input {
  font-family: inherit;
  font-size: inherit;
  background-color: #fff;
  border: none;
  color: #646464;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  width: 100%;
  transition: all ease-in-out .5s;
  margin-right: -2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

header {
  margin: 0;
  padding: 0;
}

.search__input:focus {
  outline: none;
  background-color: #f0eeee;
}

.search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: #ccc;
}

.search__button {
  transition: all ease-in-out .5s;
}

.search__input:focus+.search__button {
  background-color: #f0eeee;
}

.search__button {
  border: none;
  background-color: #fff;
  margin-top: .1em;
}

.search__button:hover {
  cursor: pointer;
}

.search__icon {
  height: 1.3em;
  width: 1.3em;
  fill: #b4b4b4;
}


.con_box {
  position: relative;
  margin: 0 auto;
  background: center no-repeat;
  border-radius: 12px;
  transition: all 0.5s;
  margin-bottom: 10%;
  background-size: cover;
  transform: translateZ(0);
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  animation: fadeInRight 1s;
  animation-fill-mode: forwards;
}

.con_box:hover,
.con_box:focus {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.con_box:nth-child(2) {
  margin-top: 0;
}


.f_img {
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.35);
  transition: 0.5s;
  backdrop-filter: blur(5px);

}

.f_img:hover,
.f_img:focus {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: none;
}

.wrap {
  padding: 1.3rem;
}

.inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f1f1;
  align-items: flex-end;
  color: white;
}

.con_box:active {
  transition: 0.3s;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
}

.b_img {
  width: 40%;
  border-radius: 20px;
  background-color: #4CAF50;
  background: url(../img/HM8ZF37Xdeadmin121992414.png)no-repeat center;
  background-size: cover;
}


img {
  display: block;
  width: 100%;
}

.b_text {
  text-align: left;
  width: 65%;
  line-height: 1.2;
}

.b_text h4 {
  display: block;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  /* font-size: 1.25rem; */
  font-size: 1.05rem;
  margin-top: 0rem;
  margin-bottom: 0.5rem;
}

.b_text .when {
  font-size: 0.8em;
  margin: 0;
  padding: 5px 0;
}

.percent {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: white;
  background-color: #5c5c5c36;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 0.63rem;
  filter: drop-shadow(2px 4px 6px rgb(51, 51, 51));
  font-family: 'Futura';
  flex-basis: 2.25rem;
}

.percent span {
  font-size: 0.83rem;
}

.state {
  margin: 0;
  display: block;
  padding: 0.2rem 0.7em;
  background-color: #e73054;
  color: #fff !important;
  border-radius: 2px;
  font-size: 0.8rem;
}

.state_off {
  margin: 0;
  display: block;
  padding: 0.2rem 0.7em;
  background-color: #707070 !important;
  color: #fff !important;
  border-radius: 2px;
  font-size: 0.8rem;
}

h2 {
  font-size: 1.6rem;
  color: #303030;
}

.btn {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  gap: 8.5%;
}

.btn button {
  width: 100%;
  background-color: #3054e7;
  border: 1px solid rgb(56 80 181);
  border-radius: 2em;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
  padding: 0.5rem 5%;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  font-family: 'Pretendard';
}

.btn .sign {
  background: white;
  color: #3054e7;
}


.btn button:hover,
.btn button:focus {
  filter: brightness(110%);
}



.btn button:focus-visible {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ver {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.contents {
  height: 100%;
}
















/* modal 모달*/
.mini-button {
  cursor: pointer;
  background: #eee;
  color: #010101;
  border: none;
  padding: 5px 10px;
  margin: 0 0 20px;
  border-radius: 5px;
}

.mini-button:hover {
  background: #ccc;
}

.modal {
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal ul,
.modal li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

.modal .let {
  line-height: 1.2;
}

.modal .blue {
  color: #3054E7;
}

.modal h2 {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

.modal h3 {
  color: #3054E7;
  margin-bottom: 0.5rem;
  text-align: left;
}

.modal li:nth-of-type(1) h3 {
  margin-top: 0;
}

.modal-content {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  overflow: auto;
  height: auto;
  background: #fafafb;
  margin: 0;
  padding: 25px 20px 0px;
  border-radius: 20px;
  color: #010101;
  /* animation: fadeInUp 0.5s; */
}

.modal .small {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 0;
}

.minner {
  background: #fff;
  padding: 25px 20px;
  margin: 0px;
  box-shadow: 0px 6px 20px -6px rgba(20, 23, 26, 0.12), 0px 8px 32px -6px rgba(20, 23, 26, 0.08);
  border-radius: 19px;
}
.minner .cau {
  font-size: 0.8rem;
  opacity: 0.6;
}

.minner p {
  text-align: center;
  font-size: 0.969rem;
  width: 100%;
  text-align: left;
  margin-top: 0;
  margin-bottom: 5%;
}

.yon {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.yon .canc {
  display: block;
  width: 100%;
  background-color: #fafafb;
  text-align: center;
  margin-top: 1.5rem;
  border: 1px solid #ddd;
  border-right: none;
  border-bottom: none;
}

.yon .canc a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #3054E7;
  font-weight: 500;
}

.yon li:first-child a {
  color: #303030;
}

.minner li:last-child p {
  margin-bottom: 0;
}

.yon li:first-child {
  border-left: none;
}

.one_1 {
  letter-spacing: 2rem;
}




/* NOTICE Modal  공지모달*/
.close-modal {
  background: #bbb;
  height: 5px;
  width: 50px;
  border-radius: 10px;
  margin: 0 auto 20px;
  cursor: pointer;
}

.Modal_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}

.Modal_cont {
  width: 100%;
  height: 100%;
  z-index: 1000;
  box-sizing: border-box;
line-height: 1.2;
  background: #ffffff;
  border: 5px solid #3054E7;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.Modal_wrap {
  position: relative;
  margin: 3rem 20px;
  text-align: left;
  height: 83%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.Modal_cont h2 {
  border-bottom: 2px solid #3054E7;
  color: #3054E7;
}

.Modal_cont h3 {
  color: black;
}

.Modal_cont p {
  font-size: 0.9rem;
  color: #303030;
  margin-top: 0;
}

.Modal_close {
  cursor: pointer;
  font-size: 3rem;
  font-weight: bold;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  color: #3054E7;
}

.Modal_cont p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.Modal_cont span {
  font-weight: 500;
}
.Modal_cont h5 {
  margin-top: 0;
  background: rgb(58, 89, 212, 0.9);
  color: rgba(255, 255, 255, 0.8);
  padding: 3px 0;
  font-weight: 500;
}

.Modal_cont .not_1,.Modal_cont .not_2 {margin-bottom: 30%;}








/* 주의사항 모달 Modal  */
.modal2-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}

.modal2-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 376px;
  z-index: 1000;
  display: none;
  box-sizing: border-box;


  background: #262626;
  border: 5px solid #3054E7;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}


.modal2-wrap h2 {
  color: #3054E7;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #3054E7;
}

.modal2-wrap p {
  color: white !important;
  font-size: 0.8rem;
  margin: 1rem;
  text-align: center;
  line-height: 1.5;
}

.modal2-wrap span {
  color: #3054e7;
  font-size: 0.9rem;
}






/* footer 푸터 */
#footer {
  height: auto;
  background-color: #303030 !important;
  text-align: left;
  color: white;
  list-style: none;
  text-decoration: none;
}

#footer li,
#footer ul,
#footer a {
  list-style: none;
  text-decoration: none;
  padding: 0px;
  margin: 0;
}

#footer a {
  color: #fff;
}

#footer>a:first-of-type {
  color: #3054E7
}

#footer .txts {
  opacity: 0.5;
}

#gotop {
  text-align: center;
  padding: 1rem 0;
  background-color: #fff;
  border-top: 1px solid #3054E7;
  transition: all 0.3s;
}

#gotop a {
  color: #3054E7;
  font-family: 'Pretendard';
}

#gotop #text {
  font-family: 'Pretendard';
}

.fas {
  font-size: 1rem;
}

#gotop:hover,
#gotop:focus {
  background-color: #3054E7;
  color: white !important;
}

#footer .footer_inner .adress {
  padding: 0;
}

#footer .footer_inner .adress>li {
  padding: 60px 20px;
  padding-bottom: 20px;
}

#footer .footer_inner .adress>li:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

#footer .footer_inner .adress>li .tel {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #fff;
}

#footer .footer_inner .adress>li>ul>li {
  margin-bottom: 10px;
}

#footer .footer_inner .adress>li:nth-child(1)>ul>li span {
  margin-bottom: 10px;
}

.copy {
  font-size: 0.75rem;
}












/* vid */
.vid {
  position: relative;
  height: auto;
  background-color: rgb(248, 248, 248);
}



.start {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  width: calc(100% - 80px);
  transition: all 0.3s;
  display: none;
}

.start a:hover,
.start a:active {
  background-color: #3054E7;
  color: white;
}

.start a {
  display: none;
  /* display: block; */
  color: #3054E7;
  transition: all 0.3s;
  padding: 10px;
  border: 3px solid #3054E7;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 600;
}

.start a:hover,
.start a:active {
  color: white;
}
.arm {font-size: medium; font-weight: 700;
  width: 100% !important;
  color:		#3054E7 !important;}
.overlay {
  position: relative;
  margin: 0;
  height: 32vh;
  background: linear-gradient(to bottom,
      rgba(20, 20, 20, 0) 10%,
      rgba(20, 20, 20, 0.25) 25%,
      rgba(20, 20, 20, 0.5) 50%,
      rgba(20, 20, 20, 0.75) 75%,
      rgba(20, 20, 20, 1) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}



.vid_text {
  width: 15rem;
  text-align: left;
  position: absolute;
  line-height: 1.4;
  bottom: 20px;
  left: 0;
  color: white;
  margin-left: 40px !important;
  display: flex;
  flex-direction: column;
}

.vid_text h2 {
  color: white;
  margin-top: 0;
}

.vid_text .chapter {
  margin-bottom: 0;
  margin-top: 0.3rem;
  font-family: 'Montserrat', sans-serif !important;
  color: #3054E7;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.12rem;
}

.vid_text .ver {
  margin-bottom: 0;
}

.all {
  padding-top: 1rem;
  /* padding-top: 1.5rem; */
  text-align: left;
  background-color: rgb(248 248 248);
}
/* .all h4 {padding-top: 2rem;} */
.all_class {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10%;
  align-items: center
}

.all_thm {
  width: 30%;
  display: none;
}

.all_thm img {
  border-radius: 5px;
}
.all_btn .button {margin: 0 !important;}
.all_txt {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  width: 65%;
}

.allrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.allrow p {
  margin: 0;
  font-weight: 700;
  color: #182973;
}

.allrow .ver {
  margin-bottom: 0.5rem;
}

.allrow .ver .state_off {
  /* padding: 0.3rem; */
}


.up {        --primary-color: #3054e7;
  --secondary-color: #fff;
  --hover-color: #2648ce;
  --arrow-width: 8px;
  --arrow-stroke: 1px;
  box-sizing: border-box !important;
  border-radius: 6px;
  padding: 2rem 1rem;
  display: flex;
  transition: 0.2s;
  color: #3054E7 !important;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  font-family: 'Pretendard';
border-radius: 6px;
background: linear-gradient(145deg, #ffffff, #ebebeb)!important;
box-shadow:  6px 6px 12px #d9d9d9,
        -6px -6px 12px #ffffff!important;}

.all_class button {
        --primary-color: #3054e7;
        --secondary-color: #fff;
        --hover-color: #2648ce;
        --arrow-width: 8px;
        --arrow-stroke: 1px;
        box-sizing: border-box;
        border: 0;
        border-radius: 6px;
        color: var(--secondary-color);
        padding: 2rem 1rem;
        background: var(--primary-color);
        display: flex;
        transition: 0.2s ;
        align-items: center;
        font-weight: bold;
        white-space: nowrap;
        font-family: 'Pretendard';
border-radius: 6px;
background: linear-gradient(145deg, #4469ff, #3054e7);
box-shadow:  6px 6px 12px #d9d9d9,
              -6px -6px 12px #ffffff;}

.all_class button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.all_class button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.all_class button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.all_class button:hover {
  background-color: var(--hover-color);
}

.all_class button:hover .arrow {
  background: var(--secondary-color);
}

.all_class button:hover .arrow:before {
  right: 0;
}



.btn-wrap a {
  text-decoration: none;
  color: #fff;
  display: block;
  background-color: #3054E7;
  padding: 0.65625rem;
  margin: 0px;
}

.btn-wrap {
  background-color: #fff;
  padding: 1rem;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}

.js-load {
  display: none;
}

.js-load.active {
  display: flex;
  padding: 22px 20px;
border-radius: 15px;
background: #fff;
box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);

}

.is_comp.js-load:after {
  display: none;
}

.btn-wrap,
.lists,
.main {
  display: block;
}

.main {
  max-width: 640px;
  margin: 0 auto;
}

.lists {
  margin-bottom: 4rem;
}

.lists__item {
  padding: 20px;
  background: #EEE;
}

.lists__item:nth-child(2n) {
  background: #59b1eb;
  color: #fff;
}

.btn-wrap {
  text-align: center;
}


.prev {
  margin-top: 10%;
}

.icon {
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
  align-items: center;
}

.exc {
  margin-top: 10%;
}

.exc:hover,
.exc:focus,
.exc:active {
  filter: brightness(120%);
}


.fa-chevron-left:before {
  content: "\f053";
  color: white;
  font-size: 1.85rem;
  filter: drop-shadow(2px 4px 6px black);
}

.fa-exclamation:before {
  content: "\f12a";
  padding: 0.5rem 0.78rem;
  color: #ffffff;
  border: none;
  background-color: #3054E7;
  border-radius: 5px;
}

.fa-exclamation:before:hover,
.fa-exclamation:before:active,
.fa-exclamation:before:focus {
  content: "\f12a";
  padding: 0.5rem 0.78rem;
  color: #ffffff;
  border: none;
  background-color: #3054E7;
  border-radius: 5px;
}







/* 공지사항 */



table {
  border-collapse: collapse;
  width: 100%;
}

table a {
  color: #333;
  text-decoration: none;
}

.table-wrap table.board {
  font-family: 'Noto Sans KR';
  text-align: center;
}

.ellipsis,
.subject {
  text-align: left;
}

.table-wrap table {
  position: relative;
  line-height: 1.4;
  table-layout: fixed;
}

.table-wrap table::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.table-wrap table thead th {
  border: 1px solid #ddd;
  border-bottom: 0;
  background-color: #f9f9f9;
  padding: 20px;
  color: #222;
  font-size: .9rem;
  font-weight: 400;
}

.table-wrap table thead th:first-child {
  border-left: 0;
}

.table-wrap table thead th:last-child {
  border-right: 0;
}

.table-wrap table tbody th {
  border: 1px solid #ddd;
  background-color: #fcfcfc;
  padding: 20px;
  font-size: .8rem;
  font-weight: 400;
  color: #222;
}

.table-wrap table tbody th:first-child {
  border-left: 0;
}

.table-wrap table tbody th:last-child {
  border-right: 0;
}

.table-wrap table tbody th .list.dash>li {
  padding-left: 15px;
}

.table-wrap table tbody th .list.dash>li::before {
  left: 0;
}

.table-wrap table tbody td {
  border: 1px solid #ddd;
  padding: 20px;
  font-size: .8rem;
  font-weight: 400;
  background-color: #fff;
}

.table-wrap table tbody td:first-child {
  border-left: 0;
}

.table-wrap table tbody td:last-child {
  border-right: 0;
}

@media (max-width: 767px) {

  .table-wrap .board colgroup,
  .table-wrap .board thead {
    display: none;
  }

  .table-wrap .board tbody tr {
    border-bottom: 1px solid #dcdbdb;
    padding: 15px;
    display: block;
    overflow: hidden;
  }

  .table-wrap .board tbody tr td {
    display: none;
    padding: 0;
    border: 0;
  }

  .table-wrap .board tbody tr td.subject {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
  }

  .table-wrap .board tbody tr td.subject>a {
    font-size: .9rem;
  }

  .table-wrap .board tbody tr td.bookname {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
    float: left;
    display: inline-block;
  }

  .table-wrap .board tbody tr td.bookname>a {
    font-size: .9rem;
  }

  .table-wrap .board tbody tr td.locate {
    display: inline-block;
    float: left;
    margin-left: 10px;
  }

  .table-wrap .board tbody tr td.date,
  .table-wrap .board tbody tr td.hit,
  .table-wrap .board tbody tr td.file,
  .table-wrap .board tbody tr td.mission,
  .table-wrap .board tbody tr td.call {
    display: block;
    float: left;
    text-align: left;
    margin-right: 16px;
  }

  .table-wrap .board tbody tr td.mission {
    height: 20px;
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .table-wrap .board tbody tr td.floor {
    display: flex;
    float: left;
    margin-right: 16px;
    background: #eee;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }

  .table-wrap .board tbody tr td.date::before {
    content: "등록일 : ";
  }

  .table-wrap .board tbody tr td.hit::before {
    content: "조회수 : ";
  }

  .table-wrap .board tbody tr td.file::before {
    content: "첨부파일 : ";
  }

  .table-wrap .board tbody tr td.mission::before {
    content: "주요업무 : ";
  }

  .table-wrap .board tbody tr td.call::before {
    content: "전화번호 : ";
  }

  .table-wrap .board tbody tr td [class^="xi"] {
    font-size: 16px;
    vertical-align: middle;
  }
}


/* 태블릿 */


@media all and (min-width:768px) and (max-width:1023px) {
  body {
    margin: 0 14% !important;
  }

  ;
}

@media all and (min-width:1024px) {
  .html {
    margin: 0 40%;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}