@charset "utf-8";
/* CSS Document */

/*  モーダル部分
------------------------------------------ */
.coordinateLibrarymodalArea{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 1;
}
.coordinateLibrarymodalInner{
	max-width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
.coordinateLibrarymodalInner p.title{
	color: rgba(255,255,255,0.6);
	margin-bottom: 35px;
	text-align: center;
	font-size: 1.6rem;
}
.coordinateLibrarymodalInner ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.5em;
}
.coordinateLibrarymodalInner ul.other_scene{
	display: none;
}
.coordinateLibrarymodalInner ul li{
	text-align: center;
	width: calc((100% - 3em) / 3);
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.coordinateLibrarymodalInner ul li a{
	display: block;
	width: 100%;
	text-decoration: none;
	color: rgba(255,255,255,0.6);
	border: 1px solid rgba(255,255,255,0.6);
	padding: 10px;
	font-size: 1.6rem;
}
.coordinateLibrarymodalInner ul li:nth-of-type(3n){
	margin-right: 0;
}
.coordinateLibrarymodalInner ul.other_scene li{
	width: 100%;
	margin-right: 0;
	margin-bottom: 1em;
}
.coordinateLibrarymodalInner ul.other_scene li:last-of-type{
	margin-bottom: 0;
}
@media screen and (min-width: 750px) {
.coordinateLibrarymodalInner ul li a:hover{
	color: rgba(255,255,255,0.4);
	border: 1px solid rgba(255,255,255,0.4);
}
}
@media screen and (max-width: 750px) {
.coordinateLibrarymodalInner{
	width: calc(100% - 45px * 2);
}
.coordinateLibrarymodalInner p.title{
	margin-bottom: 20px;
	font-size: 1.3rem;
}
.coordinateLibrarymodalInner ul{
	margin-bottom: 1em;
}
.coordinateLibrarymodalInner ul li{
	width: calc((100% - 2em) / 3);
	margin-right: 1em;
	margin-bottom: 1em;
}
.coordinateLibrarymodalInner ul li a{
	font-size: 1.3rem;
}
}

/* モーダル内をスクロール可能にする
------------------------------------------ */
.coordinateLibrarymodalArea{
	height: 100%;/*要素の高さを指定*/
	overflow-y: scroll;/*上下方向にはみ出した要素ををスクロールさせる*/
}

/* モーダル内のスクロールバー非表示（各ブラウザ）
------------------------------------------ */
.coordinateLibrarymodalArea{
	/*スクロールバー非表示（IE・Edge）*/
	-ms-overflow-style: none;
	/*スクロールバー非表示（Firefox）*/
	scrollbar-width: none;
}
/*スクロールバー非表示（Chrome・Safari）*/
.coordinateLibrarymodalArea::-webkit-scrollbar{
  display:none;
}

/* トグル部分
------------------------------------------ */
.tabSet{
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	width: 70px;
}
#toggle:hover{
	cursor: pointer;
}
#toggle.mokuji span{
	display: flex;
	align-items: center;
	writing-mode: vertical-rl;
	width: 100%;
	padding: 30px;
	background: rgba(0,0,0,0.5);
	font-size: 1.6rem;
	color: rgba(255,255,255,0.6);
	letter-spacing: 0.2em;
	text-decoration: none;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
	cursor: pointer;
	margin-bottom: 15px;
}
#toggle.close{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: fixed;
	right:60px;
	top:60px;
	border: 2px solid rgba(255,255,255,0.6);
	z-index: 2;
}
#toggle.close span.hamburgerMenu{
	display: block;
	width: 25px;
	height: 2px;
	background: rgba(0,0,0,0);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
#toggle.close span.hamburgerMenu::before{
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background: rgba(255,255,255,0.6);
	position: absolute;
	top: 50%;
	left: 50%;
	bottom: auto;
	transform: translateY(-50%) translateX(-50%) rotate(45deg);
	-webkit- transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
#toggle.close span.hamburgerMenu::after{
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background: rgba(255,255,255,0.6);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) rotate(135deg);
	-webkit- transform: translateY(-50%) translateX(-50%) rotate(135deg);
}
@media screen and (max-width: 750px) {
.tabSet{
	width: 40px;
}
#toggle.close{
	right: 15px;
	top: 15px;
	width: 50px;
	height: 50px;
}
#toggle.mokuji span{
	padding: 15px;
	font-size: 1.2rem;
}
}

/* 他の「SCENE」
------------------------------------------ */
#otherScene>a{
	display: flex;
	align-items: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	width: 100%;
	padding: 30px;
	background: rgba(0,0,0,0.5);
	font-size: 1.6rem;
	color: rgba(255,255,255,0.6);
	letter-spacing: 0.2em;
	text-decoration: none;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
	cursor: pointer;
	margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
#otherScene>a{
	padding: 15px;
	font-size: 1.2rem;
}
}
