/* ========================================
   info-req.css
   Information Archive & Request Form
   ======================================== */


/* ----------------------------------------
   Utility Classes
   ---------------------------------------- */

/* br: PCのみ表示 */
.br-pc {
	display: inline;
}
@media screen and (max-width: 960px) {
	.br-pc {
		display: none;
	}
}

/* br: モバイルのみ表示 */
.br-sp {
	display: none;
}
@media screen and (max-width: 960px) {
	.br-sp {
		display: inline;
	}
}


/* ----------------------------------------
   Information Archive Page
   ---------------------------------------- */

/* メインセクション */
section.informationList {
	padding: 64px 64px 128px;
}
@media screen and (max-width: 960px) {
	section.informationList {
		padding: 40px 16px;
	}
}

/* タイトル */
.information-title {
	font-size: 24px;
	line-height: 1.6;
	color:#1C56B9;
	padding-bottom: 8px;
	border-bottom: 2px solid #E6E6E6;
	margin-bottom: 16px;
}

/* 説明文 */
.information-description {
	text-align: left;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 64px 0;
}
@media screen and (max-width: 960px) {
	.information-description {
		margin-bottom: 40px;
	}
}

/* カード一覧グリッド */
.information-archive-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 64px 32px;
}
@media screen and (max-width: 960px) {
	.information-archive-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 16px;
	}
}
@media screen and (max-width: 640px) {
	.information-archive-list {
		grid-template-columns: 1fr;
	}
}

/* カードリンクラッパー */
.info-link-wrapper {
	display: grid;
	gap: 16px;
	transition: opacity 0.3s ease;
}
.info-link-wrapper:hover {
	opacity: 0.5;
	text-decoration: none;
}

/* カードサムネイル */
.info-thumbnail {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background-color: #ECEEEF;
	border: 1px solid #DADEE0;
}
.info-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* カードテキストエリア */
.info-content {
	display: grid;
	gap: 8px;
}

/* カードタイトル */
.info-title {
	color: #1C56B9;
	font-size: 15px;
	line-height: 1.6;
	font-weight: bold;
}

/* カード説明文 */
.info-text {
	font-size: 12px;
	line-height: 1.6;
}