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


/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}



/*============================
追加CSS
============================*/
/*動画プレーヤーの幅*/
/*Responsive - 横1023px以下*/@media only screen and (max-width: 1023px) {
.modaal-video-wrap {
    margin: auto 10px !important;
}
	}
/*Responsive - 横1024px以上*/@media only screen and (min-width: 1024px) {
.modaal-video-wrap {
}
	}

/*動画プレーヤーの背景*/
.modaal-overlay {
	background:#000 !important;
	opacity: 0.85 !important;
}
