
@charset "UTF-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900');

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    font-size: 15px;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    font-weight: 200;
}
img {
    width: 100%;
    display: block;
}
body {
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 200;
    line-height: 2em;
    margin: 0 auto;
    position: relative;
    background: url(../images/bg.jpg);
}
p {
    text-align: justify;
}

/*====================================

    loader

====================================*/ 

#loading-image {
    z-index: 999999;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: table;
}
#loading-image span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-image: url('../images/loading.svg');
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center center;
}
#loading-image span {
    animation: anime3 0.2s alternate infinite;
}

@keyframes anime3{
    0% {transform: translateY(0px);}
    100% {transform: translateY(-10px);}
}

/*====================================

    btn

====================================*/ 

.btn {
    width: 100%;
    text-align: center
}
.btn a {
    text-decoration: none;
    background: #0097e0;
    border: 2px solid #0097e0;
    display: inline-block;
    padding: .8em 3em;
    color: #fff;
    font-weight: 400;
}

/*====================================

    #body

====================================*/ 

#body {
    padding: 20px 20px 0 20px;
    margin-bottom: 40px;
    overflow: hidden;
}
#body .body_inner {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    display: block;
    box-shadow: 0px 3px 10px rgba(0,0,0,.8)
    -webkit-filter: drop-shadow(0px 3px 10px rgba(0,0,0,.8));
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,.8));
}


/*====================================

    #footer

====================================*/ 

#footer {
    background: #fff;
    position: relative;
}
#footer a {
    width: 60px;
    height: 42px;
    background: url(../images/page_top_hover.png) no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    top: -30px;
    right: 20px;
}
#footer p {
    font-size: 90%;
    color: #0097e0;
    width: 100%;
    text-align: center;
    padding: .8em;
    font-weight: 400;
}

/*====================================

    fadein

====================================*/ 

.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
}

/* =======================================

    cf

======================================= */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}

