@charset "utf-8";
/*
Theme Name:Simple
Version:1.0
Author:Kumagai
*/

body{
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Noto Sans JP',sans-serif;
    margin: 0;
    color:#42210b;
    font-weight: bold;
}



header{
    display: block;
    position: static;
    background-color: #fff;
    width: 100%;
    background-image: url('./images/wood-back.jpg');
    background-position: center center;
    background-size: cover;
}

footer{
    font-size: 0.8rem;
    background-image: url('./images/wood-back.jpg') !important;
    background-repeat: repeat-y;
    background-size: 100%;       
    padding-bottom: 100px;
}

footer .container{
    padding: 30px;
    /* background-color: #f5f5f5; */

    color:white; 
    font-size:1.2rem;
    font-weight: bold;
}

.footer-logo{
    height: 180px;
    margin:auto;
}

main{
    background-image: url('./images/wood-back.jpg') !important;
    background-repeat: repeat-y;
    background-size: 100%;
}
.header-logo{
    height: 50px;
}

.nav-svg{
    height: 16px;
}

.video-box{
    position: relative;
}
.main-catch{
    position: absolute;
    height: 90%;
    top: 5%;
    left: 5%;
}

.news-box{
    max-width: 700px;
    margin:auto;
}

.upper{
    width: 100%;
}

#page_top{
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #e4e4e4;
    z-index: 10000;
}

.job-image{
    max-width: 800px;
    margin:auto;
}

.entry-btn{
    /* width: 200px; */
    /* height: 50px; */
    width: 25%;
    min-width: 200px;
}

span.br{
    display: block;
}

.contact-text{
    line-height: 60px;
}

.car{
    height: 2rem;
}

.sns-logo{
    height: 80px;
}

.qr-logo{
    height: 140px;
    margin:20px auto;
}

.shop-image{
    width: 100%;
    margin:50px auto;
    max-width: 800px;
}

section{
    position: relative;
}

.title{
    position: absolute;
    top: 15%;
    height: 10vw;
    min-height: 45px;
    left: 5%;

}



/*1.フェードインアニメーションの指定*/
.scrollanime {
    opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

/*横スクロールバーを隠す*/
.slide-right {
    transform: translateX(200px);
}

.slide-left {
    transform: translateX(-200px);
}

@keyframes fadeInDown {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

/*2.上下の動きを指定*/
.updown {
    transform: translateY(-100px);
}

.downup {
    transform: translateY(100px);
}


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


    .nav-svg{
        height: 12px;
    }
    span.br{
        display: inline;
    }
    .title{
        top: 5%;
    }
    .contact-text{
        line-height: 40px;
    }

}

