@charset "utf-8";
/* CSS Document */


.news_list{
  width: 56rem;
}
.top_news h3{
  margin-top: 0;
}
.news_list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid #E2E8EB;
}
.news_list li .news_head{
  margin-right: 3rem;
}
.news_list li .news_head .date,
.single_contents .date{
  color: #909090;
}
.news_list li .news_head .cate,
.single_contents .cate{
  display: inline-block;
  color: #fff;
  background-color: #283C64;
  font-size: 1.4rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
  white-space: nowrap;
  min-width: 12.4rem;
  text-align: center;
}
.news_list li .news_title{
  width: 100%;
}
.news_list li p a{
  display: block;
}
.news_list_more{
  margin-top: 6rem;
  text-align: right;
}
.news_list_more a.btn{
  color: #006AB7;
  border: 2px solid #006AB7;
  background-color: #fff;
  padding: 1.5rem 5rem;
  border-radius: 3rem;
  font-weight: 500;
}
.news_list_more a.btn:hover{
  color: #fff;
  background-color: #006AB7;
  opacity: 1;
}


.news_wrap{
  display: flex;
  justify-content: space-between;
}
.news_category{
  width: 27rem;
}
.news_category h3{
  color: #fff;
  background-color: #283C64;
  font-size: 1.4rem;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 400;
}

.news_category ul li{
  border-bottom: 1px solid #E2E8EB;
  
}
.news_category ul li a{
  position: relative;
  display: block;
  padding: 1rem 0.5rem;
}
.news_category ul li a::after{
  position: absolute;
  content: ">";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.pagenation{
  margin-top: 6rem;
  text-align: center;
}
.pagenation span,
.pagenation a{
  padding: 0.5rem 1.5rem;
  border: 1px solid #E2E8EB;
}
.pagenation .current{
  background-color: #283C64;
  border: 1px solid #283C64;
  color: #fff;
}

.single_contents{
  width: 56.4rem;
}
.single_title{
  border-left: 4px solid #283C64;
  padding-left: 1rem;
  font-size: 2.8rem;
}

.single_contents .date,
.single_contents .cate,
.single_body,
.single_body h2{
  margin-top: 2rem;
}
.single_body h2{
  position: relative;
  border-bottom: 2px solid #E2E8EB;
  padding-bottom: 0.5rem;
}
.single_body h2::before{
  position: absolute;
  content: "";
  width: 5rem;
  height: 2px;
  background-color: #006AB7;
  bottom: -2px;
  left: 0;
}
.single_body p{
  margin-top: 2rem;
}

.link_share{
  font-size: 1.4rem;
  margin-top: 5rem;
}
.link_share p{
  margin-bottom: 2rem;
}
.link_share a{
  padding: 1rem;
}
.link_share img{
  width: 3.6rem;
}
.single_nav{
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}
.single_nav a{
  color: #006AB7;
}
.single_nav span{
  min-width: 14rem;
}
.single_nav span.single_before a,
.single_nav span.single_after a{
  position: relative;
  display: block;
  padding-left: 4rem;
}
.single_nav span.single_after a{
  padding-right: 4rem;
}
.single_nav span.single_before a::before,
.single_nav span.single_after a::before{
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.6rem;
  height: 3.6rem;
  background: url("../images/common/arrow_before.svg") no-repeat center/cover;
}
.single_nav span.single_after a::before{
  left: auto;
  right: 0;
  background: url("../images/common/arrow_after.svg") no-repeat center/cover;
}
.single_nav span.link_list a{
  padding: 1rem 3rem;
  text-align: center;
  border: 2px solid #006AB7;
  border-radius: 3rem;
  background-color: #fff;
  transition:  0.3s;
}
.single_nav span.link_list a:hover{
  background-color: #006AB7;
  color: #fff;
  opacity: 1;
  transition:  0.3s;
}


@media screen and (max-width: 768px) {
  
  .news_list{
    width: 100%;
  }
  .news_wrap,
  .news_list li{
    flex-flow: column;
    justify-content: flex-start;
  }
  .news_head{
    width: 100%;
  }
  .news_list li .news_head {
    margin-right: 0;
  }
  .news_list li .news_title{
    margin-top: 1rem;
  }
  .news_category{
    width: 100%;
    margin-top: 5rem;
  }
  .single_contents {
    width: 100%;
  }
  .single_nav{
    position: relative;
    padding-top: 5rem;
  }
  .single_nav span{
    min-width: 15rem;
  }
  .single_nav span.single_after a{
    font-size: 1.4rem;
  }
  .single_nav span.link_list{
    position: absolute;
    top: 0;
    left: 50%;
    width: 16rem;
    transform: translateX(-50%);
  }
  .single_body h2,
  .single_title{
    font-size: 1.8rem;
  }
  
}






















