@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
  scroll-padding-top: 100px;
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

body {
  font-family: "Inter", sans-serif;
  background-image: url(../images/bg.png);
  color: #fff;
}
body main {
  padding-top: 60px;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
/*************************************************
footer
*************************************************/
/*************************************************
navi
*************************************************/
/*************************************************
header
*************************************************/
header {
  position: fixed;
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px 50px;
  border-bottom: 1px solid #fff;
  z-index: 9999;
}
header .name {
  font-weight: 700;
  font-size: 26px;
}
@media screen and (max-width: 599px) {
  header {
    padding: 15px 30px;
  }
}
header .header-logo {
  font-weight: 700;
  font-size: 32px;
  z-index: 10001;
}
@media screen and (max-width: 599px) {
  header .header-logo {
    font-size: 20px;
  }
}
header .header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  header .header-nav {
    display: none;
  }
}
header .header-nav li {
  position: relative;
}
header .header-nav li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 24px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
}
header .header-nav li:last-child::after {
  display: none;
}
header .header-nav li a {
  font-size: 18px;
  font-weight: 700;
}
header .header-nav .reserve {
  background-color: #BC0D18;
  color: #fff;
  padding: 5px 15px;
}
header .header-nav .reserve:hover {
  opacity: 0.8;
}
header .drawer-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
}
@media screen and (max-width: 599px) {
  header .drawer-toggle {
    display: flex;
  }
}
header .drawer-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
header .drawer-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
header .drawer-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .drawer-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #000;
  transition: right 0.3s ease;
  z-index: 10000;
  padding-top: 80px;
}
@media screen and (max-width: 599px) {
  .drawer-menu {
    display: block;
  }
}
.drawer-menu.active {
  right: 0;
}
.drawer-menu .drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-menu .drawer-close span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.drawer-menu .drawer-close span:nth-child(1) {
  transform: rotate(45deg);
}
.drawer-menu .drawer-close span:nth-child(2) {
  transform: rotate(-45deg);
}
.drawer-menu .drawer-close:hover span {
  background-color: #ccc;
}
.drawer-menu .lang {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}
.drawer-menu .lang li {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.drawer-menu .lang li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 25px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
}
.drawer-menu .lang li:last-child::after {
  display: none;
}
.drawer-menu .logo {
  margin-bottom: 100px;
  text-align: center;
}
.drawer-menu .logo img {
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
.drawer-menu .drawer-menu_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer-menu .drawer-menu_list li {
  border-bottom: 1px solid #333;
}
.drawer-menu .drawer-menu_list li a {
  display: block;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.drawer-menu .drawer-menu_list li a:hover {
  background-color: #1a1a1a;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*************************************************
footer
*************************************************/
footer {
  background-color: #000;
}
footer .section_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 599px) {
  footer .section_inner {
    padding: 30px 15px;
  }
}
footer .section_inner a {
  display: block;
  margin-bottom: 30px;
}
footer .section_inner a img {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  footer .section_inner a img {
    max-width: 200px;
  }
}
footer .section_inner p {
  line-height: 1.6;
  justify-content: center;
  text-align: center;
}
footer small {
  display: block;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  padding: 10px 0;
}

/*************************************************
TOP
*************************************************/
#fv {
  padding-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #fv {
    padding-top: 80px;
  }
}
#fv .fv_inner {
  max-width: 93.0555555556vw;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#fv .fv_inner img {
  display: block;
  width: 100%;
}
#fv .fv_inner .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #fv .fv_inner .logo {
    max-width: 200px;
  }
}

#concept {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #concept {
    padding: 0 15px;
  }
}
#concept .section_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
#concept .section_inner .section_01 {
  margin-bottom: 100px;
}
#concept .section_inner .section_01 h1 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}
#concept .section_inner .section_01 p {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}
#concept .section_inner .section_02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
#concept .section_inner .section_02:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #concept .section_inner .section_02 {
    flex-direction: column;
    margin-bottom: 50px;
  }
  #concept .section_inner .section_02:last-child {
    flex-direction: column-reverse;
  }
}
#concept .section_inner .section_02 .features_img {
  max-width: 640px;
  width: 100%;
}
#concept .section_inner .section_02 .features_img img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #concept .section_inner .section_02 .features_img img {
    margin-bottom: 30px;
  }
}
#concept .section_inner .section_02 .features_text {
  max-width: 496px;
  width: 100%;
}
#concept .section_inner .section_02 .features_text p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #concept .section_inner .section_02 .features_text p {
    margin-bottom: 30px;
  }
}
#concept .section_inner .section_02 .features_text a {
  display: block;
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
}
#concept .section_inner .section_02 .features_text a img {
  display: block;
  width: auto;
  height: 30px;
}

/*************************************************
下層ページ共通
*************************************************/
#under {
  position: relative;
  background-image: url(../images/under_header.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  margin-bottom: 50px;
}
#under h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  font-size: 32px;
}

/*************************************************
MENU
*************************************************/
@media screen and (max-width: 599px) {
  #attention {
    padding: 0 15px;
  }
}
#attention .section_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #attention .section_inner {
    flex-direction: column;
    gap: 30px;
  }
}
#attention .section_inner .attention {
  flex-basis: 50%;
  background-color: #eeead8;
  color: #333;
  height: 100%;
  padding: 30px;
}
#attention .section_inner .attention h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
}
#attention .section_inner .attention ul li {
  list-style: disc;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
#attention .section_inner .allergy {
  flex-basis: 50%;
  background-color: #eeead8;
  color: #333;
  height: 100%;
  padding: 30px;
}
#attention .section_inner .allergy h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
}
#attention .section_inner .allergy ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media screen and (max-width: 599px) {
  #attention .section_inner .allergy ul {
    grid-template-columns: repeat(5, 1fr);
  }
}
#attention .section_inner .allergy ul li img {
  display: block;
  max-width: 70px;
  width: 100%;
}

@media screen and (max-width: 599px) {
  #category {
    padding: 0 15px;
  }
}
#category .section_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 50px;
}
#category .section_inner h2 {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
#category .section_inner ul {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 599px) {
  #category .section_inner ul {
    grid-template-columns: repeat(2, 1fr);
    height: 150px;
    overflow-y: scroll;
    gap: 15px;
  }
}
#category .section_inner ul li {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
}
#category .section_inner ul li:hover {
  background-color: #fff;
  color: #333;
}
#category .section_inner ul li a {
  display: block;
  width: 100%;
}
#category .section_inner ul li a img {
  display: block;
  width: 100%;
}

.container {
  counter-reset: menu-counter;
}

@media screen and (max-width: 599px) {
  .menu {
    padding: 0 15px;
  }
}
.menu .section_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 80px;
}
.menu .section_inner h3 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .menu .section_inner h3 {
    font-size: 24px;
  }
}
.menu .section_inner h3 span {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .menu .section_inner h3 span {
    font-size: 16px;
  }
}
.menu .section_inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    column-gap: 10px;
  }
}
.menu .section_inner ul li {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  color: #333;
  position: relative;
  counter-increment: menu-counter;
}
.menu .section_inner ul li::before {
  content: counter(menu-counter);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul li::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
.menu .section_inner ul li .img_wrap {
  max-width: 380px;
  width: 100%;
  max-height: 240px;
  height: 240px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul li .img_wrap {
    height: 150px;
  }
}
.menu .section_inner ul li .img_wrap img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.menu .section_inner ul li .img_wrap img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.menu .section_inner ul li .menu_inner {
  padding: 15px;
}
.menu .section_inner ul li .menu_inner .menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 0.8px solid #ccc;
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul li .menu_inner .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-bottom: 10px;
  }
}
.menu .section_inner ul li .menu_inner .menu h3 {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul li .menu_inner .menu h3 {
    font-size: 15px;
    text-align: left;
    margin-bottom: 10px;
  }
}
.menu .section_inner ul li .menu_inner .menu h3 span {
  font-size: 13px;
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul li .menu_inner .menu h3 span {
    font-size: 12px;
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .menu .section_inner ul li .menu_inner .menu h3 br {
    display: none;
  }
}
.menu .section_inner ul li .menu_inner .menu p {
  font-weight: 700;
  font-size: 16px;
}
.menu .section_inner ul li .menu_inner .menu_text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}
.menu .section_inner ul li .menu_inner .menu_text:last-child {
  margin-bottom: 0;
}
.menu .section_inner ul li .menu_inner .menu_text .allergy_icon {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.menu .section_inner ul li .menu_inner .menu_text .allergy_icon img {
  display: block;
  width: 50px;
  height: auto;
}

/*************************************************
SHOP INFO
*************************************************/
@media screen and (max-width: 599px) {
  #shop {
    padding: 0 15px;
  }
}
#shop .section_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 50px;
}
#shop .section_inner table,
#shop .section_inner tbody {
  display: block;
}
#shop .section_inner table {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  padding: 60px;
}
@media screen and (max-width: 599px) {
  #shop .section_inner table {
    padding: 30px 15px;
  }
}
#shop .section_inner table tr {
  display: flex;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
#shop .section_inner table tr th {
  width: 200px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  #shop .section_inner table tr th {
    font-size: 14px;
  }
}
#shop .section_inner table tr td {
  width: 500px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #shop .section_inner table tr td {
    font-size: 14px;
  }
}
#shop .section_inner table tr td .gmap {
  margin-top: 15px;
}
#shop .section_inner table tr td .card {
  display: block;
  width: 100%;
}