@charset "utf-8";
/* CSS Document */






#global{
	position: fixed;
	right: 1rem;
	top: 0;
	width: 300px;
	/* font-size: 1.3rem; */
	font-size: 15px;
	font-weight: bold;
	transition: 1s;
	z-index: 5;
	
	pointer-events: none;
	
	box-sizing: border-box;
}

#global.init{
}
#global .btn{
	position: relative;
	float: right;
	display: block;
	margin-bottom: 0.75rem;
	padding: 1rem 1.5rem;
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	cursor: pointer;
	border-radius:  0 0 0.5rem 0.5rem;
	
	pointer-events: all;
}
#global .btn:before{
	/* content: ""; */
	margin: -3% 0.25em 0 0;
	width: 1.5rem;
	height: 1.5rem;
	background-size:100% 100%; 
}
#global .btn:before,
#global .btn span{
	display: inline-block;
	vertical-align: middle;
}


#global .btn:after{
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border: 1px solid #fff;
	border-top: none;
	border-left: none;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	-webkit- transform: translateX(-50%)  rotate(45deg);
	transition: 0.5s;
}
#global .btn.active:after{
	bottom: 0;
	transform: translateX(-50%) rotate(225deg);
	-webkit- transform: translateX(-50%)  rotate(225deg);
}

#global ul{
	clear: both;
	position: relative;
	opacity: 0;
	right: -200%;
	
	padding: 0;
	
	transition: 0.5s;
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 0 1rem rgba(0,0,0,0.3);
	
	pointer-events: all;
}
#global ul.active{
	opacity: 1;
	right: 0;
}

#global ul li{
	position: relative;
	display: block;
	padding: 1rem 2rem;
	border-top: 1px solid #ddd;
	cursor: pointer
}
#global ul li:hover{
	background-color: rgba(255,255,0,0.15);
}
#global ul li:first-of-type{
	border-top: none;
}

#global ul li a.active:before,
#global ul li span.active:before{
	position: absolute;
	content:"●";
	left: -0.5em;
}

@media screen and (max-width: 960px) {
	#global{
		margin-top: 2%;
		/* font-size: 1.8rem; */
		
		width: 35%;
	}
	#global.open{
		right: 37%;
	}
	
	#global .btn{
		padding:0.5rem 0.75rem; 
		border-radius:  0.75rem;
	}
}
@media screen and (max-width: 768px) {
	#global{
		margin-top: 80px;
		width: 50%;
		font-size: 3vw;
	}
	#global .btn{
		border-radius:  3px;
	}
}







/* 追加 */




.drawer-nav{
	z-index: 10;
}

.attention-list,
.faq-list{
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.attention-list{
		padding-top: 4%;
		padding-bottom: 4%;
	}
}








