@charset "utf-8";
/* CSS Document */

/* ===============================================
 accordion（アコーディオン）　
=============================================== */

.accordion {
	position: relative;
}
/* moreBtn（ボタンデザイン）------------------*/
.moreBtn {
	width: 80%;
	margin: 0 auto;
	box-sizing: border-box;
	background-color: #000;
	cursor: pointer;
}
.moreBtn p {
	font-size: 1.5rem;
	color: #FFF;
	font-weight: bold;
	line-height: 2.3em;
	text-align: center;
}
.moreBtn a {
	font-size: 1.5rem;
	color: #FFF;
	font-weight: bold;
	line-height: 2.3em;
	text-align: center;
	display: block;
}
#moreList .moreBtn {
	background-image: url("/cmn/img/kanto/icon/instruction/arrow_down_white001.png");
	background-repeat: no-repeat;
	background-size: auto 10px;
	background-position: 95% 50%;
	position: absolute;
	left: 10%;
	bottom: 24px;
}
.moreBtn.closeBtn {
	margin-top: 7%;
}
/* moreListSec（非表示部分）------------------*/
#moreListSec {
	display: none;
}
#moreList {
	display: block;
}
#moreList .moreBox {
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255,255,255,0)), color-stop(0.8, white));
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0, white 80%);
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
}
#moreList.open {
	display: none;
}