@charset "utf-8";

/* RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: bottom;
list-style: none;
}

a.alpha {
	transition: 0.3s;
}

a.alpha:hover {
	opacity: 0.7;
}

a {
	overflow:hidden;
    outline: none;
}
/* area点線消し */

area {
	border:none;
	outline:none;
}
area:active{outline:none;}

a:focus{
outline: none;
}

body {
	background-color: #fff;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* ヘッダー関係 */

.header
{
	position: absolute;
	margin: 0 auto;
	height: 156px;
	width: 100%;
	background: url(../images/wg_top.png);
	background-repeat: repeat-x;
	background-position: top;
	z-index: 5001;
	min-width: 1400px;
}

#menu{
	border: 0px;
	width: 1210px;
	height: 108px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	vertical-align: bottom;
	list-style-type: none;
} 

li {
	display:inline;
}
 
.headerbutton{
	height: 88px;
	width: 88;
	padding: 0px 2px;
	border: 0px;
}

.mark_new{
	position: absolute;
	border: 0px;
	margin-left: 16px;
	margin-top: 100px;
}

/* フッター関係 */
/*#footerContainer {
	position: relative;
	left: 0px;
	bottom: 0px;
	height: 90px;
	width: 100%;
	text-align: center;
	background: #31b1ff;
	border-top: 3px solid #FFFFFF;
	behavior: url(../css/PIE.htc);
	z-index: 5000;
	min-width: 1400px;
	padding-top: 5px;
}*/

#footerContainer {
	position: relative;
	left: 0px;
	bottom: 0px;
	height: 100%;
	height: auto !important;
	width: 100%;
	text-align: center;
	background: #31b1ff;
	border-top: 3px solid #FFFFFF;
	behavior: url(../css/PIE.htc);
	z-index: 5000;
	min-width: 1400px;
	min-height: 100%;
	padding-top: 5px;
}

#fnavi {
	width: 900px;
	margin: 0 auto;
	font-size: medium;
}

#fnavi a.flink {
	font-family: 'Open Sans', sans-serif;	/*Googlefont*/
	color: #FFFFFF;
	font-size: 14px;
	text-decoration: none;
}

#fnavi a.flink:hover {
	text-decoration: underline;
	color: #FFFFFF;
}
#fnavi a.flink:focus {
	text-decoration: underline;
	color: #FFFFFF;
}

img.flogo{
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 2px;
}

#fnavi li {
	display: inline;
	padding-left: 10px;
	padding-right: 5px;
	border-left: 1px solid #FFFFFF;
	height: auto;
}
#fnavi li.first {
	border-left: none;
	font-style: inherit;
}

#copyright{
	font-family: 'Open Sans', sans-serif;	/*Googlefont*/
	color: #fff;
	font-size: 11px;
	min-width: 300px;
	padding-top: 4px;
}


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

#page-top {
    position:fixed;
    width:238px;
    height:238px;
	bottom: 20px;
    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:238px;
    height:238px;
    animation:updown 2s ease infinite;
    -moz-animation:updown 2s ease infinite;
    -webkit-animation:updown 2s ease infinite;
}

.pu_in, .pu_out {
    position: absolute;
    transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
}

.pu_in {
	animation: spinin 5s linear infinite;
-moz-animation: spinin 5s linear infinite;
-webkit-animation: spinin 5s linear infinite;
}

.pu_out {
	animation: spinout 10s linear infinite;
-moz-animation: spinout 10s linear infinite;
-webkit-animation: spinout 10s linear infinite;
}

/*----------------------------------
テキストＣＳＳ
----------------------------------*/
.red{
	color: #FF696C;
	text-decoration: underline
	}

.blue{
	color: #80E0FF
	}
	
.pink{
	color: #FF9ED1
	}


.yellow{
	color: #FFF96D
	}


@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;
    }
}
