@charset "UTF-8";
:root {
  --s-val: 10px;
  --mincho: "Hina Mincho", "游明朝体", "Yu Mincho", YuMincho;
  --gothic: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  /* PC small window */
  :root {
    --s-val: 1.3vw;
  }
} /* PC small window */
@media screen and (max-width: 767px) {
  /* sp only */
  :root {
    --s-val: 8px;
  }
} /* sp only */
/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

img {
  image-rendering: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

body {
  font-family: var(--gothic);
  font-weight: 400;
  color: var(--color_base-text);
  font-size: calc(var(--s-val) * 1.6);
  line-height: 1.75;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  color: #3B1C06;
}

/* ============
* common css start
============ */
/* ============
* common parts start
============ */
/* ==================
* container
* ================== */
.container {
  --middle-w: calc(100% - 40px);
  --min-w: 0px;
  --max-w: 1320px;
  width: clamp(var(--min-w), var(--middle-w), var(--max-w));
  margin-inline: auto;
}
.container--w-1000 {
  --max-w: 1000px;
}


a {
  color: #0071DA;
}



@media screen and (max-width: 767px) {
  /* sp only */
} /* sp only */
/* end container */
img {
  image-rendering: auto;
}

.image {
  display: block;
}

@media (hover: hover) {
  /* hover-device only */
  a {
    -webkit-transition: opacity 0.3s 0s;
    transition: opacity 0.3s 0s;
  }
  a img:hover {
    opacity: 0.7;
  }
} /* hover-device only */
.p-r {
  position: relative;
}


.indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.d-ib {
  display: inline-block;
}




.button_wrap {
  margin: 0 auto;
  width: 20vw;
}

@media screen and (max-width: 767px) {
  /* sp only */
  .button_wrap {
    width: 60vw;
  }
} /* sp only */
.basic_button {
  display: block;
}
.basic_button .image {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.31);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.31);
  border-radius: 9999px;
}

/* ==================
* head-title
* ================== */
.head-title {
  position: absolute;
  left: calc(var(--s-val) * -2.6);
  top: calc(var(--s-val) * -4.4);
}
.head-title .image {
  width: calc(var(--s-val) * 40);
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  /* PC small window */
  .head-title {
    --s-val: 0.83vw;
  }
} /* PC small window */
@media screen and (max-width: 767px) {
  /* sp only */
  .head-title {
    left: -2.9vw;
    top: -4.7vw;
  }
  .head-title .image {
    width: 37vw;
  }
} /* sp only */
/* end head-title */
/* ==================
* block-deco_head
* ================== */
.block-deco_head {
  position: relative;
}
.block-deco_head::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/decoration_head.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/cover;
  aspect-ratio: 1920/241;
  width: 100%;
}

/* end block-deco_head */

/* ==================
* button
* ================== */

.button {
  font-size: calc(var(--s-val) * 2);
  padding-block: calc(var(--s-val) * 1) calc(var(--s-val) * 1);
  font-weight: 500;
  background-color: #F14100;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.31);
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--s-val) * 35);
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}

.button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: calc(var(--s-val) * 1);
  height: calc(var(--s-val) * 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top center;
  transition: 0.15s;
}

.button:hover {
  filter: brightness(1.2);
}

@media screen and (max-width: 767px) {
  /* sp only */
  .button {
    font-size: calc(var(--s-val) * 1.8);
  }

  .button::after {
    width: calc(var(--s-val) * 0.6);
    height: calc(var(--s-val) * 0.6);
    border-width: 1px;
    right: 15px;
  }
} /* sp only */
/* end button */

/* -- common css end -- */
/* ============
* 以下、各共通ブロック style
============ */
/* ==================
* g_wrapper
* ================== */
.g_wrapper {
  max-width: 100%;
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

/* end g_wrapper */
/* ==================
* g_header
* ================== */
.g_header {
  display: inline-block;
  letter-spacing: 2px;
  line-height: 1;
  position: fixed;
  top: calc(var(--s-val) * 4);
  right: calc(var(--s-val) * 4);
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: calc(var(--s-val) * 1.2) calc(var(--s-val) * 8.8);
  -webkit-backdrop-filter: blur(calc(var(--s-val) * 0.4));
          backdrop-filter: blur(calc(var(--s-val) * 0.4));
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.g_header a {
  display: inline-block;
  color: #FFF;
  font-size: calc(var(--s-val) * 1.6);
  text-decoration: none;
}
.g_header a:hover {
  text-decoration: underline;
}
.g_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--s-val) * 6);
}

@media screen and (max-width: 767px) {
  /* sp only */
  .g_header {
    --s-val: 8px;
    right: 20px;
    top: 15px;
    padding: calc(var(--s-val) * 1.2) calc(var(--s-val) * 4.8);
  }
  .g_header a {
    font-size: 10px;
  }
} /* sp only */
/* end g_header */
/* ==================
* sec_fv
* ================== */
.sec_fv .scroll_button {
  display: block;
  width: calc(var(--s-val) * 10.6);
  aspect-ratio: 1;
  position: absolute;
  inset: 0;
  top: 45vw;
  bottom: auto;
  margin: auto;
}
.sec_fv .button_wrap {
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  /* sp only */
  .sec_fv .scroll_button {
    width: 13vw;
    top: 62vw;
  }
  .sec_fv .button_wrap {
    bottom: 4%;
  }
} /* sp only */
/* end sec_fv */
/* ==================
* scroll-pos
* ================== */
.scroll-pos {
  --negative: calc(var(--s-val) * 6);
  padding-top: var(--negative);
  margin-top: calc(var(--negative) * -1);
}

/* end scroll-pos */



/* ==================
* sec_food
* ================== */
.sec_food {
  padding-block: 0 calc(var(--s-val) * 10);
}

/* end sec_food */
/* ==================
* food-main
* ================== */
.food-main {
  padding-block: 0 calc(var(--s-val) * 5);
}

@media screen and (min-width: 768px) and (max-width: 1360px) {
  /* PC small window */
  .food-main {
    --s-val: 0.72vw;
  }
} /* PC small window */
@media screen and (max-width: 767px) {
  /* sp only */
  .food-main {
    padding-bottom: calc(var(--s-val) * 45);
  }
  .food-main::after {
    content: "";
    display: block;
    width: 120vw;
    position: absolute;
    right: calc(var(--s-val) * -35);
    bottom: calc(var(--s-val) * 2);
    background: url("../images/food_visual.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
    aspect-ratio: 923/690;
    width: clamp(500px, 57vw, 800px);
  }
} /* sp only */
/* end food-main */
/* ==================
* food-list
* ================== */
.food-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr calc(var(--s-val) * 6) 1fr calc(var(--s-val) * 6) 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(var(--s-val) * 6);
  padding-block: calc(var(--s-val) * 30) 0;
  position: relative;
  --margin: calc(var(--s-val) * 3);
}
.food-list::after {
  content: "";
  display: block;
  position: absolute;
  right: calc(var(--s-val) * -35);
  bottom: calc(var(--s-val) * -17);
  background: url("../images/food_visual.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  aspect-ratio: 923/690;
  width: clamp(500px, 57vw, 800px);
}
.food-list ul li {
  border-bottom: 1px solid;
  padding-bottom: var(--margin);
  font-size: calc(var(--s-val) * 1.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: calc(var(--s-val) * 1);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.food-list ul li:not(:last-of-type) {
  margin-bottom: var(--margin);
}
.food-list ul li .price {
  white-space: nowrap;
}

@media screen and (min-width: 768px) and (max-width: 840px) {
  /* PC small window */
  .food-list::after {
    width: 54vw;
  }
} /* PC small window */
@media screen and (max-width: 767px) {
  /* sp only */
  .food-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: var(--margin);
    padding-block: 25vw 0;
  }
  .food-list::after {
    display: none;
  }
  .food-list ul li {
    font-size: clamp(7px, 3.7vw, 14px);
  }
} /* sp only */
/* end food-list */
/* ==================
* food_annotation
* ================== */
.food_annotation {
  font-size: clamp(11px, var(--s-val) * 1.4, 16px);
  margin-top: calc(var(--s-val) * 4);
}

/* end food_annotation */


/* ==================
* sec_access
* ================== */
.sec_access {
  padding-bottom: calc(var(--s-val) * 10);
}
.sec_access .button_wrap {
  margin-top: calc(var(--s-val) * 10);
}

@media screen and (max-width: 767px) {
  /* sp only */
  .sec_access {
    padding-bottom: 12vw;
  }
  .sec_access .button_wrap {
    margin-top: 10vw;
  }
} /* sp only */
/* end sec_access */
/* ==================
* access
* ================== */
.access {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr calc(var(--s-val) * 5) 5fr;
  grid-template-columns: 4fr 5fr;
  gap: calc(var(--s-val) * 5);
  padding-top: calc(var(--s-val) * 30);
}
.access .info {
  font-size: calc(var(--s-val) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(var(--s-val) * 4);
}
.access .g-map iframe {
  width: 100%;
  display: block;
  aspect-ratio: 772/437;
  border-radius: calc(var(--s-val) * 2);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  /* sp only */
  .access {
    display: block;
    padding-block: 30vw 0;
  }
  .access .info {
    font-size: 14px;
    gap: calc(var(--s-val) * 2.2);
  }
  .access .g-map {
    margin-top: calc(var(--s-val) * 4);
  }
  .access .g-map iframe {
    aspect-ratio: 327/185;
    border-radius: calc(var(--s-val) * 1);
    height: auto !important;
  }
} /* sp only */
/* end access */
/* ==================
* recruit
* ================== */
.sec_recruit {
  background: url(../images/image_04.png) no-repeat center center / cover;
  font-weight: 700;
  padding: calc(var(--s-val)* 4) 0;
  text-align: center;
}

.sec_recruit .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.sec_recruit p {
  color: #fff;
}

.form-block {
  width: 100%;
}

.form-block a {
  color: #ff902a;
}

.form-block .button {
  margin-block: calc(var(--s-val) * 2.4) calc(var(--s-val) * 2);
}



.recruit-text {
  font-size: calc(var(--s-val)* 2.2);
}
.recruit-tel {
  align-items: center;
  display: flex;
  justify-content: center;
}
.recruit-tel a {
  font-size: calc(var(--s-val)* 2.6);
  font-weight: 900;
  text-decoration: none;
}
.recruit-tel img {
  height: auto;
  margin-right: calc(var(--s-val)* 1);
  width: 24px;
}
.recruit-time {
  font-size: calc(var(--s-val)* 1.8);
}
@media screen and (max-width: 767px) {
  /* sp only */
  .sec_recruit {
    height: auto;
    padding: calc(var(--s-val)* 3) 0;
  }
  .recruit-text {
    font-size: calc(var(--s-val)* 1.6);
  }
  .recruit-tel a {
    font-size: calc(var(--s-val)* 2);
  }
  .recruit-tel img {
    width: 15px;
  }
  .recruit-time {
    font-size: calc(var(--s-val)* 1.2);
  }
} /* sp only */
/* end recruit */
/* ==================
* g_footer
* ================== */
.g_footer__image {
  aspect-ratio: 1920/725;
  max-height: 500px;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.g_footer__end {
  background-color: #3B1C06;
  width: 100%;
  padding-block: calc(var(--s-val) * 5);
}

@media screen and (max-width: 767px) {
  /* sp only */
  .g_footer__image {
    aspect-ratio: 375/180;
    max-height: 100%;
  }
  .g_footer__end {
    background-color: #3B1C06;
    width: 100%;
    padding-block: 5vw;
  }
} /* sp only */
/* end g_footer */
/* ==================
* scroll-top_button
* ================== */
.scroll-top_button {
  display: block;
  width: calc(var(--s-val) * 10.5);
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  /* sp only */
  .scroll-top_button {
    width: 13vw;
  }
} /* sp only */
/* end scroll-top_button */