/* ページタイトル */
.cmn_title {
	background: url("../../common/page/img/title/information.webp") no-repeat center center;
	background-size: cover;
}

.information_containar {
	max-width: 850px;
	width: 90%;
	margin: 50px auto;
}
.information_title {
	width: 100%;
	height: 80px;
}
.information_button {
	width: 100%;
	height: 100%;
	padding: 0 30px;
	border: 2px solid var(--main-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--main-color);
}
.information_contents {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: all .5s;
}
.information_contents[aria-hidden="false"] {
	max-height: 100%;
	overflow: visible;
}
.information_item {
	width: 100%;
	padding: 20px 5%;
	display: flex;
	gap: 0.5em 30px;
	border-top: 1px solid #000;
	&:first-child {
		margin-top: 30px;
	}
	&:last-child {
		border-bottom: 1px solid #000;
	}
	
	time {
		white-space: nowrap;
	}
	
	h3 {
		font-weight: normal;
		font-size: 100%;
		line-height: 1.8;
	}
	
	a {
		color: #000;
		text-decoration: underline;
	}
	
	a:hover {
		text-decoration: none;
	}
}
.information_button--mark {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	background: var(--main-color);
}

@media screen and (max-width: 767px) {
	.information_item {
		flex-wrap: wrap;
		time {
			width: 100%;
		}
	}
}