@charset "utf-8";
*{margin: 0;padding: 0;line-height: 1;box-sizing: border-box;}
ul{list-style: none;}
a{text-decoration: none;}
img{vertical-align: bottom; max-width: 100%;}

/* layout */
.container{
    max-width: 800px;
    margin: 0 auto;
}

/* header */
.header{
    margin-bottom: 16px;
}
.header h1{
    height: 63px;
    margin: 16px 0;
    text-align: center;
    background-image: url(../dongri_img/img/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    /* 隠し文字 */
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* nav */
nav .g-nav{
    display: flex;
    justify-content: center;
}
nav .g-nav a{
    margin: 0 10px;
    color: rgb(207, 0, 0);
    font-weight: bold;
}
nav .g-nav a:hover{
    color: #f4b20c;
} 

/* main-visual */
.main-visual{
    height: 530px;
    background-image: url(../dongri_img/img/mainvisual.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    /* 隠し文字 */
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* main */
.main{
    margin-bottom: 20px;
}
.main .contents{
    padding: 40px 0;
}
.main .contents.bg-image{
    background-image: url(../dongri_img/img/bg.png);
}
.main .contents h2{
    margin-bottom: 20px;
    text-align: center;
    color: rgb(207, 0, 0);
}
.main .contents p{
    line-height: 1.68;
}
.main .contents h3{
    margin-bottom: 20px;
    text-align: center;
}
.main .contents .image{
    overflow: hidden;
}
.main .contents .image img{
    float: right;
    padding-left: 16px;
}
.main .access h2 + p{
    text-align: center;
    margin-bottom: 16px;
}
.main .access h2 + p{
    text-align: center;
    margin-bottom: 10px;
}
.main .shop-info{
    display: flex;
    justify-content: space-between;
}
.main .shop-info .text,
.main .shop-info .shop-image{
    width: 45%;
}

.page-top{
    margin-bottom: 16px;
    text-align: right;
}
.page-top a{
    padding: 10px;
}

footer{
    padding: 50px;
    border-top: 2px solid rgb(207, 0, 0);
    text-align: center;
}

.hamburger{
    position: fixed;
    right: 10px;
    top: 19px;
    display: none;
}



/* sp-layout */

@media (max-width : 768px){
    /* header */
    .header{
        margin-bottom: 20px;
    }

    /* nav */
    nav{
        position: fixed;
        width: 100%;
        right: -100%;
        transition: 0.3s;
    }
    nav.is-active{
        right: 0;
    }
    nav .g-nav{
        display: block;
        background-color: #c8c8c8da;
    }
    nav .g-nav a{
        display: block;
        height: 60px;
        margin: 0;
        line-height: 60px;
        text-align: center;
    }
    nav .g-nav li{
        border-top: 2px solid #7d7c7ce8;
    }
    nav .g-nav li:last-child {
        border-bottom: 2px solid #7d7c7ce8;
    }





    /* main-visual */
    .main-visual {
        height: 200px;
        background-position: 0 0;
    }

    /* main */
    .main{
        margin-bottom: 20px;
    }
    .main .contents{
        padding: 40px 16px;
    }
    .main .contents .image img{
        display: block;
        margin-bottom: 10px;
        float: none;
        padding-left: 0;
    }
    .main .access h2 + p span{
        line-height: 1.5;
    }
    .main .shop-info{
        flex-direction: column-reverse;
    }
    .main .shop-info .text,
    .main .shop-info .shop-image{
        width: 100%;
        margin-bottom: 10px;
    }

    .hamburger{
        display: block;
    }



} /* media end */