@charset "utf-8";


/* H2見出し */
.section.renew .static_content.download h2.title {
	background: url(/image/FJ_SB_H3_T3_RGB) center top no-repeat;
	background-size: cover;
	margin-bottom: 2rem;
}

/* タブ全体のレイアウト */
.tabs-download {
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
}

/* ラジオボタンを視覚的に非表示 (アクセシビリティ対応) */
.tabs-download input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* タブのラベル部分 */
.tabs-download > label {
	flex: 1 1;
	order: -1;
	min-width: 70px;
	padding: 1em 1em 0.8em;
	background-color: #d9d9d9;
	color: #000;
	border: 1px solid #c8c8c8;
	font-weight: 700;
	font-size: 1em;
	text-align: center;
	cursor: pointer;
	transition: 0.5s;
}
@media only screen and (max-width: 767px) {
	.tabs-download > label {
		flex: auto;
		width: 100%;
		padding: 0.6em 1em 0.4em;
	}
}
.tabs-download > label:hover {
	background-color: #1d10a9;
	border-color: #1d10a9;
	color: #fff;
}

.tabs-download > div {
	display: none;
	width: 100%;
	opacity: 0;
	animation: fadeIn 0.5s ease-in-out forwards;

}

.tabs-download label:has(:checked) {
	background-color: #1d10a9;
	border-color: #1d10a9;
	color: #fff;
}

.tabs-download label:has(:checked) + div {
	display: block;
}

/* フェードインアニメーション */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ダウンロードリストパネル表示 */
.download-list {
	margin-top: 20px;
}
.download-list .panel-group {
	width: 100%;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1000px) {
	.download-list .panel-group {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 480px) {
	.download-list .panel-group {
		grid-template-columns: 1fr;
	}
}
.download-list .panel-group > .panel {
	position: relative;
	padding: 18px 18px 20px;
	background: #fff;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4; 
	row-gap: 16px;
	color: #000;
	text-decoration: none;
	border: 1px solid #d9d9d9;
}

.download-list .panel-group > .panel > .visual {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.download-list .panel-group > .panel > .visual img {
	max-width: 100%;
}
.download-list .panel-group > .panel > .title {
	align-self: center;
	padding: 30px 0 0;
	background: none;
	color: #000;
	font-weight: 700;
}
.download-list .panel-group > .panel > .desc {
	font-size: 1rem;
}

.download + .separator {
	margin: 120px 0;
	display: block;
	content: "";
	height: 1px;
	width: 100%;
	background: #d9d9d9;
}
@media only screen and (max-width: 767px) {
	.download + .separator {
		margin: 60px 0;
	}
}