/*-------------------------------------------*/
/*modal サブメニュー用*/
/*-------------------------------------------*/
#modalbgApp {
	background-color:#000;
	filter: alpha(opacity=50);
	-moz-opacity:0.50;
	opacity:0.50;
	position: fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:10001;
	display:none;
}
#modalparentApp {
	position:absolute;
	z-index:10002;
	/*background-color:#fff;*/
	display:none;
}
#modalparentApp #modalApp {
	/*border:1px solid #333;*/
	width:47rem;
	height:auto;
	overflow:hidden;
	background-color:#fff;
	padding:2rem 4rem;
}


#modalparentApp a.close {
	position:absolute;
	/*left:35%;
	left:-webkit-calc(50% - 40px);
	left:calc(50% - 40px);*/
	/*bottom:-60px;*/
	
	right:-40px;
	top:-40px;
	z-index:10005;
}
#modalparentApp a img {
	transition: .3s;
	-webkit-transition: .3s;
}


#modalparentApp a:hover img {
	filter: alpha(opacity=90);
	-moz-opacity:0.90;
	opacity:0.90;
}

#modalparentApp #modalApp h3{
    font-size: 3.2rem;
    margin-bottom: 3rem;
    line-height: 1.4;
	text-align: center;
}
/*
#modalparentApp #modalApp div.flexBox{
	display:flex;
	align-items: center;
	margin-bottom:2rem;
}

#modalparentApp #modalApp div.flexBox p{
	font-size: 1.6rem;
	display:block;
	width:calc(100% - 17rem);
	margin-right:1rem;
	line-height:1.2;
}
#modalparentApp #modalApp div.flexBox .view_more{
	display: block;
	transition: background-color .3s ease-in-out;
	width: 16rem;
	border: 1px solid #e6e6e6;
	color: #333;
	text-decoration: none;
	text-align: center;
	font-size: 1.4rem;
	line-height: 5.4rem;
	transition:0.3s;
}
#modalparentApp #modalApp div.flexBox .view_more:hover{
	background-color: rgba(0,0,0,.04);
}
*/
#modalparentApp #modalApp div.flexBox{
	margin-bottom:2rem;
}
#modalparentApp #modalApp div.flexBox a{
	display:flex;
	align-items: center;
	text-decoration: none;
	color:#333;
	transition:0.3s;
}
#modalparentApp #modalApp div.flexBox a:hover{
	opacity:0.65;
}

#modalparentApp #modalApp div.flexBox a span{
	font-size: 1.8rem;
	display:block;
	/*border: 1px solid #e6e6e6;*/
	width:28.8rem;
	position:relative;
	padding-right: 2em;
}
#modalparentApp #modalApp div.flexBox a span:after {
    content: "";
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    box-sizing: border-box;
    border-top: #333 solid 1px;
    border-right: #333 solid 1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#modalparentApp #modalApp div.flexBox a img{
	display:block;
	border: 1px solid #e6e6e6;
	margin-right:3rem;
}

/*html側のサブメニューの表示off*/
div.applicationchild{
	display:none;
	margin-bottom:2rem;
}

/*===================================================================================================*/
/*タブレット向け*/
/*===================================================================================================*/
@media (min-width:769px) and (max-width:1080px) {
}
/*===================================================================================================*/
/*モバイル向け*/
/*===================================================================================================*/
@media screen and (max-width:768px) {
/*マッピング文字のスタイル*/

	#modalparentApp {
	    position: absolute;
	    /*left:20px;*/
	    width: 100%;
	}

	#modalparentApp #modalApp{
		width:auto;
		padding: 2rem 2rem;
	}
	#modalparentApp a.close {
		right: 10px;
	}
	#modalparentApp #modalApp div.flexBox {
		margin-bottom: 1rem;
	}
	#modalparentApp #modalApp h3 {
		font-size: 2.4rem;
    }
	#modalparentApp #modalApp div.flexBox a span {
		font-size: 1.4rem;
	}

}