@charset "UTF-8";

/* ----------------------------------
共通
---------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* ----------------------------------
公開情報ページ専用
---------------------------------- */

.information-page {
	width: 100%;
	background: #fff;
	overflow-x: hidden;
}

.information-section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}

.inner_section {
	margin-bottom: 32px;
}

.sh1 {
	position: relative;
	margin: 0;
	padding-bottom: 14px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #222;
	border-bottom: 1px solid #d9d9d9;
}

.sh1::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 72px;
	height: 3px;
	background: #00479d;
}

/* ----------------------------------
情報ブロック
---------------------------------- */

.information-block {
	width: 100%;
	margin-top: 24px;
}

.information-block:first-of-type {
	margin-top: 0;
}

.information-list {
	width: 100%;
	margin: 0;
	padding: 28px 32px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.information-list dt {
	margin: 0 0 18px;
	padding-left: 14px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.7;
	color: #222;
	border-left: 4px solid #00479d;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.information-list dd {
	position: relative;
	margin: 12px 0 0;
	padding-left: 1.2em;
	font-size: 16px;
	line-height: 1.9;
	color: #444;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.information-list dd:first-of-type {
	margin-top: 0;
}

.information-list dd::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	color: #00479d;
	font-weight: 700;
}

/* ----------------------------------
リンク行
---------------------------------- */

.information-link {
	margin-top: 20px !important;
	padding-left: 0 !important;
}

.information-link::before {
	content: none !important;
}

.information-link a {
	display: inline-block;
	max-width: 100%;
	color: #00479d;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 71, 157, 0.35);
	transition: opacity 0.3s ease, border-color 0.3s ease;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.information-link a:hover {
	opacity: 0.75;
	border-bottom-color: rgba(0, 71, 157, 0.7);
}

/* ----------------------------------
トップ見出しエリア
---------------------------------- */

#topmain {
	width: 100%;
	padding: 48px 20px 36px;
	background: #f7f9fc;
	border-bottom: 1px solid #e5e7eb;
}

.subtitle_box {
	max-width: 1100px;
	margin: 0 auto;
}

.subtitle_name {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.08em;
	color: #222;
	text-align: center;
}

/* ----------------------------------
レスポンシブ
---------------------------------- */

@media screen and (max-width: 959px) {
	.information-section {
		padding: 50px 20px 70px;
	}

	.sh1 {
		font-size: 26px;
	}

	.information-list {
		padding: 24px;
	}

	.information-list dt {
		font-size: 18px;
	}

	.subtitle_name {
		font-size: 30px;
	}
}

@media screen and (max-width: 767px) {
	#topmain {
		padding: 36px 16px 28px;
	}

	.subtitle_name {
		font-size: 26px;
		text-align: left;
	}

	.information-section {
		padding: 40px 16px 56px;
	}

	.inner_section {
		margin-bottom: 24px;
	}

	.sh1 {
		padding-bottom: 12px;
		font-size: 22px;
		line-height: 1.5;
	}

	.sh1::after {
		width: 56px;
		height: 2px;
	}

	.information-block {
		margin-top: 16px;
	}

	.information-list {
		padding: 18px 16px;
		border-radius: 10px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	}

	.information-list dt {
		margin-bottom: 12px;
		padding-left: 10px;
		font-size: 17px;
		line-height: 1.6;
	}

	.information-list dd {
		margin-top: 10px;
		font-size: 15px;
		line-height: 1.8;
	}

	.information-link {
		margin-top: 16px !important;
	}
}