@charset "UTF-8";




/* --------------- *\
 * news
\* --------------- */
#news {
  padding: 40px 0 80px 0;
  background-color: #fff;
}
#news h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #666;
}
#news .sidebar {
  width: 200px;
}
#news .sidebar ul {
  font-size: 16px;
}
#news .sidebar li {
  margin-bottom: 10px;
}
#news .sidebar li a {
  text-decoration: none;
  color: #bbb;
}
#news .sidebar li a:hover,
#news .sidebar li.active a {
  text-decoration: none;
  color: #333;
}
#news .main {
  width: 800px;
}
#news .main ul {
  border-top: 1px solid #e9e9e9;
}
#news .main li {
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  overflow: hidden;
}
#news .main li::before,
#news .main li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 2px;
  height: 7px;
  background-color: #333;
  pointer-events: none;
}
#news .main li::before {
  transform: skewX(-45deg) translateY(3px);
}
#news .main li::after {
  transform: skewX(45deg) translateY(-3px);
}
#news .main li a {
  display: block;
  padding: 15px 30px 10px 0;
  color: #333;
  text-decoration: none;
}
#news .main li .date {
  font-size: 12px;
  line-height: 1;
  color: #666;
}
#news .main li .title {
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 1219px) {
  #news .main {
    width: 660px;
  }
}
@media (max-width: 767px) {
  #news {
    padding: 50px 0 0;
    background-color: #fff;
  }
  #news h3 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  #news .sidebar {
    width: 100%;
  }
  #news .sidebar ul {
    margin-top: -20px;
    margin-bottom: 20px;
  }
  #news .sidebar li {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  #news .sidebar li a {
    display: block;
  }
  #news .main {
    width: 100%;
  }
  #news .main ul {
    border-top: none;
  }
}










/* --------------- *\
 * news_detail
\* --------------- */
#news_detail {
  padding: 40px 0 80px 0;
  background-color: #fff;
}
#news_detail h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #666;
}
#news_detail h3 + div {
  width: 80%;
  margin: 0 auto;
}
#news_detail .detail_header {
  display: flex;
  justify-content: space-between;
}
#news_detail .title {
  font-size: 20px;
  font-weight: bold;
}
#news_detail .date {
  font-size: 11px;
}
#news_detail .body {
  margin-top: 10px;
}
#news_detail p {
  position: relative;
  padding-left: 20px;
}
#news_detail p.detail_back::before,
#news_detail p.detail_back::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
  width: 2px;
  height: 7px;
  background-color: #333;
  pointer-events: none;
}
#news_detail p.detail_back::before {
  transform: skewX(45deg) translateY(3px);
}
#news_detail p.detail_back::after {
  transform: skewX(-45deg) translateY(-3px);
}
@media (max-width: 767px) {
  #news_detail {
    padding: 50px 0 0;
  }
  #news_detail h3 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}


