/* CSS Document */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-all;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
a {
    color: #7db9e7;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:hover img {
    text-decoration: none;
    opacity: 0.8;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
img, video, object {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: bottom;
    display: block;
}
#backToTop {
    position: fixed;
    z-index: 9999;
    bottom: 25px;
    right: 25px;
}
#backToTop a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    background-color: #47c79d;
}
/*--------------------------------
　wrapper
---------------------------------*/
.wrapper {
    height: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 100px;
    box-sizing: border-box;
}
/*--------------------------------
　header
---------------------------------*/
#header {
    background-color: #fff;
    text-align: center;
}
#header .logo {
    width: 80%;
    max-width: 721px;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%); /* Safari用 */
    transform: translate(-50%, -50%);
}
#header .logo img {
    height: auto;
    color: #000;
    text-decoration: none;
}
/*--------------------------------
  Footer
---------------------------------*/
#footer {
    background-color: #fff;
    width: 100%;
    background-color: #0a5faf;
    color: #fff;
    text-align: center;
    padding: 0;
    position: absolute;
    bottom: 0;
}
#footer .inner {
    padding: 20px 10px;
}
#footer .footer-link a {
    color: #fff;
}
#footer .copyright {
    font-size: 12px;
}
#footer .copyright a {
    color: #333;
}
/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
    #header .logo img {
        max-width: 721px;
        height: auto;
        color: #000;
        text-decoration: none;
    }
    ｝