@charset "utf-8";

/* SPモーダル */
.areaModal {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
}

.areaModal.isShow {
	visibility: visible;
	opacity: 1;
	z-index: 10;
	background-color: rgba(0,0,0,0.7);
}

.areaModalContent {
	width: 90%;
	margin: 0 auto;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.areaModalHeader {
	margin-top: 20px;
	border-radius: 8px 8px 0 0;
	background-color: #EEEEEE;
	width: 100%;
}


.areaModalClose {
	display: block;
	text-align: right;
	padding: 5px;
	height: 40px;
	border-bottom: solid 1px #BFB9B0;
	box-sizing: border-box;
	position: relative;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.areaModalClose:before,
.areaModalClose:after {
	background-color: #666666;
    border-radius: 3px;
    content: "";
    display: inline-block;
    height: 20px;
	position: absolute;
    right: 18px;
	width: 2px;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
}
.areaModalClose:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.areaModalClose:after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.areaModalArea {
	overflow: auto;
}

.areaModalList {
	font-size: 14px;
	height: 100%;
	overflow-y: auto;
	margin-bottom: 30px;
	background: #FFFFFF;
	border-radius: 0 0 8px 8px;
}

.areaModalList > li {
	border-bottom: solid 1px #BFB9B0;
}

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

.areaModalList > li > a {
	display: block;
	color: #666; 
	font-weight: bold;
	padding: 15px 30px 15px 10px;
	text-decoration: none;
}

.areaModalList > li > a:active {
	text-decoration: none;
}

.areaModalList > li > a.isSelected {
	display: block;
	color: #FFFFFF; 
	background-color: #F58595;
	position: relative;
}

.areaModalList > li > a.isSelected:after {
	content: '';
	display: block;
	position: absolute;
	top: 48%;
	right: 8px;
	width: 15px;
	height: 6px;
	border-left: 3px solid #FFFFFF;
	border-bottom: 3px solid #FFFFFF;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
}

body.isFixed {
	width: 100%;
	position: fixed;
	height: 100%;;
}
