@charset "utf-8";

/* インフォメーション
======================================== */

/* 一覧ページ
------------------------------------------------- */
.information ul.infoA {
	border-top: 1px solid #ddd;
	margin: 130px 0 140px;
}
.information ul.infoA li a {
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
	text-decoration: none;
	transition: all 0.3s;
}
.information ul.infoA li a:hover {
	opacity: 0.5;
}
/* 日付 */
.information ul.infoA li span.date {
	display: inline-block;
	min-width: 8em;
	font-family: "Outfit", sans-serif;
}
/* テキスト */
.information ul.infoA li span.txt {
	display: inline-block;
	margin-top: 0;
}
@media screen and (max-width:768px) {
	.information .visual h1 span:last-child {
		font-size: clamp(4.2rem, 10vw, 5.6rem);
	}
	.information ul.infoA {
		margin: 60px 0 80px;
	}
	.information ul.infoA li a {
		flex-wrap: wrap;
		padding: 16px 0;
	}
	/* 日付 */
	.information ul.infoA li span.date {
		flex-basis: 7.5em;
		min-width: 7.5em;
	}
	/* テキスト */
	.information ul.infoA li span.txt {
		flex-basis: 100%;
	}
}

/* 詳細ページ
------------------------------------------------- */
/* タイトル */
.information .ttl {
	border-bottom: solid 1px #ddd;
	padding: 80px 0 40px;
	margin-bottom: 60px;
}
.information .ttl .date {
	font-family: "Outfit", sans-serif;
	margin-bottom: 5px;
}
.information .ttl h2 {
	font-size: 4rem;
	line-height: 1.5;
	margin: 0!important;
}
@media screen and (max-width:768px) {
	.information .ttl {
		padding: 50px 0 25px;
		margin-bottom: 30px;
	}
	.information .ttl .date {
		margin-bottom: 5px;
	}
	.information .ttl h2 {
		font-size: 2.6rem;
	}
}

/* 見出し */
.information .content h3,
.information .content h4 {
	margin: 50px 0 20px;
}

/* テキスト */
.information .content p {
	margin-bottom: 1.5em;
}

/* テキストリンク */
.information .content a {
	text-decoration: underline;
}
.information .content a:hover {
	text-decoration: none;
}

/* リスト */
.information .content ul {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}

/* 数字付きリスト */
.information .content ol {
	list-style-type: decimal;
	margin: 1em 0 0 10px;
	padding-left: 0.8em;
}
@media screen and (max-width:1024px) {
	.information .content ol {
		padding-left: 0.4em;
	}
}

/* 画像 */
.information figure {
	margin: 50px auto;
	text-align: center;
}
.information figure img {
	width: auto;
	max-width: 100%;
}
@media screen and (max-width:768px) {
	.information figure {
		margin: 30px auto;
	}
}

/* 表 */
.information table {
	width: auto;
	border: 1px solid #ccc;
	margin-top: 1em;
	text-align: left;
}
.information table th, .information table td {
	border: 1px solid #ccc;
	padding: 1em 1.5em;
	display: table-cell;
}
@media screen and (max-width:1024px) {
	.information table {
		width: 100%;
	}
	.information table th, .information table td {
		padding: 1em;
	}
}

/* ボタン */
.information .btn {
	text-align: center;
	border-top: solid 1px #ddd;
	padding: 60px 0 140px;
	margin-top: 100px;
}
@media screen and (max-width:768px) {
	.information .btn {
		padding: 30px 0 70px;
		margin-top: 40px;
	}
}

