@charset "utf-8";
/* 
Eric Meyer's CSS Reset
http://meyerweb.com/eric/tools/css/reset/
v1.0 | 20080212
CSSresetr.com
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
	background-image: url("../images/bg02.jpg") ;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	z-index: 1;
}

a {
text-decoration: none;
	color: #E8185F;
}

.news_bar{
	text-align: center;
	width: auto;
	height: 20px;
}

.news_bar h1 {
    background-color: rgba(255,195,233,0.50);
	color:deeppink;
	font-size: 13px;
	text-shadow: white 1px 1px 0;
}

.Header {
	position: absolute;
	background-image: url(../images/bar_mahoujin_top.png);
	background-repeat: repeat-x;
	width: 100%;
	min-width: 1403px;
	min-height: 401px;
	z-index: 2;
}

.HeaderMain {
	width:1403px;
	min-width: 1403px;
	margin:0 auto;
	text-align:left;
	padding-left:50px;
}


/*	グローバルナビ	*/
.GlobalNavi {
	display: inline-block;
	vertical-align: top;
	width: auto;
	margin-top: 23px;
	z-index: 100;
}

.GlobalNaviMain {
	height: auto;
	text-align: left;
	margin-left: 10px;
}

.GlobalNaviMain li{
	display: inline-block;
	position: relative;
}

.up_top{
	position: absolute;
	top: -10px;
	right: 20px;
	z-index: 200;
	}

.up_bottom{
	position: absolute;
	top: 35px;
	left: 40px;
	z-index: 200;
	}

/*	フッタ	*/
.Footer {
	background-image: url(../images/bg_underline.png);
	background-repeat: repeat-x;
	width: 100%;
	min-width: auto;
}

.FooterMain {
	margin: 0 auto;
	text-align: center;
	width: auto;
	height:239px;
}

.FooterLogo{
	margin-top: 55px;
}

/*トップへ戻るボタン*/

#page-top {
	
    position:fixed;
    width:293px;
    height:222px;
	bottom: 30px;
	right: -20px;
	transition:right 0.3s ease;
    -moz-transition:right 0.3s ease;
    -webkit-transition:right 0.3s ease;
    z-index:10000;
}

.pu_main{
	position:absolute;
    width:293px;
    height:214px;
	right: 30px;
    animation:updown 2s ease infinite;
    -moz-animation:updown 2s ease infinite;
    -webkit-animation:updown 2s ease infinite;
}

.pu_out {
	position: absolute;
	transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
	animation: spinout 10s linear infinite;
	-moz-animation: spinout 10s linear infinite;
	-webkit-animation: spinout 10s linear infinite;
}

@keyframes spinout {
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(-360deg);
    }
}
@-moz-keyframes spinout {
    0%{
        -moz-transform:rotate(0deg);
    }
    100%{
        -moz-transform:rotate(-360deg);
    }
}
@-webkit-keyframes spinout {
    0%{
        -webkit-transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(-360deg);
    }
}


@keyframes spinin {
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
}
@-moz-keyframes spinin {
    0%{
        -moz-transform:rotate(0deg);
    }
    100%{
        -moz-transform:rotate(360deg);
    }
}
@-webkit-keyframes spinin {
    0%{
        -webkit-transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
    }
}

@keyframes updown{
    0%{
        top:0px;
    }
    50%{
        top:5px;
    }
    100%{
        top:0px;
    }
}
@-moz-keyframes updown{
    0%{
        top:0px;
    }
    50%{
        top:5px;
    }
    100%{
        top:0px;
    }
}
@-webkit-keyframes updown{
    0%{
        top:0px;
    }
    50%{
        top:5px;
    }
    100%{
        top:0px;
    }
}

/* ふわふわアニメーションの設定 */
.fuwafuwa {
	-webkit-animation-name:fuwafuwa;
	-webkit-animation-duration:2s;
	-webkit-animation-iteration-count:infinite;
	/*-webkit-animation-direction:alternate;*/
	-webkit-animation-timing-function:ease;
	
	-moz-animation-name:fuwafuwa;
	-moz-animation-duration:2s;
	-moz-animation-iteration-count:infinite;
	/*-moz-animation-direction:alternate;*/
	-moz-animation-timing-function:ease;
}

@-webkit-keyframes fuwafuwa {
	0% {-webkit-transform:translate(0, 0);}
	50% {-webkit-transform:translate(0, -10px);}
	100% {-webkit-transform:translate(0, 0);}
}
@-moz-keyframes fuwafuwa {
	0% {-moz-transform:translate(0, 0);}
	50% {-moz-transform:translate(0, -10px);}
	100% {-moz-transform:translate(0, 0);}
}

