/*
.newsList
---------------------------*/
.newsList {
  position: relative;
  background-color: #fff;
  padding-bottom: 30px;
}
.newsList p {
  line-height: 1.8;
}
.newsList li {
  position: relative;
  border-bottom: 1px solid #DCDCDC;
}
.newsList li:hover .date > p:before {
  left: 5px;
}
.newsList li a {
  display: block;
  padding: 20px 0;
}
.newsList .date {
  font-size: 12px;
  vertical-align: middle;
  padding-bottom: 10px;
}
.newsList .date > p {
  position: relative;
  padding-left: 18px;
}
.newsList .date > p:before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
  content: "";
  background-image: url(../img/common/arrow02.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 8px;
  height: 5px;
  transition: all 0.3s ease;
}
.newsList .date p {
  display: inline-block;
}
.newsList .category {
  display: inline-block;
  min-width: 100px;
  background-color: #012D6B;
  text-align: center;
  padding: 1px 10px;
  margin-left: 10px;
  border-radius: 50px;
}
.newsList .category p {
  color: #fff;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .newsList {
    padding-bottom: 60px;
  }
  .newsList li a {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
  .newsList .date {
    font-size: 14px;
    width: 286px;
  }
  .newsList .date > p {
    padding-left: 22px;
  }
  .newsList .title {
    width: calc(100% - 286px);
  }
  .newsList .title p {
    text-decoration: underline;
  }
  .newsList .date,
.newsList .title {
    display: inline-block;
    padding-bottom: 0;
  }
  .newsList .category {
    margin-left: 20px;
  }
  .newsList .category p {
    font-size: 14px;
  }
}

/*
tabNavigation
---------------------------*/
.tabNavigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.tabNavigation .tab {
  position: relative;
  width: 50%;
  text-align: center;
}
.tabNavigation .tab a, .tabNavigation .tab p {
  display: block;
  line-height: 1.3;
  font-size: 15px;
  padding: 14px 0;
  cursor: pointer;
}
.tabNavigation .tab a:after, .tabNavigation .tab p:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #DCDCDC;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.tabNavigation .tab a.active, .tabNavigation .tab p.active {
  color: #012D6B;
  font-weight: 600;
  cursor: default;
}
.tabNavigation .tab a.active:after, .tabNavigation .tab p.active:after {
  content: "";
  height: 2px;
  background: #012D6B;
  bottom: 1px;
}
.tabNavigation .tab:nth-of-type(n+3) {
  text-align: center;
}
.tabNavigation .tab:nth-of-type(n+3) a:after, .tabNavigation .tab:nth-of-type(n+3) p:after {
  content: none;
}
.tabNavigation .tab:nth-of-type(n+3) a.active:after, .tabNavigation .tab:nth-of-type(n+3) p.active:after {
  content: "";
  bottom: auto;
  top: 0;
}
.tabNavigation.type02 {
  flex-wrap: nowrap;
}
.tabNavigation.type02 .tab {
  width: 33.333%;
}
.tabNavigation.type02 .tab:nth-of-type(n+3) a:after, .tabNavigation.type02 .tab:nth-of-type(n+3) p:after {
  content: "";
}
.tabNavigation.type02 .tab:nth-of-type(n+3) a.active:after, .tabNavigation.type02 .tab:nth-of-type(n+3) p.active:after {
  content: "";
  bottom: 0;
  top: auto;
}
@media (min-width: 769px) {
  .tabNavigation {
    flex-wrap: nowrap;
  }
  .tabNavigation .tab {
    position: relative;
    background-color: #F5F4F3;
    transition: 0.4s ease;
    cursor: pointer;
  }
  .tabNavigation .tab:nth-of-type(n+3) p:after {
    content: "";
  }
  .tabNavigation .tab:nth-of-type(n+3) p:hover:after {
    content: "";
    width: 100%;
    opacity: 1;
  }
  .tabNavigation .tab a, .tabNavigation .tab p {
    font-size: 18px;
    font-weight: 600;
    color: #012D6B;
    padding: 18px 0;
  }
  .tabNavigation .tab a:after, .tabNavigation .tab p:after {
    content: "";
    height: 2px;
    width: 0;
    background: #012D6B;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
  }
  .tabNavigation .tab a:hover:after, .tabNavigation .tab p:hover:after {
    content: "";
    width: 100%;
    opacity: 1;
  }
  .tabNavigation .tab a.active, .tabNavigation .tab p.active {
    background-color: #012D6B;
    cursor: default;
    filter: drop-shadow(3px -3px 5px rgba(0, 0, 0, 0.2));
    z-index: 1;
    color: #fff;
  }
  .tabNavigation .tab a.active:after, .tabNavigation .tab p.active:after {
    content: none;
  }
  .tabNavigation .tab:nth-of-type(n+3) a.active:after, .tabNavigation .tab:nth-of-type(n+3) p.active:after {
    content: none;
    opacity: 0;
  }
  .tabNavigation .tab:hover {
    opacity: 1;
  }
}

/*
footer
---------------------------*/
footer {
  background-color: #F5F4F3;
}

#news {
  padding-bottom: 80px;
}
@media (min-width: 1000px) {
  #news {
    padding-bottom: 140px;
  }
}

/*
newsList
---------------------------*/
.newsList {
  padding: 10px 0 40px;
}
@media (min-width: 1000px) {
  .newsList {
    padding: 20px 0 60px;
  }
}

/*
pager
---------------------------*/
.pager ul {
  text-align: center;
}
.pager li,
.pager li:nth-child(-n+2),
.pager li + li,
.pager li:nth-child(even) {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  color: #000;
  margin: 0 7px;
  padding: 0;
  float: none;
}
.pager li a,
.pager li:nth-child(-n+2) a,
.pager li + li a,
.pager li:nth-child(even) a {
  display: block;
  padding: 7px;
  text-decoration: none;
}
.pager li .current,
.pager li:nth-child(-n+2) .current,
.pager li + li .current,
.pager li:nth-child(even) .current {
  display: block;
  padding: 7px;
  font-weight: 600;
  color: #012D6B;
  border-bottom: 1px solid #012D6B;
}
@media (min-width: 768px) {
  .pager li,
.pager li:nth-child(-n+2),
.pager li + li,
.pager li:nth-child(even) {
    font-size: 16px;
    margin: 0 8px;
  }
  .pager li a,
.pager li .current,
.pager li:nth-child(-n+2) a,
.pager li:nth-child(-n+2) .current,
.pager li + li a,
.pager li + li .current,
.pager li:nth-child(even) a,
.pager li:nth-child(even) .current {
    padding: 8px;
  }
}

/*
.newsTitleWrap
---------------------------*/
.newsTitleWrap {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #012D6B;
}
.newsTitleWrap .date {
  display: flex;
  align-items: center;
  padding-bottom: 14px;
}
.newsTitleWrap .date p {
  font-size: 14px;
  display: inline-block;
}
.newsTitleWrap .category {
  display: inline-block;
  min-width: 100px;
  background-color: #012D6B;
  text-align: center;
  padding: 5px;
  margin-left: 18px;
  border-radius: 50px;
}
.newsTitleWrap .category p {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}
.newsTitleWrap .newsTitle {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}
@media (min-width: 1000px) {
  .newsTitleWrap {
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
  .newsTitleWrap .date {
    padding-bottom: 30px;
  }
  .newsTitleWrap .date p {
    font-size: 18px;
  }
  .newsTitleWrap .category p {
    font-size: 16px;
  }
  .newsTitleWrap .newsTitle {
    font-size: 24px;
  }
}

/*
.newsDetail
---------------------------*/
.newsDetail {
  padding-bottom: 40px;
  border-bottom: 1px solid #DCDCDC;
}
.newsDetail p,
.newsDetail .titleSmall,
.newsDetail .titleMiddle {
  line-height: 1.8;
  text-align: left;
  padding-bottom: 1.5em;
}
.newsDetail p a,
.newsDetail .titleSmall a,
.newsDetail .titleMiddle a {
  text-decoration: underline;
}
.newsDetail em {
  font-style: italic;
}
.newsDetail a {
  text-decoration: underline;
  color: #012D6B;
}
.newsDetail .titleSmall,
.newsDetail .titleMiddle {
  font-weight: 600;
}
.newsDetail .titleSmall {
  font-size: 16px;
}
.newsDetail .titleMiddle {
  font-size: 18px;
}
.newsDetail .imageWrap {
  text-align: center;
  padding: 20px 0;
}
.newsDetail .t-center {
  text-align: center;
}
@media (min-width: 1000px) {
  .newsDetail {
    padding-bottom: 80px;
  }
  .newsDetail .imageWrap {
    padding: 30px 0;
  }
  .newsDetail .imageWrap img {
    max-width: 700px;
    height: auto;
  }
  .newsDetail .titleSmall {
    font-size: 18px;
  }
  .newsDetail .titleMiddle {
    font-size: 20px;
  }
}

.detailNav {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 40px;
}
.detailNav .prev,
.detailNav .next {
  position: relative;
  padding-right: 18px;
}
.detailNav .prev a,
.detailNav .next a {
  font-weight: 600;
}
.detailNav .prev:before,
.detailNav .next:before {
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  content: "";
  background-image: url(../img/common/arrow02.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 8px;
  height: 5px;
  transition: all 0.3s ease;
  margin: auto;
}
.detailNav .prev {
  padding: 0 0 0 18px;
}
.detailNav .prev:before {
  right: auto;
  left: 0;
  transform: scale(-1, 1);
}
.detailNav .vhidden {
  visibility: hidden;
}

/*# sourceMappingURL=news.css.map */