@charset "utf-8";
#information {
	width: 100%;
	height: auto;
}
	.information__inner {
		width: 90%;
		max-width: 1000px;
		height: auto;
		padding: 50px 0 120px;
		margin: 0 auto;
	}
		.information__list_wrap {
			width: 100%;
			height: auto;
			padding: 10px 0 0;
			margin: 0 auto;
		}
			.information__list {
				width: 100%;
				height: auto;
				margin: 0 auto;
			}
				.information__list__item {
					width: 100%;
					height: auto;
					padding: 20px 0;
					border-bottom: dashed 1px var(--color--lightgray1);
				}
					.information__list__item__date {
						width: 100%;
						height: auto;
						margin: 0 auto 5px;
						font-family: var(--font--roboto);
						font-size: 12px;
						font-weight: 400;
						line-height: calc(14 / 12);
						letter-spacing: 0.05em;
						color: var(--color--gray2);
					}
					.information__list__item__ttl {
						width: 100%;
						height: auto;
						font-size: 14px;
						font-weight: 500;
						line-height: calc(21 / 14);
						letter-spacing: 0.05em;
					}
						.information__list__item__ttl a {
							color: var(--color--black);
						}
					@media (any-hover: hover) {
						.information__list__item__ttl a {
							transition: .4s;
						}
						.information__list__item__ttl a:hover {
							color: var(--color--hover_text);
						}
					}

/* PC ================================================== */
@media all and (min-width: 720px){

}

/* Tablet ================================================== */
@media all and (max-width: 719px){
/* information */
	.information__inner {
		width: calc((400 / 440) * 100%);
		padding: 50px 0 80px;
	}
		.information__list_wrap {
			padding: 0;
		}
}

/* SP ================================================== */
@media all and (max-width: 575px){

}