@charset "UTF-8";


#mobile-nav .nav-logo{
  padding: 20px;
  border-bottom: 1px solid #EDEDED;
}
#mobile-nav .nav-logo a{
  width: 100%;
  height: 30px;
  background: url(../img/logo.svg) no-repeat;
  display: flex;
}
#mobile-nav .gnb-bottom{
  position: absolute;
  bottom: 0;
  padding: 20px;
  z-index: 1;
}
#mobile-nav .gnb-bottom .login{
  height: 30px;
  padding: 0 0 0 25px;
  background:url(../img/ico-signout.svg) left center no-repeat;
}
.key-wrap{

}


/* 사이드 메뉴 */
.api-side-navigation {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.api-side-navigation .lnb-list .lnb-item{
  border-bottom:1px solid #ddd;
}
.api-side-navigation .lnb-list .lnb-item.active {
  border-bottom:1px solid #EDEDED;
  background: #E6EBEE;
}
.api-side-navigation .lnb-list .lnb-item .lnb-btn {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  position: relative;
  width: 100%;
  text-align: left;
  padding: 12px 0 12px 20px;
  color: #2B2B2B;
  background: #fff;
}


.api-side-navigation .lnb-list .lnb-item .lnb-subitem a {

  color: #474747;
      background: #F1F4F6;
}
.api-side-navigation .lnb-list .lnb-item [class*=lnb-toggle]::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  width:20px;
  height:20px;
  margin-left: auto;
  margin-right: 20px;
  transition:0.4s ease-in-out;
  transform: rotate(0deg);
  background: url(../img/ico-arrow-down.svg) no-repeat;
}

.api-side-navigation .lnb-list .lnb-item [class*=lnb-toggle][aria-expanded=true]::after {
  transform: rotate(180deg);
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  padding: 0 0 0 10px;
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu > ul {
  padding: 0;
  overflow: hidden;
}


.api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2 {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: -100%;
  z-index: 10;
  width: 100%;
  height: 100%;
  transition:0.4s ease-in-out;
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2.active {
  opacity: 1;
  visibility: visible;
  left: 0;
  background:#fff;
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2 > ul {
  display: flex;
  align-items: normal;
  justify-content: flex-start;
  flex-direction: column;
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2 .lnb-btn-tit {
  display: flex;
  align-items: normal;
  justify-content: space-between;
  flex-direction: column;
  gap: var(--api-gap-2);
  width: 100%;
  text-align: left;
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2 .lnb-btn-tit::before {
  content: "";
  display: inline-flex;
  width: var(--api-icon--size-large);
  height: var(--api-icon--size-large);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  -webkit-mask-image: url(../../img/img/component/icon/ico_angle.svg);
  mask-image: url(../../img/img/component/icon/ico_angle.svg);
  transform: rotate(90deg);
}
.api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2 .lnb-btn-tit:focus {
  outline-offset: -0.4rem;
}

.api-side-navigation .lnb-list .lnb-item.active .lnb-submenu {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  background: #F1F4F6;
}
.api-side-navigation .lnb-list > li > .lnb-btn::before {
  display: inline-flex;
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0%;
  width: 0;
  height: 0.3rem;
  transition: 0.4s ease-in-out;
}
.api-side-navigation .lnb-list > li > .lnb-btn:hover::before {
  left: 0;
  width: 100%;
}
.api-side-navigation .lnb-list > li > .lnb-btn.active:not(.lnb-toggle)::before {
  left: 0;
  width: 100%;
}


[data-api-mode=high-contrast] .api-side-navigation .lnb-list .lnb-item [class*=lnb-toggle]::after {
  display: inline-flex;
  width: var(--api-icon--size-medium);
  height: var(--api-icon--size-medium);
}
[data-api-mode=high-contrast] .api-side-navigation .lnb-list .lnb-item .lnb-submenu-lv2 .lnb-btn-tit::before {
  display: inline-flex;
  width: var(--api-icon--size-large);
  height: var(--api-icon--size-large);
}




/*main*/

.main-search h1{
  font-family:esamanru, Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight:400;
  margin-bottom: 30px;
}
.main .contents section{

}
.main section.main-visual{
  background:#F8FAFB;
  padding:92px 0 79px; 
}
.main .section-wrap{
  margin:0 auto;
  width: 100%;
}
.main section.main-visual .section-wrap{
  display: flex;
  gap: 116px;
  justify-content: space-between;
}

.main .main-banner{
  width: 397px;
  overflow: hidden;
  position: relative;
  min-width: 387px;
}
.main .main-banner figcaption{
      position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.search-category {
  margin-top:58px;
}
.search-category dl{
  display: flex;
  gap:10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  line-height: 1.4;
}
.main-search-wrap input {
  text-indent: 20px;
}
.search-category dt{
  font-size: 18px;
  color: #2B2B2B;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 6px;
}
.search-category dt:before{
  content:'';
  display: block;
  width: 3px;
  height: 17px;
  background: #8E9DAF;
}
.search-category dd .btn.on,
.search-category dd .btn:hover{
  background: #646DCF;
  color:#fff;
}
.main-search-wrap{
  background: #E6EBEE;
  border-radius: 8px;
  height: 54px;
  display: flex;
  align-items: center;
}
.main-search-wrap.basic{
  background: #fff;
  border:1px solid #EDEDED;
}
.main-search-wrap.basic + .search-category {
  margin-top: 40px;
}
.main-search-wrap.basic + .search-category dd .btn{
  border:1px solid #fff;
}
.main-search-wrap.basic + .search-category dd .btn.on,
.main-search-wrap.basic + .search-category dd .btn:hover {
  background: #DBDEF8;
  color:#646DCF;
  border:1px solid #646DCF;
}
.main-search-wrap input{
  border: none;
  height: 54px;
  background: transparent;
  text-indent: 30px;
  width: calc(100% - 64px);
  font-size: 16px;
}
.main-search-wrap button{
  background: url(../img/ico-search.svg) center center no-repeat;
  background-size: 24px;
  width: 45px;
  height: 45px;

}
.main-banner-swiper{
  position: relative;
}
.main-banner-swiper .swiper-slide a{
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.main-banner-swiper .swiper-slide img{
  width: 387px;
  height: 450px;
  object-fit: cover;
}
.swiper-pagination-auto{
  position: absolute;
  display: flex;
  width:calc(100% - 36px) ;
  bottom: 27PX;
  left: 36px;
}
.swiper-pagination-auto .auto-btn{
  position: relative;
  z-index: 1;
  margin-left: 12px;
}
.swiper-pagination-auto button{
  width: 32px;
  height: 32px;
  font-size: 0;
}
.swiper-button-next, .swiper-button-prev{
  position: relative!important;
  width: 32px!important;
  height: 32px!important;
  margin-top:0!important;
  top:0!important;
  font-size: 0;
  left:auto!important;
  right:auto!important;

}
.swiper-button-next{
  background: url(../img/ico-sw-right.svg) no-repeat;
}
.swiper-button-prev{
  background: url(../img/ico-sw-left.svg) no-repeat;
}
.swiper-pagination-auto .swiper-auto-start,
.swiper-pagination-auto .swiper-auto-stop{
  font-size: 0;
}
.swiper-pagination-auto .swiper-auto-start{
  background: url(../img/ico-sw-start.svg) no-repeat;
}
.swiper-pagination-auto .swiper-auto-stop{
  background: url(../img/ico-sw-pause.svg) no-repeat;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
  content:none!important;
}
.btn-control-wrap{
  display: flex;
  gap: 4px;
}
.main-standard{
  background: #F2F5F6;
  padding:80px 0;
  display: flex;
}
.sw-btn-type1 .swiper-button-next,
.sw-btn-type1 .swiper-button-prev{
  width: 48px!important;
  height: 48px!important;
  border-radius: 50%;
  background: #fff url(../img/ico-arrow-gray.svg) center center no-repeat;
  left: 0;
  box-shadow: 0 2px 5px #ddd;
}
.sw-btn-type1 .swiper-button-next{
  transform: rotate(180deg);
  left: auto!important;
  right:-40px!important;
}
.sw-btn-type1{
  position: relative;
}
.sw-btn-type1 .swiper-pagination-auto {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: calc(50% - 20px);
  left: -20px;
}
.sw-btn-type1 .btn-control-wrap {
  justify-content: space-between;
  width: 100%;
}
.standard-carousel .swiper-slide{
  background: #fff;
  border:1px solid #E6EBEE;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 39px 0;
  gap: 18px;
  background: #fff;
}
.standard-carousel .swiper-slide img{
    width: 91px;
    height: 90px;
}
.sw-btn-type1 .swiper-horizontal{
  overflow: hidden;
  position: static;
}
.main-standard h2{
    padding: 0 10px;
    color: #888A97;
    font-size: 22px;
    word-break: break-word;
    line-height: 1;
    min-height: 45px;
}
.main-standard h3{
  color: #888A97;
    font-size: 24px;
}
.main-standard .cnt{
  display: flex;
      gap: 5px;
      align-items: center;
}
.main-standard .cnt strong{
  color: #2B2B2B;
    font-size: 22px;
}
.main-data{
  display: flex;
  padding: 90px 0;
  text-align: center;
  background: rgba(230, 213, 245, 0.08);
background: linear-gradient(180deg,rgba(230, 213, 245, 0.8) 0%, rgba(255, 248, 239, 1) 100%);
}
.main-data h2{
  font-size: 32px;
  color: #171717;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.main-data .h2-dscpt{
  font-size: 20px;
  color: #474747;
}
.main-data .data-guide{
  display: flex  ;
    gap: 0;
    margin-top: 30px;
    width: 100%;
}
.main-data .data-guide .data-g-left,
.main-data .data-guide .data-g-right{
  background: #F0EFF7;
  max-width: 500px;
  width:calc(50% - 35px);
  border-radius: 16px;
  height: 512px;
  display: flex;
  font-size: 18px;
  text-align: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  line-height: 1.5;
  flex-direction: column;
}
.main-data .data-guide img{
  margin-top:20px;
}
.main-data h3{
  font-size: 24px;
  color: #2B2B2B;
  font-weight: 600;
  margin: 10px 0;
}
.main-data .data-guide .data-g-right{
  background: #8575F4;
  color:#fff;
}
.main-data .data-guide .data-g-right h3{
  color:#fff;
}
.main-data .data-guide .data-between{
  background:url(../img/buird-between.svg) center center no-repeat;
  min-width: 70px;
}
.main-data .txt-bottom{
  color: #70717F;
  margin-top: 16px;
  text-align: left;
}
.main-data .txt-bottom strong{
  color: #474747;
  font-weight: 500;
}
.data-guide{
  display: flex;
}
.data-guide ol{
  display: flex;
  justify-content: space-around;
    width: 100%;
}
.data-guide ol li{
  position: relative;
  width: 33%;
}
.data-guide ol li p{
  font-size:24px;
      margin-top: 20px;
}
.data-guide ol li img{

}
.data-guide ol li:after{
content: '';
    display: block;
    width: 48px;
    height: 48px;
    background: url(../img/step-arrow.png) center center no-repeat;
    position: absolute;
    right: 0;
    top: calc(50% - 24px);
    border-radius: 50%;
}
.data-guide ol li:last-child::after{
  content:none;
}
.step-top{
      display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 22px;
}
.step-top span{
background: #D177FE;
background: linear-gradient(180deg,rgba(209, 119, 254, 0.8) 0%, rgba(124, 81, 252, 1) 100%);
  display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-size:22px;
    padding:5px 12px;
    border-radius: 6px;
        font-weight: 600;
}
.step-top:before{
  content:'';
  display: block;
  width: 116px;
  height: 86px;
  background:url(../img/step-birds.png) center center no-repeat;
  margin-bottom: -5px;
}
.step-top img{
  width: 192px;
}
.main-case{
  padding:80px 0;
  display: flex;
}
.main-case h2{
  font-size: 32px;
  color: #171717;
  font-weight: 600;
  margin-bottom: 16px;
}
.main-case .swiper-slide a{
  border: 1px solid #EDEDED;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
.main-case .swiper-slide h3{
  padding: 24px 40px;
}
.main-case .swiper-slide img{
  display: block;
  margin: 0 auto;
}
.main-case .swiper-slide ul{

  background: #F7F8FA;
  width: 100%;
  border-radius: 0 0 16px 16px;
  padding: 24px 0 24px 40px;
  margin: 20px 0 0 0;
  font-size: 18px;
  color: #70717F;
}
.m-btn-more{
  display: none;
}
.main-openapi{
  background: #F1F4F6;
  padding: 80px 0;
  display: block;
}
.main-openapi h2{
  font-size: 32px;
  color: #171717;
  font-weight: 600;
  margin-bottom: 16px;
}
.main-openapi .swiper-slide a{
  border: 1px solid #EDEDED;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.main-openapi .swiper-slide h3{
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 10px 0;
}
.main-openapi .swiper-slide .txt{
  color: #888A97;
}
.main-openapi .swiper-slide p{
  font-size: 18px;
  color: #474747;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 75px;
  margin: 0 0 54px 0;
  text-align: left;
}
.path{
  color:#C5C8CB;
      display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.path span{
  font-size: 14px;
  border-radius: 4px;
  padding: 0 8px;
  display: inline-flex;
  background: #ddd;
  height: 25px;
  align-items: center;
  word-break: break-word;
    line-height: 1;
}
.path.type-01 span{
  background-color: #E9F5F9;
  color:#0290C4;
}
.path.type-02 span{
  background-color: #DADDFF;
  color:#5458E7;
}
.path.type-03 span{
  background-color: #FFF3E4;
  color:#CA7308;
}
.path.type-04 span{
  background-color: #FBF1FF;
  color:#AB56CC;
}
.path.type-05 span{
  background-color: #E4EEFF;
  color:#7B64C8;
}
.path.type-06 span{
  background-color: #F2EEFF;
  color:#7B64C8;
}
.path.type-07 span{
  background-color: #EFF4D1;
  color:#738801;
}
.path.type-08 span{
  background-color: #DEF2E5;
  color:#079451;
}
.main-status{
  display: flex;
  padding: 80px 0;
  width: 100%;
}
.main-status h2{
  font-size: 32px;
  color: #171717;
  font-weight: 600;
  margin-bottom: 16px;
}
.main-status .main-status-both{
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  gap: 30px;  
  display: flex  ;
}
.main-status .main-status-both .main-b{
  background: #F7F8FA;
  border-radius: 16px;
  padding: 44px;
  width: calc(50% - 15px);
  position: relative;
}
.main-status .main-status-both .main-b:after{
  background: url(../img/ico-status01.svg) no-repeat;
  content: '';
  display: block;
  width: 113px;
  height: 115px;
  position: absolute;
  right: 59px;
  top: 36px;
}
.main-status .main-status-both .main-b h3{
  font-size: 20px;
  color: #474747;
}
.main-status .main-status-both .main-b h3 span{
  font-size: 16px;
  color: #70717F;
  display: block;
}
.main-status .main-status-both .main-b .main-b-coun{
  font-size: 22px;
  color: #474747;
}
.main-status .main-status-both .main-b .main-b-count{
  margin-top:10px;
}
.main-status .main-status-both .main-b .main-b-count strong{
  font-size: 30px;
  color: #2B2B2B;
  margin-right: 5px;
}

.main-board{
  display: flex;
  background: #2B2B2B;
  padding:90px 0 70px;
}
.main-board-both{
  display: flex;
  justify-content: space-between;
}
.main-board-both .main-board-left{
  width: calc(50% - 30px);
  margin-right:60px;
}
.main-board-both .main-board-right{
  width: calc(50% - 60px);
}

.main-board-both .g-conts-area{
  color:#fff;
}

.main-board .tab ul{
  display: flex;
      gap: 43px;
      margin-bottom:44px;

}
.main-board .tab-conts-wrap ul{
  
}
.main-board .tab-conts-wrap ul li{
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
}
.main-board .tab li button{
  color:#888A97;
  font-size: 32px;
  font-weight: 600;
}
.main-board .tab li.active button{
  color:#fff;
}
.main-board .tab-conts li a{
  color: #fff;
  font-size: 18px;
  color: #fff;
  font-size: 18px;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
.main-board .tab-conts:last-child li{
background: url(../img/ico-arrow-right.svg) right center no-repeat;
}
.main-board .tab-conts li a + span{
  color:#888A97;
  display: block;
  min-width: 94px;
}
.main-board .btn-borad-more{
  color: #fff;
  position: absolute;
  top: -88px;
  right: 0;
  background: #474747 url(../img/ico-plus-w.svg) center center no-repeat;
  background-size: 17px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
}
.main-board .tab-conts-wrap{
  position: relative;
}

.main-help{
  background: #646DCF;
  border-radius: 16px;
  color: #fff;
  padding: 46px 54px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.main-help h2{
  font-size: 32px;
  font-weight: 600;
  width: 100%;

}
.main-help p{
  font-size: 22px;
  text-align: left;
  width: 100%;
}
.main-help a{
  font-size: 20px;
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url(../img/ico-arrow-w.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: 92% center;
  border-radius: 50px;
  color: #fff;
  padding: 0 42px;
  height: 48px;
  align-items: center;
}
.main-help:after{
  content: '';
  display: block;
  width: 227px;
  height: 227px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: -16%;
  top: -13%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.go-home{
  font-size:14px;
  color:#474747;
  height: 44px;
  display: flex;
  border-radius: 4px;
  border:1px solid #EDEDED;
  position: absolute;
  left: 40px;
  top: 40px;
  align-items: center;
  padding: 0 20px;
  gap: 5px;
}
.go-home:before{
  content:'';
  display: block;
  background: url(../img/ico-home.svg) no-repeat;
  width: 18px;
  height: 18px;
}
.log-in{
  max-width: 430px;
  margin:160px auto 80px auto;
  width: 100%;
  display: flex;
}
.log-in .login-wrap{
 width: 100%;
}
.log-in h1{
  background: url(../img/logo.svg) center center no-repeat;
  width: 238px;
  height: 30px;
  background-size: cover;
  margin: 0 auto;
}
.log-in h2{
  font-size: 28px;
  color:#2B2B2B;
  margin:30px 0 50px;
  text-align: center;
  font-weight: 600;
}
.log-in .text{
  font-size: 15px;
  color: #333;
  padding: 10px 0;
}
.log-in .login-info{
  margin-top:38px;
}
.log-in .login-info .info-or{
text-align: center;
position: relative;
}
.log-in .login-info .info-or span{
font-size: 12px;
    color: #70717F;
    display: inline-block;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    background: #fff;
}
.log-in .login-info .info-or:after{
  content:'';
  display:block;
  width: 100%;
  height: 1px;
  background: #EDEDED; 
  position: absolute;
  top: 50%;
}
.log-in .login-info .info-section{
  margin-top:30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.log-in .login-info .info-section a{
  color:#646DCF;
  font-size:14px;
  text-decoration: underline;
  width: 19%;
  text-align: right;
  display: block;
  white-space: nowrap;
}
.log-in .login-info .info-section p{
  font-size:14px;
  color:#70717F;
}
.form-error{
  background: url(../img/ico-error.svg) left 3px no-repeat;
  background-size: 14px;
  font-size: 14px;
  color: red;
  padding: 0 0 0 18px;
  margin: 5px 0;
}
.ctg-select{
  display: flex;
  gap: 10px;
  align-items: center;
}
.ctg-select .form-select{
  display: flex;
  align-items: center;
}
.ctg-select .form-select:before{
  content:'';
  display: block;
  width: 1px;
  height: 16px;
  background: #C5C8CB;
  margin:0 12px;
}

.breadcrumb{
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  display: flex;
  height: 60px;
  font-size: 16px;
  color: #2B2B2B;
  align-items: center;
  padding: 0 0 0 40px;
  background: #fff;
}
.breadcrumb ul{
  display: flex;
  color: #888A97;
}
.breadcrumb li{
  display: flex;
  align-items: center;
}
.breadcrumb li:last-child{
  font-weight: 500;
   color: #2B2B2B;
}
.breadcrumb li:before{
  content:'';
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: url(../img/ico-arrow-gray.svg) center center no-repeat;
  transform: rotate(180deg);
      margin: 0 6px;
}
.breadcrumb li:first-child:before{
  content:none;
}
.breadcrumb + *{
  margin-top:100px;
}
.tit-box{
  background: #F7F8FA;
  text-align: center;
  padding:40px;
}
.tit-box h2{
  font-size: 24px;
  font-weight: 600;
}
.tit-box p{
  font-size: 18px;
  color:#474747;
      margin-top: 16px;
}
.option-box{
  background: #F7F8FA;
  padding: 0 80px 40px 80px;
}
.ctg-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ctg-select{
  display: flex;
}
.board-wrap > ul{
  display: flex;
  gap: 30px 20px;
  flex-wrap: wrap;
}
.board-wrap > ul > li{
  display: flex;
  flex-direction: column;
  width: calc(25% - 15px);

}
.board-wrap h3{
  font-size: 16px;
  height: 74px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.board-wrap .img-thumb{
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  margin-bottom:12px;
      aspect-ratio: 3 / 2;
}
.board-wrap.case .img-logo{
  border-radius: 8px;
  border:1px solid #EDEDED;
}
.board-wrap.case .img-logo > img{
    padding: 0;
    width: 100%;
    margin: 4px auto;
    display: block;
}
.board-wrap.case .img-thumb {
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 0;
    aspect-ratio:3 / 1.87;
}
.board-wrap.case .img-thumb img {
  width: 100%;
}
.board-wrap.case p{
    margin-top: 10px;
}
.list-tit{
    font-size: 18px;
    color: #2B2B2B;
    display: flex;
    gap: 5px;
    font-weight: 600;
    align-items: center;
    margin-bottom: 20px;
}
.list-tit:before{
  content:'';
  display: block;
  width: 3px;
  height: 16px;
  background:#646DCF;
  margin:0 5px 0 0;
}
.list.ol{
  margin-bottom: 20px;
}
.list.ol li{
    padding: 0 0 0 13px;
    line-height: 1.8;
    color: #2B2B2B;
}
.list.ol strong{
      margin-left: -13px;
}
.img-meta figcaption{
    color: #70717F;
    font-size: 15px;
    margin: 8px 0 10px;
}


.btn-lang{
  margin-top:16px;
}
.btn-lang ul{
  display: flex;
      gap: 6px;
}

.btn-lang a{
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EDEDED;
  font-size: 14px;
  color: #70717F;
}
.btn-search .btn.blue {
  background: #646DCF;
  min-width: 130px;
}
#container .contents-wrap h2{
    color: #2B2B2B;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
        display: flex;
    align-items: center;
}
#container .contents-wrap h2 a{
    background: url(../img/ico-arrow-blue-back.svg) center left no-repeat;
    padding: 0 0 0 30px;
    display: flex;
    color: #646DCF;
    font-weight: 600;

}
#container .contents-wrap h2 span{
    font-size: 16px;
    display: inline-block;
    margin: 0 0 0 10px;
    color: #70717F;
}

.board{
  margin-top:30px;
}
.board-opt{
  display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.board-opt .total{
  color:#474747;
}
.board-opt .sort{
  display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.paging{
  margin:30px 0 0 0;
}
.paging-wrap{
  
}
.paging-wrap ul{
  display: flex;
      width: 100%;
    justify-content: center;
}
.paging-wrap a{
  color:#70717F;
  font-size: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
    align-items: center;
}
.paging-wrap a.active{
  background: #DBDEF8;
}
.paging-wrap .page-jump.first{
  background: url(../img/ico-page-end.svg);
      transform: rotate(180deg);
}
.paging-wrap .page-jump.prev{
  background: url(../img/ico-page-next.svg);
      transform: rotate(180deg);
}
.paging-wrap .page-jump.next{
  background: url(../img/ico-page-next.svg);
}
.paging-wrap .page-jump.end{
  background: url(../img/ico-page-end.svg);
}
.view-title h2{
font-size: 28px;
    font-weight: 800;
}
#container.view section{
    background: #fff;
    padding: 30px;
    border-radius: 8px;
        margin-bottom: 24px;
}
.shadow{
    box-shadow: 0px 2px 13px 0px rgba(61, 66, 103, 0.06);
}
#container.view section.np{
    padding: 0;
}
.view-lang{
    margin-bottom: 28px;
    display: flex;
        justify-content: space-between;
    align-items: center;
}
.view-lang ul{
    display: flex;
    gap: 5px;
}
.view-lang a{
height: 32px;
    border-radius: 32px;
    border: 1px solid #ddd;
    background: #fff;
    color: #70717F;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
.view-lang a.active{
  border:1px solid #2B2B2B;
  background: #2B2B2B;
  color:#fff;
}
a.btn-view-visit{
    display: flex;
    height: 40px;
    color: #474747;
    font-size: 14px;
    background: #fff url(../img/ico-newwin.svg) center right 15px no-repeat;
    border-radius: 4px;
    padding: 0 40px 0 20px;
    align-items: center;
}
.btn-view-visit.mobile{
  display: none;
}
.view-title-wrap{
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #EDEDED;
    padding: 10px 0 24px 0;
    margin: 0 0 24px 0;
    align-items: center;
}
#container .contents-wrap .view-title-wrap h2{
  margin-bottom: 0;
}
.view-title-wrap h3{
      font-weight: 500;
}
.view-title-wrap .view-date{
    display: flex;
    font-size: 14px;
    color: #70717F;
    font-weight: 300;
        align-items: center;
}
.view-title-wrap .view-date li:nth-child(2):before{
content: '';
    display: inline-block;
    width: 1px;
    height: 8px;
    background: #C5C8CB;
    margin: 0 8px;
}
.view-photo{
  display: flex;
  gap: 30px;
      align-items: flex-start;
          justify-content: space-between;
}
.view-photo .view-active{
      width: 100%;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3 / 2;
}
.view-photo .view-active img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.view-photo .view-photo-thumb{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 50%;
}
.view-photo .view-photo-thumb li{
    width: calc(50% - 6px);
}
.view-photo .view-photo-thumb a{
    border-radius: 8px;
    display: block;
    height: 120px;
    overflow: hidden;
}
.view-photo .view-photo-thumb a img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.view-photo .view-active .close-photo{
  display: none;
}
.view-descript h3{
    font-size: 18px;
    color: #2b2b2b;
    font-weight: 600;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #EDEDED;    
    display: flex;
        align-items: center;
}
.view-descript h3:before{
  content:'';
  display: block;
  width: 3px;
  height: 16px;
  background: #646DCF;
  margin-right:10px;
}
.view-descript dl{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.view-descript dt{
    color: #70717F;
    font-size: 14px;
    width: 100%;
}
.view-descript dd{
    font-size: 16px;
}
.view-descript dd .v-lang{
    width: auto;
    height: 24px;
    border-radius: 4px;
    background: #E6EBEE;
    color: #70717F;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 5px;
    padding: 0 4px;
}
.view-lang-mobile{
  display: none;
}
.view-desc{
  padding-bottom: 20px;
}
.view-attach{
    border-top: 1px solid #EDEDED;
    padding: 20px 0 0 0;
}
.view-attach dl{
    display: flex;
    gap: 5px;
    padding: 0 0 0 120px;
    position: relative;
    flex-direction: column;
}
.view-attach dt{
  font-weight: 500;
      position: absolute;
    left: 10px;
}
.view-attach dd{
    display: flex;
    align-items: center;
    gap: 5px;
}
.view-attach dd .attch-size{
  color: #70717F;
}
.view-attach dd .attch-del{
  width: 20px;
  height: 20px;
  background: url(../img/ico-trash.svg) center center no-repeat;
}




.preview{
  border-top:1px solid #EDEDED;
  border-bottom:1px solid #EDEDED;
  padding: 10px 0;
}
.preview dl{
    display: flex;
    gap: 20px;
    height: 40px;
    align-items: center;
}
.preview dl:after{
  content:'';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico-arrow-down.svg) center center no-repeat;
}
.preview dl:first-child:after{
  transform: rotate(180deg);
}
.preview dt{
  font-size: 14px;
  color:#70717F ;
  position: relative;
      padding: 0 20px;
}
.preview dt:after {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background: #C5C8CB;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
}
.preview dd.date{
  margin-left: auto;
  font-size: 14px;
  color: #888A97;
  display: inline-block;
  margin-right: 20px;
  text-align: right;
}
.preview dd {
  color:#888A97;
      width: 75%;
}
.preview dd a{
  color: #474747;
    width: 95%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.view-attach dd a{
  color: #EE6E00;
    background: url(../img/ico-view-attach.svg) center left no-repeat;
    display: block;
    padding: 0 0 0 20px;
    text-decoration: underline;
    font-weight: 500;
}
.list-table{
    border: 1px solid #E6EBEE;
    border-radius: 15px;
    overflow: hidden;
}

.list-table thead th{
  background:#E6EBEE;
  height:56px;
  color:#70717F;
}
.list-table tbody tr td,
.list-table tbody tr th{
  background: #fff;
  padding: 7px 5px;
  color:#474747;
  text-align: center;
  height: 50px;
}
.list-table tbody tr:nth-child(even) td,
.list-table tbody tr:nth-child(even) th{
  background:#F7F8FA;

}
.list-table tbody tr:hover td{
  background: #EEEFFF;
}
.list-table tbody td.eillipsis{
  width: auto;
}
.list-table tbody td.eillipsis a{
    width: 95%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    text-align: left;
}
.list-table tbody tr td.align-left{
  text-align: left;
      padding: 0 10px;
}
.list-table.mo{
  display: none;
}
.list-table.mo tbody tr th,
.list-table.mo thead tr th{
  position: relative;
}
.list-table.mo tbody tr th:after,
.list-table.mo thead tr th:after{
  content:'';
  display: block;
  width: 1px;
  height: 12px;
  background: #C5C8CB;
  position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
}
  .list-table.n-thead tbody tr:nth-child(even) td{
    background: #fff;
  }
  .list-table.n-thead tbody th{
    background: #F7F8FA;
  }
  .list-table.mo.n-thead tbody tr th:after{
    content: none;
  }
  .list-table.n-thead tbody tr:hover td{
    background: #fff;
  }
  .list-table tbody tr th.indent_1dep{
    text-align: left;
    text-indent:10px;
  }
  .list-table tbody tr th.indent_2dep{
    text-align: left;
    text-indent:25px;
  }
  .list-table tbody tr th.indent_3dep{
    text-align: left;
    text-indent:40px;
  }
.both{
      display: flex;
    align-items: center;
    justify-content: space-between;
}
.monitor-total{
    display: flex;
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
}
.monitor-total .total-cont{
      width: calc(33% - 5px);
    background: #fff;
    padding: 20px 28px;
    border-radius: 8px;
      display: flex;
    flex-direction: column;
    justify-content: space-between;
        width: 100%;
        min-height: 165px;
        box-shadow: 0px 2px 13px 0px rgba(61, 66, 103, 0.06);

}
.monitor-total .total-cont .tc-title{
    color: #646DCF;
    font-size: 18px;
    font-weight: 500;
display: flex;
    gap: 10px;
    align-items: center;
}
.monitor-total .total-cont.tc02 .tc-title{
  color:#18B269;
}
.monitor-total .total-cont.tc03 .tc-title{
  color:#70717F;
}
.monitor-total .total-cont .tc-title span{
      font-size: 16px;
    color: #888A97;
}
.monitor-total .total-cont .tc-title:before{
  content:'';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/ico-db-con1.svg) center center no-repeat;
}
.monitor-total .total-cont.tc02 .tc-title:before{
  background: url(../img/ico-db-con2.svg) center center no-repeat;
}
.monitor-total .total-cont.tc03 .tc-title:before{
  background: url(../img/ico-db-con3.svg) center center no-repeat;
}
.monitor-total .total-cont .tc-title:after{
  content:'';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/ico-arrow-cross.svg) center center no-repeat;
  margin-left:auto;
}
.monitor-total .total-cont .tc-count{
    margin-top: 30px;
    margin-left: auto;
    color:#70717F;
        width: 100%;
            text-align: right;
}
.monitor-total .total-cont .tc-count strong{
  color:#888A97;
  font-weight: 400;
}
.monitor-total .total-cont .tc-count b{
  color:#474747;
  font-size: 20px;
      margin: 0 3px 0 0;
}
.monitor-total .total-cont .tc-count.re b{
  color:#ff0000;
}
.monitor-total .total-cont .tc-count ul{
    width: 100%;
}
.monitor-total .total-cont .tc-count li{
    display: flex;
        justify-content: space-between;
    width: 100%;
}
.hook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s ease-in-out;
    border-radius: 4px;
    color: #474747;
    padding: 0 14px;
    background: #fbfbfb;
    color: #666;
        height: 30px;
}
.hook-sort{
  display: flex;
      gap: 10px;
    margin: 0 0 10px 0;
}
.hook.pastel-green{
	background: #DEF2E5;
  color:#18B269;
}
.hook.pastel-red{
	background: #FFF3E4;
  color:#EC8A12;
}
.datepicker_wrap .date-range{
    border: 1px solid #E6EBEE;
    height: 40px;
    padding: 0;
    display: inline-flex;
    background: #fff;
    position: relative;    
}
.datepicker_wrap .date-range:after{
    content: '';
    background: #fff url(../img/ico-calendar.svg) center center no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 17px;
    top: 12px;
}
.datepicker_wrap .date-range input{
  border:none;
  font-size: 16px;
  text-indent: 20px;
}


.accordion {

}
.accordion-item {
    border-bottom: 1px solid #EDEDED;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.accordion-item .accordion-header{
    width: 100%;
    display: flex;
    height: 50px;
    align-items: center;
        padding: 0 20px;
}
.accordion-item .btn-accordion {
    position: relative;
    width: 100%;
    padding:0;
    font-size:16px;
    color:#474747;
    text-align: left;
}
.accordion-item.active .btn-accordion{
  color: #646DCF;
  font-weight: 500;
      font-size: 18px;
}
.accordion-item .accordion-collapse {
    max-height: 0;
    overflow: hidden;
    width: 100%;
}
.accordion-item.active .accordion-collapse {
    height: auto;
    max-height: 1000vh;
}
.accordion-item .accordion-body {
    padding-top: var(--krds-spacer-1);
    padding-bottom: var(--krds-spacer-5);
}
.accordion-item .btn-accordion::after {
position: absolute;
    top: 8px;
    right: 0;
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/ico-arrow-down.svg) no-repeat center center;
    background-size: 2rem;
    transition: 0.4s ease-in-out;
    transform: rotate(0deg);
}
.accordion-item .btn-accordion.active::after {
    transform: rotate(180deg);
}
.accordion-item .accordion-body{
  padding: 20px;
    margin: 0 20px 20px 20px;
    background: #F7F8FA;
}
.accordion-item .btn-accordion-close{
  display: none;
}
.accordion-item.active .btn-accordion-close{
      display: block;
    margin: 20px auto 0 auto;
}

.welcom{
  font-size: 22px;
  margin-bottom: 40px;
}
.welcom strong{
  color:#646DCF;
}
.chart-label{
  color: #888A97;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.textarea-st{
      width: 100%;
      position: relative;
}
.textarea-st .txt-count{
    color: #888A97;
    position: absolute;
    bottom: 26px;
    right: 20px;
}
.file-wrap{
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #EDEDED;
    padding: 0 0 12px 0;
}
.file-wrap .btn.file-btn{
  height: 44px;
}

.file-wrap .file-right{
    color: #70717F;
    line-height: 23px;
}
.checklist{

}
.checklist{
    border-left: 4px solid #646DCF;
    padding: 0 0 0 15px;
    margin: 20px 0 20px 20px;
}
.checklist li,
.check{
      display: flex;
    gap: 5px;
}
.checklist li:before,
.check:before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/ico-check.svg) center center no-repeat;
    margin: 0 5px 0 0;
}
.point{
  color: #646DCF;
  font-size: 18px;
}
.url-link-test{
      display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
        padding: 10px;
    border-radius: 8px;
        border: 1px solid #E6EBEE;
}
.url-link-test .label{
background: #E6EBEE;
    height: 48px;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #70717F;
      min-width: 140px;
}
td .url-link-test{
  border:none;
  padding: 3px 0;
      margin: 0 0 5px 0;
}
.btn-edit{
  transition: .4s;
  display: none;
  width: 100%;
}
.btn-edit.active{
    display: flex;
    gap: 5px;
}
.btn-edit input{
    border: 1px solid #E6EBEE;
    font-size: 16px;
    text-indent: 16px;
    height: 48px;
    width:100%;
}
.btn-edit input:read-only {
    background: #f9f9f9;
    color: #666;
    pointer-events: none;
}
.btn-edit button{
  border: 1px solid #E6EBEE;
  border-radius: 4px;
  width: 48px;
  height: 48px;
}
.btn-edit .hook-edit{
    background: url(../img/ico-modify.svg) center center no-repeat;
    background-size: 20px;
}
.btn-edit .hook-ok{
    background: url(../img/ico-check.svg) center center no-repeat;
    background-size: 20px;
}
.btn-edit .hook-cancle{
    background: url(../img/ico-close.svg) center center no-repeat;
    background-size: 20px;
}
.agreeCheck li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}
.agreeCheck li label{
  color:#666;
}
.agreeCheck li a{
  color:#2f64e2;
  text-decoration: underline;
  font-size: 14px;
}
.agreeCheck li.essen label{
  color:#e22f2f;
}
.terms-wrap{
  margin-top: 50px;
}
.terms-wrap h3{font-size: 22px;font-weight: 500;margin: 40px 0 10px 0;}
.terms-wrap p{
  color: #323232;
}
.terms-wrap p + ul,
.terms-wrap p + ol{
  margin-top:12px;
}
.terms-wrap li{
  padding:2px 0;
}
.terms-wrap .indent-02-tab{
  margin: 6px 0 0 18px;
}
.terms-date{
  margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}
.terms-date span{
    display: block;
    color:#666;
}
.only-mo{
  display: none;
}


.modal-back {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
}
.modal-back.in, .modal.in {
    visibility: visible;
}
modal > * {
    width: 100%;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    font-family: var(--krds--fz-body-md);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    transition: visibility 0.15s 0.3s, z-index 0s 0.3s, opacity 0.2s;
}
.modal.in {
    z-index: 1010;
    transition-delay: 0s;
    opacity: 1;
}

.modal.shown {
    display: block;
}
.modal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    position: relative;
    z-index: 1020;
    height: calc(100% - 80px * 2);
    min-height: calc(100% - 80px * 2);
    margin: 80px auto;
}
.modal.small .modal-dialog {
  width: 520px;
}
.modal.medium .modal-dialog {
  width: 780px;
}
.modal.large .modal-dialog {
  width: 960px;
}
.modal .modal-dialog .modal-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 100%;
    background-color: #fff;
    border-radius: 10px;
    outline-color: transparent;
    transition: outline-color 0.1s;
}
.modal .modal-dialog .modal-header {
    width: 100%;
    padding: 18px 36px;
    border-bottom: 1px solid #ddd;
}
.modal .modal-dialog .modal-header h2{
    font-size: 18px;
    font-weight: 500;
}
.modal .modal-dialog .modal-conts{
    padding: 25px 36px;
    width: 100%;
        min-height: 200px;
}
.modal .modal-dialog .btn-close {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 901;
    width: 25px;
    height: 25px;
    background: url(../img/ico-close.svg) no-repeat center;
    background-size: 100%;
}
.modal-btn{
      padding: 25px 0;
          gap: 12px;
    display: flex;
}
.modal-btn .btn{
      min-width: 130px;
}
.code-box{
    padding: 20px;
    background: #eee;
    font-size: 14px;
    color: #333;
    margin:10px 0 30px 0;
}
.code-box pre{
    margin:0;
    white-space: pre-wrap;
}

/*토스트 메시지*/
.toast_message {
    opacity: 0;
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.70);
    border-radius: 4px;
    color: #fff;
    box-shadow: 3px 4px 11px 0px #00000040;
    transition: all 0.5s;
    z-index: 1003;
}
/*토스트 메시지 활성화 되었을 때*/
.toast_message.active {
    opacity: 100%;
    bottom: 60%;
}

.top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px; /* 기본 위치 */
    z-index: 100;
    transition: bottom 0.2s ease;
}
.top-btn a{
    width: 58px;
    height: 58px;
    display: block;
    background: #000 url(../img/go_top.svg) center center no-repeat;
    border-radius: 4px;
}


@media (min-width: 1023px) {
  .main .section-wrap{
    max-width: 1280px;
    margin:0 auto;
    width: 100%;
  }
}

@media (max-width: 1023px) {  
    
    
    .log-in {
      max-width: 100%;
      margin: 120px auto 60px auto;
      width: 100%;
      padding: 0 20px;
  }
  .log-in h1 {
    width: 158px;
  }
  .log-in h2 {
    margin: 20px 0 50px;
  }
  .log-in .form-input label{
    font-size: 16px;
    font-weight: 500;
  }
  .log-in .form-input{
    margin: 0 0 20px 0;
  }
  .log-in button {
    margin-top: 0;
  }
  .go-home {
    left: 20px;
    top: 30px;
  }
    .main .section-wrap {
      width: auto;
      padding: 0 20px 36px 20px;
      margin: 0 auto;
    }
    .main section.main-visual .section-wrap {
      gap: 29px;
      flex-direction: column;
    }
    .main-board-both {
      flex-wrap: wrap;
    }
    .case-carousel .swiper-wrapper,
    .standard-carousel .swiper-wrapper {
      flex-wrap: wrap;
      gap:12px;
    }
    .standard-carousel .swiper-pagination-auto{
      display: none;
    }
    .main .main-banner {
      width: 100%;
        min-width: 320px;
    }
    .main .main-banner img {
      width: 100%;
    }
    .main-search {
  background: #F8FAFB;
          width: calc(100% + 32px);
          margin-left: -16px;
          padding: 0 20px;
    }
    .main-data .data-guide .data-g-left, .main-data .data-guide .data-g-right{
      width: 100%;
      height: auto;
      flex-wrap: wrap;
      font-size: 16px;
      max-width: 100%;
        padding: 25px 10px;
        word-break: break-word;
    }
    .main-data .data-guide {
      flex-direction: column;
  }
    .main-standard {
      display: block;
      width: 100%;
    }
    .standard-carousel .swiper-slide {
      width: calc(50% - 6px);
      align-items: flex-start;
      text-align: left;
      padding: 14px 18px;
    }
    .standard-carousel .swiper-slide a{
      display: block;
      width: 100%;
    }
    .standard-carousel .swiper-slide img{
      width: 36px;
      margin-left: auto;
      display: flex;
    }
    .main section.main-visual {
      padding: 0 0 30px;
      background: #fff;
    }
    .main-standard {
      padding: 0 0 30px 0;
      background: #ffffff;
    }
    .main-search h1{
      font-size: 21px;
  }
  .main-data h2 {
      font-size: 19px;
  }
  .main-data h2 span{
    display: block;
  }
  .main-data h2 br{
    display: none;
  }
  .main-search h1{
    margin-top: 18px;
  }
  .main-data h2 b{
    display: block;
  }
  .step-top span{
    font-size: 18px;
  }
  .step-top:before {
      width: 92px;
      height: 86px;
      background: url(../img/step-birds.png) center bottom no-repeat;
      margin-bottom: -5px;
      background-size: 100%;
  }
  .data-guide ol {
    width: 100%;
    flex-direction: column;
}
.data-guide ol li:after{
  content:none;
}
  .data-guide ol li {
    width: 100%;
    margin-bottom: 15px;
}
    .main-standard h2{
      font-size:20px;
    }
    .main-standard .cnt strong {
      font-size: 20px;
  }
    .main-data {
      padding: 30px 0;
    }
    .main-data .data-guide img {
      width: 210px;
  }
  .data-guide ol li p {
    font-size: 20px;
}
  .main-standard h3 {
    font-size: 16px;
  }
  .main-data .h2-dscpt {
    font-size: 16px;
  }
   .main-data .h2-dscpt span {
    display:block;
   }
    .main-data .h2-dscpt br {
    display:none;
   }
  .main-data .data-guide .data-between {
    min-width: 10px;
    height: 55px;
    transform: rotate(90deg);
    margin: 0 auto;
    background-size:32px;
    width: 22px;
    background-position: left;
  }
  .main-data {
    padding: 40px 0;
    text-align: center;
  }
  .main-case {
    padding: 0;
  }
  .main-case .section-wrap{
    width: 100%;
  }
  .main-case h2 {
    font-size: 20px;
    margin: 36px 0 24px 0;
  }
  .main-case .swiper-slide h3 + img {
    display: none;
  }
  .main-case .swiper-slide a {
    border: none;
    border-radius: 0;
  }
  .main-case .swiper-slide h3 {
    padding: 0;
  }
  .main-case .swiper-slide h3 img {
    height: 28px;
  }
  .main-case .swiper-slide{
    display: none;
  }
  .main-case .swiper-slide:nth-child(-n+3) {
    display: block;
  }
  .main-openapi h2 {
    font-size: 20px;
    margin: 0 0 24px 0;
  }
  .main-openapi .swiper-pagination-auto{
    display: none;
  }
  .main-openapi {
    padding: 30px 0;
    display: block;
  }
  .main .main-openapi .section-wrap {
    padding: 0 0 0 20px;
  }
  .main-openapi .swiper-slide h3 {
    font-size: 18px;
    margin: 12px 0 10px 0;
  }
  .main-openapi .swiper-slide p {
    font-size: 14px;
    height: 66px;
    margin: 0 0 12px 0;
  }
  .main-openapi .swiper-slide .txt {
    font-size: 12px;
  }
  .main-case .swiper-slide ul {
    border-radius: 10px;
    padding: 12px 16px;
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #70717F;
    text-align: left;
  }
  .main-status .main-status-both .main-b:after {
    content:none;
  }
  .main-status .main-status-both .main-b {
    width: calc(50% - 5px);
    padding: 14px 20px;
  }
  .main-status .main-status-both {
    gap: 10px;
  }
  .main-board {
    padding: 50px 0 40px;
  }
  .main-board .tab ul {
    margin-bottom: 26px;
    gap: 20px;
  }
  .main-board .tab-conts-wrap ul li {
    padding: 6px 0;
    flex-wrap: wrap;
  }
  .main-board .tab-conts:last-child li {
    width: 98%;
  }
  .main-board-both .main-board-left {
    width: 100%;
    margin-right: 0;
  }
  .main-board-both .main-board-right {
    width: 100%;
    margin: 40px 0 0 0;
  }
  .main-board .tab-conts li a + span {
    min-width: inherit;
    width: 25%;
  }
  .main-board .btn-borad-more {
    top: -58px;
    right: 0;
    height: 36px;
    width: 36px;
  }
  .main-board .tab li button {
    font-size: 20px;
  }
  .main-board .tab-conts li a {
    width: 70%;
    font-size: 16px;
  }
  .main-help {
    padding: 26px 28px;
  }
  .main-help h2 {
    font-size: 22px;
  }
  .main-help a {
    font-size: 16px;
  }
  .main-help:after{
    content:none;
  }
  .main-help p {
    font-size: 16px;
  }
  .main-case .swiper-pagination-auto{
    display: none;
  }
  .main-data h3 {
    font-size: 18px;
  }
  .main-status {
    padding: 36px 0;
  }
  .main .main-status  .section-wrap{
    width: 100%;
  }
  .main-status h2 {
    font-size: 20px;
  }
  .main-status .main-status-both .main-b h3 {
    font-size: 16px;
  }
  .main-status .main-status-both .main-b h3 span {
    font-size: 12px;
  }
  .main-status .main-status-both .main-b .main-b-count {
    margin-top: 14px;
  }
  .main-status .main-status-both .main-b .main-b-count strong {
    font-size:18px;
  }
  .main-search-wrap.basic + .search-category dd .btn {
      height: 32px;
  }
  .tit-box h1 {
      font-size: 20px;
  }
  .tit-box p {
      font-size: 16px;
  }
  .search-category dl {
      gap: 8px;
  }
  .search-category dl:last-child{
      margin-bottom:30px;
  }
  .btn-search .btn.blue {
      min-width: 100%;
  }
  .m-btn-more{
    display: flex  ;
    border: 1px solid #EDEDED;
    border-radius: 10px;
    margin:20px 0 36px 0;
    justify-content: center;
    height: 44px;
    align-items: center;
  }
  .main-case .m-btn-more {
    margin: 20px 0 0 0;
  }
  .m-btn-more:after{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/ico-arrow-right.svg) center center no-repeat;
    margin: 0 0 0 5px;
  }

  .board-wrap > ul {
    gap: 20px 12px;
    flex-wrap: wrap;
  }
  .board-wrap > ul > li {
    width: calc(50% - 6px);
  }
  .btn-lang ul {
    gap: 4px;
    flex-wrap: wrap;
  }
  .btn-lang a {
    width: 22px;
    height: 22px;
  }

  .path {
    color: #C5C8CB;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
  }
  .option-box {
    padding:0 16px 40px 16px;
  }
  .ctg-select .form-select:nth-child(1)::before{
    content:none;
  }
  .breadcrumb{
    display: none;
  }
  .breadcrumb + * {
    margin-top: 40px;
  }
  .ctg-select {
      width: 100%;
      gap: 0;
      justify-content: space-between;
  }
  .ctg-select .form-select {
      width: 55%;
  }
  .ctg-select .form-select:first-child {
      width: calc(55% - 20px);
  }
  #container.view section{
    padding: 0;
            border: none;
        box-shadow: none;
  }
  .view-title h2 {
    font-size: 22px;
}
  .view-photo .view-active{
    display: none;
  }
    .view-photo .view-active.on {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        background: #000;
        height: 100%;
        align-items: center;
        justify-content: center;
                z-index: 100;
    }
  .view-photo .view-active.on img{
        object-fit: contain;

  }
  .view-photo .view-active .close-photo{
        display: block;
        width: 22px;
        height: 22px;
        background: url(../img/ico-close-w.svg) center center no-repeat;
        position: absolute;
        top: 31px;
        right: 16px;
        font-size: 0;
        text-indent: -9999px;
  }
  .view-photo .view-photo-thumb a {
      height: auto;
      min-width: inherit;
  }
  .view-lang-mobile{
    display: block;
  }
  .btn-view-visit.mobile{
        display: inline-flex;
        border: 1px solid #ddd;
        margin: 14px 0;
        width: 158px;
  }
  .view-lang{
        height: 0;
        overflow: hidden;
        margin-bottom: 0;
  }
     .view-top {
        display: flex;
        justify-content: space-between;
    }
  .view-title-wrap {
      flex-direction: column;
          align-items: flex-start;
                  padding: 0 0 16px;
        margin: 0 0 16px;
  }
  .list-table.only-pc{
    display: none;
  }
  .list-table.mo{
    display: block;
  }
  .list-table.mo + .list-table{
    margin-top:16px;
  }
  .list-table.mo thead th{
    color:#474747;
  }
   .list-table.mo tbody td{
    text-align: left;
    padding: 0 10px;
  }
.preview dd.date{
  display: none;
}
  .welcom {
    font-size: 16px;
    margin-bottom:32px;
}
  #container .contents-wrap h2 {
      font-size: 18px;
  }
  .modal .modal-dialog {
    width: 100%!important;
            padding: 0 20px;
  }
  .monitor-total .total-cont{
        border-radius: 8px;
    border: 1px solid #EDEDED;
  }
  .bar-chart.dashboard{
    height: 300px!important;
  }
  .hook-sort {
    gap: 10px;
    flex-wrap: wrap;
}
.datepicker_wrap{
  width: 100%;
    display: flex;
    gap: 10px;
}
.datepicker_wrap .date-range{
  width: calc(50% - 5px);
}
.datepicker_wrap .date-range input {
    width: 100%;
}
.datepicker_wrap .date-range input:read-only {
    background: #fff;
}
.hook-sort .form-select{
  width: calc(100% - 96px);
}
.paging.mt--40{
  margin-top:30px!important;
}
.url-link-test{
  border:none;
  padding: 0;
  flex-direction: column;
}
.url-link-test .label {
    background: #fff;
    height: 28px;
    padding: 0;
    width: 100%;
}
.accordion {
    border: 1px solid #EDEDED;
}
.accordion-item .accordion-header {
    min-height: 50px;
    padding: 5px 20px;
}
.api-side-navigation .lnb-submenu dl + dl{
margin-bottom: 18px;
}
.api-side-navigation .lnb-submenu dt{
padding: 12px 0 0 20px;
    font-size: 15px;
    color: #60747b;
}
.api-side-navigation .lnb-list .lnb-item .lnb-subitem dd a{
    padding: 6px 20px 6px 20px;
        word-break: break-word;
}
.key-wrap{
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 20px;
}
.only-mo{
  display: block;
}
.only-pc{
  display: none;
}
.view-photo .view-photo-thumb {
    width: 100%;
}
.top-btn {
    right: 20px;
    bottom: 20px;
}
.top-btn a{
    width: 40px;
    height: 40px;
}
.hook {
    padding: 0 4px;
    font-size: 12px;
}
.code-box pre {
    margin: 0;
    white-space: pre-wrap;
}
.list-table.scroll{
  overflow-x: auto;
}
.list-table.scroll table{
  width: 500px;
}



}