@charset "utf-8";
/* ブレイクポイント
1301px~
1000px - 1300px
768px ~ 1000px
~768px
*/


/* 共通設定 */
body {
  font-family: "Poppins", sans-serif;
  color: #231815;
  letter-spacing: 0.2rem;
  position: relative;
}

img {
  width: 100%;
}

a {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: #231815;
}

a:hover {
  opacity: 0.7;
}

.hp_fc_green {
  color: #009944;
}

.inner__840 {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}


.inner__1020 {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.inner__1070 {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
}

.inner__1120 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.sp {
  display: none!important;
}

@media screen and (max-width:768px) {
  .sp {
    display: block!important;
  }

  .pc {
    display: none!important;
  }
}

/* ヘッダー */
.header {
  background: #fff;
}
.hd_wrap {
  height: 140px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.hd_logo {
  height: 60px;
  width: auto;
  padding-left: 50px;
}

/* ハンバーガーボタン */
.hd_hmbg {
  padding-right: 50px;
  position: fixed;
  right: 0;
  z-index: 10;
}

.hd_hmbg span {
  display: block;
  width: 30px;
  height: 2px;
  background: #231815;
  margin-bottom: 12px;
}

/* 展開時のデザイン */
.hd_hmbg.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
  margin: -3px 0;
}
.hd_hmbg.active > span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}

/* メニューのデザイン */
.hmbg_nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  transition: opacity 1s ease;
  opacity: 0;
  visibility: hidden;
}
.hmbg_nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #009944;
  padding: 30% 20%;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 1s ease;
  box-sizing: border-box;
}
.hmbg_nav_menu {
  width: 100%;
  list-style: none;
  padding-left: 0;
}

.hmbg_nav_item {
  margin-bottom: 40px;
}

.hmbg_nav_link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 500;
}

.hmbg_logo {
  width: 321px;
  height: 87px;
}

.hmbg_nav .snsArea p {
  color: #fff;
}

/* 展開時のデザイン */
.hmbg_nav.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transition: transform 1s ease;
}
.hmbg_nav.active .hmbg_nav_inner {
  transform: translateX(0);
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}




/* メイン */
main {
  background: url(../images/main_bg.jpg)repeat;
  background-size: auto;
  width: 100%;
  overflow-x: hidden;
}
/* ファーストビュー */
.fv {
  position: relative;
}
.fv_wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fv_wrap img {
  width: calc(100% - 130px);
}

.snsArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.snsArea p {
  writing-mode: vertical-lr;
  font-size: 14px;
  position: fixed;
  top: calc(50% + 140px);
  right: 60px;
  transform: translateY(-50%);
}

.snsArea img {
  width: 20px;
}

.snsArea_iconList {
  position: fixed;
  bottom: 0;
  right: 56px;
}

.snsArea_iconList a {
  margin-bottom: 30px;
}

.fv_bg {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  max-height: 530px;
}

/* コンセプト */
.consept {
  padding-top: 120px;
  position: relative;
}

.consept::before {
  content: "";
  width: 40%;
  max-width: 617px;
  height: 430px;
  background: url(../images/leafObj01.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: -8%;
  left: 0;
  z-index: 1;
}

.concept_logo {
  width: 190px;
  margin: 0 auto 80px;
}

.concept_ttl {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.0;
}

.concept_ttl h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.4rem;
  margin-bottom: 70px;
}

.concept_ttl p {
  margin-bottom: 56px;
}

.concept_imgArea {
  padding-top: 90px;
  display: flex;
  gap: 70px;
}

.img_left {
  padding-top: 60px;
}

.concept_img01 {
  max-width: 646px;
  position: relative;
}

.concept_img01::before {
  content:"";
  background: url(../images/concept_circle.svg) no-repeat;
  background-size: contain;
  width: 238px;
  height: 238px;
  position: absolute;
  top: -100px;
  left: -100px;
  animation:20s linear infinite rotation;
}

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.concept_img03 {
  padding-top: 160px;
  padding-right: 20px;
  max-width: 278px;
  position: relative;
  margin: 0 0 0 auto;
}

.concept_img03::before {
  content:"";
  background: url(../images/footprints.png) no-repeat;
  background-size: contain;
  width: 332px;
  height: 252px;
  position: absolute;
  bottom: 40px;
  left: -260px;
}

.concept_img02 {
  max-width: 335px;
  padding-left: 20px;
}

.concept_img04 {
  max-width: 329px;
  padding-top: 105px;
  position: relative;
}

.concept_img04::before {
  content:"";
  background: url(../images/footprints.png) no-repeat;
  background-size: contain;
  width: 313px;
  height: 268px;
  transform: rotateY(180deg);
  position: absolute;
  top: 0px;
  right: -265px;
}

/* メニュー */
section.menu {
  padding-top: 160px;
  position: relative;
}

.menu::before {
  content: "";
  width: 40%;
  max-width: 692px;
  height: 671px;
  background: url(../images/shape01.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 13%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}

.menu_mainTtl {
  width: 92px;
  margin: 0 auto 50px;
}

.menu_description {
  text-align: center;
}

.menu_mainTxt {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.4rem;
  margin-bottom: 80px;
}

.menu_subTxt {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.3;
  margin-bottom: 100px;
}

.menu_linkBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-bottom: 110px;
  position: relative;
  z-index: 1;
}

.menu_linkItem {
  font-size: 16px;
  font-weight: 500;
  background: #009944;
  border-radius: 5px;
  width: calc((100% - 30px) / 2);
  text-align: center;
}

.menu_linkItem a {
  width: 100%;
  color: #fff;
  padding: 25px 0;
  letter-spacing: 0.4rem;
  position: relative;
}

.menu_linkItem a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: #fff;
  position: absolute;
  bottom: 5px;
  right: 5px;
  clip-path: polygon(100% -10%, -10% 100%, 100% 100%);
}

.menu_food {
  margin-bottom: 120px;
  position: relative;
}

.menu_food::before {
  content: "";
  width: 30%;
  max-width: 624px;
  height: 508px;
  background: url(../images/leafObj02.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 3;
}

.menu_food::after {
  content: "";
  width: 43%;
  max-width: 618px;
  height: 832px;
  background: url(../images/shape03.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 76%;
  left: 0;
  z-index: 1;
}

.menu_food h3,.menu_sweets h3,.menu_dog h3,.menu_drink h3 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.4rem;
  text-align: center;
  margin-bottom: 70px;
}

.menu_listBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 105px;
  flex-direction: column;
}

.menu_food .menu_listBox, .menu_sweets{
  position: relative;
  z-index: 2;
}

.menu_food .menu_listBox::before {
  content: "";
  width: 30%;
  max-width: 588px;
  height: 570px;
  background: url(../images/leafObj03.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 60%;
  right: 0;
  z-index: 1;
}

.menu_food .menu_listBox::after {
  content: "";
  width: 30%;
  max-width: 588px;
  height: 779px;
  background: url(../images/shape02.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 23%;
  right: 0;
  z-index: -1;
}

.menu_sweets::before {
  content: "";
  width: 25%;
  max-width: 500px;
  height: 556px;
  background: url(../images/leafObj04.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 1;
}

.menu_listItem {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.menu_listItem.sweets,.menu_listItem.dog {
  gap: 90px;
}

@keyframes poyon {
  0% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
  30% {
    transform: scale(1.10, 1.10) translate(0, 0);
  }
  50% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
  70% {
    transform: scale(1.05, 1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.poyon {
  animation: poyon 1.5s ease-in-out 1 forwards
}

.menu_listItem_img {
  width: 482px;
}

.menu_listItem_desc {
  flex: 1;
}

.menu_listItem.item01,
.menu_listItem.item07 {
  width: 100%;
}
.menu_listItem.item01 .menu_listItem_img {
  width: 100%;
  text-align: center;
}

.menu_listItem.item07 .menu_listItem_img {
  width: 100%;
  text-align: center;
}

.menu_listItem.item01 .menu_listItem_img img {
  width: 873px;
  margin: 0 auto;
}

.menu_listItem.item07 .menu_listItem_img img {
  width: 653px;
  margin: 0 auto;
}

.menu_listItem_desc_ttl {
  width: 100%;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.7;
}

.menu_listItem_desc_ttl span {
  padding-top: 10px;
  font-size: 16px;
}

.menu_listItem_desc_txt {
  font-size: 16px;
  line-height: 2.3;
}

.menu_listItem.item02 .menu_listItem_img {
  width: 640px;
  margin-left: -140px;
}

.menu_listItem.item02 .menu_listItem_desc {
  width: 492px;
  padding-left: 70px;
}

.menu_listItem_topping {
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 40px;
}

.topping_box p.menu_listItem_topping_ttl {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.4rem;
  padding-left: 30px;
  margin-bottom: 30px;
  position: relative;
}

.menu_listItem_topping_ttl::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/topping_icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: -5px;
}

.topping_box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
}


.topping_box p {
  font-size: 20px;
  font-weight: 600;
}

.topping_box p span {
  font-size: 12px;
  font-weight: 600;
}

.menu_listItem_topping img {
  width: 175px;
}

.menu_listItem.item03 {
  flex-direction: row-reverse;
}

.menu_listItem.item03 .menu_listItem_img {
  width: 850px;
  padding-left: 20px;
  margin-right: -150px;
}

.menu_listItem.item03 .menu_listItem_desc {
  width: 488px;
}

.menu_listItem.item04 .menu_listItem_img {
  padding-left: 115px;
  width: 400px;
  height: 400px;
  border-radius: 10px;
}

.menu_listItem.item04 .menu_listItem_desc {
  width: 492px;
  padding-left: 90px;
}

.menu_sweets,.menu_dog {
  margin-bottom: 120px;
}

.menu_dog {
  position: relative;
}

.menu_dog::before {
  content: "";
  width: 701px;
  height: 793px;
  background: url(../images/shape04.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: -70%;
  right: 0;
}

.menu_listItem.item06,
.menu_listItem.item08 {
  flex-direction: row-reverse;
}

.menu_drink {
  padding-top: 180px;
}

.menu_drink_topImg {
  display: block;
  margin-top: -180px;
  position: relative;
  z-index: 1;
}

.menu_drink_bg {
  background: url(../images/coffee_bg.jpg)repeat;
  background-size: auto;
  margin-top: -180px;
  padding-top: 180px;
  padding-bottom: 170px;
  position: relative;
}

.menu_drink_bg::before {
  content: "";
  width: 256px;
  height: 343px;
  background: url(../images/coffeeObj01.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: -140px;
  right: 0;
  z-index: 1;
}

.menu_drink_bg::after {
  content: "";
  width: 305px;
  height: 335px;
  background: url(../images/coffeeObj02.png)no-repeat;
  background-size: contain;
  position: absolute;

  left: 0;
}

.menu_drink_wrap {
  padding-top: 90px;
}

.menu_drink_topTxt {
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 70px;
}

.menu_drink_listBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.menu_drink_listItem {
  width: 100%;
}

.menu_drink_listItem_ttl h4 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
  border-bottom: dashed 1px #231815;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu_drink_listItem.item03 .menu_drink_listItem_ttl h4 {
  font-size: 22px;
}

.menu_drink_listItem_ttl h4 span {
  font-size: 14px;
  padding-left: 50px;
  position: relative;
}

.menu_drink_listItem_ttl h4 span::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/coffee_manuIcon.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 25px;
}

.menu_drink_listItem.item03 .menu_drink_listItem_ttl h4 span {
  padding-left: 25px;
}

.menu_drink_listItem.item03 .menu_drink_listItem_ttl h4 span::before {
  left: 0;
}

.menu_drink_listItem_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4;
}

.menu_drink_listItem_desc_note {
  font-size: 12px;
}

.menu_drink_listItem_softdrink {
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
}

/* ニュース */
section.news {
  background: url(../images/news_bg.jpg)no-repeat;
  background-size: cover;
  padding-top: 160px;
  padding-bottom: 160px;
  text-align: center;
  background-position: center;
}

.news_mainTtl {
  text-align: center;
  margin-bottom: 90px;
}

.news_mainTtl img {
  display: block;
  width: 92px;
  margin: 0 auto 45px;
}

.news_mainTtl_txt {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.4rem;
  color: #fff;
}

.news_desc {
  color: #fff;
  font-size: 16px;
  margin-bottom: 70px;
}

.news_imgBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 45px;
  margin-bottom: 60px;
}

.news_imgItem {
  width: calc((100% - 90px) / 3);
}

.news_instagramBtn a {
  margin: 0 auto;
}

.news_instagramBtn p {
  width: 300px;
  background: #fff;
  padding: 30px 40px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
}

.news_instagramBtn p::before {
  content: "";
  width: 47px;
  height: 10px;
  background: url(../images/moreArrow.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

/* ショップ */
section.shop {
  padding-top: 160px;
  padding-bottom: 160px;
}

.sec_wrap.shop {
  position: relative;
}

.sec_wrap.shop::before {
  content: "";
  width: 25%;
  max-width: 500%;
  height: 577px;
  background: url(../images/leafObj05.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 39%;
  left: 0;
  z-index: 1;
}

.shop_mainTtl {
  text-align: center;
  margin-bottom: 90px;
}

.shop_mainTtl img {
  display: block;
  width: 92px;
  margin: 0 auto 45px;
}

.shop_mainTtl_txt {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.4rem;
  color: #231815;
}

.shopAccess {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 100px;
}

.shopAccess_areaMap {
  width: 480px;
}

.shopAccess_storeInfo {
  flex: 1;
  padding-top: 80px;
  font-size: 16px;
  line-height: 2.0;
}

.shopAccess_storeInfo_Name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
}

.shopAccess_storeInfo_address {
  margin-bottom: 20px;
}

.shopAccess_storeInfo_tel,.shopAccess_storeInfo_mail,.shopAccess_storeInfo_time {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.shopAccess_storeInfo_tel::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/telIcon_bk.svg)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.shopAccess_storeInfo_mail::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/mailIcon_bk.svg)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.shopAccess_storeInfo_time::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/timeIcon_bk.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.shopAccess_storeInfo_googleMapBtn {
  padding-top: 30px;
}

.shopAccess_storeInfo_googleMapBtn p {
  background: #009944;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 300px;
  padding: 30px 40px;
  box-sizing: border-box;
  position: relative;
}

.shopAccess_storeInfo_googleMapBtn p::before {
  content: "";
  width: 47px;
  height: 10px;
  background: url(../images/moreArrow_gr.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.shop_imgArea {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
}

.shop_imgArea_imgLeft {
  width: 415px;
  padding-top: 100px;
}

.shop_imgArea_imgRight {
  position: relative;
}

.shop_imgArea_imgRight::before {
  content: "";
  width: 313px;
  height: 268px;
  background: url(../images/footprints.png)no-repeat;
  background-size: contain;
  transform: rotateY(180deg) translateY(-50%);
  position: absolute;
  top: 57%;
  right: -55px;
  z-index: 1;
}

.shopImg02 {
  display: block;
  width: 587px;
}

.shopImg03 {
  display: block;
  width: 297px;
  margin: 110px 70px;
  position: relative;
}

/* フッター */
.footer {
  background: #6A5633;
  color: #fff;
  font-size: 16px;
  line-height: 2.0;
  padding-top: 20px;
  padding-bottom: 100px;
  position: relative;
}

.footer::before {
  content: "";
  width: 100%;
  height: 115px;
  background: url(../images/ft_top.png)no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -113px;
  left: 0;
}

.footer_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ft_logo {
  margin-bottom: 40px;
  width: 332px;
}

.ft_address {
  font-weight: 400;
}

.ft_linkArea {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: flex-end;
}

.ft_linkArea_sns {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
}

.ft_linkArea_bnr {
  width: 100%;
}

.ft_linkArea_bnr a {
  margin: 0 0 0 auto;
}

.ft_linkArea_bnr img {
  width: 261px;
}

.hmbg_nav {
  width: 45%;
}

@media screen and (max-width: 1100px) {
  .inner__1070 {
    max-width: 768px;
  }

  .menu_listItem.item02 .menu_listItem_desc {
    padding-left: 0;
  }

  .menu_sweets,.menu_dog {
    max-width: 768px;
    margin: 0 auto 100px;
  }

  .menu_sweets::before {
    left: -120px;
  }

  .menu_dog::before {
    right: -150px;
  }

  .menu_listItem.sweets, .menu_listItem.dog {
    gap: 50px;
  }

  .menu_listItem_img {
    width: 45%;
  }

  .menu_listItem.item04 .menu_listItem_img {
    padding-left: 0;
  }

  .menu_listItem.item04 .menu_listItem_desc {
    padding-left: 50px;
  }

  .menu_listItem.item01 .menu_listItem_img {
    margin-left: -60px;
  }

  .menu_listItem.item07 .menu_listItem_img {
    margin-left: -60px;
  }

  .menu_listItem.item03 .menu_listItem_img {
    margin-right: -100px;
  }

  .menu_listItem_topping {
    width: 60%;
    margin: 20px auto;
  }

  .menu_drink {
    padding-top: 250px;
  }

  .menu_drink_topImg {
    width: 80%;
  }

  .menu_drink_topImg {
    max-width: 768px;
  }

  .menu_drink_bg::before {
    width: 150px;
    height: 203px;
    z-index: 1;
  }

  .menu_drink_bg::after {
    width: 200px;
    height: 235px;
  }

  .menu_drink_wrap {
    max-width: 768px;
  }

  .shopAccess {
    max-width: 768px;
    gap: 20px;
  }

  .shopAccess_areaMap {
    width: 50%;
  }

  .shop_imgArea {
    justify-content: center;
  }

  .shop_imgArea_imgLeft {
    width: 305px;
  }

  .shopImg02 {
    width: 467px;
  }

  .shopImg03 {
    width: 211px;
  }

  .sec_wrap.shop::before {
    width: 394px;
    height: 447px;
  }

  .shop_imgArea_imgRight::before {
    content: "";
    width: 283px;
    height: 238px; 
  }

  .footer_wrap {
    max-width: 768px;
  }

  .menu_linkBox {
    z-index: 0;
  }

  .menu::before {
    z-index: 0;
  }
} 

@media screen and (max-width: 900px) {
  .shop_imgArea {
    gap: 20px;
  }

  .shopImg02 {
    width: 407px;
  }
}

@media screen and (max-width: 768px) {
  .fv_wrap img {
    width: 83%;
  }

  .hd_wrap {
    height: 80px;
  }

  .hd_logo {
    height: auto;
    width: 130px;
    padding-left: 15px;
  }

  /* フローティングボタン */
  .hd_hmbg {
    padding-right: 20px;
  }

  .hd_hmbg.active {
    padding-right: 0px;
  } 

  .hmbg_nav {
    width: 100%;
  }

  .hmbg_nav_inner {
    padding: 30% 15%;
  }

  .hmbg_nav_link {
    font-size: 28px;
  }
  
  .snsArea p {
    top: 40%;
    right: 20px;
    font-size: 12px;
  }

  .snsArea_iconList {
    right: 16px;
  }

  /* コンセプト */
  .consept {
    padding: 80px 35px 0;
  }

  .consept::before {
    width: 60%;
    max-width: 100%;
    height: 20%;
    top: -7%;
    left: -40px;
  }

  .concept_imgArea {
    padding-top: 60px;
  }

  .concept_imgArea.sp {
    position: relative;
  }

  .concept_imgArea.sp::before {
    content: "";
    background: url(../images/concept_circle.svg) no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 10px;
    right: 10px;
    animation: 20s linear infinite rotation;
  }

  .concept_logo {
    width: 110px;
    margin: 0 auto 40px;
  }

  .concept_ttl {
    font-size: 12px;
  }

  .concept_ttl h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .concept_ttl p {
    margin-bottom: 30px;
  }

  /* メニュー */
  section.menu {
    padding-top: 80px;
  }

  .menu::before {
    display: none;
  }

  .menu_mainTxt {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .menu_subTxt {
    font-size: 12px;
    height: 2.3;
    margin-bottom: 80px;
  }

  .menu_linkBox {
    gap: 20px;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 1;
  }

  .menu_linkItem {
    font-size: 14px;
    width: 100%;
  }

  .menu_linkItem a {
    padding: 20px 0;
  }

  .menu_food {
    margin-bottom: 80px;
    padding: 0 35px;
  }

  .menu_food::before {
    width: 55%;
    max-width: 100%;
    height: 10%;
    top: -45px;
    left: -90px;
  }

  .menu_food::after {
    width: 90%;
    max-width: 100%;
    height: 30%;
    top: 31%;
    left: 0;
    z-index: -1;
  }

  .menu_listBox {
    row-gap: 45px;
  }

  .menu_food .menu_listBox::after {
    width: 100%;
    max-width: 100%;
    height: 60%;
    top: -23%;
    right: -40px;
  }

  .menu_listItem {
    gap: 20px;
  }

  .menu_food .menu_listBox, .menu_sweets {
    z-index: 0;
  }

  .menu_food .menu_listBox::before {
    width: 70%;
    max-width: 100%;
    height: 10%;
    top: 56%;
    right: -60px;
  }

  .menu_listItem.item01 .menu_listItem_img img {
    width: 150%;
    margin-left: -120px;
  }

  .menu_listItem.item07 .menu_listItem_img img {
    width: 110%;
    margin-left: -10px;
  }

  .menu_listItem.item02 .menu_listItem_img {
    width: 100%;
    margin-left: 0;
    margin-right: -90px;
  }

  .menu_listItem.item02 .menu_listItem_desc {
    width: 100%;
    padding-left: 0;
  }

  .menu_listItem.item03 .menu_listItem_img {
    width: 120%;
    padding-left: 0;
    margin-right: 0;
    margin-left: -90px;
  }

  .menu_listItem.item03 .menu_listItem_desc {
    width: 100%;
  }

  .menu_listItem_topping {
    width: auto;
    margin-top: 20px;
    border-radius: 5px;
    padding: 20px 20px;
  }

  .menu_listItem_topping_ttl {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .menu_listItem_topping_ttl::before {
    width: 18px;
    height: 18px;
    top: -2px;
    left: -5px;
  }

  .topping_box {
    gap: 15px;
  }

  .topping_box p {
    font-size: 14px;
  }

  .topping_box p span {
    font-size: 9px;
  }

  .topping_box p.menu_listItem_topping_ttl {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .menu_listItem_topping img {
    width: 100px;
  }

  .menu_listItem.item04 .menu_listItem_img {
    width: 80%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .menu_listItem.item04 .menu_listItem_desc {
    width: 100%;
    padding-left: 0;
  }

  .menu_sweets, .menu_dog {
    margin-bottom: 60px;
    padding: 0 35px;
  }

  .menu_sweets::before {
    width: 70%;
    max-width: 100%;
    height: 40%;
    top: -95px;
    left: -108px;
  }

  .menu_listItem.sweets, .menu_listItem.dog {
    gap: 20px;
  }

  .menu_listItem_img {
    width: 100%;
  }

  .menu_listItem_desc_ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .menu_listItem_desc_ttl span {
    font-size: 12px;
    display: block;
    line-height: 1.7;
  }

  .menu_listItem_desc_txt {
    font-size: 12px;
  }

  .menu_dog::before {
    display: none;
  }

  .menu_drink {
    padding-top: 0;
  }

  .menu_drink_bg::before {
    display: none;
  }

  .menu_drink_bg {
    padding-bottom: 80px;
    margin-top: 0;
    padding-top: 0;
  }

  .menu_food h3, .menu_sweets h3, .menu_dog h3, .menu_drink h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  .menu_drink_topImg {
    width: 100%;
    margin-top: 0;
    z-index: 0;
  }
  
  .menu_drink_wrap {
    padding: 60px 40px 0;
    box-sizing: border-box;
  }

  .menu_drink_topTxt {
    font-size: 14px;
    line-height: 2.4;
    margin-bottom: 40px;
  }

  .menu_drink_listBox {
    gap: 40px;
  }

  .menu_drink_listItem_ttl h4 {
    font-size: 18px;
  }

  .menu_drink_listItem.item03 .menu_drink_listItem_ttl h4 {
    font-size: 16px;
  }

  .menu_drink_listItem_ttl h4 span {
    font-size: 10px;
    padding-left: 25px;
  }

  .menu_drink_listItem.item03 .menu_drink_listItem_ttl h4 span {
    padding-left: 20px;
  }

  .menu_drink_listItem_ttl h4 span::before {
    width: 14px;
    height: 14px;
    top: 0;
    left: 5px;
  }

  .menu_drink_listItem.item03 .menu_drink_listItem_ttl h4 span::before {
    padding-left: 0px;
  }

  .menu_drink_listItem_desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .menu_drink_listItem_desc_note {
    font-size: 10px;
  }

  .menu_drink_listItem_softdrink {
    font-size: 14px;
    line-height: 1.7;
  }

  .menu_drink_bg::after {
    width: 35%;
    height: 15%;
    bottom: -10%px;
    left: 0;
  }

  /* ニュース */
  section.news {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .news_mainTtl {
    margin-bottom: 50px;
  }

  .news_mainTtl_txt {
    font-size: 24px;
  }  

  .news_desc {
    font-size: 14px;
    margin-bottom: 50px;
    line-height: 2.0;
  }

  .news_imgBox {
    gap: 25px;
    padding: 0 20px;
  }

  .news_imgItem {
    width: calc((100% - 50px) / 2);
  }

  .news_instagramBtn p {
    width: 280px;
    padding: 20px 50px;
  }

  /* ショップ */
  section.shop {
    padding-top: 80px;
    padding-bottom: 200px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .sec_wrap.shop::before {
    width: 65%;
    height: 15%;
    top: 62%;
    left: -35px;
  }

  .shop_mainTtl {
    margin-bottom: 60px;
  }

  .shop_mainTtl_txt {
    font-size: 24px;
  }

  .shopAccess {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .shopAccess_areaMap {
    width: 100%;
  }

  .shopAccess_storeInfo {
    padding-top: 0;
    font-size: 12px;
  }

  .shopAccess_storeInfo_Name {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .shopAccess_storeInfo_googleMapBtn a {
    margin: 0 auto;
  }

  .shopAccess_storeInfo_googleMapBtn p {
    width: 280px;
    padding: 15px 50px;
  }

  .shop_imgArea {
    column-gap: 20px;
    row-gap: 40px;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .shop_imgArea_imgLeft {
    width: 50%;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .shop_imgArea_imgRight::before {
    width: 160px;
    height: 138px;
    top: -50%;
    right: 36px;
  }

  .shopImg02 {
    width: 80%;
    margin-right: -15px;
  }

  .shopImg03 {
    width: 150px;
    margin: 0;
  }

  /*フッター */

  .footer {
    padding-top: 60px;
  }

  .footer::before {
    content: "";
    width: 100%;
    height: 125px;
    background: url(../images/ft_top_sp.png)no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -73px;
    left: 0;
  }

  .footer_wrap {
    justify-content: center;
    gap: 40px;
  }
  
  .ft_logo {
    width: 80%;
    margin: 0 auto 40px;
  }

  .ft_address {
    font-size: 10px;
    font-weight: 300;
    text-align: center;
  }

  .ft_linkArea {
    justify-content: center;
  }

  .ft_linkArea_bnr {
    width: auto;
  }
}


.menu_sweets .menu_listBox:first-of-type,
.menu_dog .menu_listBox:first-of-type {
  margin-bottom: 105px;
}

@media screen and (max-width: 768px) {
  .menu_sweets .menu_listBox:first-of-type,
  .menu_dog .menu_listBox:first-of-type {
    margin-bottom: 45px;
  }
}

