
@charset "utf-8";

@import url('common.css');


@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css");

*{
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;

}
[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color:var(--main-color);


}
/* * {
	font-family: 'Noto Sans KR', sans-serif !important;
    letter-spacing: -0.3px;
    margin: 0;
    padding: 0;
    list-style: none;    
} */

select {
  -webkit-appearance:none; /* for chrome */
  -moz-appearance:none; /*for firefox*/
  appearance:none;

}

select::-ms-expand{
  display:none;/*for IE10,11*/
}

:root {
  --main-color: #19006D;
}

.header_wrap {
  top:0; /* 헤더가 붙어있을 위치 */
  z-index: 1000; /* 헤더가 다른 요소와 안겹치게 가장 위로 보내기 */
  position: sticky;
  background-color: rgba(255, 255, 255, 0.9);
  height: 80px;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  border-bottom: .0625rem solid #DBDBDB;
  padding: 0 20px;

}

.header.active{
  background-color: rgba(255, 255, 255, 0.5); /* 반투명 */
  backdrop-filter: blur(10px); /* 블러 효과 */
  -webkit-backdrop-filter: blur(8px); /* Safari 대응 */
  box-shadow: 0 4px 10px rgba(165, 165, 165, 0.1); /* 그림자 */
  transition: background-color 0.3s, backdrop-filter 0.3s;
  border-bottom: .0625rem solid #DBDBDB;
}


.header-container{
  
  max-width: 1300px;
  /* background-color: rgba(34, 189, 119, 0.103); */
  display: flex;
  gap:.3125rem;
  align-items: center;
  margin: 0 auto;
  height: 80px;
  
}

.header-logo{
  display: flex;
  /* background-color: aqua; */
}
.container{
    padding: 0 20px;
}

ul {
  display: flex;
  /* background-color: rgba(183, 250, 89, 0.652); */
}

li {
  /* background-color: aqua; */
  float: left;
  margin:auto 30px;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
}

.header-util{
  /* background-color: beige; */
  display: flex;
}



.hero-container{
  background-color: rgba(0, 255, 255, 0.766);
  border-radius: .75rem;
  margin: 0 auto;
  margin-top: 30px;
  max-width: 1300px;
  height: 270px;
  background-image: url(/pages/opendata/img/src/hero3.png);
  background-size: cover;
  display: flex;
  align-items: center;
}


.hero-innercont{
  margin-left: 4.0625rem
  /* background-color: rgba(14, 246, 84, 0.254); */
}

.hero-text{
  font-size: 2rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  /* line-height: 64px; */
}

.hero-subtext, .hero-subtext2{
  color: white;
  font-size:1rem;
  font-weight: 300;
  margin-top: 20px;
  line-height: 28px;
}

/* ------------------데이터 검색 및 선택---------------- */


.sect1-container{
  
  /* background-color: rgba(0, 255, 255, 0.471); */
  margin-top: 40px;
}


.sect1-innercont{
  margin: 0 auto;
  max-width: 1300px;
  /* background-color: rgba(167, 255, 3, 0.804); */
  /* height: 500px; */
}



.sect1-maintext {
    /* background-color: rgba(165, 42, 42, 0.683); */
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: black;
    line-height: 24px;
    word-break: keep-all;
}

.sect1-subtext {
    /* background-color: rgba(165, 42, 42, 0.683); */
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    color: rgb(74, 74, 74);
    line-height: 24px;
    margin-top: 10px;
    word-break: keep-all;
}

.form-group{
  /* background-color: rgba(137, 43, 226, 0.369); */
  margin-top: 18px;
  display: flex; 
}

.form-input {
    
    width: 100%;
    max-width:320px;
    height: 50px;
    border: 1px solid #9f9f9f;
    border-radius: 6px;
    font-size: 16px;
    padding: 0px 18px 0px 15px;
    /* background-color: rgb(142, 243, 0); */
    outline: none;
    margin-left: .3125rem;
}

.form-input:not(:focus):hover{
  border: 1px solid  #8f6dff;
}

.form-input:focus{
  background-color: #fff;
  border: 1px solid  #19006D;
}
.form-input:focus::placeholder{
  opacity: 0;
  
}

.form-group-under {
    display: block;
    height: 1rem;
    /* background-color: #8f6dff; */
    border-bottom: 2px solid #000000;
}

.site-selector{
  width: 142px;
  height: 50px;
  padding: 0 18px 0 14px;

  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #9f9f9f;
  background-color: #ffffff;

  background-image: url(/pages/opendata/img/src/arrow.png);
  background-repeat: no-repeat;
  background-position: right 14px center; /* 화살표를 오른쪽 정렬 기준으로 */
  background-size: 24px;
}


.site-selector:not(:focus):hover{
  border: 1px solid  #8f6dff;
}

.site-selector:focus{
  border-color: 1px solid  #19006D;
}


.search-btn {
    color: white;
    width: 126px;
    height: 50px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    padding: 0px 18px 0px 15px;
    background-color: #19006D;
    margin-left: .3125rem;
    cursor: pointer;
}

.search-btn:hover{
  background-color:#19006de9;
  box-shadow: 0 0 10px 0.2px rgb(172, 184, 255);
}

.search-btn:active{
  background-color:#15005a;
}

.data-count-wrap{
  margin-top: 10px;
}



/* ----데이터 영역------ */

.sect1-data-wrap{
  margin: 0 auto;
  max-width: 1300px;
  margin-top: 30px;
  background-size: cover;
  align-items: center;
}

.edu-wrap{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: row;
    gap: 25px 25px;
    /* padding: 20px */
    
  }


.link-edu {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 260px;
    box-sizing: border-box;
    transition: 0.3s;
    cursor: pointer;
    background-size: cover;
    /* border: 1px solid #a7a7a7; */
    border-radius: 16px;
    box-shadow: 0px 0px 20px #e1e1e1;
}


.link-edu:hover{
    box-shadow: 0px 0px 20px #cacaca;
    transform: translateY(-2px);
     
  }

  .edu-thumbimg{
    width: 100%;
    height: 160px;
    border-radius: 15px;
    transition: transform 0.3s ease;  
    object-fit: cover;  
  }

  .edu-contthumb{
    border-radius: 30px;
    /* background-color: rgb(0, 244, 159); */
    height: 11.25rem;
    width: 100%;
    /* background-image: url(src/group_1.jpg); */
    background-size: cover;
  }

.edu-contthumb{
  border-radius: 30px;
  /* background-color: rgb(0, 244, 159); */
  height: 11.25rem;
  width: 100%;
  /* background-image: url(/pages/opendata/img/src/group_1.jpg); */
  background-size: cover;
}


.edu-thumb{
  object-fit: cover;
}

.edu-textwrap{
/* background-color: #8f6dff; */
  margin-top: 10px;
  margin-left: 15px;
}

.edu-subtext{
  font-weight: 500;
  font-size: 1rem;
  color: rgb(125, 125, 125);
  line-height: normal;
}
.edu-titletext{
  margin-top: 3px;
  font-size: 1.125rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
}

.pagination-container {
  /* background-color: #8f6dff1e; */
  display: flex;
  padding: 40px 0 40px 0;
}

.pagination {
  /* background-color: rgba(165, 42, 42, 0.406); */
  text-align: center;
  list-style: none;
  display: flex;
  margin: 0 auto;
  gap: 2px;
  
}


.pagination a {
  /* background-color: #d9393958; */
  display: block; /* 블록 요소로 만들어 패딩 적용 */
  padding: 15px 15px;
  text-decoration: none; /* 밑줄 제거 */
  font-size: 18px;
  font-weight: 500;
  color: #333;
  border-radius: 12px;
  height: 50px;
  width: 50px;
  line-height: 19px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  user-select: none;
}

.pagination a:hover {
  background-color: #19006d1f; /* 마우스 호버 시 배경색 */
}

.pg-num.active{ /* 현재 페이지 버튼 */
  background-color: #19006D;;
  color: #fff;
  font-weight: bold;
}

.pg-num.active,
.pg-num.active:hover { /* active일 땐 hover도 동일하게 */
  background-color: #19006D;
  color: #fff;
}


.pagination .prev_back {
  background-color: #19006D;
  background: url(/pages/opendata/img/src/pg-arrow-l.svg) no-repeat 50% 50% / 35px;
}


.pagination .next_back {
  background-color: #19006D;
  background: url(/pages/opendata/img/src/pg-arrow-r.svg) no-repeat 50% 50% / 35px;
}


/* ---------------------------------------------------------------- 커리어 ------------------------------------------------------- */
/* local,IE */

/* Reset */
* {margin:0;padding:0;box-sizing:border-box}
/* html {font-size:62.5%;} */
/*
html{-webkit-touch-callout:none; -webkit-user-select:none; -webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
html,body,h1,h2,h3,h4,h5,h6,div,p,blockquote,pre,code,address,ul,ol,li,menu,nav,section,article,aside,dl,dt,dd,table,thead,tbody,tfoot,label,
caption,th,td,form,fieldset,legend,hr,input,button,textarea,object,figure,figcaption {margin:0;padding:0;border:0 none}
body{min-width:1320px;margin:0 auto;width:100%; background:#fff;-webkit-text-size-adjust:none;word-wrap:break-word;word-break:break-all;min-width:320px;height:100%;line-height:140%}
body,input,select,textarea,button {border:none;font-size:1.4rem;color:#777;font-weight:400;line-height:160%}

header, h1 {font-size:100%}
html, body {height:100%}
main,header,section,nav,footer,aside,article,figure{display:block}
div, p, span, li, table td {word-break:keep-all}
caption,legend {overflow:hidden;position:absolute;width:1px;height:1px;font-size:0;line-height:0}
img {border:none;vertical-align:top;/*width:100%;*/ }
select, input {vertical-align:middle}
hr {display:none;border:0 none}
ol, ul, ul li{list-style:none}
address,cite,code,em{font-style:normal;font-weight:normal}
label{cursor:pointer}
button{border:0;outline:0;cursor:pointer}
textarea:focus, button:focus, input:focus{outline:none}

/* link */
a{color:#000;text-decoration:none} /*링크 기본*/
a:link, a:visited {text-decoration:none}
a:hover, a:active, a:focus {text-decoration:underline}

/* table */
table {width:100%;border-collapse:collapse} /*테이블 기본*/
table, th, td {border:0px;border-spacing:0;border-style:none}

/* float */
.fl{float:left} /* Flot 왼쪽정렬*/
.fr{float:right} /* Flot 오른쪽정렬*/

/* text-align */
.txtr{text-align:right !important} /*텍스트 오른쪽정렬*/
.txtl{text-align:left !important}  /*텍스트 왼쪽정렬*/
.txtc{text-align:center !important} /*텍스트 가운데정렬*/

/* hidden */
.hidden {overflow:hidden;position:absolute;width:1px;height:1px;font-size:0;line-height:0} /*폰트, 타이틀 감추기 */
.hidden,.hide{overflow:hidden;position:absolute;width:1px;height:1px;font-size:0;line-height:0} /*폰트, 타이틀 감추기 */

/* clear */
.clear{clear:both} /* 정렬 초기화 */

/* Skip Menu */
.skipMenu{position:relative;z-index:9999} /*스킵 메뉴 */
.skipMenu a{display:block;height:1px;width:1px;margin-bottom:-1px;overflow:hidden;font-size:13px;
    color:#fff;font-weight:300;letter-spacing:-1px;background:#545e72;
    white-space:nowrap;text-align:center;text-decoration:none;max-width:2560px}
.skipMenu a:focus, .skipMenu a:active{height:auto;width:100%;padding:5px;margin-bottom:10px;position:absolute;left:0;top:0}

/* input */
input[type="text"],input[type="password"],input[type="date"]{width:100%;padding:8px 12px;border:1px solid #e5e7eb;border-radius:8px;transition:all 0.3s ease;font-size:15px;min-height:45px} /*input 기본값 */
.input_type{width:100%;padding:8px 12px;border:1px solid #e5e7eb;border-radius:8px;transition:all 0.3s ease;font-size:16px;min-height:45px}
label.label_type1{vertical-align:middle;color:#494949;font-size:15px;padding:2px 0 2px 0px;display:inline-block;
    line-height:21px;position:relative}
label.lab_wid1{min-width:192px;padding-bottom:8px}
label.rid_lab{vertical-align:middle;color:#494949;font-size:15px; padding:0 0 0 32px;position:relative;
    margin-right:5px;line-height:28px}
input[type=radio]{width:13px;height:13px;margin-right:4px} /*input radio 버튼기본값 */
input[type="checkbox"]{width:14px;height:14px;margin-right:4px} /*input check */
input:disabled{background:#eee}  /*input 사용하지않음 */

/* select */
/*  초기화 */
select{-webkit-appearance:none; -moz-appearance:none;appearance:none}
/* IE 10, 11의 네이티브 화살표 숨기기 */
select::-ms-expand{display:none}
select{-webkit-appearance:none;-moz-appearance:none;-o-appearance:none;outline:none;appearance:none;   
    background:#fff url(/assets/img/select_arrow.png) 99% top no-repeat;min-width:120px;padding:8px 12px;border:1px solid #e5e7eb;border-radius:8px;transition:all 0.3s ease;font-size:16px;min-height:45px}

.select_type{ background:#fff url(/assets/img/select_arrow.png) 99% top no-repeat;padding:8px 12px;border:1px solid #e5e7eb;border-radius:8px;transition:all 0.3s ease;font-size:16px;min-height:45px}

a[href^=tel] {
    text-decoration:inherit;
    color:inherit;
}


.no_data_type1{width:100%;text-align:center;padding:40px 0;border-top:1px solid #ddd;border-bottom:1px solid #ddd}

#navigation_mobile_wrap { display:none; }


/****** fold Device ******/
/* @media screen and (min-width:280px) and (max-width:319px) { 

 html {font-size:55.5% !important;} 


} */


/****** Mobile ******/
@media screen and (max-width:690px){

 input[type="text"], input[type="password"], input[type="date"]{font-size:14px}
 select,.select_type{font-size:14px}
}






/****************************************** 높이조정 ******************************************/

/****** -------------------------- Desktop Device --------------------------  ******/

@media screen and (min-height:1070px){

}






/****** Print ******/
@media print{
    * {
        box-sizing:border-box;
        -moz-box-sizing:border-box;
		}


    html, body{width:fit-content;margin:0;padding:0;box-sizing:border-box;font-size:13px}
    .page {
        padding:1cm;
        margin:1cm auto;
        border:1px #D3D3D3 solid;
        border-radius:5px;
        background:white;
        box-shadow:0 0 5px rgba(0, 0, 0, 0.1);
    }




}