@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.4rem;
  line-height: 3.3rem;
  background-color: #fff;
  color: #333333;
}

.gothic {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.nav_wrap.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 900;
}

a img {
  transition: all 0.3s;
}
a:hover img {
  opacity: 0.6;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header nav {
  transition: all 0.75s ease-in-out 0.15s;
  position: fixed;
  top: 0;
  right: 0;
  width: 465px;
  height: 100vh;
  height: 100dvh;
  background-color: transparent;
  transform: translateX(100%);
  box-shadow: 0px -8px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
}
header nav.active {
  transform: translateX(0);
  background: #715714;
  box-shadow: 0px -8px 12px rgba(0, 0, 0, 0.25);
}
header nav ul {
  margin-top: 164px;
  padding-left: 44px;
}
header nav ul li {
  margin-top: 30px;
}
header nav ul li a {
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.6;
  color: #fff;
  list-style: none;
  text-decoration: none;
}
header nav ul li ul.child {
  margin-top: 0;
  padding-left: 78px;
}
header nav ul li ul.child li a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  /* or 280% */
  color: #FFFFFF;
}
header .nav_banner {
  background-color: white;
  padding: 45px 0;
  display: flex;
  justify-content: center;
}
header .header__hamburger_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background-color: transparent;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  transition: all 0.75s ease-in-out 0.15s;
}
header .header__hamburger_bg.active {
  background-color: rgba(255, 255, 255, 0.85);
}
header .header__hamburger_bg.active.hamburger_active {
  background-color: transparent;
}

.gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li.current a,
.gnavi li a:hover {
  color: #fff;
}

.gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.header__hamburger_wrap {
  position: fixed;
  top: 22px;
  right: 32px;
  z-index: 9999;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 4px;
  background-color: #715714;
  position: relative;
  transition: ease 0.4s;
  display: block;
  border-radius: 4px;
}

.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 {
  background-color: white;
}

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

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

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

.container {
  width: 100%;
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.container_s {
  width: 100%;
  max-width: 930px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

section.kv .kv_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
section.kv .kv_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.kv .kv_wrap .kvtext {
  position: absolute;
  top: 44.705%;
  left: 5.929%;
}
section.kv .kv_wrap .kvtext h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 61px;
  width: 100%;
  /* or 145% */
  text-align: center;
  color: #333333;
  text-shadow: 4px 4px 60px #FFFFFF;
}
section.kv .kv_wrap .kv_text2 {
  position: absolute;
  bottom: 34px;
  right: 0;
}
section.kv .kv_wrap .kv_text2 h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 127px;
  line-height: 182px;
  text-align: center;
  color: rgba(255, 188, 59, 0.35);
}

section.about {
  padding-bottom: 140px;
  background-image: url(../images/about_bg.png);
  background-size: cover;
  background-position: center;
}
section.about div.about_img {
  display: flex;
  justify-content: center;
}
section.about .about_Text {
  margin-top: 60px;
}
section.about .about_Text h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 60px;
  text-align: center;
}
section.about .about_Text p {
  margin-top: 40px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 42px;
  /* or 233% */
  text-align: center;
}
section.about .about_banner {
  display: flex;
  justify-content: center;
  margin-top: 110px;
}

section.shop {
  position: relative;
  padding: 190px 0;
  background-image: url(../images/shop_bg.png);
  background-size: cover;
  background-position: center;
}
section.shop .section_title h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 30px;
  /* identical to box height, or 71% */
  text-align: center;
  color: #FFFFFF;
}
section.shop .section_title p {
  margin-top: 60px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  /* or 183% */
  text-align: center;
  color: #FFFFFF;
}
section.shop .shop_cards {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
section.shop .shop_cards .shop_card {
  width: 27.09874%;
}
section.shop .shop_cards .shop_card a {
  text-decoration: none;
}
section.shop .shop_cards .shop_card .title .desc p {
  display: flex;
  justify-content: center;
}
section.shop .shop_cards .shop_card .title .desc .cat {
  background: #FFFFFF;
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 0 9px;
  color: #806217;
  margin: 0 7.5px;
}
section.shop .shop_cards .shop_card .title .desc .add {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin: 0 7.5px;
  color: #FFFFFF;
}
section.shop .shop_cards .shop_card .title .shop_name {
  margin-top: 10px;
}
section.shop .shop_cards .shop_card .title .shop_name h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  color: #FFFFFF;
  text-align: center;
}

section.menus div.parallax {
  min-height: 222px;
  background-image: url(../images/parallax_1.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.menus div.parallax_2 {
  min-height: 222px;
  background-image: url(../images/parallax_2.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.menus div.parallax_3 {
  min-height: 222px;
  background-image: url(../images/parallax_3.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.menus div.bg {
  padding: 160px 0;
  background-image: url(../images/menu_bg.png);
  background-size: cover;
}
section.menus .section_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.menus .section_title h2 {
  margin-top: 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 60px;
  text-align: center;
  color: #333333;
}
section.menus .section_title div.desc {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
section.menus .section_title div.desc span.cat {
  background: #795D16;
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 0 9px;
  color: #fff;
  margin: 0 7.5px;
}
section.menus .section_title div.desc span.add {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin: 0 7.5px;
}
section.menus .section_title p {
  max-width: 936px;
  margin: 0 auto;
  margin-top: 22px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  /* or 183% */
  text-align: center;
}
section.menus .big_menus .big_menu {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.menus .big_menus .big_menu:nth-child(2n) {
  flex-direction: row-reverse;
}
section.menus .big_menus .big_menu:nth-child(2n) .text h3,
section.menus .big_menus .big_menu:nth-child(2n) .text p {
  margin-right: auto;
  margin-left: 0;
}
section.menus .big_menus .big_menu .text {
  width: 50%;
  padding: 0 66px;
}
section.menus .big_menus .big_menu .text h3,
section.menus .big_menus .big_menu .text p {
  max-width: 450px;
  margin-left: auto;
}
section.menus .big_menus .big_menu .text h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 43px;
  text-align: center;
}
section.menus .big_menus .big_menu .text p {
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 33px;
  /* or 206% */
}
section.menus .big_menus .big_menu .img {
  width: 50%;
}
section.menus .big_menus .big_menu .img img {
  width: 100%;
  object-fit: cover;
}
section.menus .menus {
  margin-top: 140px;
}
section.menus .menus .section_title h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 43px;
  text-align: center;
}
section.menus .menus .menu_cards {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
section.menus .menus .menu_cards .menu_card {
  margin-bottom: 40px;
  width: 29.629597%;
  margin-right: 5.5555555%;
}
section.menus .menus .menu_cards .menu_card:nth-child(3n) {
  margin-right: 0;
}
section.menus .menus .menu_cards .menu_card h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  /* identical to box height */
  text-align: center;
}
section.menus .menus .menu_cards .menu_card p.price {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  /* identical to box height */
  text-align: center;
}
section.menus .menus .shop_info_box {
  padding: 35px 40px;
  background-color: white;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  max-width: 784px;
  margin: 0 auto;
  margin-top: 120px;
}
section.menus .menus .shop_info_box .text h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
}
section.menus .menus .shop_info_box .text table {
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  /* or 208% */
}
section.menus .menus .shop_info_box .text table th {
  vertical-align: top;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
section.menus .menus .shop_info_box .text table td {
  padding-left: 12px;
}
section.menus .shop_btn {
  margin-top: 150px;
}

a.btn {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 85px;
  display: block;
  width: 396px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
  background: #705614;
  border: 1px solid #705614;
  border-radius: 49px;
  text-decoration: none;
  transition: all 0.3s;
}
a.btn:hover {
  opacity: 0.6;
}
a.btn span {
  position: relative;
}
a.btn span i {
  background-image: url(../images/tabler-icon-external-link.svg);
  width: 29px;
  height: 29px;
  background-size: cover;
  position: absolute;
  right: -37px;
  top: 19.5px;
  transform: translateY(-50%);
}

section.products {
  padding: 120px 0;
  background-color: #705614;
}
section.products .title_box h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 60px;
  text-align: center;
  color: #FFFFFF;
}
section.products .title_box p {
  margin-top: 25px;
  font-weight: 600;
  font-size: 18px;
  line-height: 33px;
  /* or 183% */
  text-align: center;
  color: #FFFFFF;
}
section.products .product_cards {
  display: flex;
  margin-top: 60px;
  flex-wrap: wrap;
}
section.products .product_cards .product_card {
  width: 48.3797%;
  margin-right: 3.2407407%;
  margin-bottom: 35px;
}
section.products .product_cards .product_card:nth-child(2n) {
  margin-right: 0;
}
section.products .product_cards .product_card a {
  background: #FFFFFF;
  box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333333;
}
section.products .product_cards .product_card a:hover {
  opacity: 0.6;
}
section.products .product_cards .product_card a .thumnail {
  width: 77px;
  flex-shrink: 0;
}
section.products .product_cards .product_card a .text_box {
  width: calc(100% - 77px);
  padding-left: 14px;
}
section.products .product_cards .product_card a .text_box h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
section.products .product_cards .product_card a .text_box .price_box {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.products .product_cards .product_card a .text_box .price_box span.price {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
section.products .product_cards .product_card a .text_box .price_box span.price span {
  font-weight: 600;
  font-size: 10px;
  line-height: 22px;
}
section.products .product_cards .product_card a .text_box .price_box .cart {
  padding: 0px 14px;
  padding-right: 35px;
  background: #795D16;
  border-radius: 18px;
}
section.products .product_cards .product_card a .text_box .price_box .cart span.cart_text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}
section.products .product_cards .product_card a .text_box .price_box .cart span.icon {
  position: relative;
}
section.products .product_cards .product_card a .text_box .price_box .cart span.icon i {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -21px;
  background-image: url(../images/tabler-icon-external-link.svg);
  width: 17px;
  height: 17px;
  background-size: cover;
}

.totop {
  position: fixed;
  right: 65px;
  bottom: 75px;
  z-index: 100;
}

section.footer {
  background: #4D3B0E;
  padding: 90px 0 25px;
  color: #FFFFFF;
}
section.footer .footer_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.footer .footer_content a {
  text-decoration: none;
}
section.footer .footer_content a.hp {
  margin-top: 5px;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  /* or 135% */
  text-align: center;
  color: #FFFFFF;
  transition: all 0.3s;
}
section.footer .footer_content a.hp:hover {
  opacity: 0.6;
}
section.footer .footer_content p.name {
  margin-top: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  /* identical to box height, or 169% */
  text-align: center;
}
section.footer .footer_content p.add,
section.footer .footer_content p.tell {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  /* or 150% */
  text-align: center;
  color: #FFFFFF;
}
section.footer .footer_content .copy {
  margin-top: 90px;
}
section.footer .footer_content .copy p {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #FFFFFF;
}

.totop a {
  transition: all 0.3s;
}/*# sourceMappingURL=style.css.map */