@charset "utf-8";
/*---------------------- News List ------------------------*/
#newsList h1 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  background: url(../images/news_title_banner.jpg) no-repeat left bottom;
  background-size: cover;
  font-size: 3em;
  color: #FFFFFF;
  padding: 150px 0px;
  margin-bottom: 35px;
}
#newsList .newsInner {
  max-width: 1280px;
  padding: 0 40px 80px;
  margin: auto;
}
#newsList #yearSelect {
  padding: 0 0 30px;
  border-bottom: 1px solid #CCC;
}
#newsList #yearSelect .yearSelectInner {
  width: 240px;
  position: relative;
}
#newsList #yearSelect .yearSelectInner::before {
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 20px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #E62328;
  pointer-events: none;
}
#newsList #yearSelect select {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  box-sizing: border-box;
  border: none;
  color: #333;
  background-color: rgba(100, 200, 230, 0.15);
  outline: 0 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#newsList #yearSelect select::-ms-expand {
  display: none;
}
#newsList .noNews p {
  margin: 80px 0 0;
  text-align: center;
  font-size: 20px;
}
#newsList ul {
  list-style-type: none;
}
#newsList li {
  border-bottom: 1px solid #CCC;
  line-height: 1.6;
}
#newsList li a {
  text-decoration: none;
  position: relative;
  padding: 15px 60px 15px 20px;
}
#newsList li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #64C8E6;
  border-right: 2px solid #64C8E6;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  #newsList li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #newsList li a:hover {
    color: #000;
    background-color: rgba(100, 200, 230, 0.1);
  }
  #newsList li a:hover::after {
    border-top: 2px solid #E62328;
    border-right: 2px solid #E62328;
  }
  #newsList li .newsTitle {
    width: calc(100% - 140px);
  }
}
@media screen and (max-width: 767px) {
  #newsList h1 {
    font-size: 2em;
    padding: 56px 0px;
    margin-bottom: 25px;
  }
  #newsList .newsInner {
    padding: 0 20px 40px;
  }
  #newsList #yearSelect {
    padding: 0 0 25px;
  }
  #newsList #yearSelect .yearSelectInner {
    width: 100%;
  }
  #newsList #yearSelect select {
    font-size: 14px;
  }
  #newsList .noNews p {
    margin: 35px 0 0;
    text-align: center;
    font-size: 16px;
  }
  #newsList ul {
    font-size: 12px;
  }
  #newsList li a {
    display: block;
    padding: 10px 30px 10px 0;
  }
  #newsList li a::after {
    right: 10px;
  }
  #newsList li .newsDate {
    display: block;
    margin: 0 0 5px;
  }
}
/*---------------------- News Single ------------------------*/
#newsSingle .pageTitle {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  background-color: rgba(100, 200, 230, 0.5);
  font-size: 3em;
  color: #FFFFFF;
  padding: 30px 0px;
  margin-bottom: 50px;
}
#newsSingle .newsInner {
  max-width: 900px;
  padding: 0 40px 100px;
  margin: auto;
}
#newsSingle h1.newsTitle {
  font-size: 26px;
  color: #000;
  line-height: 1.4;
  margin: 20px 0 30px;
  padding: 0 0 15px;
  border-bottom: 1px solid #E62328;
}
#newsSingle .newsText {
  font-size: 18px;
  line-height: 1.4;
}
#newsSingle .newsText img {
  max-width: 100% !important;
  height: auto !important;
  margin: 10px 0;
}
#newsSingle .newsText a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  #newsSingle .newsText a:hover {
    color: #64c8e6;
  }
}
@media screen and (max-width: 767px) {
  #newsSingle .pageTitle {
    font-size: 2em;
    padding: 15px 0px;
    margin-bottom: 20px;
  }
  #newsSingle .newsInner {
    padding: 0 20px 50px;
  }
  #newsSingle h1.newsTitle {
    font-size: 18px;
    margin: 15px 0 20px;
    padding: 0 0 10px;
  }
  #newsSingle .newsText {
    font-size: 16px;
  }
}