@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&family=Noto+Sans+JP:wght@500&family=Open+Sans:wght@500&display=swap');

/*

Noto Sans JP : 500
Kiwi Maru : 500
Open Sans : 500

*/

html {
    font-size: 62.5%; /*基準サイズ10px*/
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial,'Noto Sans JP',"Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif; 
    font-size: 1.7rem; 
    line-height: 1.6;
    text-align: justify;
    -webkit-text-size-adjust: 100%;
    color: #000;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

h1,h2,h3,h4{
    font-family: kiwi maru;
    line-height: 1.3;
}

p{
    margin:1.5rem 0;
}

a {
    text-decoration: none;
}

a:hover {
    opacity:0.6;
    transition: .3s;
}

#content {
    width: 100%;
}

.inner {
    width:90%;
    max-width: 950px;
    margin: 0 auto;
}

.pc_none {display: none !important;}

.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;
}

footer{
    background: url(../img/top/bg_07.png) center 0 no-repeat;
    background-size: 4000px auto;
    padding:430px 0 5px;
    margin-top:-300px;
    text-align: center;
    font-size:1.2rem;
}

#page_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width:70px;
    z-index:100;
  }

@media only screen and (max-width: 767px) {

    html,body {
        overflow-x: hidden;
    }
    .inner {
        width: 100%;
    }

    .pc_none {
        display: block !important;
    }

    .sp_none {
        display: none !important;
    }

    #page_top:hover{
        opacity:1;
    }

    footer{
        background: url(../img/top/sp_bg_07.png) center bottom no-repeat;
        background-size: contain;
        padding:300px 0 5px;
        margin-top:-250px;
        text-align: center;
    }


}