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

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

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

/*  右固定タブ モーダル部分
------------------------------------------ */
.madrigalFeatureModalArea{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 11;
}
.madrigalFeatureModalInner{
	width: 100%;
	max-width: 700px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
.madrigalFeatureModalArea .title{
	text-align: center;
	margin-bottom: 4em;
}
.madrigalFeatureModalArea .title span{
	width: 100%;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.4rem;
}
.madrigalFeatureModalArea ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.5em;
}
.madrigalFeatureModalArea ul li{
	text-align: center;
	width: calc((100% - 1.5em * 2) / 3);
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.madrigalFeatureModalArea ul li a{
	display: block;
	width: 100%;
	height: 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.1rem;
}
.madrigalFeatureModalArea ul li a span{
	display: block;
	overflow: hidden;
	text-overflow: ellipsis; 
	white-space: nowrap;
	margin-bottom: 0.5em;
}
.madrigalFeatureModalArea ul li a span:first-child span{
	padding-bottom: 0.5em;
	display: inline-block;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.madrigalFeatureModalArea ul li a span:last-child{
	margin-bottom: 0;
}
.madrigalFeatureModalArea ul li:nth-of-type(3n){
	margin-right: 0;
}
.madrigalFeatureModalArea ul.other_scene li{
	width: 100%;
	margin-right: 0;
	margin-bottom: 1em;
}
.madrigalFeatureModalArea ul.other_scene li:last-of-type{
	margin-bottom: 0;
}
/* closeボタン（バツ印） */
.madrigalFeatureModalArea 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%);
}
.madrigalFeatureModalArea button span::before, .madrigalFeatureModalArea button span::after {
	content: '';
	display: block;
	height: 1px;
	width: 20px;
	background: rgba(255,255,255,1.00);
	position: absolute;
}
.madrigalFeatureModalArea button.close{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
}
.madrigalFeatureModalArea button.close span{
	background: rgba(255,255,255,0);
}
.madrigalFeatureModalArea button.close span::before {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}
.madrigalFeatureModalArea button.close span::after {
	top: 50%;
	transform: rotate(-45deg) translatey(-50%);
}
/* 閉じる */
.madrigalFeatureModalArea .close-text{
	text-align: center;
}
.madrigalFeatureModalArea .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;
}
.madrigalFeatureModalArea .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) {
.madrigalFeatureModalInner{
	width: calc(100% - 20px * 2);
}
.madrigalFeatureModalArea .title{
	margin-bottom: 40px;
}
.madrigalFeatureModalArea .title span{
	font-size: 1.1rem;
}
.madrigalFeatureModalArea ul{
	margin-bottom: 20px;
}
.madrigalFeatureModalArea ul li{
	width: calc((100% - 5px * 1) / 2);
	margin-right: 5px;
	margin-bottom: 5px;
}
.madrigalFeatureModalArea ul li:nth-of-type(3n){
	margin-right: 5px;
}
.madrigalFeatureModalArea ul li:nth-of-type(2n){
	margin-right: 0;
}
.madrigalFeatureModalArea ul li a{
	font-size: 0.9rem;
}
.madrigalFeatureModalArea ul li a:hover{
	color: rgba(255,255,255,0.4);
	border: 1px solid rgba(255,255,255,0.4);
}
/* 閉じる */
.madrigalFeatureModalArea .close-text span{
	font-size: 1.1rem;
}
}