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

/* 共通
------------------------------------------ */
/* 改行設定（スマホだけ・PCだけ） */
br.is_SP{
	display: none;
}
br.is_PC{
	display: inline;
}
@media screen and (max-width: 750px) {
/* 改行設定（スマホだけ・PCだけ） */
br.is_SP{
	display: inline;
}
br.is_PC{
	display: none;
}
}

/* モーダル内をスクロール可能にする
------------------------------------------ */
.madrigalFeatureModalArea{
	height: 100%;/*要素の高さを指定*/
	overflow-y: scroll;/*上下方向にはみ出した要素ををスクロールさせる*/
}

/* モーダル内のスクロールバー非表示（各ブラウザ）
------------------------------------------ */
.madrigalFeatureModalArea{
	/*スクロールバー非表示（IE・Edge）*/
	-ms-overflow-style: none;
	/*スクロールバー非表示（Firefox）*/
	scrollbar-width: none;
}
/*スクロールバー非表示（Chrome・Safari）*/
.madrigalFeatureModalArea::-webkit-scrollbar{
  display:none;
}

/*  右固定タブ モーダル部分（コーディネートライブラリー）
------------------------------------------ */
.coordinateLibrarymodalArea{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 3;
}
.coordinateLibrarymodalInner{
	width: 100%;
	max-width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
.coordinateLibrarymodalArea p.title{
	color: rgba(255,255,255,0.6);
	margin-bottom: 35px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.8;
}
.coordinateLibrarymodalArea ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.5em;
}
.coordinateLibrarymodalArea ul li{
	text-align: center;
	width: calc((100% - 3em) / 3);
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.coordinateLibrarymodalArea 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;
	transition: 0.2s;
}
.coordinateLibrarymodalArea ul li a:hover{
	color: rgba(255,255,255,0.4);
	border: 1px solid rgba(255,255,255,0.4);
}
.coordinateLibrarymodalArea ul li:nth-of-type(3n){
	margin-right: 0;
}
.coordinateLibrarymodalArea ul.other_scene li{
	width: 100%;
	margin-right: 0;
	margin-bottom: 1em;
}
.coordinateLibrarymodalArea ul.other_scene li:last-of-type{
	margin-bottom: 0;
}
/* closeボタン（バツ印） */
.coordinateLibrarymodalArea button span {
	content: '';
	display: block;
	height: 1px;
	width: 20px;
	background: rgba(255,255,255,1.00);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
.coordinateLibrarymodalArea button span::before, .coordinateLibrarymodalArea button span::after {
	content: '';
	display: block;
	height: 1px;
	width: 20px;
	background: rgba(255,255,255,1.00);
	position: absolute;
}
.coordinateLibrarymodalArea button.close{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
}
.coordinateLibrarymodalArea button.close span{
	background: rgba(255,255,255,0);
}
.coordinateLibrarymodalArea button.close span::before {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}
.coordinateLibrarymodalArea button.close span::after {
	top: 50%;
	transform: rotate(-45deg) translatey(-50%);
}
/* 閉じる */
.coordinateLibrarymodalArea .close-text{
	text-align: center;
}
.coordinateLibrarymodalArea .close-text span{
	display: inline-block;
	color: rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	font-size: 1.3rem;
	padding: 10px 20px;
	transition: 0.2s;
}
.coordinateLibrarymodalArea .close-text span:hover{
	cursor: pointer;
	background: rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media screen and (max-width: 750px) {
.coordinateLibrarymodalInner{
	width: calc(100% - 45px * 2);
}
.coordinateLibrarymodalArea p.title{
	margin-bottom: 20px;
	font-size: 1.3rem;
}
.coordinateLibrarymodalArea ul{
	margin-bottom: 1em;
}
.coordinateLibrarymodalArea ul li{
	width: calc((100% - 2em) / 3);
	margin-right: 1em;
	margin-bottom: 1em;
}
.coordinateLibrarymodalArea ul li a{
	font-size: 1.3rem;
}
}

