header .logo {
  top: 10px;
}

h2.news-title {
  color: #a62126;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

main.news {
  background: #f6f4ee;
  padding: 160px 20px 40px;
}

#newsList {
  border-top: 1px solid #a62126;
  background: #fff;
}
#newsList li {
  width: 100%;
  border-bottom: 1px solid #a62126;
  color: #a62126;
  font-weight: bold;
}
#newsList li a {
  color: #a62126;
  font-weight: bold;
  display: flex;
}
#newsList li .up_ymd {
  font-size: 12px;
  width: 80px;
  position: relative;
  padding: 10px;
}
#newsList li .up_ymd::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-right: 1px dashed #a62126;
}
#newsList li .title {
  padding: 10px;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.pager {
  text-align: center;
  padding: 10px;
}

.pager a {
  border: 1px solid #a62126;
  border-radius: 5px 5px 5px 5px;
  color: #a62126;
  font-size: 12px;
  padding: 3px 7px 2px;
  text-decoration: none;
  margin: 0 1px;
}

.pager a.current {
  background: #a62126;
  border: 1px solid #a62126;
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px 2px;
  margin: 0 1px;
  text-decoration: none;
}

.pager a:hover {
  background: #a62126;
  color: #fff;
}

.overPagerPattern {
  padding: 0 2px;
}

article {
  background: #fff;
  padding: 40px 20px;
}
article #up_ymd {
  margin-bottom: 10px;
}
article h2 {
  color: #a62126;
  font-weight: bold;
  font-size: 18px;
  border-top: 1px solid #a62126;
  border-bottom: 1px solid #a62126;
  padding: 10px 0;
  margin-bottom: 10px;
}
article #up_ymd {
  font-size: 11px;
}
article .detailText {
  margin: 20px 0 40px;
}
article .backORcloseBtn a {
  color: #a62126;
  font-weight: bold;
  border: 1px solid #a62126;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  border-radius: 4px;
  height: 50px;
}

.pNav {
  font-size: 11px;
  margin-bottom: 10px;
}
.pNav a {
  font-size: 11px;
}

/**********************************************************************

 * Media Query For PC

 ***********************************************************************/
@media print, screen and (min-width: 767px) {
  #newsWrap {
    padding: 50px 20px 100px;
  }
  #newsList {
    max-width: 1000px;
    margin: 0 auto;
  }
  #newsList li .up_ymd {
    font-size: 16px;
    width: 120px;
    padding: 15px;
  }
  #newsList li .title {
    padding: 15px;
    font-size: 16px;
  }
  h2.news-title {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .pager a {
    font-size: 15px;
  }
  .pager a.current {
    font-size: 15px;
  }
  article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
  }
  article .detailText {
    margin: 40px 0 70px;
  }
  article .backORcloseBtn a {
    width: 200px;
  }
  article .backORcloseBtn a:hover {
    background-color: #a62126;
    color: #fff;
  }
}