/*
# @media Options
  iphone 12 pro	390*844 
  phone XR		414*896 @
  iphone SE		375*667
  iPad Air		820*1180
  iPad mini		768*1024 @
  Gallaxy S8+		360*740
  Gallaxy S20 U	412*915
-----------------------------------------------
# device width test
 x < 576px
 577px < x <= 768px
 769px < x <= 992px
 993px < x <= 1240px
 1240px < x
-----------------------------------------------
# CSS @media
 @media all and (min-width:993px) and (max-width:1200px) { //PC 
 @media all and (min-width:769px) and (max-width:992px){}
 @media all and (min-width:577px) and (max-width:768px){} 
 @media all and (max-width:576px){} 

-----------------------------------------------
# CSS <link rel="stylesheet" href="/_css/min.style_nsp.css"/>
 <link rel="stylesheet" media="screen and (max-width: 1180px)" href="/_css/min.style_nsp_1240.css"/>
 <link rel="stylesheet" media="screen and (max-width: 992px)" href="/_css/min.style_nsp_992.css" />
 <link rel="stylesheet" media="screen and (max-width: 768px)" href="/_css/min.style_nsp_768.css" />
 <link rel="stylesheet" media="screen and (max-width: 576px)" href="/_css/min.style_nsp_576.css" />
*/

/*===============================================
*
* max-width: 1200px
*
==============================================*/
@media (min-width: 993px) and (max-width: 1200px) {

body{background:#ffffee;} /*test color*/

/*-----------------------------------------------
* html, body, wrap, header, gnb
-----------------------------------------------*/

/*---------------------------
#wrap & header
---------------------------*/
.wrap_panel {
  padding:0 100px;
}

/*----------------------------
#header > gnb2
----------------------------*/
#header .gnb2 .panel{
  padding: 50px 0;
}

/*---------------------------
# footer
---------------------------*/
#footer .menubar .menu ul li.menu-copyright {
   display: none;
}
#footer .menubar .sns ul li a .sns-name{
   display: none;
}
#footer .copyright .global-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*-----------------------------------------------
*  home main
-----------------------------------------------*/

/*----------------------------
* section-header
----------------------------*/

/*----------------------------
* main > candidate-body 
----------------------------*/
.candidate-body{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.candidate-body .candidate {
  width: calc((100% - 60px) / 5);
}
.candidate-body .candidate .card .vote_rate span.purecounter {
  font-size: 28px;
}
.candidate-body .candidate .card .winner {
  height:36px;
  border-radius:36px;

  padding:0 18px;
  font-size: 18px;
}

/*----------------------------
* main > news-body
----------------------------*/
.news-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    position: relative;
    padding-bottom: 50px;
}

/*-----------------------------------------------
* sub main
-----------------------------------------------*/

/*---------------------------
# submain news view
---------------------------*/
.submain .news {
  flex-direction: column;
  display:flex;
  gap:10px;
}
.submain .news .contents::after {
  display:none;
}
.submain .news .aside {
  flex:0 0 100%;
  width:100%; /* 고정 */
  margin-top:50px;
}

/*---------------------------
# submain aside element
---------------------------*/
.aside .aside_news ul li .image{
  width:200px;
  min-width:200px;
}
.aside .aside_news ul li .text .subject {font-size:20px;font-weight:500;}
.aside .aside_issue_42 ul li .text {width:100%;flex:1;}
.aside .aside_issue_42 ul li .text .subject {margin-top:10px;font-size:20px;font-weight:500;}

/*-----------------------------------------------
* news list
-----------------------------------------------*/
.news-list ul li .image{
  width:200px;
  min-width:200px;
}
.news-list ul li .text .subject {
  font-size:18px;font-weight:500;
}
.news-more {
  margin-bottom:30px;
}

} /*end*/



/*===============================================
*
* max-width: 992px
*
==============================================*/
@media all and (min-width:769px) and (max-width:992px) {


 body{background:#ffffcc;} /*test color*/

/*-----------------------------------------------
* html, bodt, wrap, header, gnb
-----------------------------------------------*/

/*---------------------------
#wrap & header
---------------------------*/*/
.wrap_panel {
  padding:0 70px;
}

/*----------------------------
#header > gnb2
----------------------------*/
#header .gnb2 .panel{
  padding: 50px 0;
}

/*---------------------------
# footer
---------------------------*/
#footer .menubar{
  display: flex;
  flex-direction: column;
  margin-bottom:30px;
}
#footer .menubar .menu ul li.menu-copyright {
  display: none;
}
#footer .menubar .sns{
  margin-top: 15px;
}
#footer .menubar .sns ul li:first-child{
   margin-left: 0;
}
#footer .copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0;
}
#footer .copyright .global-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer .logo-partner .logo_kina{
   width:180px;
   margin-left:0;
}

/*-----------------------------------------------
*  home main
-----------------------------------------------*/

/*----------------------------
* section-header
----------------------------*/

/*----------------------------
* main > candidate-body 
----------------------------*/
.candidate-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.candidate-body .candidate {
  width: 100%;
}
.candidate-body .candidate .card{
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.candidate-body .candidate .card .cand_img{
  width:150px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
.candidate-body .candidate .card .cand_info{
  flex-shrink: 0;
  padding: 50px;
}
.candidate-body .candidate .card .vote_rate{
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.candidate-body .candidate .card .vote_rate span.purecounter {
  font-size: 34px;
}
.candidate-body .candidate .card .winner {
  position:absolute;
  z-index:10;
  top: 0;
  left: 20px;
}
/*----------------------------
* main > news-body
----------------------------*/
.news-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    position: relative;
    padding-bottom: 50px;
}


/*-----------------------------------------------
* news list
-----------------------------------------------*/
.news-list ul li .image{
  width:180px;
  min-width:180px; 
}
.news-list ul li .text .subject {
  font-size:18px;
  font-weight:500;
}
.news-list ul li .text .category{display:none;}
.news-list ul li .text .content {display:block;}
.news-more {
  display:block;
  margin-bottom:30px;
}


} /*end*/



/*===============================================
*
* max-width: 768px
*
==============================================*/
@media all and (min-width:577px) and (max-width:768px) {

body{background:#eeffff;} /*test color*/

/*-----------------------------------------------
* html, bodt, wrap, header, gnb
-----------------------------------------------*/

/*---------------------------
#wrap & header
---------------------------*/
.wrap_panel {
  padding:0 70px;
}

/*----------------------------
#header > gnb1
----------------------------*/
#header .gnb1 .panel .gnb1-right ul{
   gap:15px;
}
#header .gnb1 .panel .gnb1-right ul li a{
   font-size:16px;
   font-weight:500;
}

/*----------------------------
#header > gnb2
----------------------------*/
#header .gnb2 .panel{
  padding: 40px 0;
}

/*---------------------------
# footer
---------------------------*/
#footer .menubar{
  display: flex;
  flex-direction: column;
  margin-bottom:30px;
}
#footer .menubar .menu ul li.menu-copyright,
#footer .menubar .menu ul li.menu-ombudsman,
#footer .menubar .menu ul li.menu-joinad {
  display: none;
}
#footer .menubar .sns{
  margin-top: 15px;
}
#footer .menubar .sns ul li:first-child{
   margin-left: 0;
}
#footer .menubar .sns ul li a .sns-name{
  display: none;
}
#footer .copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0;
}
#footer .copyright .global-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footer .copyright .company-info{
   font-size: 13px;
}
#footer .copyright .global-info .factiva,
#footer .copyright .global-info .global .item a{
   font-size: 14px;
}
#footer .logo-partner .logo_kina{
   width:180px;
   margin-left:0;
}


/*-----------------------------------------------
*  home main
-----------------------------------------------*/

/*----------------------------
* section-header
----------------------------*/

/*----------------------------
* main > candidate-body 
----------------------------*/
.candidate-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.candidate-body .candidate {
  width: 100%;
}
.candidate-body .candidate .card{
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.candidate-body .candidate .card .cand_img{
  width:120px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
.candidate-body .candidate .card .cand_info{
  flex-shrink: 0;
  padding: 0 30px;
}
.candidate-body .candidate .card .vote_rate{
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.candidate-body .candidate .card .vote_rate span.purecounter {
  font-size: 34px;
}

.candidate-body .candidate .card .winner {
  position:absolute;
  z-index:10;
  top: 0;
  left: 20px;
}
/*----------------------------
* main > news-body
----------------------------*/
.news-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    position: relative;
    padding-bottom: 50px;
}


/*-----------------------------------------------
* news list
-----------------------------------------------*/
.news-list ul li .image{
  width:160px;
  min-width:160px; 
  margin-left:20px;
}
.news-list ul li .text .subject {font-size:18px;font-weight:500;}
.news-list ul li .text .category{display:block;}
.news-list ul li .text .content {display:none;}
.news-more {display:block; margin-bottom:0px;}
.news-more > span,
.news-more > a span {
   display:flex;
   align-items: center;
   justify-content: center;
   font-size:16px;
   font-weight:700;
   border-radius:30px;
   padding:15px;
}
} /*end*/


/*===============================================
*
* max-width: 576px
*
==============================================*/
@media all and (max-width:576px) {

/*-----------------------------------------------
* html, bodt, wrap, header, gnb
-----------------------------------------------*/

/*---------------------------
#wrap & header
---------------------------*/
.wrap_panel {
  padding:0 50px;
}

/*----------------------------
#header > gnb1
----------------------------*/
#header .gnb1 .panel .gnb1-left .logo .logo-svg {
  width: 120px;
}
#header .gnb1 .panel .gnb1-right ul{
  gap:10px;
}
#header .gnb1 .panel .gnb1-right ul li a{
  font-size:15px;
  font-weight:500;
}

/*----------------------------
#header > gnb2
----------------------------*/
#header .gnb2 .panel{
  padding: 30px 0;
}
#header .gnb2 .panel .gnb-title .title p{
  font-size:14px;
}
#header .gnb2 .panel .gnb-title .title h1 a {
  font-size: 36px;
  font-weight: 700;
}

/*---------------------------
# footer
---------------------------*/
#footer .menubar{
  display: flex;
  flex-direction: column;
  margin-bottom:30px;
}
#footer .menubar .menu ul li.menu-copyright,
#footer .menubar .menu ul li.menu-ombudsman,
#footer .menubar .menu ul li.menu-joinad {
  display: none;
}
#footer .menubar .sns{
  margin-top: 15px;
}
#footer .menubar .sns ul li:first-child{
   margin-left: 0;
}
#footer .menubar .sns ul li a .sns-name{
  display: none;
}
#footer .copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0;
}
#footer .copyright .global-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footer .copyright .company-info{
   font-size: 13px;
}
#footer .copyright .global-info .factiva,
#footer .copyright .global-info .global .item a{
   font-size: 14px;
}
#footer .logo-partner .logo_kina{
   width:180px;
   margin-left:0;
}


/*-----------------------------------------------
*  home main
-----------------------------------------------*/

/*----------------------------
* section-header
----------------------------*/

/*----------------------------
* main > candidate-body 
----------------------------*/
.candidate-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.candidate-body .candidate {
  width: 100%;
}
.candidate-body .candidate .card{
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.candidate-body .candidate .card .cand_img{
  width:100px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
.candidate-body .candidate .card .cand_giho{
  font-size: 22px;
  font-weight: 600;
}
.candidate-body .candidate .card .cand_party{
	font-size: 14px;
	font-weight: 400;
}
.candidate-body .candidate .card .cand_name {
	font-size: 18px;
	font-weight: 600;
}
.candidate-body .candidate .card .cand_info{
  flex-shrink: 0;
  padding: 0 20px;
}
.candidate-body .candidate .card .vote_rate{
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}
.candidate-body .candidate .card .vote_rate span.purecounter {
	font-size: 26px;
	font-weight: 700;
}
.candidate-body .candidate .card .vote_rate span.dot {
	font-size: 20px;
	font-weight: 500;
}
.candidate-body .candidate .card .vote_rate span.per {
	margin-left:5px;
	font-size: 16px;
}
.candidate-body .candidate .card .winner {
  position:absolute;
  z-index:10;
  top: 0;
  left: 20px;
}

/*----------------------------
* main > news-body
----------------------------*/
.news-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    position: relative;
    padding-bottom: 50px;
}


/*-----------------------------------------------
* news list
-----------------------------------------------*/
.news-list ul li .image{
  width:150px;
  min-width:150px; 
  margin-left:20px;
}
.news-list ul li .text .subject {font-size:18px;font-weight:500;}
.news-list ul li .text .category{display:block;}
.news-list ul li .text .content {display:none;}
.news-more {display:block; margin-bottom:0px;}
.news-more > span,
.news-more > a span {
   display:flex;
   align-items: center;
   justify-content: center;
   font-size:16px;
   font-weight:700;
   border-radius:30px;
   padding:15px;
}

} /*end*/





/*========================== (media print) =========================*/
@media print {
  .NoPrint {
      display: none
  }
  .bg_body {
      background: 0
  }
  #container {
      padding: 0
  }
  #container .snb {
      display: none
  }
  #container .snb2 {
      display: none
  }
}
/*@media end*/