.latest_report,
.report_pdf,
.year_report,
.contact_cta {
	padding: 100px 0;
}

.section_title {
	text-align: center;
	margin-bottom: 60px;
}

.section_title h2 {
	font-size: 42px;
	/* color: #1d4598; */
	margin-bottom: 10px;
}
/* 
.section_title span {
	color: #888;
	font-size: 16px;
}
 */
.latest_report_box {
	display: flex;
	align-items: center;
	gap: 60px;
	background: #fff;
	border-radius: 30px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.latest_report_img {
	width: 40%;
}

.latest_report_img img {
	width: 100%;
	border-radius: 20px;
}

.latest_report_content {
	flex: 1;
}

.latest_label {
	display: inline-block;
	background: #1d4598;
	color: #fff;
	padding: 8px 20px;
	border-radius: 999px;
	margin-bottom: 20px;
}

.latest_report_content h4 {
	font-size: 36px;
	margin-bottom: 20px;
	margin-top: 0px;
}

.latest_report_content p {
	margin-bottom: 30px;
}

.pdf_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 60px;
	background: #1d4598;
	color: #fff;
	border-radius: 999px;
	font-weight: bold;
	transition: .3s;
}

.pdf_btn:hover {
	opacity: .85;
	transform: translateY(-3px);
}

.report_pdf {
	background: #f8fafc;
}

.report_pdf_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.report_card {
	display: block;
	background: #fff;
	border-radius: 25px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	transition: .3s;
}
.report_card:hover {
	transform: translateY(-5px);
}
.report_card::before{
	content:"📄";
	display:block;
	font-size:40px;
}
.report_card span {
	display:block;
	font-size:22px;
	font-weight:bold;
	color:#1d4598;
	margin-bottom:10px;
}
.report_card p {
	color: #666;
}

.year_report {
	background: #fff;
}

.year_report_list {
	max-width: 900px;
	margin: 0 auto;
}

.year_report_item {
	margin-bottom: 15px;
	background: #f5f8ff;
	border-radius: 15px;
	overflow: hidden;
	transition: .3s;
}
/* 
.year_report_item.active {
	box-shadow:
		0 10px 30px rgba(29, 69, 152, .12);
}
 */
.year_report_btn {
	width: 100%;
	padding: 25px 30px;
	text-align: left;
	font-size: 22px;
	font-weight: bold;
	color: #1d4598;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	letter-spacing: 1.4px;
}

.year_report_item.active .year_report_btn {
	background: #edf3ff;
}

/* 矢印 */

.year_report_btn::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #1d4598;
	border-bottom: 2px solid #1d4598;
	transform:
		translateY(-70%) rotate(45deg);
	transition: .3s;
}

.year_report_item.active .year_report_btn::after {
	transform:
		translateY(-30%) rotate(225deg);
}

/* 開閉部分 */
.year_report_content {
	max-height: 0;
	overflow: hidden;
	padding: 0 30px;
	transition:
		max-height .4s ease,
		padding .4s ease;
}

.year_report_item.active .year_report_content {
	padding: 0 30px 25px;
}

.year_report_inner {
	line-height: 2;
}

@media screen and (max-width:768px) {
	/* .page_mv {
		padding: 110px 0 60px;
	} */

	.page_mv_inner {
		flex-direction: column;
	}

	.page_mv_content,
	.page_mv_img {
		width: 100%;
	}

	.page_title {
		font-size: 38px;
	}

	.latest_report_box {
		flex-direction: column;
		padding: 25px;
	}

	.latest_report_img {
		width: 100%;
	}

	.report_pdf_list {
		grid-template-columns: 1fr;
	}

	.section_title h2 {
		font-size: 32px;
	}

	.latest_report_content h4 {
		font-size: 28px;
	}

	.contact_cta_box h2 {
		font-size: 28px;
	}

	.year_report summary {
		font-size: 18px;
		padding: 20px;
	}
}