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

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

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


#modal-content{
	font-size:1.2rem;
	text-align: center;
	margin: 0 0 10px 0;
    background: rgb(255, 246, 168);
	display: flex;
}


