@charset "utf-8";

/*------------------------------------------------------------
news-list
------------------------------------------------------------*/

.news-list .selectArea {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.news-list .selectArea a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
	font-weight: 700;
	color: #232323;
}

.news-list .selectArea a:hover {
  color: #1a2543;
  font-weight: 700;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.news-list .selectArea a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #1a2543;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.news-list .selectArea a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.news-list .pageTitle {
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.news-list .recent {
  padding: 60px 0 160px;
}

.news-list .recent h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a2543;
  margin-bottom: 40px;
}

.news-list .recent ul li {
  padding: 0;
  border-bottom: #e6e6e6 solid 1px;
}

.news-list .recent ul li a {
  padding: 30px 0;
  height: 100%;
}

.news-list .recent ul li:first-child {
  border-top: #e6e6e6 solid 1px;
}

.news-list .recent-ttl {
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.news-list .recent-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1a2543;
  border-right: 1px solid #1a2543;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.news-list .recent ul li a {
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.news-list .recent ul li a:hover {
  background: #ebf5fa;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.news-list .recentCnt {
  width: 28%;
}

.news-list .recentTxt {
  width: 65%;
  padding: 0 15px;
}

.news-list .recentDay {
  font-size: 1.4rem;
  display: inline-block;
  margin: 0 10px;
}

.news-list .recentType {
  font-size: 1.1rem;
  padding: 6px 15px;
  border: 1px solid #1a2543;
  color: #1a2543;
  display: inline-block;
}

.news-list .list-pager {
  margin: 80px auto 0;
  width: 100%;
  text-align: center;
}

.news-list .previouspostslink, .news-list .nextpostslink {
  position: relative;
}

.news-list .previouspostslink:hover, .news-list .nextpostslinkhover:hover {
  opacity: .7;
}

.news-list .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  margin: auto;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1a2543;
  border-right: 1px solid #1a2543;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(225deg);
}

.news-list .nextpostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  margin: auto;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1a2543;
  border-right: 1px solid #1a2543;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.news-list .page {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #e6e6e6;
  color: #e6e6e6 !important;
	margin: 0 6px;
}

.news-list .page:hover {
  background: #1a2543;
  color: #FFF;
}

.news-list .pagination_list {
  font-family: 'Montserrat', sans-serif;
}
.list-pager span{
	padding: 10px 18px;
	background: #1a2543;
	color: #e6e6e6;
	display: inline-block;
	margin: 0 6px;
}


@media all and (max-width: 960px) {
  .news-list .news-listCnt {
    padding-bottom: 60px;
  }
  .news-list .pageTitle {
    padding-bottom: 37px;
    margin-bottom: 40px;
  }
  .news-list .selectArea {
    width: 100%;
    margin: 0 auto;
  }
  .news-list .selectArea a {
    font-size: 1.2rem;
  }
  .news-list .selectArea a:hover {
    color: #1a2543;
    font-weight: 700;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .news-list .recent {
    padding: 40px 0 120px;
  }
  .news-list .recent h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2543;
    margin-bottom: 20px;
  }
  .news-list .recentCnt {
    width: 100%;
    margin-bottom: 20px;
  }
  .news-list .recent-ttl::after {
    right: 15px;
  }
  .news-list .recent ul li {
    padding: 0;
    border-bottom: #e6e6e6 solid 1px;
  }
  .news-list .recentTxt {
    width: 88%;
    text-align: justify;
    padding: 0;
    font-size: 1.6rem;
  }
  .news-list .recent-ttl {
    display: flex;
    flex-direction: column;
  }
  .news-list .recentDay {
    margin-right: 15px;
  }
  .news-list .recentType {
    padding: 3px 25px;
  }
  .news-list .list-pager {
    margin: 40px auto 0;
    width: 100%;
    text-align: center;
  }
  .news-list .previouspostslink::before {
    left: -20px;
  }
  .news-list .nextpostslink::before {
    right: -20px;
  }
}

@media all and (max-width: 374px) {
  #main .topBox p {
    font-size: 1.3rem;
  }
}