@charset "UTF-8";

/* ===================================================================
  重要なお知らせ専用CSS
=================================================================== */
#contents.infomation {
	width: 100%;
	padding: 0 60px;
}
.infomation {
	opacity: 0;
	-webkit-transition: all 2.0s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 2.0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.infomation.visible {
	opacity: 1;
}
.infomation_title {
	font-family: var(--font-family-en);
	font-size: 20px;
	font-weight: var(--font-weight-en-light);
	letter-spacing: .15em;
	margin-bottom: 30px;
	padding: 15px 0 25px;
}
.infomation_content {
	width: 640px;
	margin: 0 auto 120px;
}

/* 一覧 */
.infomation_list{}
.infomation_item {
	margin-bottom: 60px;
	position: relative;
}
.infomation_item:before {
	content: "";
	display: block;
	background-color: #000;
	height: 1px;
	width: 10px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateY(-50%);
}
.infomation_item:after {
	content: "";
	display: block;
	background-color: #000;
	height: 1px;
	width: 10px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateY(-50%);
}
.infomation_info {
	padding: 30px 0;
}
.infomation_date {
	display: block;
	font-size: 10px;
	text-align: center;
	margin-bottom: 10px;
}
.infomation_heading {
	font-size: 12px;
	text-align: center;
	margin-bottom: 20px;
}
.infomation_description {}
.infomation_description * {
	font-size: 10px !important;
	text-align: center;
	line-height: 1.8 !important;
}
.infomation_description + .infomation_photo {
	margin-top: 30PX;
}
.infomation_photo {
	text-align: center;
}
.infomation_image {
	max-width: 100%;
	height: auto;
}

/* 詳細 */
.infomation_detail {
	position: relative;
}
.infomation_detail_content {}
.infomation_detail_date {
	display: block;
	font-family: var(--font-family-en);
	font-size: 11px;
	font-weight: var(--font-weight-en-light);
	letter-spacing: .15em;
	line-height: 1;
	margin-bottom: 30px;
}
.infomation_detail_title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 45px;
}
.infomation_detail_description {
	font-size: 14px !important;
	line-height: 2 !important;
}
.infomation_detail_description * {
	font-size: 14px !important;
	line-height: 2 !important;
}
.infomation_detail_description + .infomation_detail_photo {
	margin-top: 30px;
}
.infomation_detail_photo {
	text-align: center;
}
.infomation_detail_image {
	max-width: 100%;
	height: auto;
}

