@charset "utf-8";

*{box-sizing: border-box;}
.page-section{box-sizing: border-box; margin-bottom: 4rem; overflow: hidden;}
.page-section.title{overflow: visible;}
.border-b{border-bottom: 1px solid #ddd; padding-bottom: 4rem;}
.mb-0{margin-bottom: 0 !important;}
.pb-0{padding-bottom: 0 !important;}
.page-con{width: 100%; margin: 0 auto;}

.ver-line{width: 1px; height: 100px; background-color: #000; margin: 0 auto;}

.loading{width: 100%; min-height: 550px; display: flex; justify-content: center; align-items: center;}
.loading > h2{font-size: 48px; font-weight: 700; text-align: center;}

.page-tit{margin-bottom: 3rem;}
.page-tit > h2{font-size: 26px; font-weight: 500;}
.page-tit > h2 > span{color: #365386; display: inline-block; margin-right: 5px;}

.page-tit > ul{padding: 1.5rem 0 0 0;}
.page-tit > ul > li{font-size: 16px; color: #666; margin-bottom: 10px; padding-left: 1rem; position: relative;}
.page-tit > ul > li::before{content: ""; width: 5px; height: 5px; background-color: #ed5929; border-radius: 50%; position: absolute; top: 10px; left: 0;}
.page-tit > ul > li:last-child{margin-bottom: 0;}
.page-tit > ul > li > span{color: #ed5929;}

.page-table{width: 100%;}
.page-table > table{width: 100%; border-spacing: 0; border-left: 1px solid #ddd; border-top: 1px solid #ddd;}
.page-table > table > thead > tr > th{padding: 1rem; background-color: #f5f5f5; color: #333; font-size: 18px; text-align: center; font-weight: 500; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd;}
.page-table > table > tbody > tr > td{padding: 1rem; color: #666; font-size: 16px; text-align: center; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd;}
.page-table > table > tbody > tr > td.point{color: #365386; font-weight: 500;}
.page-table > table > tbody > tr > td > span{font-size: 14px;}

.page-table > ul{padding: 1.5rem 0 3rem 0;}
.page-table > ul > li{font-size: 14px; margin-bottom: 5px; padding-left: 10px; position: relative;}
.page-table > ul > li::after{content: ""; width: 3px; height: 3px; border-radius: 50%; background-color: #365386; position: absolute; top: 9px; left: 0;}
.page-table > ul > li:last-child{margin-bottom: 0;}

.info-wrap{width: 100%; display: flex; justify-content: space-between;}
.info-box{width: 49%; background-color: #f8f8f8; border-radius: 20px; padding: 2rem;}
.info-box > h3{font-size: 22px; color: #ed5929; margin-bottom: 1.5rem;}
.info-box > h3 > span{display: inline-block; margin-right: 5px; font-size: 18px;}
.info-box > p{font-size: 16px; margin-bottom: 10px;}
.info-box > p > span{color: #ed5929; font-weight: 500;}
.info-box > p:last-child{margin-bottom: 0;}

/* media-query */

@media(min-width:601px){

  .m-screen{display: none;}
}
@media(min-width:992px){
  .pt-3{padding-top: 3rem;}
  .pt-5{padding-top: 5rem;}
  .d-lg-block{display: block;}
  .d-lg-none{display: none;}

}

@media(max-width:991px){
  .d-block{display: block;}
  .d-none{display: none;}
  .page-section{margin-bottom: 2rem;}
  .page-tit > h2{font-size: 20px;}
  .page-tit{margin-bottom: 1.5rem;}
  .ver-line{height: 50px;}
  .page-con{padding: 0;}

  .page-tit > ul{padding-top: 1rem;}
  .page-tit > ul > li{font-size: 14px; margin-bottom: 8px; padding-left: 10px;}
  .page-tit > ul > li::before{width: 4px; height: 4px; top: 9px;}
  .page-table > table > thead > tr > th{padding: 14px; font-size: 14px;}
  .page-table > table > tbody > tr > td{padding: 10px; font-size: 12px;}
  .page-table > ul > li{font-size: 13px; padding-left: 8px;}
  .page-table > ul{padding: 1rem 0 2rem 0;}
  .page-table > table > tbody > tr > td > span{font-size: 12px;}

  .info-wrap{flex-direction: column;}
  .info-box{width: 100%;}
  .info-box:first-child{margin-bottom: 1rem;}
  .info-box > h3{font-size: 18px; margin-bottom: 1rem;}
  .info-box > p{font-size: 14px;}
  
}
@media(max-width:600px){
  .loading{min-height: 350px;}
  .loading > h2{font-size: 30px;}

  .page-table.mo{position: relative; overflow-x: auto;}
  .page-table.mo table{min-width: 600px;}
  .page-table.mo > table > thead > tr > th{min-width: 100px;}
  .m-screen {
    overflow-x: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(60,81,82,0.4);
  }
  .m-txt {
    text-align: center;
    padding: 1.5rem 15px;
    background-color: #365386;
    border-radius: 10px;
    color: #fff !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    font-size: 14px;
  }
}