@charset "utf-8";

:root{
  --font_title:"Slackside One", cursive;
  --font_ja: "Zen Maru Gothic", serif;
  --font_en: "Quicksand", sans-serif;
  --color_1:#370405;
  --color_2:#c03526;
  --bg_1:#90bb51;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 2px solid #333; */
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
img{
  vertical-align: bottom;
  max-width: 100%;
}
html{
  scroll-behavior: smooth;
}
body{
  color: #333;
}
/* header */
header{
  background-color: #ffffff82;
  width: fit-content;
  position: absolute;
  top: 100px;
  left: 60px;
  z-index: 10;
  padding: 80px 40px;
  text-align: center;
  >h1{
    margin-bottom: 10px;
    font-size: 45px;
    font-family: var(--font_title);
  }
  .tag-line{
    font-family: var(--font_ja);
    font-size: 16px;
  }
  @media (max-width: 767px){
    width: 80%;
    height: fit-content;
    margin: auto;
    top: -65%;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 50px 40px;
    >h1{
      font-size: 32px;
    }
    .tag-line{
      font-size: 12px;
    }
  }
}
/* logo */
.logo{
  width: 200px;
  position: absolute;
  top: -90px;
  right: -100px;
  z-index: 20;
  animation: logo-anime 10s infinite linear;
}
@keyframes logo-anime{
  0%{rotate: 0;}
  100%{rotate: 360deg;}
}
@media (max-width:900px){
  .logo{
    display: none;
  }
}
#ham-btn{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bg_1);
  opacity: 85%;
}
/* nav */
#g-nav{
  width: 100%;
  height: 100vh;
  background: url(../img/nav.webp) no-repeat center center /cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: row-reverse;
  .nav-inner{
      width: 60%;
      height: 90vh;
      margin-bottom: 10vh;
      text-align: center;
      /* padding-top: 5%; */
      background-color: #fff;
      opacity: 85%;
    >ul{
      width: 30%;
      margin: 5% auto 10%;
      >li{
        font-size: 18px;
        >a{
          padding-top: 40px;
          display: block;
          color: var(--color_1);
          font-family: var(--font_ja);
          font-weight: bold;
          transition: .2s;
          &:hover{
            border-bottom: 2px solid var(--color_1);
          }
          &::after{
            content: attr(data-en);
            color: var(--color_2);
            font-size: 12px;
            margin-left: 8%;
          }
        }
      }
    }
  }
}
@media (max-width:767px){
  #g-nav{
    .nav-inner{
      width: 100%;
      & li{
          font-size: 14px;
      }
    }
  }
}
.sns-wrapper{
  display: flex;
  justify-content: center;
  gap: 0 10%;
  margin-top: 5%;
  >p{
    width: 25%;
    >a{
      color: var(--color_1);
      background: #d9d9d9 url(../img/instagram.svg) no-repeat center top 15%/30px;
      display: block;
      padding: 45px 5px 10px;
      text-align: center;
      font-family: var(--font_en);
      border-radius: 5px;
      transition: .2s;
      &:hover{
        border: 1px solid var(--color_1);
        background-color: #fff;
      }
    }
    &:nth-of-type(2)>a{
      background: #d9d9d9 url(../img/line.svg) no-repeat center top 15%/30px;
      &:hover{
        border: 1px solid var(--color_1);
        background-color: #fff;
      }
    }
  }
}
/* main visual */
.main-visual{
  width: 100%;
  height: 100vh;
  margin-bottom: 140px;
    & li{
    width: 100%;
    height: 100vh;
    >img{
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}
@media (max-width:900px){
  .main-visual{
    height: 70vh;
    margin-bottom: 80px;
    & li{
      height: 70vh;
    }
  }
}
/* main copy */
.main-copy{
  text-align: center;
  font-family: var(--font_ja);
  margin-bottom: 100px;
  line-height: 2;
  >h2{
    font-size: 32px;
    margin-bottom: 40px;
  }
  .lead{
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2.5;
  }
}
@media (max-width:767px){
  .main-copy{
    margin: 80px 10px;
    padding: 0 10px;
    >h2{
      font-size: 20px;
    }
    .lead{
      text-align: left;
      font-size: 14px;
      line-height: 2;
    }
  }
}
/* gallery */
.gallery{
  max-width: 600px;
  margin: 0 auto 210px;
  position: relative;
  >p:nth-of-type(1){
    box-shadow: 20px 20px 0 var(--color_2);
  }
  >p:nth-of-type(2){
    width: 60%;
    position: absolute;
    bottom: -150px;
    right: -100px;
    box-shadow: 20px 20px 0 var(--bg_1);
  }
}
@media (max-width:900px){
  .gallery{
    max-width: 80%;
    /* margin: 0 auto 80px; */
    >p:nth-of-type(2){
      width: 60%;
      bottom: -100px;
      right: -10px;
    }
  }
}
/* section */
section{
  /* margin: 0 auto 100px; */
  padding: 50px 10px;
  >h3{
    text-align: center;
    font-family: var(--font_ja);
    color: var(--color_1);
    font-size: 26px;
    margin-bottom: 40px;
    &::before{
      display: block;
      content: attr(data-en);
      font-size: 20px;
      font-family: var(--font_en);
      color: var(--color_2);
    }
  }
}
@media (max-width:767px){
  section{
    /* margin: 0 auto 50px; */
    >h3{
      font-size: 26px;
      &::before{
        font-size: 16px;
      }
    }
  }
}

/* news */
#news-list{
  margin: 0 auto 50px;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-family: var(--font_ja);
  line-height: 3;
  >dt{
    width: 30%;
    border-bottom: 2px solid var(--bg_1);
    padding: 5px;
    &:nth-of-type(n+4){
      display: none;
    }
  }
  >dd{
    width: 70%;
    border-bottom: 2px solid var(--bg_1);
    padding: 5px;
    &:nth-of-type(n+4){
      display: none;
    }
  }
    @media (max-width:767px){
    display: block;
    font-size: 16px;
    line-height: 1;
    >dt{
      width: 100%;
    }
    >dd{
      width: 100%;
      margin-bottom: 35px;
      border-bottom: none;
    }
  }
}
/* parallax */
.parallax-1{
  width: 100%;
  height: 70vh;
  background: url(../img/parallax1.webp) no-repeat center center/cover fixed;
  @media (max-width:767px){
    height: 40vh;
    background: url(../img/parallax1.webp) no-repeat center center/cover scroll;
  }
}
.parallax-2{
  width: 100%;
  height: 70vh;
  background: url(../img/parallax2.webp) no-repeat center center/cover fixed;
  filter:/* brightness(100%)  */sepia(10%);
  @media (max-width:767px){
    height: 40vh;
    background: url(../img/parallax2.webp) no-repeat center center/cover scroll;
  }
}
/* menu */
.menu-wrapper{
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 50px;
}
.menu-box{
  width: calc((100% - 100px) / 3);
  border: 1px solid #333;
  box-shadow: 5px 5px 0 5px var(--bg_1);
  padding: 40px;
  >a{
    color: #333;
    &:hover img{
      scale: 1.2;
      transition: all .3s;
    }
    >.menu-photo{
      margin-bottom: 10px;
      overflow: hidden;
    }
    >.menu-txt{
      line-height: 1.8;
    }
  }
}
@media (max-width:900px){
  .menu-wrapper{
    width: 98%;
    gap: 60px 50px;
  }
  .menu-box{
    width: calc((100% - 50px) / 2);
    /* padding: 50px; */
  }
}
@media (max-width:545px){
  .menu-wrapper{
    width: 98%;
    gap: 60px;
  }
  .menu-box{
    width: 98%;
  }
}

  /* video */
.video-wrapper{
    margin: 0 auto;
    width: 70%;
    aspect-ratio: 16/9;
    >iframe{
      width: 100%;
      height: 100%;
  }
}
/* shop info */
.shop-wrapper{
    max-width: 960px;
    margin: 0 auto;
}
.map-wrapper{
  width: 100%;
  aspect-ratio: 2/.8;
  margin-bottom: 80px;
  >iframe{
    width: 100%;
    height: 100%;
  }
}
.shop-info{
  display: flex;
  >dl{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font_en), var(--font_ja);
    >dt{
      width: 25%;
      margin-bottom: 20px;
    }
    >dd{
      width: 75%;
      margin-bottom: 20px;
      font-size: 18px;
    }
  }
  @media (max-width:767px){
    flex-direction: column;
    gap: 50px 0;
    >dl{
      width: 90%;
      margin: 0 auto;
    }
  }
}
/* tel */
.tel>a{
  pointer-events: none;
  color: #333;
  font-size: 24px;
}
/* qaa */
details{
  max-width: 680px;
  margin: 0 auto 40px;
  font-family: var(--font_ja);
  &:last-of-type{
    margin: 0 auto;
  }
  >summary{
    background-color: var(--bg_1);
    border-radius: 30px;
    padding: 14px;
    font-size: 18px;
    list-style: none;/* 黒い三角を消す */
    cursor: pointer;
    transition: .3s;
    &:hover{
      background-color: #b4e966;
    }
    >span{
      font-size: 24px;
      font-family: var(--font_en);
      color: var(--color_1);
      margin-right: 10px;
    }
  }
}
  /* for ios reset */
summary::-webkit-details-marker{
  display: none;
}
details>p{
  padding: 14px 14px 14px 44px;
  text-indent: 18px;
  >span{
    font-size: 24px;
    font-family: var(--font_en);
    color: var(--color_2);
    margin-right: 10px;
  }
}
/* form */
.form-wrapper{
  max-width: 640px;
  margin: 0 auto;
  >iframe{
    width: 100%;
  }
}
/* carousel */
.carousel li{
  width: 16.66%;
  aspect-ratio: 4/3;
  >img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/* footer */
footer{
  width: 100%;
  padding: 40px 0;
  text-align: center;
  font-family: var(--font_ja);
  background-color: var(--color_1);
  color: #fff;
  font-size: 18px;
}
/* loding animetion */
.curtain{
  /* display: none; */
  width: 100%;
  height: 100vh;
  background-color:var(--color_2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(infinity);
}
.logo-box{
  max-width: 600px;
  margin: 200px auto 0;
}
#レイヤー_1 path{
  fill: var(--color_2);
  stroke: var(--color_1);
  stroke-width: 1px;
  stroke-dasharray: 370px;
  stroke-dashoffset: 370px;
  animation: text 1.5s 0.5s linear forwards;
}

@keyframes text{
  0%{stroke-dashoffset: 370px;}
  80%{stroke-dashoffset: 0;fill: var(--color_2);}
  100%{stroke-dashoffset: 0;fill:#ffffffdc;}
}
#レイヤー_1.st0{fill:#fff}

