@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    line-height: 1;
}
a {
    color: inherit;
}

img {
    width: 100%;
}

body {
    background-color: #502200;
    color: #fff;
    /* padding: 2rem 0; これが原因の一つ */
    font-size: 16px;
    line-height: 1.5;
    font-family: "Zen Old Mincho", serif;
}

.block{
    padding: 1rem 3rem;
}



/*======　メニュバー　========================*/

.menubar {
    margin: 10px auto;
    background-color: #791717;
    border-top: 1px solid #ebe0ce;
    border-bottom: 1px solid #ebe0ce;
}

.menubar .wrapper {
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.menubar__inner h1 {
    font-size: 32px;
    font-weight: bold;
}

.menubar__list {
    display: flex;
    margin-left: 40px;
    gap: 20px;
        a {
            font-size: 1.333rem;
            font-weight: 700;
        }
}


/*======　メニュバー　レスポンシブ対応 ========================*/
@media screen and (max-width: 769px) {

    .menubar .wrapper {
        padding: 1rem 2rem;
    }

    .menubar__inner h1 {
        font-size: 32px;
    }

    .menubar__list {
        gap: 16px;

        a {
            display: inline-block;
            width: 100px;
            text-align: center;
            font-size: 16px;
            font-weight: 700;
        }
    }



}


@media screen and (max-width: 429px) {

    .menubar__inner h1 {
        left: 27px;
        top: 30px;
        z-index: 1;
    }

    .menubar__list {
        display: none; 
        /*ここでメニューを消す*/
    }

}

/*======　メニュバー　========================*/
/*======　TOPに戻る　========================*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 60px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
  }

  #page-top a {
    background: #ebe0ce;
    text-decoration: none;
    color: #791717;
    width: 60px;
    padding: 24px 5px;
    text-align: center;
    display: block;
    border-radius:  100%;
    opacity: 0.9;
    transition: all .3s ease;
  }

  #page-top a:hover {
    text-decoration: none;
    opacity: .5;
  }

  /*======　TOPに戻る　レスポンシブ対応 ========================*/
  @media screen and (max-width: 769px) {
    #page-top {

        right: 32px;
      }

  }


@media screen and (max-width: 429px) {

    #page-top {
        right: 10px;
        top: 30px;
        display: none;
        /*ここでメニューを消す*/
      }

      #page-top a {
        width: 60px;
        padding: 20px 1.7px;
        display: none;
        /*ここでメニューを消す*/
      }
    

  }

/*======　TOPに戻る　========================*/
/*======　ハンバーガー 　========================*/
#burger {
    width: 50px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 10px;
    position: fixed;
    top: 23px;
    right: 10px;
    background-color: #F9F6EC;
    z-index: 4;
    transition: 0.5s; /*バツ印の移動速度*/
}

#burger:hover {
  background-color: #F9F6EC;
  color: #502200;
  border: none;
}

/* #burger.active{
    right: 58px;
メニューと一緒に移動させる
} */


#burger span {
    position: absolute;
    width: 70%;
    height: 4px;
    background-color: #333;
    inset: 0;
    margin: auto;
}

#burger span:nth-child(1){
    font-size: 10px;
    font-weight: bold;
    color: #333;
    text-align: center;
    background: none;
    height: auto;
    margin: auto;
    position: absolute;
    top: 8%;
}

#burger span:nth-child(2){
    top: 20%;
    transition: 0.5s;
}
#burger span:nth-child(3){
    top: 60%;
    transition: 0.5s;
}

#burger.active span:nth-child(2){
    width: 50%;
    rotate:45deg;
    top: 35%;
}
#burger.active span:nth-child(3){
    top: 35%;
    width: 50%;
    rotate:-45deg;
}

/**************バーガー用のメニュー作成*************/


 #g_nav {
    position: fixed;
/* ブラウザのトップで、navが、positionのfixedに変換する →　sticky */
    width: 70%;
    height: 100%;
    top: 0;
    right: 100%;
/*ボタンを押した時に背景の幅*/
    padding-top: 100px;
    padding-bottom: 60px;
    background-color:  rgb(255, 255, 243, 0.9);
    /* 背景色設定 */
    border-radius: 10px;
    opacity: 0.9;
    transition: all .3s ease;
    z-index: 3;
}

#g_nav.active {
  left: 30%;
/*ボタンを押した時に背景*/
box-shadow: 4px 0px 15px -5px #777;
}

#g_nav .nav_inner ul{
    max-width: 1024px;
    /* 最大値、1024px それ以下可変　max-width使用 */
    margin: 0 auto;
    /* ブロック要素の中央揃い　m0ｰa */    
}
    

#g_nav ul a{
    display: block;
    /* padding: 0 40px; */
    text-align: center;
    line-height: 60px;
    /* aタグのブロックボックス、左右の余白、paddingで40px、上下の余白、line-heightで60px設定 */
    color: #333;
    font-weight: bold;
    letter-spacing: .1em;
    /* 文字装飾適宜設定 */    
    font-weight: 700;
    transition: .3s;
    /* hoverの時のtransition設定 */
} 

#g_nav ul a:hover{
    color: #000;
    background-color: #502200;  
    /* 適宜設定 */
}


/*======　ハンバーガー 　========================*/
/*======　ハンバーガー レスポンシブ対応　========================*/
@media screen and (min-width: 429px) {
#burger{
    display: none;
}


#g_nav {
    display: none;
}

}


/*======　タイトル・キャッチコピー　========================*/

.logo {
    width: 100%;
    height: 90vh;
    background-image: url(../img/128551905.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-image: fill 0 linear-gradient(#0003,#0002);
}

.thumb .title {
    width: 600px;
    height: 240px;
    text-align: center;
    position: absolute;
    bottom: 100px;
    left: 100px;
}

.thumb .title h2 {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.thumb .title p {
    font-size: 20px;
    line-height: 1.5;

}





/*======　タイトル・キャッチコピー　========================*/

/*======　メニュバー　レスポンシブ対応 ========================*/
@media screen and (max-width: 429px) {

    .logo {
        height: 490px;
        background-position:  -150px 0;   
    }

    .thumb .title {
        width: 99%;
        height: 300px;
        top: 100px;
        left: 6px;
    }
    .thumb .title h2 {
        font-size: 42px;
        text-wrap: balance;
        word-break: auto-phrase;
    }

    .thumb .title p {
        font-size: 12px;
        text-wrap: balance;
        padding: 0 20px;
        word-break: auto-phrase;   
    }



  }



/*======　お品書き　========================*/

.service {
    width: 100%;
    height: 100%;
}

.service h2 {
    border-top: 1px solid #ebe0ce;
    border-bottom: 1px solid #ebe0ce;
    font-size: 54px;
    font-weight: bold;
    text-align: center;
    padding: 32px;
    margin: 16px auto;
}


.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.container h3 {
    font-size: 32px;
    font-weight: bold;
    padding-right: 50px;
    writing-mode: vertical-rl;
}


.card__holder {
    width: 280px;
    height: 360px;
    margin: 32px;
    border-radius: 15px;
    background-color: #f00;
    overflow: hidden;
    position: relative;
    }

.img__card {
    width: 280px;
    height: 320px;
    /* overflow: hidden; */


    img {
        width: 100%;
        height: 100%;
    }
}

.text__card {
    text-align: center;
    width: 100%;
    height: 140px;
    position: absolute;
    bottom: -100px;
    left: 0;  
    z-index: 2;
    background: rgba(0,0,0,.6);/*マウスオーバー時の色と透明度*/
    -webkit-transition: .3s; /*マスクが上がるまでにかかる時間*/
    transition: .3s;
    }
    
    .card__holder:hover > .text__card{ /*マウスオーバー時に下が0になるように移動する*/
    bottom: 0;
    }

.text__card h4 {
    margin: 12px auto;
}

.text__card p {
    line-height: 1.6;
    margin: 12px auto;
}





/*======　お品書き　========================*/

/*======　お品書き　レスポンシブ対応 ========================*/
@media screen and (max-width: 769px) {
    .container {
        display: block;
    }

        .container h3 {
            font-size: 40px;
            writing-mode: horizontal-tb;
            text-align: center;
            padding: 1.65rem 2rem;
            margin-bottom: 24px;
            background-color: transparent;
            background-image: linear-gradient(45deg, #954039 25%, transparent 25%, transparent 75%, #954039 75%, #954039),
              linear-gradient(-45deg, #932E40 25%, transparent 25%, transparent 75%, #932E40 75%, #932E40);
            background-size: 24px 24px;
          }


          .card__holder {
            width: 100%;
            text-align:center;
            margin-left: 18px;
            margin-right: 0;
            padding: 2rem 2rem;
            overflow: visible;
            background-color: #502200;
            }
    

          .img__card {
            width: 40%;
            height: 270px;
            border-radius: 15%; 
          }

          .text__card {
            width: 40%;
            height: 270px;
            bottom: 15%;
            left: 52%;  
            z-index: 0;
            border-radius: 15%;
            padding-top: 56px;
            }
            
            .card__holder:hover > .text__card{ /*マウスオーバー時に下が0になるように移動する*/
            bottom: 15%;
            }





}



@media screen and (max-width: 429px) {

    .service h2 {
        padding: 24px;
        font-size: 32px;
    }
    .container h3 {
        font-size: 32px;
    }

        .card__holder {
            height: auto;
            margin: 24px auto;
            padding: .5rem;
            overflow: visible;
            }

            .img__card {
                width: 100%;
                height: 320px;
                margin: 0 auto;
                overflow: hidden;
            }



        .text__card {
            width: 97%;
            height: 180px;
            padding-top: 23px;
            bottom: -80px;
            left: 7px;
            z-index: 2;
            background: rgba(0,0,0,.6); /*マウスオーバー時の色と透明度*/
            -webkit-transition: .3s; /*マスクが上がるまでにかかる時間*/
            transition: .3s;
            display: none;
            border-radius: 0 0 15% 15%;
        }

        .card__holder:hover > .text__card{ /*マウスオーバー時に下が0になるように移動する*/
            bottom: 5px;
            display: block;
            }
    
    

            .text__card p {
                line-height: 1.6;
                margin: 12px auto;
                text-wrap: balance;
            }
    
  }

/*======　コンセプト　========================*/

.section2 {
    width: 100%;
    height: 100%;
}

.section2 h2 {
    border-top: 1px solid #ebe0ce;
    border-bottom: 1px solid #ebe0ce;
    font-size: 54px;
    font-weight: bold;
    text-align: center;
    padding: 32px;
    margin: 16px auto;
}

.section2 .wrapper{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.section2 .box {
    width: 100%;
    height: 500px;
    margin: 32px auto 100px;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    gap: 40px;
    background: hsla(0, 68%, 28%, 0.808);
    border-radius: 15px;
    /* border: 1px solid #fff; */
}

.section2 .box__img {
    width: 45%;
    height: 450px;
}

.section2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.section2 .box__info {
    width: 40%;
    height: 450px;
    display: flex;
    align-items: center;
    /* padding: 0 24px; */


}

.section2 .box__area {
    width: 100%;
    align-items: center;
    /* height: 100%; */
    /* padding: 60px 0; */
}


.section2 h3 {
    font-size: 2.074rem;
    margin-bottom: 32px;
}

.section2 p {
    line-height: 1.6;
}


/*======　コンセプト　レスポンシブ対応 ========================*/
@media screen and (max-width: 769px) {

    .section2 .wrapper{
        width: 100%;
        margin: 0 auto;
    }

    .block {
        padding: 1rem 3rem;
    }

    .section2 .box {
        width: 100%;
        height: auto;
        margin: 32px auto;
        padding: 1rem 0;
        gap: 10px;
    }

    .section2 h3 {
        font-size: 38px;
        margin-bottom: 32px;
    }
    
    .section2 p {
        font-size: 96%;
        padding: 0 10px;
    }

}



@media screen and (max-width: 429px) {

    .section2 h2 {
        font-size: 32px;
    }

    .section2 .wrapper{
        width: 100%;
    }

    .block {
        padding: 1rem;
    }

    .section2 .box {
        display: block;
        padding: 0;
    }

    .section2 .box__img {
        width: 100%;
        height: 100%;
    }
    
    .section2 .box__info {
        width: 100%;
        height: 100%;
        padding: 10px;
        text-align: center;
    }

    .section2 h3 {
        font-size: 21px;
        margin: 24px 0;
    }

    .section2 p {
        font-size: 87%;
        padding: 0 10px;
    }


}

  /*======　コンセプト　========================*/

 /*======　マップ　========================*/
.map__container {
    /* margin: 0 auto; */
    padding: 3rem 3rem;
    display: flex;
    justify-content: space-between;
    background-color: #791717;
    /* gap: 30px; */
}

.map__container .left {
    width: 50%;

    h1 {
        font-size: 32px;
        font-weight: bold;
        font-weight: normal;
    }

    ul {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 0;
        gap: 15px 0;
        align-items: center;

        dt {
            width: 30%;
            font-size: clamp(20px,2vw,12px);
        }

        dd{
            width: 70%;
            font-size: clamp(20px,2vw,12px);
        }
    }
}

.map__container .right{
    /* width: 50%; */
    width: 40%;
    /*コンテンツの中で５０％と５０％でgapを付けたので幅が足りなくなった*/
    /* text-align: center; 一つの要因 */

    h3 {
        margin-top: 12px;
        font-weight: 700;
    }

    .iframe-box {
        margin-top: 32px;
        width: 100%;
        height: 310px;
        overflow: hidden;
    }
}

 /*======　マップ　レスポンシブ対応　========================*/
    @media screen and (max-width: 769px) {
    .map__container {
        display: block;
        padding: 1rem;
    }

    .map__container .left {
        width: 100%;
    
        h1 {
            text-align: center;
            font-weight: bold;
        }
    
        ul {
            display: block;
            text-align: center;
            dt {
                width: 100%;
                margin: 15px auto;
                font-weight: bold;
                font-size: 32px;
            }
    
            dd{
                width: 100%;
                padding: 13px;
                padding-bottom: 20px;
                border-bottom: 1px solid #ebe0ce;
                font-size: 24px;
                font-weight: normal;
            }
        }

    }
        .map__container .right{
            width: 100%;
            text-align: center;
            margin-bottom: 32px;
        }
    }




    @media screen and (max-width: 429px) {
        .map__container {
            display: block;
            padding: 1rem;
        }

        .map__container .left {
            width: 100%;
        
            h1 {
                text-align: center;
            }
        
            ul {
                display: block;
                text-align: center;

                dt {
                    width: 100%;
                    margin: 15px auto;
                    font-weight: normal;
                    font-size: none;
                    font-size: 24px;

                    
                }
        
                dd{
                    width: 100%;
                    font-size: 16px;
                    padding: 10px;
                    border-bottom: 1px solid #ebe0ce;
                }
            }
        }

        .map__container .right{
            width: 100%;
        
            h3 {
                text-align: center;
            }

        }
    }

    /*======　footer　　========================*/

    .footer {
        width: 100%;
        padding: 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer h1 {
        font-size: 24px;
    }

 /*======　footer　レスポンシブ対応　========================*/
 @media screen and (max-width: 429px) {

    .footer {
        display: block;
        text-align: center;
        h1 {
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 10px;
        }
     }
 }



 .video {
    width: 100%;
    height: 100%;
    /* 任意の数値 */
    overflow: hidden;
     video {
        margin-top: -100px;
        /* 任意の数値 */
        /* あふれた分だけ消す */
     }
 }

