@charset "UTF-8";



/*
.compact-title {
	background: url(/img/bg_news_compact.png) 50% 50% no-repeat;
	background-size: cover;
}
*/
.compact-title {
	background: #fcfcfc;
}
body.third .compact-title {
	background: #fff;
}


#news-entry-list {
	box-sizing: border-box;
	position: relative;
	padding: 60px 0;
	background: #fff;
}
#news-entry-list .inner {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

#news-entry-list h2 {
	font-size: 24px;
	font-weight: 500;
}

#news-entry-list nav {
	position: relative;
	z-index: 100;
	margin: 55px 0 0;
	padding: 0 0 10px;
}

#news-entry-list nav > ul {
	display: flex;
}
#news-entry-list nav > ul {
	position: relative;
}
#news-entry-list nav > ul li {
	position: relative;
}
#news-entry-list nav > ul li + li {
	margin-left: 50px;
}
#news-entry-list nav > ul li + li::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 16px;
	left: -25px;
	top: calc(50% - 8px);
	background: #909090;
}
#news-entry-list nav > ul a {
	position: relative;
	font-size: 17px;
	font-family: "Josefin Sans", sans-serif;
	color: #dc1010;
	will-change: opacity;
	transition: all 300ms ease-out;
}

#news-entry-list nav > ul a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0,;
	bottom: -8px;
	background: #dc1010;
	transform: scaleX(0);
	transition: all 300ms ease;
}
#news-entry-list nav > ul .active a::after {
	transform: scaleX(1);
}

#news-entry-list nav > ul a:hover::after {
	transform: scaleX(1);
}


#filter {
	position: absolute;
	width: 150px;
	right: 0;
	top: 0;
	
	display: none;
}

#filter > a {
	position: relative;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: #dc1010;
}
#filter > a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0,;
	bottom: -8px;
	background: #dc1010;
}

#filter > a strong {
	margin-left: 8px;
}
#filter > a i {
	position: absolute;
	width: 12px;
	height: 6px;
	right: 8px;
	top: calc(50% - 3px);
	background: url(/img/arrow_down.svg) 0 0 no-repeat;
	background-size: 12px auto;
	transition: all 300ms ease-out;
}


#selector {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	left: 0;
	top: 30px;
	z-index: 100;
	border: 1px solid #dc1010;
	background: #fff;
	transition: all 300ms ease-out;
	
	opacity: 0;
	visibility: hidden;
}
#selector ul {
	padding: 5px 0;
}
#selector a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 36px;
	font-size: 16px;
	font-weight: 500;
	color: #dc1010;
	transition: all 300ms ease-out;
}
#selector a:hover {
	opacity: 0.7;
}
#selector a.active::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	left: calc(50% - 15px);
	bottom: 3px;
	background: #dc1010;
}

#filter.opened > a i {
	transform: rotate(180deg);
}
#filter.opened #selector {
	opacity: 1;
	visibility: visible;
}




.tag-label {
	color: #dc1010;
	font-size: 20px;
	font-weight: 500;
}
.tag-label span {
	font-size: 16px;
	font-weight: 500;
}





.entry-list {
	margin: 60px 0 0;
}

.entry-list .meta {
	display: flex;
	font-size: 13px;
	font-weight: 500;
	font-family: "Josefin Sans", sans-serif;
}
.entry-list .date {
	position: relative;
	top: -2px;
	font-size: 14px;
	font-weight: 500;
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #909090;
}
.entry-list .category {
	position: relative;
	margin-left: 20px;
	color: #dc1010;
}
.entry-list .category::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 10px;
	left: -10px;
	top: calc(50% - 6px);
	background: #909090;
}



.entry-list .text {
	margin: 10px 0 0;
}
.entry-list .text p {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2;
	
	overflow: hidden;
	
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.entry-list li {
	padding-bottom: 30px;
	border-bottom: 1px solid #e6e6e6;
}
.entry-list li + li {
	margin-top: 30px;
}



.entry-list li a p {
	transition: all 300ms ease-out;
}
.entry-list li a:hover p {
	color: #999;
}

.entry-list li a {
	position: relative;
	display: block;
	padding-right: 60px;
}
.entry-list li a .arrow {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	width: 26px;
	height: 26px;
	right: 5px;
	top: calc(50% - 13px);
	border: 1px solid #dc1010;
	border-radius: 13px;
	transition: all 300ms ease-out;
}
.entry-list li a .arrow::after {
	position: absolute;
	display: block;
	content: "";
	width: 14px;
	height: 12px;
	left: calc(50% - 7px);
	top: calc(50% - 6px);
	background: url(/img/arrow.svg) 50% 50% no-repeat;
	background-size: 14px auto;
	transition: all 150ms ease-out; 
}
.entry-list li a:hover .arrow {
	background: #dc1010;
}
.entry-list li a:hover .arrow::after {
	filter: brightness(0) invert(1);
}




/*
.entry-list-pager {
	display: flex;
	justify-content: center;
	margin: 50px 0 0;
}

.entry-list-pager * {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	font-size: 16px;
	font-weight: 500;
}
.entry-list-pager a {
	color: #dc1010;
}
.entry-list-pager span {
	color: #909090;
}
.entry-list-pager strong {
	position: relative;
	color: #dc1010;
}
.entry-list-pager strong::after {
	position: absolute;
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	left: calc(50% - 7px);
	bottom: -3px;
	background: #dc1010;
}

.entry-list-pager .prev {
	margin-right: 30px;
	background: url(/img/arrow_prev.svg) 50% 65% no-repeat;
	background-size: 6px auto;
}
.entry-list-pager .next {
	margin-left: 30px;
	background: url(/img/arrow_next.svg) 50% 65% no-repeat;
	background-size: 6px auto;
}

.entry-list-pager span.prev,
.entry-list-pager span.next {
	filter: saturate(0);
	opacity: 0.5;
}
*/






.entry-list-pager {
	margin: 50px 0 0;
}

.nav-links {
	display: flex;
	justify-content: center;
}
.nav-links * {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	font-size: 16px;
	font-weight: 500;
}
.nav-links a {
	color: #dc1010;
}
.nav-links span.current {
	position: relative;
	color: #dc1010;
}
.nav-links span.current::after {
	position: absolute;
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	left: calc(50% - 7px);
	bottom: -3px;
	background: #dc1010;
}

.nav-links span.dots {
	color: #909090;
}

.entry-list-pager .prev {
	margin-right: 30px;
	background: url(/img/arrow_prev.svg) 50% 65% no-repeat;
	background-size: 6px auto;
}
.entry-list-pager .next {
	margin-left: 30px;
	background: url(/img/arrow_next.svg) 50% 65% no-repeat;
	background-size: 6px auto;
}

.entry-list-pager span.prev,
.entry-list-pager span.next {
	filter: saturate(0);
	opacity: 0.5;
}











#mailmagazine-form {
	box-sizing: border-box;
	position: relative;
	padding: 0 0 120px;
	background: #fff;
}
#mailmagazine-form .inner {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
#mailmagazine-form .form-container {
	padding: 60px;
	background: #f4f4f4;
	border-radius: 7px;
}


#mailmagazine-form h2 {
	margin: 0 0 10px;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.5;
}




.entry-head {
	padding: 0 0 40px;
	border-bottom: 1px solid #e6e6e6;
}
.entry-head h2 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}
.entry-head h3 {
	margin: 25px 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

.entry-head .meta {
	display: flex;
	margin: 20px 0 0;
	font-size: 13px;
	font-weight: 500;
	font-family: "Josefin Sans", sans-serif;
}
.entry-head .date {
	position: relative;
	top: -2px;
	font-size: 14px;
	font-weight: 500;
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #909090;
}
.entry-head .category {
	position: relative;
	margin-left: 20px;
	color: #dc1010;
}
.entry-head .category::before {
	position: absolute;
	content: "";
	display: block;
	width: 1px;
	height: 10px;
	left: -10px;
	top: calc(50% - 6px);
	background: #909090;
}


.entry-body {
	margin: 60px 0 0;
}

.entry-body h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.9;
}
.entry-body h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.9;
}
.entry-body div,
.entry-body p,
.entry-body li {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}
.entry-body p + p {
	margin-top: 10px;
}
.entry-body img {
	width: auto;
	margin: 15px 0;
}

.entry-body p a {
	color: #dc1010;
	text-decoration: underline;
}
.entry-body p a:hover {
	text-decoration: none;
}

.entry-body .image {
	max-width: 420px;
	margin: 40px auto;
}
.entry-body .image img {
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
}



.entry-body pre {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}

.entry-body strong {
	font-weight: 700;
}




/* ---------------------------------------------------------------------------------------------------- */
/* OPENING */


body.news-opening #news-entry-list nav {
	opacity: 0;
	transform: translateY(20px);
	transition: all 400ms ease;
}

body.news-opening.start #news-entry-list nav {
	opacity: 1;
	transform: translateY(0px);
}



body.news-opening #news-entry-list .entry-list,
body.news-opening #news-entry-list .entry-list-pager {
	opacity: 0;
	transition: all 600ms ease 200ms;
}

body.news-opening.start #news-entry-list .entry-list,
body.news-opening.start #news-entry-list .entry-list-pager {
	opacity: 1;
}























