@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --green: #838b0d;
  --d_green: #9a9539;
  --gray: #c8d2da;
  ;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: min(3.75vw, 1.8rem);
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

h2,
h3,
h4 {
  font-weight: 400
}

.vertical {
  position: static;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.01rem;
  line-height: 1.5;
  text-align: left;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.green {
  color: var(--green);
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.center {
  text-align: center;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.ft_60 {
  font-size: min(12.5vw, 6rem);
}

.ft_50 {
  font-size: min(10.4vw, 5rem);
}

.ft_40 {
  font-size: min(8.3vw, 4.0rem);
}

.ft_30 {
  font-size: min(6.25vw, 3.0rem);
}

.bold {
  font-weight: 700;
}

.fadeInUpTrigger,
.fadeInRightTrigger,
.fadeInleftTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
  flex-wrap: wrap;
}

.flex.sp_none {
  display: none;
}

header {
  position: relative;
  z-index: 50;
  width: 100%;
  height: 60px;
  top: 0;
  background-image: url(../img/nav_bg.png);
}

header::before,
header::after {
  content: "";
  width: 100%;
  height: 20px;
  background-image: url(../img/line01.png);
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center bottom;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

header::after {
  background-image: url(../img/line01.png);
  top: auto;
  bottom: 2px;
  left: 0;
  transform: scaleY(-1);
}

.header_inner {
  padding-left: 3vw;
  gap: 5%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}

.header_right {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_inner .logo {
  width: 116px;
  padding-top: 5px;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin: 0;
  top: 0;
  right: 0;
  background: var(--green);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 1px;
  background: #ffffff;
  width: 40px;
}

.ham_btn span:nth-of-type(1) {
  top: 20px;
}

.ham_btn span:nth-of-type(2) {
  top: 30px;
}

.ham_btn span:nth-of-type(3) {
  top: 40px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 25px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 36px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--green);
  overflow-y: auto;
  padding: 60px;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 2.0rem;
  line-height: 1;
  padding: 12px 10vw;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nav_wrap.show {
  right: 0;
}

/* bottom_nav */
#sp-nav {
  position: fixed;
  bottom: 0;
  background-color: #9a9539;
  display: flex;
  z-index: 100;
  width: 100%;
  justify-content: space-around;
  padding: 1% 0;
  z-index: 20;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#sp-nav a {
  font-size: 2.2rem;
  padding: 4vw 0;
  color: #ffffff;
  line-height: 1;
}

#sp-nav.tel a p {
  padding: 0;
}

#sp-nav.tel a p::before {
  display: none;
}

#sp-nav.tel a p span {
  position: relative;
  padding-left: 40px;
  margin-left: 2vw;
}

#sp-nav.tel a p span::before {
  content: "";
  width: 37px;
  height: 30px;
  background-image: url(../img/tel_w.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

/* MV */
.MV {
  position: relative;
}

/* 共通 */
section {
  position: relative;
  padding: 80px 0 100px;
}

#top_sns {
  background-image: url(../img/insta_bg.png);
  background-size: cover;
  background-position: 20% 50%;
  padding-top: 40px;
}

#top_sns .section_inner {
  width: 90%;
  margin: 0 auto;
}

.section_inner {
  position: relative;
  z-index: 2;
}

.content_logo {
  width: 40%;
  max-width: 188px;
  margin-bottom: 20px;
}

#top_detail {
  background-image: url(../img/bg01.png);
  background-size: cover;
  color: white;
  overflow: hidden;
}

#top_detail::before {
  content: "";
  width: 100%;
  aspect-ratio: 48 / 100;
  background-image: url(../img/bg_deco01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

#top_detail::after {
  content: "";
  width: 100%;
  height: 30px;
  background-image: url(../img/line01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

h2.section_ttl {
  width: 54%;
  max-width: 260px;
  margin-left: 5vw;
}

.content_text {
  width: 90%;
  margin: 0 auto;
}

#top_detail .content_text {
  padding-bottom: min(25vw, 250px);
  position: relative;
}

#top_detail .content_text::after {
  content: "";
  width: min(30%, 284px);
  aspect-ratio: 284 / 222;
  background-image: url(../img/deco02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 4vw;
  right: -5vw;
  z-index: 1;
}

.content_imgWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

#top_detail .content_img {
  width: 95%;
}

#top_detail .content_img:first-child {
  margin-left: 5vw;
}

#top_detail .section_inner::after {
  content: "";
  width: min(17.7%, 140px);
  aspect-ratio: 140 / 149;
  background-image: url(../img/deco01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: -210px;
  ;
  left: 5vw;
  z-index: 1;
}

.more {
  position: relative;
  z-index: 10;
}

.more a {
  height: 76px;
  width: 284px;
  border-radius: 38px;
  position: relative;
  color: #ffffff;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  z-index: 10;
}

.more a p {
  display: inline-block;
  line-height: 1;
  padding-right: 30px;
  font-size: 2rem;
}

.more a p::after {
  content: "";
  width: 70px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.more a::before {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 34px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
}

.more a:hover {
  opacity: 1;
}

.more a::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 37px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.5s;
  z-index: 12;
}

.more a:hover::after {
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 10;
  transition: background-color 0.5s;
}

#top_food,
#top_drink {
  background-color: var(--d_green);
  padding: 6vw 6vw 240px;
}

.image-line {
  position: absolute;
  top: 2vw;
  left: 2%;
  width: 96%;
  height: calc(100% - 4vw);
  border-style: solid;
  border: solid 15px;
  border-image-source: url("../img/line03.png");
  border-image-slice: 18;
  border-image-width: 15px;
  border-image-outset: 0;
  border-image-repeat: repeat;
  z-index: 0;
}

#top_food .section_inner {
  align-items: flex-end;
}

#top_food .section_inner h2 {
  margin: 5% 5% 0 0;
}

#top_food::before {
  content: "";
  width: 100%;
  aspect-ratio: 480 / 527;
  background-image: url(../img/sp_bg_deco05.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 0;
}

#top_drink::before {
  content: "";
  width: 100%;
  aspect-ratio: 480 / 377;
  background-image: url(../img/sp_bg_deco04.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 1;
}

#top_food::after,
#top_drink::after {
  content: "";
  width: 100%;
  aspect-ratio: 480 / 1321;
  background-image: url(../img/bg_deco06.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#top_drink::after {
  transform: scaleX(-1);
}

#top_food .content_img {
  width: 100%;
}

#top_about {
  background-image: url(../img/sp_about_bg.png);
  background-size: 100% 100%;
  padding-top: 28vw;
}
#top_about h2.section_ttl {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  margin-bottom: min(20vw, 200px);
  font-size: min(10.4vw, 5.0rem);
}

#top_about::before {
  content: "";
  width: min(60%, 300px);
  aspect-ratio: 280 / 102;
  background-image: url(../img/sp_about_deco01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 46vw;
  left: 0;
  z-index: 1;
}

#top_about::after {
  content: "";
  width: min(60%, 300px);
  aspect-ratio: 280 / 102;
  background-image: url(../img/sp_about_deco02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 1;
}

#top_about .content {
  width: 90%;
  margin: 0 auto 80px;
}

#top_about .content_text {
  margin: 40px auto;
}

#top_store {
  background-image: url(../img/bg01.png);
  background-size: cover;
  color: #ffffff;
}

#top_store h2.section_ttl {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
}

dl {
  width: 90%;
  max-width: 600px;
  margin-bottom: 40px;
  margin: 40px auto;
  font-weight: 700;
}

dl dt,
dl dd {
  padding: 2%;
  border-bottom: 1px solid #ffffff;
}

dl a {
  color: #ffffff;
}

#top_store .img_wrap {
  gap: 0;
  padding-top: 20vw;
  position: relative;
}

#top_store .content_img {
  width: 90%;
  position: relative;
  z-index: 2;
}

#top_store .content_img:first-child {
  margin: 0 0 0 auto;
}

#top_store .img_wrap::before {
  content: "";
  width: 50%;
  height: 80%;
  background-image: url(../img/bg_deco02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: -10vw;
  left: 0;
  z-index: 1;
}

#top_access {
  padding: 0;
}

.access_info {
  background-image: url(../img/content_bg.png);
  background-size: cover;
  background-position: center;
  padding: 60px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.access_info h2.section_ttl {
  width: 100%;
  max-width: none;
  margin: 0;
}

.tel {
  padding: 40px 0;
}

.tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #333333;
  margin: 0 auto;
}

.tel a p {
  padding-left: 45px;
  position: relative;
  line-height: 1;
}

.tel a p::before {
  content: "";
  width: 40px;
  height: 32px;
  background-image: url(../img/tel_w.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

#top_access .tel a {
  color: #ffffff;
}

.access_info::before {
  content: "";
  height: 96%;
  aspect-ratio: 122/ 600;
  background-image: url(../img/bg_deco04.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  position: absolute;
  top: 2%;
  right: 0;
  z-index: 1;
}

.access_info::after {
  content: "";
  height: 96%;
  aspect-ratio: 122/ 600;
  background-image: url(../img/bg_deco03.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  position: absolute;
  top: 2%;
  left: 0;
  z-index: 1;
}

.map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

footer {
  background-image: url(../img/sp_navbg.png);
  position: relative;
}

footer::before,
footer::after {
  content: "";
  width: 100%;
  height: 30px;
  background-image: url(../img/line01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

footer::after {
  background-image: url(../img/line01.png);
  top: auto;
  bottom: 70px;
  left: 0;
  transform: scaleY(-1);
}

.footer_inner {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer_logo {
  width: 80%;
  max-width: 360px;
  margin: 0 auto 40px;
}

.footer_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  line-height: 1.2;
}

.footer_info .tel {
  padding: 0;
}

.footer_info .tel a p {
  padding-left: 30px;
}

.footer_info .tel a p::before {
  width: 28px;
  height: 23px;
  background-image: url(../img/tel_b.png);
}

.footer_right {
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insta_btn {
  width: 40px;
  margin: 0 auto;
}

.footer_right nav {
  width: 100%;
}

.footer_right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 20px;
  text-align: left;
  padding-left: 5vw;
  font-weight: 700;
}

.footer_right ul a span {
  display: block;
  font-size: min(3.75vw, 1.8rem);
  font-family: var(--mincho);
}

.cr {
  padding: 16px 0;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
  background-color: var(--green);
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 900;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex.sp_none {
    display: flex;
  }

  .flex.pc_none {
    display: none;
  }

  #sp-nav {
    display: none;
  }

  .flex {
    flex-direction: row;
    justify-content: space-between;
  }

  header {
    z-index: 10;
    width: 100%;
    height: 120px;
  }

  header::before,
  header::after {
    top: 0;
    height: 26px;
  }

  header::after {
    top: auto;
    bottom: 0;
  }

  .header_inner {
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 2%;
    padding: 0 2vw;
  }

  .header_left {
    padding-top: 28px;
  }

  .header_inner .logo {
    width: 100%;
    padding: 0;
    max-width: 410px;
  }

  .header_right {
    width: calc(100% - 300px);
    max-width: 740px;
    height: 100%;
    gap: 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
  }

  .header_body {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
  }

  .header_right-upper {
    display: flex;
    align-items: center;
  }

  .header_right-bottom {
    width: 100%;
  }

  .header_inner .tel {
    padding: 0;
  }

  .header_inner .tel a p {
    font-size: min(2vw, 36px);
  }

  .pc_nav {
    width: 100%;
  }

  .pc_nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .pc_nav ul li a {
    color: #333333;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 700;
  }

  .header_inner .insta_btn {
    margin: 0;
  }

  .header_inner .tel a p::before {
    width: 34px;
    height: 32px;
    background-image: url(../img/tel_b.png);
  }

  /* pcスタイル */
  @media screen and (min-width: 1400px) {
    .wide_only {
      display: block;
    }

    .header_left {
      display: flex;
      align-items: flex-start;
      width: 950px;
    }

    .header_left p {
      margin-left: 0;
      text-align: left;
      text-wrap: nowrap;
    }
  }

  .section_inner {
    max-width: 1500px;
    margin: 0 auto;
    gap: 5vw;
  }

  .content_imgWrap {
    flex-direction: row;
  }

  h2.section_ttl {
    margin: 0;
  }

  #top_detail .section_inner {
    width: 90%;
    margin: 0 auto;
  }

  #top_detail .content {
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  #top_detail .content_img:first-child {
    margin-top: 5vw;
    margin-left: 0;
  }

  #top_detail .content_text {
    padding-bottom: 0;
    width: 80%;
    margin: 0;
  }

  #top_detail .line {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
  }

  #top_detail::after {
    content: "";
    width: 284px;
    height: auto;
    aspect-ratio: 284 / 222;
    background-image: url(../img/deco02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 80px;
    right: 0;
    z-index: 1;
  }

  #top_detail::before {
    content: "";
    width: 30%;
    aspect-ratio: 7/9;
    right: 0;
    left: auto;
  }

  #top_detail .line::before {
    content: "";
    width: 100%;
    aspect-ratio: 1920/30;
    background-image: url(../img/line01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1;
  }

  #top_detail .line::after {
    content: "";
    width: 100%;
    aspect-ratio: 1920/30;
    background-image: url(../img/line01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: 1;
  }

  #top_detail .content_text::after {
    display: none;
  }

  #top_detail .section_inner::after {
    content: "";
    width: min(17.7%, 140px);
    aspect-ratio: 140 / 149;
    background-image: url(../img/deco01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    bottom: 100px;
    left: -5vw;
    z-index: 1;
  }

  .more a {
    margin: 120px auto 40px;
  }

  #top_food,
  #top_drink {
    padding: 40px;
  }

  .image-line {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }

  #top_food::after,
  #top_drink::after {
    content: "";
    width: 50%;
    height: 100%;
    aspect-ratio: none;
    background-image: url(../img/bg_deco06.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

  #top_drink::after {
    left: auto;
    right: 0;
  }

  #top_food .section_inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    width: 90%;
    max-width: 1600px;
    margin: 80px auto;
  }

  #top_food .section_inner h2 {
    margin: 2% 0 0 0;
    width: 20%;
  }

  #top_food .content_imgWrap {
    margin: 0;
    width: 50%;
    flex-direction: column;
  }

  #top_food .content_img {
    width: 70%;
  }

  #top_food .content_img:nth-child(2) {
    margin: 0 0 0 auto;
  }

  #top_food .content {
    width: 40%;
    padding-top: 10%;
  }

  #top_food::before {
    content: "";
    width: 40%;
    aspect-ratio: 721 / 527;
    background-image: url(../img/bg_deco05.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: auto;
    bottom: 1%;
    left: auto;
    right: 2%;
    z-index: 0;
  }

  #top_food .more a {
    margin-top: -5vw;
  }

  #top_drink .section_inner {
    flex-direction: row;
    align-items: flex-start;
    width: 90%;
    max-width: 1600px;
    margin: 80px auto;
  }

  #top_drink .section_inner h2 {
    margin: 2% 0 0 0;
    width: 20%;
  }

  #top_drink .content_imgWrap {
    margin: 0;
    width: 35%;
    flex-direction: column;
  }

  #top_drink .content_img {
    width: 100%;
  }

  #top_drink .content {
    width: 40%;
    padding-top: 10%;
  }

  #top_drink::before {
    content: "";
    width: 40%;
    aspect-ratio: 675 / 377;
    background-image: url(../img/bg_deco05-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: auto;
    bottom: 10%;
    left: 0;
    z-index: 0;
  }

  #top_drink .more a {
    margin-top: -5vw;
  }

  #top_about {
    background-image: url(../img/bg04.png);
    background-size: 100% 100%;
    padding-top: 10vw;
  }

  #top_about h2.section_ttl {
    margin-bottom: 60px;
  }

  #top_about h2.section_ttl::after {
    display: none;
  }

  #top_about::after {
    display: none;
  }

  #top_about .content {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
  }

  #top_about .content_text {
    margin: 40px auto;
  }

  #top_about .more a {
    margin: 40px auto 120px;
  }

  #top_store .content {
    width: 90%;
    max-width: 1680px;
    margin: 80px auto 0;
    flex-direction: row-reverse;
    gap: 8%;
  }

  #top_store .text_Wrap {
    width: 50%;
  }

  #top_store dl {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .description-item {
    display: flex;
    width: 100%;
  }

  #top_store dt {
    width: 180px;
  }

  #top_store .description-item:last-of-type dt {
    width: 100%;
  }

  #top_store dd {
    width: calc(100% - 180px);
  }

  #top_store .img_wrap {
    gap: 0;
    width: 60%;
    padding-top: 0;
    flex-direction: row-reverse;
  }

  #top_store .content_img {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  #top_store .content_img:first-child {
    margin: 0;
  }

  #top_store .content_img:nth-child(2) {
    margin: auto 0 0 0;
  }

  #top_store .img_wrap::before {
    display: none;
  }

  #top_store::before {
    content: "";
    width: 37%;
    height: 90%;
    background-image: url(../img/bg_deco02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

  #top_access {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }

  #top_access .access_info {
    width: 50%;
    height: 600px;
    justify-content: space-between;
  }

  #top_access .access_info p.left {
    text-align: right;
  }

  #top_access .access_info p.left span {
    display: inline;
  }

  #top_access .more.tel a {
    margin-bottom: 0;
  }

  .access_info::before {
    aspect-ratio: 113/ 545;
    background-size: contain;
    top: 2%;
    right: 1%;
  }

  .access_info::after {
    aspect-ratio: 113/ 545;
    background-size: contain;
    top: 2%;
    left: 1%;
  }

  #top_access .map {
    width: 50%;
  }

  #top_access .map iframe {
    width: 100%;
    height: 100%;
  }

  .footer_inner {
    justify-content: flex-start;
    max-width: none;
    flex-direction: row;
    align-items: center;
    gap: 5%;
  }

  .footer_logo {
    margin: 0;
    width: 20%;
  }

  .footer_info {
    text-wrap: nowrap;
  }

  .footer_right {
    width: 60%;
    max-width: 800px;
    justify-content: space-evenly;
    align-items: flex-start;
    height: 100%;
    gap: 80px;
  }

  .footer_right .insta_btn {
    margin: 0 auto 0 2%;
  }

  .footer_right ul {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-left: 0;
    font-weight: 700;
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }
}


/* 下層共通 */
.MV_under .U_ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
  font-size: min(8.3vw, 6.0rem);
  font-weight: 700;
}

#detail_01{
  background-image: url(../img/bg01.png);
  background-repeat: repeat-y;
  
  color: #ffffff
}


#detail_01 .section_inner{
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom:min(25vw, 250px);
}
#detail_01 h2.section_ttl{
margin: 0;
}
#detail_01 .content{
display: flex;
flex-direction: column;
gap: 40px;
}
#detail_01 .content_text{
width: 100%;
}
#detail_01 .content_imgWrap{
gap: 40px;
}



#detail_01 .section_inner.inner01::before {
  content: "";
  width: min(17.7%, 140px);
  aspect-ratio: 140 / 149;
  background-image: url(../img/deco01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 10%;
  right: -5vw;
  z-index: 1;
  transform: scaleX(-1); 
}

#detail_01 .section_inner.inner02::before {
  content: "";
  width: min(40%, 284px);
  aspect-ratio: 284 / 222;
  background-image: url(../img/deco02.png);
  transform: scaleX(-1); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
   bottom:100%;
  left:-5vw;
  z-index: 1;
}
#detail_01 .section_inner.inner02 h2.section_ttl {
margin: 0 0 0 auto;
}

.content_text h3{
  font-size: min(5.8vw, 2.8rem);
}
.content_text p{
padding-bottom: 20px;
}







#detail_01 .line {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}



#detail_01::before {
  content: "";
  width: 100%;
  aspect-ratio: 48 / 100;
  background-image: url(../img/bg_deco01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

#detail_01 .line::before {
  content: "";
  width: 100%;
  aspect-ratio: 480/30;
  background-image: url(../img/line01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

#detail_01 .line::after {
  content: "";
  width: 100%;
  aspect-ratio: 430/30;
  background-image: url(../img/line01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}


/* pcスタイル */
@media screen and (min-width: 960px) {

  #detail_01{
 background-size: cover;
  }

  #detail_01 .line::before {

    aspect-ratio: 1920/30;
 
  }
  
  #detail_01 .line::after {
  
    aspect-ratio: 1920/30;

  }
  #detail_01::before {
    content: "";
    width: 30%;
    aspect-ratio: 7 / 9;
    right: 0;
    left: auto;
}
#detail_01 .section_inner.inner01::before {
  top: 90%;
}
#detail_01 .section_inner.inner02::before {
bottom: 80%;
}
  #detail_01 .inner01 .content {
  
padding-top: 10%;

  }
  #detail_01 .inner01 .content_text {
width: 80%;
margin: 0 auto 0 0;
  }
  #detail_01 .section_inner.inner01{
  padding-bottom: 120px;
  }
  #detail_01 .section_inner.inner02{
   flex-direction: column;
  }
  #detail_01 .section_inner.inner02 h2.section_ttl{
margin: 0 5vw 0 auto;
  }
  #detail_01 .section_inner.inner02 .content{
   flex-direction: row-reverse;
   align-items: center;
   margin-top: -5vw;
   gap: 5%;
  }
  #detail_01 .section_inner.inner02 .content_img{
  width: 60%;
  }
  #detail_01 .section_inner.inner02 .content_text{
  width: 40%;
  }
}






/* 料理 */

#food_01{
  background-color:#9a9539;
  font-weight: 700;
  padding-top: 0;
}




#food_01 .line {
  position: absolute;
  height: 100%;
  width: 90%;
  top: 0;
  left: 5%;
z-index: 0;}



#food_01 .line::before {
  content: "";
  width: 100%;
  aspect-ratio: 432/15;
  background-image: url(../img/line02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2px;
  left: 0;
 
}
#food_01 .line::after {
  content: "";
  width: 100%;
  aspect-ratio: 432/15;
  background-image: url(../img/line02.png);
  background-size: cover;
  transform: scaleY(-1); 
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 2px;
  left: 0;
}
#food_01 .content{
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto 80px;
  gap: 40px;
  position: relative;
  z-index: 1;
}


.menu {
  margin: 40px 0 0;
  text-align: left;
}

.menu_ttl h3 {
  font-size: min(10.4vw, 5.0rem);
  line-height: 1.5;
  padding-bottom: 20px;
  font-weight: 700;
}
.menu_ttl h3 span{
  font-size: min(6.25vw, 3.0rem);
  display: block;
}

.menu-item {
  display: flex;
max-width: 330px;
justify-content: space-between;
  text-align: left;
  font-size: 1.8rem;
 
}


.menu_img--wrap{
  display: flex;
  flex-direction: column;
  gap: 40px;
}



#food_01 .content.inner01  .menu_ttl h3 {
  
  padding-bottom: 40px;
}


#food_01 .content.inner01 .menu-item {

  margin-bottom: 0;
}
#food_01 .content.inner01 p {
  margin-bottom: 30px;
}


#food_01::before, #food_01::after {
  content: "";
  width: 100%;
  aspect-ratio: 480 / 1200;
  background-image: url(../img/bg_deco06.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  top:20px;
  left: 0;
  z-index: 0;
}
 #food_01::after {
  transform: scaleX(-1); 
  top: 23%;

}



/* pcスタイル */
@media screen and (min-width: 960px) {

#food_01 {
  padding: 100px 0;
}
#food_01 .content{
flex-direction: row;
justify-content: space-between;
max-width: 1280px;
margin: 0 auto 80px;
gap: 10%;
}
#food_01 .content.reverse{
flex-direction: row-reverse;

}
#food_01 .menu_text_wrap{
width: 420px;
}
#food_01 .menu_img--wrap{
width: 50%;
padding-top: 40px;
gap: 20px;
}
#food_01 .inner06 .menu_text_wrap{
width: 50%;
min-width: 420px;
  }
  #food_01 .line::before {
  top: 10px;
    aspect-ratio: 1920/16;
 
   
  }
  #food_01 .line::after {
bottom: 10px;
    aspect-ratio: 1920/16;
    
  }
  #food_01::before, #food_01::after {

    width: 50%;
    aspect-ratio: 960 / 1200;
 
    top:0;
   
  }
   #food_01::after {
   
    top: 60vw;
    left: auto;
    right: 0;
  }
      


}




#drink_01{
  background-color:#9a9539;
  font-weight: 700;
  padding-top: 60px;
}

#drink_01{
 height: 1000vw;
}



#drink_01 .line {
  position: absolute;
  height: 100%;
  width: 90%;
  top: 0;
  left: 5%;
z-index: 0;}



#drink_01 .line::before {
  content: "";
  width: 100%;
  aspect-ratio: 432/15;
  background-image: url(../img/line02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 2px;
  left: 0;
 
}
#drink_01 .line::after {
  content: "";
  width: 100%;
  aspect-ratio: 432/15;
  background-image: url(../img/line02.png);
  background-size: cover;
  transform: scaleY(-1); 
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 2px;
  left: 0;
}


#drink_01::before {
  content: "";
  width: 100%;
  aspect-ratio: 480 / 1200;
  background-image: url(../img/bg_deco06.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  top:20px;
  left: 0;
  z-index: 0;
  transform: scaleX(-1); 
}


/* pcスタイル */
@media screen and (min-width: 960px) {

  #drink_01{
    height: 100vw;
   }
   
    #drink_01 .line::before {
    top: 10px;
      aspect-ratio: 1920/16;
   
     
    }
    #drink_01 .line::after {
  bottom: 10px;
      aspect-ratio: 1920/16;
      
    }
    #drink_01::before{
  
      width: 50%;
      aspect-ratio: 960 / 1200;
   
      top: 0;
      left: auto;
      right: 0;
     
    }
  
        
  
  
  }


  #about_01{
    background-color:#e8dca4;
    font-weight: 700;
    padding: 20vw 0 40vw;
  }
  #about_01::before,  #about_01::after{
   content: "";
   width: 100%;
aspect-ratio:480 / 76;
   background-image: url(../img/sp_about_bg_deco01@2x.png);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center bottom;
   position: absolute;
   top:0 ;
   left:0 ;
   z-index: 1;
  }
 #about_01::after{
 
   top:auto ;
   bottom: 0;
   transform: scaleY(-1); 
  }
  #about_01 h2.section_ttl{
    font-size: min(10.4vw, 5.0rem);
    line-height: 1.5;
    padding-bottom: 20px;
    font-weight: 700;
    width: 100%;
    max-width: none;
  margin: 0;

}



  #about_01 .section_inner{
position: relative;
gap: 80px;
  }

  #about_01 .section_inner::before {
    content: "";
    width: min(60vw, 300px);
    aspect-ratio: 280 / 102;
    background-image: url(../img/sp_about_deco01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top:78px;
    left: 0;
    z-index: 1;
  }

 
  #about_01 .section_inner::after {
    content: "";
    width: min(60vw, 300px);
    aspect-ratio: 280 / 102;
    background-image: url(../img/sp_about_deco02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: calc(100% + 40px);
    right: 0;
    z-index: 1;
  }
  #about_01 .content{
 width: 90%;
 margin: 0 auto;
    
      }
  #about_01 dl{
width: 100%;
margin-bottom: 80px;
max-width: 530px;
  }
  #about_01 .description-item{
    display: flex;
  }
  #about_01 dt{
 width: 80px ;
 border-bottom: none;
 padding: 0;
  }
  #about_01 dd{
padding: 0;
 border-bottom: none;
  }
  #about_01 .content p{
   font-weight: 400;
   font-size: min(3.3vw, 1.6rem);
       
         }
  #about_01 .img_wrap{

    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 10px;
    padding-bottom: 120px;
  }

  #about_01 .content_item{
width: calc((100% - 10px)/ 2);;
  }

/* pcスタイル */
@media screen and (min-width: 960px) {



  #about_01{
    background-color:#e8dca4;
    font-weight: 700;
    padding: 11vw 0 20vw;
  }
  #about_01::before,  #about_01::after{
 
aspect-ratio:1920 / 236;
   background-image: url(../img/about_bg_deco01.png);

  }
#about_01 .section_inner {
flex-direction: column;
gap: 40px;
}
#about_01 .section_inner::before,
#about_01 .section_inner::after {
display: none;
}

#about_01 p{
text-align: center;
padding-bottom: 10px;
}
#about_01 .img_wrap{
max-width: 1600px;
gap: 80px 20px;
justify-content: flex-start;
}

#about_01 .content_item{
width: calc((100% - 40px)/ 3);
}

}


#store_01{
  background-image: url(../img/bg01.png);
  color: #ffffff;
  padding-top: 0;
}
#store_01 .img_wrap{
width: 90%;
margin: 0 auto 120px;
gap: 0;
position: relative;
}
#store_01 .content_img{
width: 80%;
position: relative;
z-index: 2;
}
#store_01 .content_img:first-child{
margin: 0 0 0 auto;
}

#store_01 .img_wrap::before {
  content: "";
  width: 60%;
  height: 110%;
  background-image: url(../img/bg_deco02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 5vw;
  left: -5vw;
  z-index: 0;
}


#store_01 .content:last-child{
width: 90%;
margin: 40px auto 120px;
  }
#store_01 .item_wrap{

gap: 10px;
flex-direction: row;
flex-wrap: wrap;
  }
#store_01 .content_item{
width: calc((100% - 10px)/ 2);

  }
/* pcスタイル */
@media screen and (min-width: 960px) {



  #store_01{
  padding-top: 80px;
  padding-bottom: 200px;
  }

  #store_01 .content{
    width: 90%;
    max-width: 1680px;
    margin: 80px auto 10vw;
    flex-direction: row-reverse;
    gap: 8%;
  }
  #store_01 .text_Wrap {
    width: 50%;
  }
  #store_01 dl {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .description-item {
    display: flex;
    width: 100%;
  }

  #store_01 dt {
    width: 180px;
  }

  #store_01 .description-item:last-of-type dt {
    width: 100%;
  }

  #store_01 dd {
    width: calc(100% - 180px);
  }

  #store_01 .img_wrap {
    gap: 0;
    width: 60%;
    padding-top: 0;
    flex-direction: row-reverse;
  margin: 0;
  }
  #store_01 .content_img {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  #store_01 .content_img:first-child {
    margin: 0;
  }

  #store_01 .content_img:nth-child(2) {
    margin: auto 0 0 0;
  }

  #store_01 .img_wrap::before {
    display: none;
  }

  #store_01::before {
    content: "";
    width: 37%;
height: 60vw;
    background-image: url(../img/bg_deco02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: 5%;
    left: 0;
    z-index: 1;
  }
  #store_01 .item_wrap{
position: relative;
z-index: 2;
    gap: 20px;
  
      }
    #store_01 .content_item{
    width: calc((100% - 40px)/ 3);
    
      }


}







  








/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  width: 80%;
  max-width: 600px;
  background-color: #fefefe;
  padding: 10px;
}

.modal-close {
  position: absolute;
  top: -25px;
  right: 0px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 900;
  color: #ffffff;
}

@media screen and (min-width: 960px) {
  .modal-content {
    padding: 20px;
  }

  .modal-close {
    position: absolute;
    top: -50px;
    right: 0px;
    font-size: 40px;
    cursor: pointer;
    font-weight: 900;
    color: #ffffff;
  }
}