@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  color: #2e1500; /* RGB */
  font-family: 'Noto Sans JP', YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 2.4rem;
  text-align: left;
}
main {
  background-color: #f4efe7;
  overflow-x: hidden;
}
section h2 {
  font-size: 2.0rem;
  font-weight: 600;
}
a{
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 1.2;
}
a:visited{
  color: none;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  width: 100%;
}
iframe{
  width: 100%;
}
p{
  line-height: 3.2rem;
  letter-spacing: 0.02em;
}
h1 {
  text-align: center;
  font-family: "utopia-std-display", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.0rem;
  line-height: 2.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
h3{

}
@media(min-width:768px){
  h1{
    font-size: 4.8rem;
    margin-bottom: 17px;
  }

}
@media(min-width:1140px){
  p{
    line-height: 3.9rem;
    letter-spacing: 0.04em;
  }
  h1{
    font-size: 7.2rem;
    margin-bottom: 24px;
  }
}
/* ヘッダー */

.header {
  background-color: #2e1500;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 80px;
  margin: 0;
}

.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%); 
  background-color: #604320; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

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

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
  text-align: center;
  font-family: "utopia-std-display", serif;
font-weight: 400;
font-style: normal;
letter-spacing: 0.2rem;
color: #fff;
}
.nav-items li{
  margin-bottom: 30px;
  font-size: 2.0rem;
}

/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
  
}
.nav-items a{
  color: #fff;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items li span{
  display: block;
  font-family: "yu-mincho-pr6n", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 1.6rem;
}
@media(min-width:768px){
  .header__title{
    width: 170px;
  }
}

@media(min-width:1140px){
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-evenly;
  }
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
   }
   .nav-items__item a {
    margin-bottom: 0;
   }
   .hamburger {
    display: none;
  }
  .nav-items li{
    margin-bottom: 0;
    font-size: 2.4rem;
  }
  
  .nav-items li span{
    font-size: 1.8rem;
  }
}
.title-ja {
  text-align: center;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 50px;
}
.section-contact {
  background-image: url(../images/home/contact-dish.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 50px;
}

.section-contact__wrapper {
  padding: 50px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  width: 100%;
  text-align: center;
}

.section-contact__text {
  margin: 20px 0 20px;
}

.section-contact__tel span {
  font-size: 2.2rem;
  font-weight: 600;
  background-image: url(../images/home/tel-icon.png);
  background-repeat: no-repeat;
  background-size: 20px auto;
  padding-left: 30px;
  margin-right: 30px;
  background-position: center left;
}

@media(min-width:768px) {
  .title-ja {
    margin-bottom: 100px;

  }
  .title-ja p {
    font-size: 2.2rem;
  }

  .section-contact {
    padding: 100px 50px;
  }

  .section-contact__wrapper {
    max-width: 768px;
    margin: 0 auto;
  }
}

@media(min-width:1140px) {
  .section-contact {
    padding: 200px 10vh;
  }
  .title-ja p {
    font-size: 2.8rem;
  }
  .section-contact__wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
  }
.section-contact__wrapper h1{
  margin-bottom: 44px;
}
  .section-contact__tel span {
    font-size: 4.6rem;
    background-size: 40px auto;
    padding-left: 60px;
  margin-right: 60px;
  }
  .section-contact__text p{
    font-size: 2.4rem;

  }
  .section-contact__tel{
    margin-top: 50px;
  }
}

.section-shopinfo {
  padding: 70px 50px;
  position: relative;
  
}

/* .section-shopinfo h1::after {
  content: "";
  background: url(../images/home/plant5.png);
  background-size: 100% auto;
  position: absolute;
  display: inline-block;
  right: -80px;
  width: 20%;
  margin-right: auto;
  height: 18.8rem;
  transform: rotate(-45deg) translateY(-50%);
  background-repeat: no-repeat;
} */
.section-shopinfo__plant{
  transform: rotate(-45deg);
    position: absolute;
    top: 0;
    width: 25%;
    max-width: 240px;
    right: 0;
    height: 25%;
    max-height: 200px;
}
.iframe-wrp {
  margin-bottom: 30px;
}

.iframe-wrp iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100% !important;

}

.section-shopinfo__slider {
  position: relative;
  z-index: 1;
}

/* .section-shopinfo__slider-item01 {
  background: url(../images/home/entrance.jpeg);
}

.section-shopinfo__slider-item02 {
  background: url(../images/home/blackboard.JPEG);
}

.section-shopinfo__slider-item03 {
  background: url(../images/home/signboard.jpg);
}

.section-shopinfo__slider-item04 {
  background: url(../images/home/table.jpeg);
}

.section-shopinfo__slider-item05 {
  background: url(../images/home/bar-counter.jpeg);
} */

.section-shopinfo__slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: auto;
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff;
  /*矢印の色*/
  border-right: 2px solid #fff;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
  /*ドットの位置*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px !important;
  /*ドットボタンのサイズ*/
  height: 8px !important;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #a57d56 !important;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333 !important;
  /*ドットボタンの現在地表示の色*/
}

.section-shopinfo__list {
  margin-top: 50px;
}

.section-shopinfo__list p {
  padding: 10px 0;
}

.section-shopinfo__list p span {
  font-weight: 600;
  color: #604320;
  font-size: 2.0rem;
}

@media(min-width:768px) {
  .section-shopinfo {
    margin: 0 auto;
    padding: 100px 50px;
  }

  .section-shopinfo__contents-wrapper {
    display: flex;
    justify-content: space-between;
  }
.section-shopinfo h1::after{
  height: 25%;
  max-height: 200px;
}
  .iframe-wrp {
    width: 45%;
    margin: 0;
  }

  .section-shopinfo__slider {
    width: 45%;
  }

  .iframe-wrp iframe {
    height: 100% !important;

  }

  .section-shopinfo__contents-wrapper {
    margin-top: 100px;
  }

  .section-shopinfo__list {
    display: flex;
    justify-content: space-between;
  }

  .section-shopinfo__list01,
  .section-shopinfo__list02 {
    width: 45%;
  }

}

@media(min-width:1140px) {
  .section-shopinfo {
    max-width: 1140px;
    margin: 0 auto;
    padding: 200px 2vh;
  }

}

.footer {
  padding: 50px;
}

.footer-img {
  max-width: 300px;
  margin: 0 auto;
}

.footer-small {
  margin: 30px auto 0;
  text-align: center;
}

.footer-small small {
  font-size: 1.2rem;
}
.section-contact__wrapper, .iframe-wrp, .section-shopinfo__slider, .section-shopinfo__list{
  opacity: 0;
  transition: all 1s;
  transform: translateY(100px);
}
.section-contact__wrapper.show{
  opacity: 1;
  transform: translateY(0);
}
.iframe-wrp.show{
  opacity: 1;
  transform: translateY(0);
}
.section-shopinfo__slider.show{
  opacity: 1;
  transform: translateY(0);
}
.section-shopinfo__list.show{
  opacity: 1;
  transform: translateY(0);
}
.section-title{
  opacity: 0;
  transition: all 1s;
  transform: translateY(100px);
}
.section-title.show{
  opacity: 1;
  transform: translateY(0);
}