html{
    font-size: 100%;
}

body{
    opacity: 0;
    background-color: rgb(231, 205, 176,.5);
    transition: .3s;
}

body.show{
    opacity: 1;
}

h1,h2,h3,p,dl,dd,ul,li,span{
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

#mask-show{
    opacity: 0;
    transition: .3s;
    transform: translateX(-100%);
}

#mask-show.mask-show{
    opacity: 1;
    position: fixed;
    top: 0px;
    left: 0px;
    transform: translateX(0%);
    width: 60%;
    height: 100vh;
    background-color: rgb(255, 255, 255,.5);
    z-index: 10;
}

#top-button{
    position: fixed;
    bottom: 30px;
    right: 50px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    opacity: 0;
    transition: .3s;
    z-index: 10;
}

#top-button::before{
    content:"TOP";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(87, 87, 87);
    font-size: 25px;
}

#top-button.show-top-button{
    opacity: 1;
}

.bar{
    position: absolute;
    top: 15px;
    left: 18px;
    height: 30px;
    width: 5px;
    background-color: rgb(87, 87, 87);
    transform: rotate(45deg);
}

.bar2{
    position: absolute;
    top: 15px;
    right: 18px;
    height: 30px;
    width: 5px;
    background-color: rgb(87, 87, 87);
    transform: rotate(-45deg);
}
/* トップページエリア ------------------------------------------------------------------*/
.topPageWrapper{
    display: block;
    width: 100%;
    height: 100vh;
    margin-bottom: 30px;
}

header{
    transform: translateX(-100%);
    transition: .8s;
}

header.show{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    left: 0px;
    transform: translateX(0%);
    width: 100%;
    height: 145px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.menu-button{
    display: none;
}

header>h1>a>img{
    display: block;
    margin-left: 30px;
    width: 420px;
    height: 100%;
}

header>ul{
    display: flex;
    align-items: center;
    height: 100%;
}

header>ul>li{
    position: relative;
    display: block;
    margin-right: 30px;
    width: 200px;
    height: 55px;
    color: black;
}

header>ul>li::before{
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 10px;
    transform: translate(-50%);
    background-color: rgb(39, 39, 39);
    width: 20px;
    height: 2px;
}

header>ul>li>a{
    display: block;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    transition: .1s;
}

header>ul>li>a:hover{
    border-bottom: black 1px solid;
}

.topPage{
    display: block;
    position: relative;
    top: 145px;
    left: 0px;
    width: 100%;
    height: 85%;
}

.topPageText{
    transform: translateX(-100%);
    transition: .8s;
}

.topPage>div.show{
    position: absolute;
    left: 50px;
    bottom: 80px;
    transform: translateX(0%);
    z-index: 1;
}

.topPageText>h2{
    background-color: rgb(0, 0, 0 ,.8);
    color: white;
    font-size: 70px;
}

.topPageTextBr{
    display: none;
}

.topPageText>p{
    display: inline-block;
    margin-top: 40px;
    background-color: rgb(0, 0, 0 ,.8);
    color: white;
    font-size: 60px;
}

.topPage>img{
    position: absolute;
    right: 0px;
    top: 0px;
    width: 75%;
    height: 100%;
}

/* PRエリア ------------------------------------------------------------------*/
.pr1{
    display: flex;
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
}

.prImg{
    width: 60%;
    height: 600px;
}

.prImg>img{
    width: 100%;
    height: 100%;
}

.pr1Flex{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.pr1Text{
    position: relative;
    width: 100%;
}

.pr1Text>h2{
    position: relative;
    margin: 0px auto;
    width: 80%;
    font-size: 40px;
}

.pr1Text>h2>span{
    position: absolute;
    top: -200%;
    left: 30%;
    font-size: 250%;
    font-family: 'Kaushan Script', cursive;
    color: rgb(255, 174, 0,.2);
}

.pr1Text>p{
    margin: 70px auto;
    width: 80%;
    font-size: 30px;
    line-height: 40px;
    color: rgb(46, 25, 0,.8);
}

.pr1CampItems{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 50%;
    transform: translateX(-50%);
    width: 50%;
}

.pr1CampItems>img{
    width: 120px;
    height: 300px;
}

.pr2{
    display: flex;
    width: 100%;
    margin-bottom: 100px;
}

.pr2Flex{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.pr2Text{
    width: 100%;
}

.pr2Text>h2{
    position: relative;
    margin: 0px auto;
    width: 80%;
    font-size: 40px;
}

.pr2Text>h2>span{
    position: absolute;
    top: -200%;
    left: 20%;
    font-size: 250%;
    font-family: 'Kaushan Script', cursive;
    color: rgb(255, 174, 0,.2);
}

.pr2Text>p{
    margin: 70px auto;
    width: 80%;
    font-size: 30px;
    line-height: 40px;
    color: rgb(46, 25, 0,8);
}

.pr2CampItems{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 50%;
    transform: translateX(-50%);
    width: 50%;
}

.pr2CampItems>img{
    width: 120px;
    height: 300px;
}

/* 商品swiper ------------------------------------------------------------------*/

.swiper{
    margin-bottom: 10px;
}

.swiper-slide{
    margin: 0px auto;
    width: 100%;
    height: 500px;
}

.swiper-slide>img{
    display: block;
    text-align: center;
    margin: 0px auto;
    width: 500px;
    height: 500px;
    object-fit: initial;
}


.swiper-button-prev,.swiper-button-next{
    color: #585858;
}

.swiper-a{
    display: block;
    bottom: 80px;
    margin: 30px 50% 100px;
    transform: translateX(-50%);
    text-align: center;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    line-height: 50px;
    background-color: RGB(118, 103, 93);
    color: white;
    z-index: 2;
    transition: .3s;
}

.swiper-a::before{
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 50%;
    right: 20px;
}

.swiper-a::after{
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 45%;
    right: 20px;
    transform: rotate(25deg);
}

.swiper-a:hover{
    background-color: rgb(199, 199, 199);
    color: black;
}

.swiper-pagination-bullet-active{
    background-color: black;
    color: black;
}

/* NEWSエリア ------------------------------------------------------------------*/
article{
    margin: 0px auto 100px;
    width: 40%;
}

article>h2{
    text-align: center;
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: bold;
    background:linear-gradient(transparent 70%, rgb(245, 198, 111,.6) 70%);
}

.calendar{
    display: block;
    width: 100%;
    margin:0px auto 50px;
}

.news-title{
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: bold;
}

.news-text{
    margin:0px auto 50px;
    font-size: 25px;
    line-height: 150%;
}

.news-text>span{
    display: block;
}

.twitterwidth1000px{
    width: 1000px;
    margin: 0px 50%;
    transform: translate(-50%);
}

.twtterwidth700px{
    display: none;
}

.twitterwidth300px{
    display: none;
}
/* お店情報 ------------------------------------------------------------------*/
.information{
    margin: 0px auto 100px;
    width: 40%;
}

.information>h2{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    background:linear-gradient(transparent 70%, rgb(245, 198, 111,.6) 70%);
}

.information>dl{
    width: 100%;
    text-align: center;
}

.information>dl>dt{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 25px;
}

.information>dl>dd{
    font-size: 20px;
    line-height: 30px;
}

.information>dl>dd>br{
    display: none;
}

/* Google MAP ------------------------------------------------------------------*/
iframe{
    width: 100%;
    margin-bottom: 0px;
}

/* footerエリア ------------------------------------------------------------------*/
footer{
    position: relative;
    margin: 0px;
    width: 100%;
    height: 500px;
    background-color: antiquewhite;
}

footer>h2>a>img{
    display: block;
    margin: 0px auto;
    padding-top: 50px;
    width: 420px;
    height: 100%;
}

footer>ul{
    margin: 50px auto;
    width: 40%;
}

footer>ul>a>li{
    text-align: center;
    margin-top: 40px;
    border-bottom: solid 1px black;
    font-size: 20px;
}

footer>p{
    position: absolute;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    bottom: 0px;
}

@media(max-width:1612px){
    .topPageText>h2{
        display: inline-block;
        background-color: transparent;
    }

    .topPageText>h2>span:nth-of-type(1){/* 行ごとに背景を指定し改行した行との隙間を作る */
        display: inline-block;
        margin-bottom: 20px;
        background-color: rgb(0, 0, 0 ,.8);
    }

    .topPageText>h2>span:nth-of-type(2){
        display: inline-block;
        background-color: rgb(0, 0, 0 ,.8);
    }

    .topPageTextBr{
        display: block;/* 改行挿入 */
    }

}

@media(max-width:1383px){
    .pr1Text>h2{
        font-size: 30px;
    }
    
    .pr1Text>p{
        margin: 70px auto;
        width: 80%;
        font-size: 20px;
        line-height: 40px;
    }

    .pr2Text>h2{
        margin: 0px auto;
        width: 80%;
        font-size: 30px;
    }
    
    .pr2Text>p{
        margin: 70px auto;
        width: 80%;
        font-size: 20px;
        line-height: 40px;
    }

    .pr1CampItems>img,.pr2CampItems>img{
        width: 180px;
    }
}

@media(max-width:1015px){
    header>ul>li{
        width: 150px;
    }

    header>ul>li>a{
        font-size: 20px;
    }

    .twitterwidth1000px{
        display: none;
    }
    
    .twtterwidth700px{
        display: block;
        width: 700px;
        margin: 0px 50%;
        transform: translate(-50%);
    }
    
    .twitterwidth300px{
        display: none;
    }

}

@media(max-width:958px){
    .topPageText>h2{
        font-size: 60px;
    }

    .topPageText>p{
        font-size: 40px;
    }

    .puestionText>h2{
        font-size: 40px;
    }
    .puestionText>p{
        font-size: 20px;
    }
}


@media(max-width:944px){
    header>ul>li{
        width: 100px;
    }

    header>ul>li>a{
        font-size: 15px;
    }
    .pr1{
        flex-direction: column;
    }
    .prImg{
        display: inline-block;
        width: 80%;
        height: 340px;
    }

    .pr1Flex,.pr2Flex{
        width: 90%;
    }

    .pr1Text>h2{
        margin-top: 20px;
    }
    .pr1Text>p{
        margin: 30px auto;
    }
    .pr2CampItems,.pr1CampItems{
        display: none;
    }
    .pr2{
        flex-direction: column-reverse;
        flex-wrap: wrap-reverse;
    }
    .pr2Text>h2{
        text-align: end;
        margin-top: 20px;
    }
    .pr2Text>p{
        text-align: end;
        margin: 30px auto;
    }
    .swiper-slide{
        width: 1000px;
        height: 300px;
        background-color: antiquewhite;
    }
    
    .swiper-slide>img{
        display: block;
        margin: 0px auto;
        width: 1000px;
        height: 300px;
    }
    
    article{
        width: 70%;
    }

    .information{
        width: 70%;
    } 
}

@media(max-width:800px){

    header>h1>a>img{
        width: 300px;
    }

    header>ul{
        opacity: 0;
        position: fixed;
        flex-direction: column;
        top: 0px;
        right: 0px;
        transform: translateX(100%);
        height: 100vh;
        width: 40%;
        background-color: rgb(255, 243, 228);
        z-index: 90;
        transition: .3s;
    }
    
    header>ul>li::before{
        display: none;
    }

    header>ul.hbg-action{
        opacity: 1;
        transform: translateX(0%);
        z-index: 90;
    }

    header>ul>li:nth-of-type(1){
        margin-top: 150px;
    }
    header>ul>li{
        margin-top: 40px;
        background-color: rgb(0, 0, 0,.0);
        color: black;
        border: none;
        border-bottom: 1px solid black;
        border-radius: 0px;
    }
    /* ハンバーガーメニュー */
    .menu-button{
        display: block;
        height: 50px;
        width: 50px;
        position: fixed;
        top: 50px;
        right: 20px;
        z-index: 99;
    }

    .menu-button div{
        height: 5px;
        width: 60%;
        border: 1px solid black;
        background-color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        transition: .3s ;
    }

    .menu-button div:nth-of-type(1){
        transform: translate(-50%,15px);
    }

    .menu-button div:nth-of-type(3){
        transform: translate(-50%,-20px);
    }

    .menu-button.hbg-action div:nth-of-type(1){
        transform: rotate(45deg) translate(-50%,0px);
        transform-origin: 0% 50%;
    }

    .menu-button.hbg-action div:nth-of-type(2){
        opacity: 0;
    }

    .menu-button.hbg-action div:nth-of-type(3){
        transform: rotate(-45deg) translate(-50%,0px);
        transform-origin: 0% 50%;
    } 

    .twitterwidth1000px{
        display: none;
    }
    
    .twtterwidth700px{
        display: none;
    }
    
    .twitterwidth300px{
        display: block;
        width: 300px;
        margin: 0px 50%;
        transform: translate(-50%);
    }

}

@media(max-width:735px){

    .topPageText>h2{
        font-size: 50px;
    }
    article>h2{
        font-size: 40px;
    }
    .information>h2{
        font-size: 40px;
    }

    .news-title{
        text-align: center;
        margin-bottom: 40px;
        font-size: 20px;
        font-weight: bold;
    }
    
    .news-text{
        margin:0px auto 100px;
        font-size: 17px;
        line-height: 150%;
    }
}

@media(max-width:675px){
    .topPageText>h2{
        font-size: 40px;
    }

    .topPageText>p{
        font-size: 30px;
    }
}

@media(max-width:520px){
    header>h1>a>img{
        margin-top: 40%;
        width: 150px;
        height: 80px;
        transform: translateY(-50%);
    }

    .topPageWrapper{
        width: 100%;
        height: 517px;
        margin-bottom: 200px;
    }
    .topPage{
        width: 100%;
        height: 85%;
    }

    .topPage>img{
        height: 85%;
    }

    .topPage>div.show{
        top: 400px;
        left: 10px;
        width: 80%;
        height: 200px;
    }

    .topPage>div.show>h2>span{
        font-size: 30px;
        margin-bottom: 5px;
        background-color: transparent;
        color: black;
    }

    .topPageText>p{
        margin-top: 10px;
        font-size: 20px;
        background-color: transparent;
        color: black;
    }

    #question.show{
        height: 400px;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .puestionText>h2{
        font-size: 30px;
    }  

    .puestionText>p{
        font-size: 15px;
        line-height: 30px;
    }

    .pr1{
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .prImg{
        display: inline-block;
        width: 90%;
        height: 200px;
    }

    .pr1Text>h2{
        font-size: 20px;
    }

    .pr1Text>p,.pr2Text>p{
        font-size: 15px;
        line-height: 20px;
    }

    .pr2{
        margin-bottom: 50px;
    }

    .pr2Text>h2{
        font-size: 20px;
    }

    .topPage>img{
        width: 100%;
    }

    .swiper-slide{
        width: 200px;
        height: 250px;
        background-color: transparent;
    }
    
    .swiper-slide>img{
        display: block;
        text-align: center;
        margin: 0px auto;
        width: 80%;
        height: 250px;
        object-fit: initial;
        opacity: .9;
    }

    .swiper>a{
        display: block;
        top: 300px;
        width: 140px;
        height: 25px;
        line-height: 25px;
        font-size: 15px;
    }
    .swiper>a::before{
        width: 15px;
    }
    
    .swiper>a::after{
        width: 5px;
    }
    article{
        width: 300px;
        margin-bottom: 30px;
    }

    article>h2{
        font-size: 25px;
    }

    article>ul>a>li{
        font-size: 12px;
    }

    .information>h2{
        font-size: 30px;
    }

    .information>dl>dt{
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .information>dl>dd{
        font-size: 15px;
        line-height: 30px;
    }

    .information>dl>dd>br{
        display: block;
    }

    footer>h2>a>img{
        width: 300px;
    }

}

@media(max-width:420px){
    .topPageWrapper{
        height: 450px;
    }
    .topPage{
        width: 100%;
        height: 300px;
    }
    .topPage>img{
        height: 300px;
    }

    .topPage>div.show{
        top: 330px;
    }

    .topPage>div.show>h2>span{
        font-size: 25px;
        margin-bottom: 5px;
        background-color: transparent;
        color: black;
    }

    .topPageText>p{
        margin-top: 10px;
        font-size: 15px;
        background-color: transparent;
        color: black;
    }

    article>h2{
        font-size: 20px;
    }
    article>ul>a{
        width: 100%;
        float: left;
    }
    .information>h2{
        font-size: 20px;
    }
}

@media(max-width:398px){

    .topPage>div.show{
        top: 350px;
    }

    .topPageText>h2{
        font-size: 20px;
    }

    .topPageText>p{
        font-size: 15px;
    }
}

@media(max-width:352px){
    .topPage>div.show>h2>span{
        font-size: 20px;
    }

    .topPageText>p{
        font-size: 15px;
    }
}