@import url('https://fonts.googleapis.com/css2?family=BIZ+UDMincho:wght@700&family=Dela+Gothic+One&family=M+PLUS+1p:wght@500;700;800;900&display=swap');


/*
M PLUS 1P : 500,700,800,900
Dela Gothic One : 400
BIZ UDMincho : 400
*/

html,body {
    overflow-x: hidden;
}

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

body {
    font-family: 'M PLUS 1p', sans-serif; 
    font-size: 2rem; 
    font-weight: 800;
    line-height: 1.6;
    text-align: justify;
    line-break: strict;
    color: #000000;
    background: #fcf6e1;
}

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

h1,h2,h3,h4{
    font-family: 'Dela Gothic One', sans-serif;
    line-height: 1;
    font-weight: 400;
}

p{
    margin:0;
}

a {
    text-decoration: none;
}

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

#content {
    width: 100%;
}

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

footer{
    background:#3f6647;
    color:#fff;
    text-align: center;
    padding:20px 0 ;
    font-weight: 500;
    font-size:1.4rem;

}

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

.pc_none {display: none !important;}


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

    body {
        font-size: 1.6rem; 
    }

    .inner {
        width: 90%;
    }

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

    @keyframes fadeAnime{
        from {
          opacity: 0;
          transform: translateY(0);
        }
      
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

    .pc_none {
        display: block !important;
    }

    .sp_none {
        display: none !important;
    }

}