
:root {
    --black: rgb(37, 41, 69);
    --beige:  rgb(244, 242, 237);
    --yellow: rgb(245, 210, 94);
    --white: white;
    --red: rgb(234, 30, 30);
}

* {
    box-sizing: border-box;
    /* outline: 2px red solid; */
}

body {
    display: grid;
    margin: auto;
    width: 100% ;
    background-color: var(--beige);
    font-family: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
    font-size: 1em;
    line-height: 1.75rem;
    color: var(--black);
}

img {
    width: 100%;
}

/* -------header--------- */
.header {
    position: relative;
    width: 100%;
    aspect-ratio: 1366/683;
    background-color: #000000;
    justify-content: center;
  }

  #header-pages {
    position: relative;
    width: 100%;
    aspect-ratio: 3/1;
    background-color: #000000;
    justify-content: center;
  }


@media screen and (max-width: 834px) {      
    .header {
        margin-top: 3rem;
        aspect-ratio: 1/1;
    }
}

  .header-img {
    display: block;
    position: relative;
    width: 100% ;
    opacity: 0.75;
    top: 0 ;
    left: 0;
}

.header-img-pages{
    display: none;
}

@media screen and (max-width: 834px) {      
    .header-img-pages {
        display: block;
        position: relative;
        width: 100% ;
        opacity: 0.75;
        top: 0 ;
        left: 0;
    }

    .header-img{
        display: none;
    }

}


.slider-head__item .header-img-sp {
    display: none;
}

@media screen and (max-width: 834px) {      
    .slider-head__item .header-img {
        display: none;
    }

    .slider-head__item .header-img-sp {
        display: block;
        position: relative;
        width: 100% ;
        opacity: 0.75;
        top: 0 ;
        left: 0;
    }
    
}

.slider-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}


.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-image: url("../img/common/head-nav.png") ;
    background-repeat: no-repeat; 
    background-size: 100%;
    background-position:center center; 
    width: 100%;
    max-width: 490px;
    max-height: 490px;
    text-align: center;
    margin: auto;
}

.logo-page {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-repeat: no-repeat; 
    background-size: 100%;
    background-position:center center; 
    width: 100%;
    max-width: 490px;
    max-height: 490px;
    text-align: center;
    margin-left: 2.5rem;
}

@media screen and (max-width: 834px) { 
    .logo-page > h1 {
        font-size: 4rem;
    }
}

/* -------nav--------- */

.header nav {
    position: absolute;
    top: 2rem;
    right: 4.5rem;
}

@media screen and (max-width: 834px) {
    .header nav {
        display: none;
    }
}


@media screen and (max-width: 1024px) {
    /* for ipad */
    .header nav {
        position: absolute;
        top: 1rem;
        right: 2.5rem;
    }
}

nav ul li {
    display: inline-flex;
    margin-right: 2.5rem;
    vertical-align: middle;
}

@media screen and (max-width: 1024px) {
    /* for ipad */
    nav ul li {
        display: inline-flex;
        margin-right: 1.5rem;
        vertical-align: middle;
    }
}

li a {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0.08rem;
    margin-top: 0;
}

@media screen and (max-width: 1024px) {
    /* for iPad */
    li a {
        font-size: 1.5rem;
        color: var(--black);
        font-weight: 400;
        letter-spacing: 0.08rem;
        margin-top: 0;
    }
}

  /* Instagram */
.svg-color svg {
    fill: var(--white);
    position: absolute;
    margin-top: -0.8rem;
  }

.svg-color svg:hover {
    fill: var(--yellow);
  }


/* -------共通--------- */


.wrapper {
    margin-top: 8rem;
    width: 100%;
    overflow: hidden;/* はみ出た要素を隠す */
}


.content-wrapper {
    max-width: 1080px; /* 画面幅が大きい時は、コンテンツ幅の上限を1080pxとする */
    width: 90%; /* 画面幅が1080px以下の時は画面の90%の横幅にする */
    margin: auto; /* 左右真ん中にする */
}

#wrapper-detail {
    max-width: 1200px;
}


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

    .wrapper {
        margin-top: 5rem;
        width: 100%;
        overflow: hidden;
    }

    .content-wrapper {
        width: 100%; 
        margin: auto; 
    }

    #wrapper-detail {
        width: 93%;
    }
    
}



.section-frame {
    display: flex;
    position: relative;
    justify-content: center;
}

.section-frame h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin: 0;
} 


.frame-svg {
    width: 257px; 
}

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

    .section-frame h2 {
        position: absolute;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    } 

    .frame-svg {
        width: 200px;  
    }
}


/* =========リンク============*/

a { 
    color: var(--black);
    border-bottom: 2px solid --black;
    text-underline-offset: 6px;
}


nav a { color: var(--white);
    border-bottom: 2px solid --white;
    text-underline-offset: 6px;
}

a:hover {
    color:var(--yellow);
}



/* ==============font関係================= */

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

    p { 
        font-size: 15.5px;
    }

}

/* ロゴ EN*/
h1 {
    font-size: 7.5rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.08rem;
}

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

    h1 {
        font-size: 5.5rem;
        color: var(--white);
        font-weight: 400;
        letter-spacing: 0.08rem;
        margin: 0.55em;
    }    
 }

/* 各見出し EN */
h2 {
    font-size: 3rem;
    color: var(--beige);
    font-weight: 500;
    letter-spacing: 0.1rem;
}

@media screen and (max-width: 834px) {
    h2 {
        font-size: 2.3rem;
        color: var(--white);
        font-weight: 400;
        letter-spacing: 0.08rem;
    }
}

/* SUBロゴ EN*/
h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.08rem;
}

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

    h3 {
        font-size: 2rem;
        color: var(--white);
        font-weight: 400;
        letter-spacing: 0.08rem;
    }
}

/* 表題 EN */
h4 { 
    font-size: 2rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0.15rem;
}

@media screen and (max-width: 400px) {
    h4 { 
        font-size: 30px;
        color: var(--black);
        font-weight: 400;
        letter-spacing: 0.15rem;
    }
}

/* MORE EN*/
h5 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.15rem;
    margin: 0;
}

@media screen and (max-width: 834px) {
    h5 {
        font-size: 16px;
        color: var(--white);
        font-weight: 400;
        letter-spacing: 0.08rem;
    }
}

/* nav EN */
h6 { 
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0.08rem;
    margin-top: 0;
}



/* SPAN */
#JAh4 {
      font-weight: bold;
      letter-spacing: 0.08rem;
}
#JAh5  {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
}

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

    #JAh5  {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.08rem;
    }
}


#y {
    position: relative;
    background: linear-gradient(transparent 80%, rgb(245, 210, 94) 0%);
    padding: 0 0.15em ;
    /* padding-top: 1rem ; */
  }

  #y-2 {
    position: relative;
    background: linear-gradient(transparent 82%, rgb(245, 210, 94) 0%);
    padding: 0 0.05em ;
    padding-top: 1rem ;
  }

#w {
    position: relative;
    background: linear-gradient(transparent 80%, rgb(244, 242, 237) 0%);
    padding: 0 0.15em ;
    padding-top: 1rem ;
  }

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

    #y-2  {
        background: linear-gradient(transparent 86%, rgb(245, 210, 94) 0%);
    }
    #w {
        position: relative;
        background: linear-gradient(transparent 80%, rgb(244, 242, 237) 0%);
        padding: 0 0.15em ;
        padding-top: 0rem ;
      }

}



/* ==============font関係ここまで================= */

/* ==========================top================================= */

.section-garage {
    display: block; 
    position: relative;
}

.section-cafe {
    display: block; 
    position: relative;
    margin-top: 8rem;
}

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

    .section-cafe {
        display: block; 
        position: relative;
        margin-top: 5rem;
    }
}

#cafe-top {
    background-color: var(--yellow);
    margin-top: 0;
    z-index: 0;
}

#cafe {
    background-color: var(--yellow);
    margin-top: 0;
    z-index: 0;
}

#page-garage {
    margin-top: 0;
}

#cafe h2 {
    color: var(--yellow);
}

.first-container, .secound-container {
    align-items: center; /* 画像をテキストを縦方向中央で揃える */
    justify-content: space-between; /* 画像をテキストを縦方向中央で揃える */
}

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

    .first-container, .second-container {
        display: flex;
        flex-direction: column;
      }
}

 .first-container {
    display: flex;
    margin-top: 5.5rem;
    margin-bottom: 5rem;
    margin-left: 0 ;
    gap:5.5rem;
    align-items: center;
  }

    .first-container > .top-pic {
        margin-left: -17%; /* コンテンツ幅の15%分、画像を左側にずらず */
    }

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

        .first-container {
            display: flex;
            flex-direction: column;
            margin-top: 2.5rem;
            margin-bottom: 5rem;
            margin-left: 0 ;
            gap:2.5rem;
            
          }
    
        .first-container > .top-pic {
            width: 100%;
            margin: auto;
          }
    }


 .second-container {
   display: flex;
   flex-direction: row-reverse;
   margin: 5.5rem 0;
   gap:2.5rem;
   align-items: center;
 }



    .second-container > .top-pic {
        margin-right: -17%; /* コンテンツ幅の15%分、画像を右側にずらず */
    }

    .top-par {
        width: 450px;
        max-width: none;
        max-height: none;
        padding: 0;
    }

    #par2{
        padding: 0 0 0 3.5rem;
    }
    
        .top-par > p {
            width: auto;
            max-width: none;
            max-height: none;
            padding-top: 1.8rem;
            margin-bottom: -1.2rem; 
        }
    
        .top-par h4 {
            margin-bottom: 1.5rem;
            margin-top: 0;
          }
    
    .top-pic { 
        min-width: 320px;
        max-width: 800px;
      }

      #par3 > p {
        display: flex;
        flex-wrap: wrap;
    }

    @media screen and (max-width: 1024px) {
        
        .top-par {
            padding: 0;
        }

        #par2{
            padding: 0 0 0 1.5rem;
        }

        .first-container {
            gap:4rem;
          }

        .second-container {
            gap:1rem;
          }
        } 

    @media screen and (max-width: 834px) {
        /* For ipad  */
    
        .top-pic {
            width: 100%;
            margin: auto;
          }
        
          .top-par {
            width: 100%;
            max-width: none;
            max-height: none;
            padding: 0 1.7rem;
        }

        .top-par > p {
            padding-top: 1rem;
        }
    }

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

    .second-container {
        display: flex;
        flex-direction: column;
        margin-top: 2.5rem;
        margin-bottom: 5rem;
        margin-left: 0 ;
        gap:2.5rem;
        align-items: center;
      }

    .second-container > .top-pic {
        width: 100%;
        margin: auto;
      }

}

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

    .first-container > .top-pic {
        width: 100%;
        margin: auto;
      }
        .second-container > .top-pic {
        width: 100%;
        margin: auto;}
    }



/* picのみのところ */


.top-full-pic {
    max-width: 100%;
}

.top-full-pic > img:first-child {
    margin-left: -17%; /* コンテンツ幅の15%分、画像を左側にずらず */
    margin-bottom: 64px;
}

.top-full-pic > img:nth-child(2) {
    margin-left: 17%;  /* コンテンツ幅の15%分、画像を右側にずらず */
}

.top-full-pic-c {
    margin-right: -17%; /* コンテンツ幅の15%分、画像を左側にずらず */
    margin-bottom: 5rem;
    gap:5rem;
}

.top-full-pic-c > img:first-child {
    max-height: 533px;
    max-width: 1280px;
}

.top-full-pic-c > img:nth-child(2) {
    position:relative;
    max-height: 360px;
    max-width: 1099px;
    margin-top: 5rem; 
    margin-left : 13%;
}

#pic4 {
    margin-right: 0;
    margin-left: auto;

}

.top-full-pic-sp{
    display: none;
}

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

    .top-full-pic, .top-full-pic-c{
        display: none;
    }

    .top-full-pic-sp{
        display: flex;
        width: 100%;
        margin: auto;
    }

}

/* more */
.more {
    background-image: url('../img/top/more1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
  }

.more > a {
    text-decoration: none;
}


.more.is-cafe {
    background-image: url('../img/top/more2.webp');
  }

.more.is-cafe > a{
    text-decoration: none;
}

.more-svg svg{
    width: 165px;
    height: 75px;
    fill: var(--white);
    margin-top: 2rem;
    text-decoration: none;
    }

.more-svg svg:hover {
    fill: var(--yellow);
}

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

    .more {
        height: 200px;
        margin-top: 3rem;
    }
    
    .more-svg svg{
      width: 120px;
      fill: var(--white);
      margin:auto;
      }

}
    
/* top footer */

.footer-logo {
    color: var(--black);
}

.footer {
    width: 100%;
    margin: auto; /* 左右真ん中にする */
    padding-top: 3rem;
    padding-bottom: 6rem;
    padding-left: 10%;
 }


 .footer > h2{
    letter-spacing: 0.15rem;
 }

  .footer-adress > p {
    letter-spacing: 0.04rem;
    margin-bottom: 1.2rem;
    line-height: 27px;
 }

 
.footer-adress {
font-family: 'Zen Kaku Gothic New', sans-serif;
}
.footer p a {
text-decoration: none;
}

.footer-adress > a span {
    font-family: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
    font-weight: 300 ;
 }


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

    .footer {
        margin: auto; /* 左右真ん中にする */
        padding-top: 1rem;
        padding-bottom: 2.5rem;
     }

     .footer > h2{
        margin-bottom: 1.3rem;
     }

     .footer-adress > p {
        margin-bottom: 1rem;
     }
    
}

/* ==================CAFE-GARAGE-MAIN========================= */

#wrapper-detail {
    display: block; 
    position: relative;
    margin-top: 8rem;
}

#with-frame {
    margin-top: -3.5rem;
}


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

    #wrapper-detail {
        display: block; 
        position: relative;
        margin-top: 5rem;
    }

    #with-frame {
        margin-top: -2.3rem;
    }

    }


/* フレーム下に仮置きしています*/


  .cafe-first-container {
    display: flex;
    width: 100%;
    justify-content:space-between;
    align-items: center; 
    padding: 2rem 2rem 4.5rem 4rem ;
    gap: 1rem;
  }

    .cafe-par {
        width: auto;
        max-width: 40%;
        justify-content:center;

    }

    .cafe-par > p {
        display: flex;
        flex-wrap: wrap;
        padding-top: 0.8rem;
        margin: 0;
    }

    .cafe-par-adjustment {
        margin-top: 0;
        margin-bottom: -1rem;
        padding: 0;
    }

    #c-p-a-1  {
        padding-top: 0;
    }



    .cafe-par h4 {
        margin-bottom: 1.6rem;
        margin-top: 0;
    }

    .cafe-pic1 { 
        max-width: 55%;
    }

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

        .cafe-first-container {
            padding: 2rem 0.5rem 3rem 2rem;
          }

        .cafe-par {
            width: auto;
            max-width: 50%;
            justify-content:center;
    
        }

        .cafe-pic1 { 
            max-width: 48%;
        }

    }
    @media screen and (max-width: 834px) {

        .cafe-first-container {
            display: flex;
            flex-direction: column-reverse;
            width: 100%;
            position: relative;
            justify-content:center;
            align-items: start; 
            padding: 2rem 0.5rem;
            gap: 1.5rem;
          }

          .cafe-par {
            max-width: 100%;
            margin: 0;
        }
    
        .cafe-par > h4 {
            font-size: 28px;
            color: var(--black);
            font-weight: 400;
            letter-spacing: 0.15rem;
            /* line-height: 28px; */
            margin: 0 0 1rem;
            color: var(--black);
        }
        .cafe-pic1 {
            max-width: 100%;
        }
    }


.garage-first-container {
    display: flex;
    width: 100%;
    position: relative;
    justify-content:center;
    align-items: center; 
    padding: 2rem 2rem 4rem ;
    gap: 1rem;
  }
    .garage-par {
        width: 59%;
        padding-top: 0.8rem;
    }

    .garage-par > p {
        display: flex;
        flex-wrap: wrap;
        text-align: start;
        padding-top: 0.6rem;
        margin-bottom: 0;
    }

    .garage-par-adjustment-top {
        padding-top: 0 ;
        margin-top: -0.6rem ;
        padding-bottom: 1.6rem;
    }
    .garage-par-adjustment {
        padding: 0 ;
        margin-top: -0.6rem ;
        margin-bottom: 0;
    }

    #g-p-a {
        margin-top: 1rem;
    }

    .garage-par > h3 {
        font-size: 2rem;
        color: var(--black);
        font-weight: 400;
        letter-spacing: 0.15rem;
        margin-bottom: 1.6rem;
        margin-top: 0;
        color: var(--black);
    }


    .JA-detailed {
        display: flex; 
        flex-wrap: wrap;
        line-height: 1.55;
    }
    .garage-pic {
        width: 40%;
    }

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

        .garage-first-container {
            padding: 2rem 1rem 4rem ;
          }

          .garage-par {
            width: 56%;
        }

        .garage-pic {
            width: 48%;
        }
    

    }

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

    .garage-first-container {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        position: relative;
        justify-content:center;
        align-items: center; 
        padding: 2rem 0.5rem 2rem;
        gap: 0.8rem;
      }
        .garage-par {
            width: 98%;
            margin: auto;
        }
    
        .garage-par > h3 {
            font-size: 28px;
            color: var(--black);
            font-weight: 400;
            letter-spacing: 0.15rem;

            color: var(--black);
        }
        .garage-pic {
            width: 100%;
        }
}


/* ------GARAGE-PRICE----- */

.garage-second-container {
    display: flex;
    width: 100%;
    position: relative;
    justify-content:center;
    align-items: center; 
    padding: 3rem 2rem 4rem ;
    gap: 1rem;
  }

.garage-price{
    display: flex;
    flex-wrap: wrap;
    width: 58%;
}

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

    .garage-price{
        width: 61%;
    }
}

.plan{
    width: 100%;
}

.plan > h4 {
    font-weight: 600;
    margin: 0 auto;
}

.weight-300 {
    font-weight: 300;
}

.price{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.price h4 {
    font-weight: 500;
}

.garage-list{
    display: flex;
    flex-direction: column;
    line-height: 2rem;
    gap: 0.5rem;
    list-style-type:square;
    list-style-position: outside;
}

.dot-list{
    display: flex;
}
.garage-single-list{
    display: flex;
    flex-wrap: wrap;
}


.dot-list li::marker{
    font-size: 150%;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .price{
        display: flex;
        justify-content: flex-start;
        width: 100%;
        gap: 2rem;
    }
}


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

    .garage-second-container {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        position: relative;
        justify-content:center;
        align-items:start;
        padding: 2rem 0.5rem 0.5rem;
        gap: 0.8rem;
      }

      .garage-price{
        display: flex;
        flex-wrap: wrap;
        width: 98%;
        line-height: 34px;
        margin: auto;
    }

    .plan{
        padding-top: 1rem;
    }

    .plan > h4 {
        display: flex;
        flex-wrap: wrap;
    }

    .price{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 1rem;
        gap:0;
    }

    .price > h4 {
        margin: 1rem 0;
    }

    .garage-list{
        display: flex;
        /* flex-direction: column; */
        line-height: 28px;
        padding: 1rem 0.5rem ;
        list-style-type:square;
        list-style-position: inside;
    }
    
    .dot-list{
        display: flex;
    }

    .garage-single-list{
        display: inline-block;
        /* flex-wrap: wrap; */
        font-size: 14px;
        line-height: 28px;
        margin-left: -1rem;
    }

       
}

/* ------CAFE-MENU------- */
.cafe-menu {
    display: flex;
    align-items: center; 
    width: 100%;
    padding: 5rem 2rem;
    gap:2rem;
}

.menu-pic { 
    width: 45%;
   }

.cafe-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 70%;
}

.cafe-list > li{
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.06rem;
    padding: 0.2rem 0;
   }


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

    .cafe-menu {
        padding: 4rem 1rem 2rem;
      }

      .cafe-list{
        width: 93%;
    }

    }

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

    .cafe-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content:center;
        align-items:center;
        padding: 2rem 1rem 0.5rem;
        gap: 0.8rem;
      }
      .cafe-list{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        max-width: 450px;
        padding: 0 0 1.5rem;
      }

    .menu-pic { 
        width: 100%;
        max-width: 450px;
           }

    }

.block-1{
    Width: calc((100% - 32px) /2);
}

.block-1 > li {
    max-width: 100%;
    display: flex;
    list-style: none;
    border-bottom: 1px solid;
    justify-content: space-between;
    line-height: 2rem;
    gap: 1rem;
}

.block-1 > li:nth-child(5) {
    border:0;
    }

.block-2> li:nth-child(4) {
    border:0;
    }

.li-etc:last-child {
    border:0;
    }

#etc{
    width: 100%;
}

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

    .block-1{
        Width: 100%;
        padding: 0;
        gap: 0.5rem;
    }

    .block-1 > li{
        gap: 0.5rem;
    }
    
    }

#food-menu{ 
 flex-direction: row-reverse;
}


.block-2{
    width: 100%;}

.block-2 > li {
    max-width: 100%;
    display: flex;
    list-style: none;
    border-bottom: 1px solid;
    justify-content: space-between;
    line-height: 2rem;
    gap: 8rem;
}

.block-3{
    display: flex;
    width: 100%;
    gap:2rem;
}

.block-4 {
    width: 50%;
}

.block-4 > li {
    display: flex;
    list-style: none;
    border-bottom: 1px solid;
    justify-content: space-between;
    line-height: 2rem;

}


.div-etc {
    text-align: end;
}

.div-etc > span {
     font-size: 14px;
}

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

    #food-menu{
            flex-direction: column;
           }
           
    .block-2 > li {
        max-width: 100%;
        display: flex;
        list-style: none;
        border-bottom: 1px solid;
        justify-content: space-between;
        line-height: 2rem;
        gap: 0rem;
    }

    .block-3{
        display: flex;
        flex-direction: column;
        gap:2rem;
    }
    
    .block-4 {
        width: 100%;
    }
    
    .block-4 > li {
        display: flex;
        list-style: none;
        border-bottom: 1px solid;
        justify-content: space-between;
        line-height: 2rem;
    
    }


    
}
    


 /* ------GARAGE  CONTACT--------- */

 .r {
    color: var(--red);
}

.contact{
    width: 65%;
    max-width: 736px;
    margin: auto;
}

/* #contact-form {
    align-items: center;
} */

.form{
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0rem 2rem 3rem

}
.single-form{
    display: flex;
    padding-bottom: 2rem;
    width: 100%;
    position: relative;
}

.form-label{
    width: 13rem;
    text-align: end;
    padding-right: 1rem ;
    position: absolute;
    left: 0;
    transform: translateX(-100%);

}

.form-input{
    height: 3rem;
    width:100%;
    margin: auto;
}

input,textarea {
    display: flex;
    background-color: white;
    border: 1px solid ;
    height: 3rem;
    width: 100%;
    color: var(--black);
    padding: 1rem;
    letter-spacing: 0.05em; 
    cursor: text;
    border-radius: 0;
} 


.form-textarea{
  height: 12rem;
  width: 100%;
  margin: auto;
}     

textarea{
    height:12rem;
    letter-spacing: 0.13em; 
    resize: none;   
}

.single-form-submit {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.form-submit{
    height: 80px;
    margin-top: 0.3rem;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
    width: 10rem;
    height: 3rem;
    padding: 8px 24px;
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    background-color: var(--black);
    outline:none;
    border: none;
    cursor: pointer;
    
}
/* .form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
} */

input[type=submit] {
    
    font-family: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
    width: 10rem;
    height: 3rem;
    padding: 0 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    background-color: var(--black);
    outline:none;
    border: none;
    border-radius: 0;
}


/* .wpcf7 form.sent .wpcf7-response-output {
        border-color: var(--black);

    }

.wpcf7 form .wpcf7-response-output {
        padding: 0;
        border: 1px solid;
        margin: 0 0.5em;
} */



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

    .contact{
        width: 98%;
        max-width: 736px;
        padding: 1.5rem 0;
        
    }

    .form{
        display: flex;
        flex-direction: column;
        padding: 0.5rem;
        position: static;    
    }

    .form-input{
        height: 3rem;
        width:100%;
        margin-top: -1.8rem;
        margin-bottom: 0.2rem;
    }

    .form-textarea{
        height: 12rem;
        width: 100%;
        margin-top: -1.8rem;
        margin-bottom: 0.2rem;
      }     

    .single-form{
        display: flex;
        flex-direction: column;
        padding-bottom: 1rem;
        width: 100%;
    }
    
    .form-label{
        font-size: 14px;
        width: 13rem;
        text-align: start;
        padding-bottom: 0 ;
        position: static;
        transform: none;
    }

    .single-form-submit {
        padding-top: 4.5rem;
        margin: auto;
    }
    
    textarea{
        height:15rem;
        letter-spacing: 0.2em; 
        resize: none;   
    }

    input[type=submit] {
    
        font-family: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
        width: 10rem;
        height: 3rem;
        font-weight: 400;
        padding: 0 24px;
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
        color: var(--white);
        text-align: center;
        background-color: var(--black);
        outline:none;
        border: none;
        border-radius: 0;    
    }
    
}


/* focus時 */

input:focus {
    outline: none;
    border:  solid 2.5px;
    border-color: rgba(37, 41, 69, 0.6);
  }

textarea:focus {
    outline: none;
    border:  2.5px solid;
    border-color: rgba(37, 41, 69, 0.6);
  }


/* .single-form-submit:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid;
    border-color: var(--black);
    color: var(--black);
} */


.button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid;
    border-color: var(--black);
    color: var(--black);
}

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

    .button:hover {
        background-color: rgba(255, 255, 255, 0.3);
        border: 1.5px solid;
        border-color: var(--black);
        color: var(--black);
    }
}
    
/* error時 */
input:invalid {
    outline: none;
    border: 1px solid;
    border-color: var(--red);
  }

textarea:invalid {
    outline: none;
    border: 1px solid;
    border-color: var(--red);
  }

.button:invalid {
    background-color: var(--red);
    border: 2px solid;
    border-color: var(--black);
    color: var(--white);
  }

/* inputの各項目への指示を一気に出せる */


/* -----GARELLYandACCESS------ */

.page-nomal {
    padding: 4.5rem 0 5rem ;
}

#page-nomal-gallery
{
    padding-bottom: 10rem;
}

.gallery{
    width: 100%;
    margin: 0 auto;
}

.floormap {
    display: flex;
    padding-top: 2rem;
    gap: 2rem;
    max-width: 1200px;
    width: 90%;
    margin: auto;
    justify-content: center;
}

.floormap > img {
    border: 2px solid;
    color: #DEDCDC;
}

.map{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.map-link {
    padding-top: 2rem;
}
#map-cafe :hover {
    color:var(--white);
}
.iframe{
   width: 1080px;
    height: 400px;
}

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


    .floormap {
        display: flex;
        flex-direction: column;
        padding-top: 1rem;
        gap: 1rem;
        width: 90%;
        margin: auto;
        justify-content: center;
    }

    .page-nomal {
        padding: 2rem 0 3rem ;
    }

    .map-link {
        padding-top: 1rem;
    }
    .map-link >h6 {
        font-size: 18px;
        margin-bottom: 1rem;
    }
    
}

/* -------CAFE-GARAGE-FOOTER------- */
.page-footer {
    background-image: url('../img/garage/foot-garage.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 456px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    color: var(--white);
  }

  .page-footer > h2{
    letter-spacing: 0.2rem;
    margin-bottom: 1.8rem;
 }


  .page-adress{
    font-family: 'Zen Kaku Gothic New', sans-serif;
  }

  .page-adress > p {
    letter-spacing: 0.1rem;
    line-height: 27px;
    
 }

  .page-adress > p a {
    color: var(--white);
    text-decoration: none;
  }

  .page-adress a:hover{
        color:var(--yellow);
}



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

    .page-footer {
        background-image: url('../img/sp/foot.png');
        margin: auto; /* 左右真ん中にする */
        height: 320px;
        gap: 0.5rem;
     }

     .page-footer > h2{
        margin: 0;
     }

     .page-adress > p {
        padding:0;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0.2rem;
     }
    
}



    /* =============Decoration Frame=============== */

    
  .decoration-frame {
    position: relative;
    width: 100%;
    /* max-width: 1200px;  */
    margin: 0 auto;
    padding: 0.5em 2em;
    margin-bottom: 8rem;
  }


  .decoration-frame::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background:
      radial-gradient(circle at top left, transparent 30px, #252945 30px, #252945 32px, transparent 32px) left top / 32px 32px no-repeat,
      /* radial-gradient(circle at top right, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) right top / 23px 23px no-repeat, */
      /* radial-gradient(circle at bottom left, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) left bottom / 23px 23px no-repeat, */
      radial-gradient(circle at bottom right, transparent 30px, #252945 30px, #252945 32px, transparent 32px) right bottom / 32px 32px no-repeat,
      linear-gradient(90deg, transparent 30px, #252954 33px) left top / 100% 2px no-repeat,
      /* linear-gradient(-90deg, transparent 20px, #ca4 23px) right top / 51% 2px no-repeat, */
      /* linear-gradient(90deg, transparent 20px, #ca4 23px) left bottom / 51% 2px no-repeat, */
      linear-gradient(-90deg, transparent 30px, #252945 33px) right bottom / 100% 2px no-repeat,
      linear-gradient(180deg, transparent 30px, #252945 33px) left top / 2px 100% no-repeat,
      /* linear-gradient(0deg, transparent 20px, #ca4 23px) left bottom / 2px 51% no-repeat, */
      /* linear-gradient(180deg, transparent 20px, #ca4 23px) right top / 2px 51% no-repeat, */
      linear-gradient(0deg, transparent 30px, #252945 33px) right bottom / 2px 100% no-repeat;
  }

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

    .decoration-frame {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 0.5em 0.5em;
        margin-bottom: 3.5rem;
      }

      .decoration-frame::before {
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        background:
          radial-gradient(circle at top left, transparent 30px, #252945 30px, #252945 31.5px, transparent 31.5px) left top / 31.5px 31.5px no-repeat,
          /* radial-gradient(circle at top right, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) right top / 23px 23px no-repeat, */
          /* radial-gradient(circle at bottom left, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) left bottom / 23px 23px no-repeat, */
          radial-gradient(circle at bottom right, transparent 30px, #252945 30px, #252945 31.5px, transparent 31.5px) right bottom / 31.5px 31.5px no-repeat,
          linear-gradient(90deg, transparent 30px, #252954 33px) left top / 100% 1.5px no-repeat,
          /* linear-gradient(-90deg, transparent 20px, #ca4 23px) right top / 51% 2px no-repeat, */
          /* linear-gradient(90deg, transparent 20px, #ca4 23px) left bottom / 51% 2px no-repeat, */
          linear-gradient(-90deg, transparent 30px, #252945 33px) right bottom / 100% 1.5px no-repeat,
          linear-gradient(180deg, transparent 30px, #252945 33px) left top / 1.5px 100% no-repeat,
          /* linear-gradient(0deg, transparent 20px, #ca4 23px) left bottom / 2px 51% no-repeat, */
          /* linear-gradient(180deg, transparent 20px, #ca4 23px) right top / 2px 51% no-repeat, */
          linear-gradient(0deg, transparent 30px, #252945 33px) right bottom / 1.5px 100% no-repeat;
      }
    

    }


  /* =============humberger menu=============== */

  .hamburger-menu {
    display: none;
    z-index:9999;
  }


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

    .hamburger-menu {
        display: block;
        position: fixed;
        height: 48px;
        width: 100%;
        background-color: var(--black);
        z-index:9999;
      }
    }
    
    /*header menu*/
/*nav要素は絶対位置指定にして、ビューの外側に置いて見えなくします。
　　nav の中の ul li は横並びを解除して縦組みにレイアウトし直します。*/
.hamburger-menu nav {
    position: absolute; /*bodyに対しての絶対位置*/
    height: 460px;
    right:0;
    top: -508px; /*通常時はビュー外*/
    background:var(--beige);
    width:33.33%;
    padding:0;
    -webkit-transition:.5s ease-in-out; /*transitionで動きを*/
    -moz-transition:.5s ease-in-out;
    transition:.5s ease-in-out;
    color: var(--black); 
}

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

    .hamburger-menu nav {
        width:66.66%;
    }
}

.hamburger-menu ul li {
    display:block;
    margin:0;
    border-bottom:2px solid;
    border-color: var(--black);
    line-height: 3;
    width: 80%; 
    margin: auto;
}

.hamburger-menu ul li a {display:block}
.hamburger-menu ul li::after {content:''}
.hamburger-menu ul li:last-child {border-bottom:none}

.logo-sp {
    position:absolute;
    font-size: 24px;
    line-height: 2rem;
    top: 8px;
    right: 4.5rem;
    letter-spacing: 0.12rem;
    justify-content: center;
    color: var(--beige);
}

.hamburger .header-btn {
    position: absolute;
    margin: 0;
    top: 12.5px;
    right: 1.5rem;
    width: 30px;
    height: 24px;
}

.hamburger .header-btn span {
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: var(--beige);
    border-radius: 1px;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out
}

.hamburger .header-btn span:nth-child(1) {
    top: 0;
}

.hamburger .header-btn span:nth-child(2) {
    top: 10px;
}

.hamburger .header-btn span:nth-child(3) {
    top: 20px;
}

/* Toggle(Button) */
/*display:noneだったボタンを display:blockにして表示します*/
 
.header-btn {display:block}
 
/* Click Toggle(Button) */
/*ここから jQueryで header要素に付けた「.is-open」を利用します*/
/*.openNavが付いた要素内のボタン（#navToggle）内のspanへの指定*/
/*最初のspanをマイナス45度に*/
.is-open .header-btn span:nth-child(1) {
    top: 11px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    transform:rotate(-45deg)}
/*2番目と3番目のspanを45度に*/
.is-open .header-btn span:nth-child(2),
.is-open .header-btn span:nth-child(3) {
    top: 11px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg)}
 
/*header menu*/
/*.openNavが付いた要素の中のnavを 縦方向に351px移動（=表示される）*/
.is-open nav {
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px)
}

.hum-nav {
    border: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.hum-menu {
    width: 100%;
    padding: 0;
    margin: 0;
}



.hum-menu li a {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0.08rem;
    margin-top: 0;
    text-decoration: none;
    text-align: center;
}

.hum-menu li a:hover {
    color:var(--yellow);
}

.hum-info{
    margin: auto;
    width: 80%;
    padding: 1.6rem 0;
    border-top: 2px solid;

}

.hum-h5{
    color: var(--black);
    font-size: 2rem;
    letter-spacing: 0.12rem;
}

.adress{
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0.5rem;

}

.hum-map {
    text-align: right;

}

.hum-map a {
    width: 80%;
    color: var(--black);
    font-weight: 400;
}

.hum-map a:hover{
    color:var(--yellow);
}
