/* ----------------------------------------
	.visual_home
---------------------------------------- */
.visual_home {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .visual_home {
    padding-top: 100px;
  }
}

/* ----------------------------------------
	#news
---------------------------------------- */
#news {
  /* ------ ul.news_list ------- */
}
#news ul.news_list {
  position: relative;
  margin-bottom: 2em;
  padding-top: 2em;
  width: 100%;
  border-top: 1px dotted #626262;
  z-index: 3;
}
#news ul.news_list li {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px dotted #626262;
}
@media print, screen and (min-width: 768px) {
  #news ul.news_list li article {
    display: flex;
    justify-content: space-between;
  }
}
#news ul.news_list li article .meta {
  display: flex;
  align-items: center;
  width: 250px;
}
@media screen and (max-width: 767px) {
  #news ul.news_list li article .meta {
    padding-bottom: .5em;
    width: 100%;
  }
}
#news ul.news_list li article .meta .date {
  width: 100px;
}
#news ul.news_list li article .meta .cat a {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 2px 10px;
  width: 120px;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background: #626262;
}
#news ul.news_list li article .meta .cat a:hover {
  background: #464646;
}
@media print, screen and (min-width: 768px) {
  #news ul.news_list li article .title {
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
  }
}
#news ul.news_list li article .title a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  #news ul.news_list li article .title a {
    font-size: 1.6rem;
  }
}
#news ul.news_list li article .title a:hover {
  text-decoration: underline;
}
