<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


/*--------------------------------------------------------------------------------
	/ir/news/ css
--------------------------------------------------------------------------------*/

.c-tabContent .c-tabContent__category .c-tabContent__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item {
	border-right: 1px solid #eaeaea;
	cursor: pointer;
	font-size: 1.4rem;
	line-height: 48px;
	padding-left: 8px;
	padding-right: 8px;
	position: relative;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	width: 25%;
}
.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item:after {
	background-color: #CF0908;
	content: "";
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 8px;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
	transform: scale(0, 1);
	transform-origin: right top;
	width: calc(100% - 16px);
}
.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item.is-current {
	color: #CF0908;
}
.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item.is-current:after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item:first-child {
	border-left: 1px solid #eaeaea;
}
.c-tabContent .c-tabContent__detail {
	margin-top: 60px;
}
.c-tabContent .c-tabContent__detail .c-tabContent__block {
	display: none;
}
.c-tabContent .c-tabContent__detail .c-tabContent__block &gt; *:last-child {
	margin-bottom: 0;
}
.c-pulldown {
	width: 300px;
}

@media only screen and (max-width: 735px) {
	.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item {
		line-height: 40px;
		width: 50%;
	}
	.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item:nth-child(2n+1) {
		border-left: 1px solid #eaeaea;
	}
	.c-tabContent .c-tabContent__category .c-tabContent__items .c-tabContent__item:nth-child(n+3) {
		margin-top: 30px;
	}
	.c-tabContent .c-tabContent__detail {
		margin-top: 40px;
	}

	.c-pulldown {
		margin-bottom: 25px;
		width: 240px;
	}
}


</pre></body></html>