@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;400;700&display=swap');

#top section.news {
    background: rgba(255,255,255,0.7);
    padding: 90px 0;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}
#top section.news h1 {
    background: url(/images/ttl_news.png) no-repeat center / contain;
    height: 47px;
    position: relative;
}
#top section.news h1::before {
  content: '';
  border-bottom: solid 2px #222222;
  position: absolute;
  bottom: -9px;
  left: 50%;
  z-index: 1;
  width: 500px;
  margin: 0 0 0 -250px;
}
#top section.news article {
    margin: 90px auto 0;
    width: 740px;
}
#top section.news article a {
    display: block;
    width: 100%;
    height: 120px;
    margin: 0 0 40px;
    position: relative;
    color: #222222;
}
#top section.news article a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}
#top section.news article a::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 0;
  width: 0;
  border-top: solid 1px #222222;
  transition: 0.3s;
}
#top section.news article.show a::after {
  width: 100%;
}
#top section.news article.show a:nth-child(1)::after {
    transition-delay: 0.0s;
}
#top section.news article.show a:nth-child(2)::after {
    transition-delay: 0.2s;
}
#top section.news article.show a:nth-child(3)::after {
    transition-delay: 0.4s;
}
#top section.news article.show a:nth-child(4)::after {
    transition-delay: 0.6s;
}
#top section.news article.show a:nth-child(5)::after {
    transition-delay: 0.8s;
}
#top section.news article.show a:nth-child(6)::after {
    transition-delay: 1.0s;
}
#top section.news article.show a:nth-child(7)::after {
    transition-delay: 1.2s;
}
#top section.news article.show a:nth-child(8)::after {
    transition-delay: 1.4s;
}
#top section.news article.show a:nth-child(9)::after {
    transition-delay: 1.6s;
}
#top section.news article.show a:nth-child(10)::after {
    transition-delay: 1.8s;
}
#top section.news article a span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	min-width: 100px;
	height: 24px;
	background: rgba(34,34,34,0.8);
    backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	font-size: 14px;
	line-height: 1;
	font-weight: 100;
	text-align: center;
	color: white;
	padding: 4px 10px 0;
	font-family: 'Barlow';
}
#top section.news article a figure {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 190px;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
#top section.news article a figure i {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0;
	transition: 0.2s;
}
#top section.news article a:hover figure i {
    transform: scale(1.1);
}
#top section.news article a .title {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 0 8px 220px;
	letter-spacing: 0px;
}
#top section.news article a .date {
    position: absolute;
    bottom: 0;
    left: 220px;
    z-index: 1;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
	    font-family: 'Barlow';
}
#top section.news .btn {
    padding: 40px 0 0;
}
#top section.news .btn a {}
#top section.news .btn a .arrow_sq {}

@media screen and (max-width: 768px){

#top section.news {
    padding: 45px 0;
}
#top section.news h1 {
  height: 24px;
}
#top section.news h1::before {
    bottom: -7px;
    border-bottom-width: 1px;
    width: 260px;
    margin: 0 0 0 -130px;
}
#top section.news article {
    margin: 50px auto 0;
    width: calc(100% - 50px);
}
#top section.news article a {
    min-height: 90px;
    height: auto;
    margin: 0 0 35px;
}
#top section.news article a::before {}
#top section.news article a span {
    width: auto;
    height: 24px;
    font-size: 12.5px;
    padding: 5px 10px 0;
}
#top section.news article a figure {
    width: 150px;
}
#top section.news article a:hover figure i {
    transform: scale(1);
}
#top section.news article a .title {
    font-size: 14px;
    line-height: 1.6;
    padding: 11px 0 0 165px;
    vertical-align: top;
    max-height: 5.5em;
    overflow: hidden;
}
#top section.news article a .date {
    left: 165px;
}
#top section.news .btn {
    padding: 7px 0 0;
}
#top section.news .btn a {}
#top section.news .btn a .arrow_sq {}

}