@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&family=Reggae+One&family=RocknRoll+One&family=Yuji+Boku&display=swap');

html {
    font-size: 62.5%; /*基準サイズ10px*/
}

body {
    font-family: 'Noto Sans JP', sans-serif; 
    font-size: 2rem; 
    line-height: 1.6;
    text-align: justify;
    -webkit-text-size-adjust: 100%;
    color: #000000;
    display: flex;
    flex-direction: column;
}

img {
    width: 100%;
    height: auto;
}

h1,h2,h3,h4{
    line-height: 1.3;
}

p{
    margin:0;
}

a {
    text-decoration: none;
}

/*
a:hover {
    opacity:0.6;
    transition: .3s;
}
*/

#content {
    width: 100%;
}

.inner {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

footer{
    text-align: center;
    padding:80px 0 10px;
    background:url(../img/common/footer.png)repeat-x bottom;
    background-size:700px;
}

footer img{
    width:60%;
    max-width:220px;
}

.fadein{
    animation-name:fadeAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    }
    
    @keyframes fadeAnime{
      from {
        opacity: 0;
        transform: translateY(20px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.fade{
    opacity: 0;
}

#page_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width:70px;
    z-index:100;
}

.pc_none {display: none !important;}


@media only screen and (max-width: 767px) {

    html,body {
        overflow-x: hidden;
    }

    body {
        font-size: 1.8rem !important; 
    }

    .inner {
        width: 90%;
    }

    img {
        width: 100%;
        height: auto;
    }


    .pc_none {
        display: block !important;
    }

    .sp_none {
        display: none !important;
    }

    #page_top:hover{
        opacity:1;
    }


}