/* --------------------------------------------------
▼informations_common
-------------------------------------------------- */
.informationsTtl {
	background: #a40000;
	background: -webkit-linear-gradient(top, #a32900 0%, #a32900 50%, #a40000 51%, #a40000 100%);
	background: linear-gradient(to bottom, #a32900 0%, #a32900 50%, #a40000 51%, #a40000 100%);
	color: #fff;
	font-size: 1.4rem;
	font-weight: normal;
	padding: 6px 2px;
	text-align: center;
}

.informations_title {
	background: #ffc700;
	color: #1d0303;
	font-size: 1.4rem;
	font-weight: normal;
	padding: 6px 2px;
	text-align: center;
}

.informations_footer {
	background: #00bb65;
	color: #ffffff;
	font-size: 1.2rem;
	padding: 6px 2px;
	text-align: center;
}

.concept_body {
	background: #231816;
}

/* --------------------------------------------------
▼informations_menu
-------------------------------------------------- */
.informations_menu_title {
	color: #ffffff;
	font-size: 1.6rem;
	text-align: center;
	background: linear-gradient(to top,
			#5f3921 0%,
			#5f3921 50%,
			#774627 50%,
			#774627 100%);
	padding: 8px;
	position: relative;
}

.informations_box {
	background: #ffffff;
}

.informations_list {
	width: 100%;
}

.informations_list li {
	border-bottom: 1px solid#c8c8c8;
}

.informations_list li:last-child {
	border-bottom: none;
}

.informations_list li a {
	display: block;
	text-decoration: none;
	font-size: 1.4rem;
	width: 100%;
	color: #111111;
	padding: 10px 20px 10px 20px;
	box-sizing: border-box;
	background: #ffffff url("../../img/sp/info_icon.png") right 10px center no-repeat;
	background-size: 25px 25px;
}

.informations_list li a:active,
.informations_list li a:hover,
.informations_list li a:link,
.informations_list li a:visited {
	color: #7e7e7e;
}

.batsu_box {
	position: absolute;
	right: 5%;
}

.batsu {
	display: inline-block;
	width: 15px;
	/*枠の大きさ*/
	height: 15px;
	/*枠の大きさ*/
	background: #000;
	position: relative;
	right: -35%;
}

.batsu::before,
.batsu::after {
	content: "";
	display: block;
	width: 100%;
	/*バツ線の長さ*/
	height: 2px;
	/*バツ線の太さ*/
	background: #fff;
	transform: rotate(45deg);
	transform-origin: 0% 50%;
	position: absolute;
	top: calc(40% - 5px);
	left: 14%;
}

.batsu::after {
	transform: rotate(-45deg);
	transform-origin: 100% 50%;
	left: auto;
	right: 14%;
}