@charset "UTF-8";
/* CSS Document */

.c-financial {
	margin-bottom: 60px;
}

.c-financial-container:not(:first-child) {
	margin-top: 50px;
}

.c-financial-list {
	border-bottom: solid 1px #e0e1e1;
	margin-bottom: 0;
}

.c-financial-item {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: center;
	gap: 10px 22px;
	padding: 20px 30px;
}

.c-financial-item:not(:first-child) {
	border-top: solid 1px #e0e1e1;
}

.c-financial-item-date {
	box-sizing: border-box;
	color: #115fad;
	font-size: 1.6rem;
	font-weight: bold !important;
	font-family: "Open Sans", sans-serif;
}

.c-financial-item-title {
	display: grid;
	grid-template-columns: 17px 1fr;
	column-gap: 15px;
	font-size: 1.6rem;
	line-height: normal;
}

@media (any-hover: hover) {
	.c-financial-item-title:hover {
		text-decoration: underline;
	}
}

.c-financial-item-title::before {
	content: "";
	width: 17px;
	height: 20px;
	background: url(../img/icon-pdf.png) no-repeat center center / contain;
	margin-block: calc((1lh - 20px) / 2);
}

.c-financial-text {
	font-size: 1.6rem;
	font-weight: bold !important;
	line-height: normal;
}

@media only screen and (max-width: 768px) {
	.c-financial-item {
		grid-template-columns: 100%;
		padding: 15px 20px;
	}
}

.financial-tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: end;
	gap: 10px;
	position: relative;
	margin: 50px 0;
}

.financial-tabs::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #115fad;
	bottom: 0;
	left: 0;
}

.financial-tab {
	border: solid 1px #115fad;
	color: #fff;
	background-color: #115fad;
	appearance: none;
	margin: 0;
	padding: 17px 10px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.8px;
	display: grid;
	place-items: center;
	transition:
		background-color 0.3s,
		color 0.3s;
		line-height: calc(14 / 12);
}

.financial-tab br {
	display: none;
}

.financial-tab.is-active {
	background-color: #fff;
	color: #115fad;
	padding: 22px 10px;
}

@media (any-hover: hover) {
	.financial-tab:hover {
		background-color: #fff;
		color: #115fad;
	}
}

.financial-panel {
	display: none;
}

.financial-panel.is-active {
	display: block;
}

.financial-panel-heading {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: normal;
	background-color: #115fad;
	color: #fff;
	padding: 12px 20px;
	margin-bottom: 25px;
}

.pdngl {
	padding-left: 1.3rem;
}

.ulstyle {
	list-style-type: disc;
}

.ulstyle li a {
	text-decoration: underline;
	color: #115fad;
}

@media only screen and (max-width: 1024px) {
	.financial-tab {
		padding: 0 10px;
		height: 60px;
	}

	.financial-tab.is-active {
		padding: 0 10px;
		height: 70px;
	}

	.financial-tab br {
		display: block;
	}
}

@media only screen and (max-width: 768px) {
	.financial-tabs {
		margin: 20px 0 30px;
	}

	.financial-tab {
		font-size: 1.4rem;
	}
}

@media only screen and (max-width: 640px) {
	.financial-tabs {
		gap: 3px;
	}

	.financial-tab {
		font-size: 1.2rem;
		padding: 0;
		height: 55px;
	}
	.financial-tab.is-active {
		padding: 0;
		height: 65px;
	}
}