@charset "utf-8";

/* -------------------------------------------- 
	NEWS
-------------------------------------------- */

/* ---------- LIST ---------- */

.news-list.--top {
	background: url('../img/news/top-news-bg.png') no-repeat;
	background-size: 155% 100%;
	background-position: center top;
}

.news-list__list {
	display: block;
}

.news-list__item {
	width: 100%;
	height: auto;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
	filter: drop-shadow(0px 0px 20px rgba(80, 120, 255, 0.15));
	/* Note: currently only Safari supports backdrop-filter */
	backdrop-filter: blur(10px);
	--webkit-backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.05);
	position: relative;
}

.news-list__item:before {
	content: "";
	display: block;
	width: 4px;
	height: calc(100% - 30px);
	background: linear-gradient(#3fcae3 0%, #3e63dd 100%);
	border-radius: 5px;
	position: absolute;
	left: 10px;
	top: 15px;
}

.news-list__item+.news-list__item {
	margin-top: 15px;
}

.news-list__item-link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 22px 22px 22px 36px;
	color: var(--bg-text-color-2);
}

.news-list__item-link:hover{
	box-shadow: 0px 0px 48px 0px rgba(46,78,237,0.4);
	transition: 0.8s;
}

.news-list__item-link-inner {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto auto;
	gap: 5px;
}

.news-list__date {
	font-family: "eurostile-extended", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;

}

.news-list__month,
.news-list__day {
	display: inline-block;
	font-size: 14px;
	color: var(--bg-text-color);
}

.news-list__day:before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 11px;
	background: url('../img/news/date-slash.svg') no-repeat;
	background-size: contain;
	background-position: center bottom;
	margin: 0 5px;
}

.news-list__year {
	display: inline-block;
	font-size: 10px;
	color: #8D8D8D;
	margin-left: 10px;
}


@media (min-width:768px) {
	.news-list__item-link-inner {
		display: grid;
		align-items: start;
		grid-template-columns: clamp(120px, 16%, 200px) 1fr;
		grid-template-rows: repeat(auto);
	}

	.news-list__date {
		flex-wrap: wrap;
		margin-top: 1px;
	}

	.news-list__year {
		width: 100%;
		margin-left: 0;
	}
}


/* ---------- DETAIL ---------- */


.news-detail__date {
	font-family: "eurostile-extended", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.news-detail__month,
.news-detail__day,
.news-detail__year {
	display: inline-block;
	font-size: 14px;
	color: var(--bg-text-color-2);
	letter-spacing: 0.05em;
}

.news-detail__day:before,
.news-detail__month:before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 11px;
	background: url('../img/news/date-slash.svg') no-repeat;
	background-size: contain;
	background-position: center bottom;
	margin: 0 5px;
}


.news-detail__title{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: clamp(20px, 5.3vw, 24px);
	line-height: 1.6;
	color: var(--bg-text-color);
	margin-top: 5px;
	border-bottom: 1px solid rgba(255,255,255,0.42);
	padding-bottom: 0.5em;
}

.news-detail__text{
	margin-top: 1em;
	line-height: 1.85;
}