@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul:not([role=list]),
ol:not([role=list]) {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 1920px;
  color: #1f1f1f;
  font-family: "Noto Serif JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

p {
  font-size: 16px;
  font-size: min(16px, 1.25vw);
  line-height: 1.8;
}
@media only screen and (max-width: 859px) {
  p {
    font-size: 16px;
    line-height: 1.6;
  }
}

p + p {
  margin-top: 10px;
  margin-top: min(10px, 0.78125vw);
}

.btn {
  position: relative;
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}
.btn.fill_red {
  background-color: #dc2625;
  color: #fff;
}
.btn.fill_white {
  background-color: white;
  color: #1f1f1f;
  font-weight: bold;
}

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #d2d2d2;
  z-index: 10;
}
header .inner {
  max-width: min(1280px, 100% - 60px);
  margin: auto;
  padding: 5px 0;
}
@media only screen and (max-width: 859px) {
  header .inner {
    max-width: 100%;
    padding: 5px 20px;
  }
}

.header_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_item.logo img {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 859px) {
  .header_item.logo img {
    width: 60px;
  }
}
.header_item.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 859px) {
  .header_item.nav {
    background-color: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    margin-top: 50px;
    padding: 50px 20px 0;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
}
.header_item.nav.open {
  opacity: 1;
  visibility: visible;
}
.header_item.nav li {
  font-size: 18px;
  font-size: min(18px, 1.40625vw);
}
@media only screen and (max-width: 859px) {
  .header_item.nav li {
    color: white;
    font-size: 25px;
  }
}

.openbtn {
  display: none;
}
@media only screen and (max-width: 859px) {
  .openbtn {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    z-index: 9999;
    cursor: pointer;
  }
  .openbtn span {
    background-color: #1f1f1f;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: all 0.4s;
  }
  .openbtn span:nth-of-type(1) {
    top: 5px;
  }
  .openbtn span:nth-of-type(2) {
    top: 13px;
  }
  .openbtn span:nth-of-type(3) {
    top: 21px;
  }
  .openbtn p {
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #1f1f1f;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
}
.openbtn.active span:nth-of-type(1) {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.openbtn.active p {
  opacity: 0;
}

footer {
  background-color: #1f1f1f;
  color: white;
}
footer .inner {
  max-width: min(1280px, 100% - 60px);
  margin: auto;
  padding: 80px 0 20px;
}
@media only screen and (max-width: 859px) {
  footer .inner {
    max-width: 100%;
    padding: 40px 20px 10px;
  }
}
footer h2 {
  color: #dc2625;
  font-size: 24px;
  font-size: min(24px, 1.875vw);
  margin-bottom: 10px;
}
@media only screen and (max-width: 859px) {
  footer h2 {
    font-size: 20px;
  }
}
footer .footer_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 100px;
  margin-bottom: 60px;
  margin-bottom: min(60px, 4.6875vw);
}
@media only screen and (max-width: 859px) {
  footer .footer_items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
footer .footer_item.logo img.footer_logo {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
  margin-bottom: min(10px, 0.78125vw);
}
@media only screen and (max-width: 859px) {
  footer .footer_item.logo img.footer_logo {
    width: 100px;
    margin-bottom: 10px;
  }
}
footer .footer_item .logo_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 859px) {
  footer .footer_item .logo_items {
    align-items: baseline;
  }
}
@media only screen and (max-width: 859px) {
  footer .footer_item.nav {
    display: none;
  }
}
footer .footer_item.nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer p.address {
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 859px) {
  footer p.address {
    font-size: 18px;
    padding-left: 35px;
  }
}
footer p.address::before {
  content: "\e0c8";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Material Symbols Outlined";
  color: #dc2625;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 859px) {
  footer p.address::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
}
footer p.tel {
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 859px) {
  footer p.tel {
    font-size: 28px;
    padding-left: 35px;
  }
}
footer p.tel::before {
  content: "\e0b0";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Material Symbols Outlined";
  color: #dc2625;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 859px) {
  footer p.tel::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
}
footer p.time {
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 859px) {
  footer p.time {
    font-size: 18px;
    padding-left: 35px;
  }
}
footer p.time::before {
  content: "\e8b5";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Material Symbols Outlined";
  color: #dc2625;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 859px) {
  footer p.time::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
}
footer .map {
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: min(30px, 2.34375vw);
}
@media only screen and (max-width: 859px) {
  footer .map {
    text-align: left;
  }
}
footer .map iframe {
  margin-top: 20px;
  margin-top: min(20px, 1.5625vw);
}
@media only screen and (max-width: 859px) {
  footer .map iframe {
    margin-top: 20px;
  }
}
footer .copyright {
  font-size: 12px;
  text-align: center;
}

.pc {
  display: block !important;
}
@media only screen and (max-width: 859px) {
  .pc {
    display: none !important;
  }
}

.tablet {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .tablet {
    display: block !important;
  }
}

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

#mv {
  background: url(../img/top/MV.webp) no-repeat center center/cover;
  width: 100vw;
  height: 100vh;
}
#mv .inner {
  max-width: min(1280px, 100% - 60px);
  width: 100vw;
  height: 100vh;
  margin: auto;
}
@media only screen and (max-width: 859px) {
  #mv .inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
#mv .mv_items {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}
#mv .mv_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
}
#mv img {
  width: 100px;
}
#mv h1 {
  font-size: 60px;
  font-size: min(60px, 4.6875vw);
  text-align: center;
  line-height: 1.3;
}
@media only screen and (max-width: 859px) {
  #mv h1 {
    font-size: 40px;
    font-size: min(40px, 9.6618357488vw);
  }
}
#mv h1::after {
  content: attr(data-en);
  display: block;
  font-size: 24px;
  font-size: min(24px, 1.875vw);
  font-weight: normal;
  letter-spacing: 0;
}
@media only screen and (max-width: 859px) {
  #mv h1::after {
    font-size: 20px;
  }
}
#mv p {
  text-align: center;
}

#concept {
  background: url(../img/top/concept_bg.webp) no-repeat center center/cover;
}
#concept .inner {
  max-width: min(1280px, 100% - 60px);
  margin: auto;
  padding: 80px 0 100px;
}
@media only screen and (max-width: 859px) {
  #concept .inner {
    max-width: 100%;
    padding: 40px 20px 80px;
  }
}
#concept h2 {
  font-size: 40px;
  font-size: min(40px, 3.125vw);
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 859px) {
  #concept h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
#concept h3 {
  position: relative;
  font-size: 24px;
  font-size: min(24px, 1.875vw);
  text-align: center;
  margin-bottom: 30px;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #concept h3 {
    font-size: 24px;
  }
}
#concept h3::before {
  content: attr(data-jp);
  background-color: #dc2625;
  display: block;
  width: 120px;
  color: white;
  font-size: 22px;
  font-size: min(22px, 1.71875vw);
  font-weight: bold;
  margin: 0 auto 15px;
  border-radius: 100vmax;
}
@media only screen and (max-width: 859px) {
  #concept h3::before {
    font-size: 18px;
  }
}
#concept h3::after {
  content: "";
  background: url(../img/top/concept_title.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 257px;
  height: 52px;
  z-index: -1;
}
#concept p {
  text-align: center;
}
#concept .concept_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 859px) {
  #concept .concept_items {
    grid-template-columns: 1fr;
  }
}
#concept .concept_item {
  background-color: white;
  padding: 40px 20px;
}

#top_menu {
  background-color: #1f1f1f;
  color: white;
}
#top_menu .inner {
  max-width: min(1280px, 100% - 60px);
  margin: auto;
  padding: 80px 0 100px;
}
@media only screen and (max-width: 859px) {
  #top_menu .inner {
    max-width: 100%;
    padding: 40px 20px 80px;
  }
}
#top_menu h2 {
  font-size: 40px;
  font-size: min(40px, 3.125vw);
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 859px) {
  #top_menu h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
#top_menu h3 {
  font-size: 24px;
  font-size: min(24px, 1.875vw);
}
@media only screen and (max-width: 859px) {
  #top_menu h3 {
    font-size: 20px;
  }
}
#top_menu p.price {
  font-size: 24px;
  font-size: min(24px, 1.875vw);
  color: #dc2625;
  font-weight: bold;
}
@media only screen and (max-width: 859px) {
  #top_menu p.price {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
#top_menu .menu_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
}
@media only screen and (max-width: 859px) {
  #top_menu .menu_items {
    grid-template-columns: 1fr;
  }
}
#top_menu .menu_item {
  background-color: #111828;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 20px;
}
#top_menu .menu_item img {
  width: 100%;
}
#top_menu .menu_item .body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 20px;
}
#top_menu .btn_area {
  display: grid;
  place-content: center;
  margin-top: 30px;
}

#greeting .inner {
  max-width: min(1280px, 100% - 60px);
  margin: auto;
  padding: 80px 50px 0;
}
@media only screen and (max-width: 859px) {
  #greeting .inner {
    max-width: 100%;
    padding: 40px 20px;
  }
}
#greeting h2 {
  position: relative;
  font-size: 40px;
  font-size: min(40px, 3.125vw);
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 859px) {
  #greeting h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
#greeting h2::after {
  content: "";
  background: url(../img/top/concept_title.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 257px;
  height: 52px;
  z-index: -1;
}
#greeting h3 {
  font-size: 20px;
  font-size: min(20px, 1.5625vw);
  text-align: right;
}
@media only screen and (max-width: 859px) {
  #greeting h3 {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }
}
#greeting .greeting_items {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}
@media only screen and (max-width: 859px) {
  #greeting .greeting_items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#greeting .greeting_item.img img {
  width: 300px;
  width: min(300px, 23.4375vw);
}
@media only screen and (max-width: 859px) {
  #greeting .greeting_item.img img {
    width: 250px;
    margin: 0 auto;
  }
}

#mv.menu {
  background: url(../img/menu/MV.webp) no-repeat center center/cover;
}

#menu {
  margin-bottom: 160px;
  margin-bottom: min(160px, 12.5vw);
}
#menu .inner {
  max-width: min(1280px, 100% - 60px);
  margin: auto;
  padding: 80px 50px 0;
}
@media only screen and (max-width: 859px) {
  #menu .inner {
    max-width: 100%;
    padding: 40px 20px;
  }
}
#menu h2 {
  position: relative;
  font-size: 40px;
  font-size: min(40px, 3.125vw);
  text-align: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 859px) {
  #menu h2 {
    font-size: 30px;
    font-size: min(30px, 7.2463768116vw);
    margin-bottom: 40px;
  }
}
#menu h2::after {
  content: "";
  background: url(../img/top/concept_title.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 257px;
  height: 52px;
  z-index: -1;
}
#menu h3 {
  font-size: 20px;
  font-size: min(20px, 1.5625vw);
}
@media only screen and (max-width: 859px) {
  #menu h3 {
    font-size: 20px;
  }
}
#menu p.price {
  font-size: 24px;
  font-size: min(24px, 1.875vw);
  color: #dc2625;
  font-weight: bold;
  margin-top: 0;
}
@media only screen and (max-width: 859px) {
  #menu p.price {
    font-size: 18px;
  }
}
#menu .menu_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
}
@media only screen and (max-width: 859px) {
  #menu .menu_items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#menu .menu_item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#menu .menu_item img {
  width: 100%;
}
#menu .menu_item .body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 20px;
}

#menu_concept {
  position: relative;
  height: 900px;
  height: min(900px, 70.3125vw);
}
@media only screen and (max-width: 859px) {
  #menu_concept {
    height: auto;
  }
}
#menu_concept::before {
  content: "";
  background: url(../img/menu/bg.webp) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 768px;
  height: min(768px, 60vw);
}
@media only screen and (max-width: 859px) {
  #menu_concept::before {
    content: none;
  }
}
#menu_concept .inner {
  max-width: min(800px, 100% - 60px);
  margin: auto;
}
@media only screen and (max-width: 859px) {
  #menu_concept .inner {
    max-width: 100%;
    padding: 0 20px;
  }
}
#menu_concept h2 {
  position: relative;
  font-size: 40px;
  font-size: min(40px, 3.125vw);
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: min(80px, 6.25vw);
}
@media only screen and (max-width: 859px) {
  #menu_concept h2 {
    font-size: 28px;
    font-size: min(28px, 6.7632850242vw);
    margin-bottom: 40px;
  }
}
#menu_concept h2::after {
  content: "";
  background: url(../img/top/concept_title.webp) no-repeat center center/cover;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 257px;
  height: 52px;
  z-index: -1;
}
#menu_concept p {
  font-size: 18px;
  font-size: min(18px, 1.40625vw);
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 859px) {
  #menu_concept p {
    font-size: 16px;
    text-align: left;
  }
}