@charset "UTF-8" ;

/********************************************************************************

	SYNCER 〜 知識、感動をみんなと同期(Sync)するブログ

	* 配布場所
	https://syncer.jp/jquery-modal-window

	* 最終更新日時
	2015/08/17 15:37

	* 作者
	あらゆ

	** 連絡先
	Twitter: https://twitter.com/arayutw
	Facebook: https://www.facebook.com/arayutw
	Google+: https://plus.google.com/114918692417332410369/
	E-mail: info@syncer.jp

	※ バグ、不具合の報告、提案、ご要望など、お待ちしております。
	※ 申し訳ありませんが、ご利用者様、個々の環境における問題はサポートしていません。

********************************************************************************/


@charset "UTF-8";

#modal-content {
	width: 88%;
	max-width: 1000px ;
	margin: 0 ;
	padding: 5px;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 9999999 ;
	border-radius: 10px;
}
  
#modal-overlay {
	z-index: 9999998 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
}

.button-link {
	color: #00f ;
	text-decoration: underline ;
}
 
.button-link:hover {
	cursor: pointer ;
	color: #f00 ;
}

#modal-closeBox {
	position: absolute;
	top: -15px;
	right: -15px;
	
	text-indent: 99999px;
	overflow: hidden;
}
#modal-close {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background: #fff url(../img/btnClose.png) no-repeat center center;
	border: #fff solid 2px;
	text-indent: 99999px;
	overflow: hidden;
	color: #fff;
}



#popupanime {
	position: relative;
	width: 582px;
	margin: auto;
	height: 0;
	padding-top: 630px;
	overflow: hidden;
}
@media screen and (max-width: 750px) { /*以下の時*/
#popupanime {
	width: 100%;
	padding-top: 108%;
}
}


#popupanime img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: pop-anime1 0.6s ease 1 forwards ;
}


#popupanime img#pop-bg {
	animation-delay: 0s;
}
#popupanime img#pop-yougo {
	animation-delay: .2s;
}
#popupanime img#pop-geed {
	animation-delay: .4s;
}
#popupanime img#pop-logo {
	animation-delay: .6s;
}
#popupanime img#pop-catch1 {
	animation-delay: .7s;
}
#popupanime img#pop-catch2 {
	animation-delay: 1.8s;
}



@-moz-keyframes pop-anime1 {
0% { opacity: 0;}
100% { opacity: 1;}
}

@-webkit-keyframes pop-anime1 {
0% { opacity: 0;}
100% { opacity: 1;}
}

@-o-keyframes pop-anime1 {
0% { opacity: 0;}
100% { opacity: 1;}
}

@-ms-keyframes pop-anime1 {
0% { opacity: 0;}
100% { opacity: 1;}
}
