@charset "UTF-8";
html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

main {
  padding-top: 100px;
  overflow: hidden;
}
@media (max-width: 920px) {
  main {
    padding-top: 60px;
  }
}

.container {
  width: min(85vw, 1200px);
  margin: 0 auto;
}
@media (max-width: 920px) {
  .container {
    width: 90vw;
  }
}

section:not(#hero) {
  padding: clamp(110px, 15vw, 140px) 0;
}

section.bg {
  background-color: #dcdcdc;
}

.margin-auto {
  margin-inline: auto;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  vertical-align: middle;
}

hr {
  border: 0;
  height: 1px;
  background: #ccc;
}

[hidden] {
  display: none !important;
}

:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.08em;
}

strong,
h2,
h3,
h4 {
  font-weight: inherit;
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.5em;
}
@media (max-width: 920px) {
  h2 {
    margin-bottom: 1em;
  }
}

h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 2vw, 2.4rem);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-up:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fade-in-up:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.fade-in-up:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

a:not(.logo) {
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

@media (hover: hover) and (pointer: fine) {
  a:not(.logo):hover {
    opacity: 0.5;
  }
}
.button {
  display: block;
  background-color: #962914;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.button .material-symbols-outlined {
  font-weight: 200;
  font-size: 1.2em;
}

.button--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 320px;
  height: 75px;
  padding: 0 20px;
  margin-top: clamp(30px, 10vw, 50px);
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
@media (max-width: 920px) {
  .button--primary {
    margin-inline: auto;
    width: 300px;
    height: 70px;
  }
}

.button--sm {
  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;
  width: 180px;
  height: 50px;
  gap: 5px;
}

.button--lg {
  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;
  width: 280px;
  height: 80px;
  gap: 5px;
  background-color: #ffffff;
  color: #000;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 200;
  margin-right: 5vw;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 920px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header.is-open .hamburger span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.header.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.header.is-open .hamburger span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

section#page-hero {
  position: relative;
  z-index: 0;
  background-image: url("images/background/reserve.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
section#page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
section#page-hero h2 {
  color: #fff;
}
section#page-hero {
  padding-block: clamp(50px, 10vw, 80px);
  background-image: url(/images/background/background.png);
}
section#page-hero h2 {
  margin-bottom: 0;
  text-align: start;
  font-weight: 700;
}

.footer {
  background-color: #252525;
  padding-top: clamp(60px, 20vw, 70px);
  padding-bottom: 20px;
  padding-inline: min(5vw, 30px);
  color: #fff;
}
.footer__inner {
  padding-bottom: clamp(30px, 15vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__inner .logo {
  display: block;
  width: clamp(80px, 12vw, 100px);
}
@media (max-width: 920px) {
  .footer__inner .logo {
    margin: 0 auto;
  }
}
.footer__inner .footer-info {
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.3em;
}
.footer__inner .footer-info p {
  margin-top: 0.6em;
}
.footer__inner .footer-info p:first-child {
  margin-top: 0;
}
.footer__inner .insta {
  margin-top: 20px;
  font-size: 2rem;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100px;
}
@media (max-width: 920px) {
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
  }
}
.header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55px;
  margin-left: min(5vw, 20px);
}
@media (max-width: 920px) {
  .header h1 {
    width: 33px;
  }
}
.header h1 a {
  display: inline-block;
}
.header__nav {
  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: start;
}
.header__nav .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  height: 55px;
}
.header__nav .info .call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.5em;
}
.header__nav .info .call img {
  width: 1em;
}
.header__nav .info .call p {
  font-size: 2rem;
  line-height: 1em;
}
.header__nav .info .call p span {
  display: block;
  font-size: 1.1rem;
}
.header__nav .info .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  height: 55px;
  width: 230px;
}
.header__nav .info .button img {
  width: 1.2em;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  height: 45px;
  margin-right: min(5vw, 30px);
}
.header__nav ul li {
  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;
}
.header__nav ul li.active {
  color: #962914;
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
}
.header.is-open .header__overlay {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 920px) {
  .header__nav {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    top: 0;
    right: -100%;
    gap: 30px;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding-top: 60px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 150;
  }
  .header__nav .info {
    height: auto;
    display: block;
    margin-inline: 25px;
  }
  .header__nav .info .button {
    margin-top: 20px;
    width: 100%;
    height: 65px;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-right: 0;
    font-size: 1.6rem;
  }
  .header__nav ul li {
    width: 100%;
    border-top: 1px solid #b4b4b4;
  }
  .header__nav ul li:last-child {
    border-bottom: 1px solid #b4b4b4;
  }
  .header__nav ul li a {
    width: 100%;
    padding-block: 1.2em;
    padding-left: 25px;
  }
  .header.is-open .header__nav {
    right: 0;
  }
}

#home .header {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#home .header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 920px) {
  #home .header {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }
}
#features {
  position: relative;
  z-index: 0;
}
#features::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 40%;
  background: url(/images/features/background.png) center/cover no-repeat;
  opacity: 0.2;
  z-index: -2;
}
@media (max-width: 920px) {
  #features::before {
    height: 60%;
  }
}
#features::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 40%;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 100%);
  z-index: -1;
}
@media (max-width: 920px) {
  #features::after {
    height: 60%;
  }
}
@media (max-width: 920px) {
  #features .details {
    text-align: start;
    max-width: 600px;
    margin-inline: auto;
  }
}
#features ul {
  margin-top: clamp(80px, 15vw, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 920px) {
  #features ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: clamp(30px, 10vw, 60px);
  }
}
#features ul li {
  border: 2px solid #000;
  background-color: #fff;
  width: 32%;
  padding: 40px min(5vw, 30px);
}
@media (max-width: 920px) {
  #features ul li {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}
#features ul li div {
  height: 100px;
  margin-inline: auto;
  margin-bottom: 30px;
}
#features ul li div img {
  height: 100%;
  max-width: auto;
  width: auto;
  margin-inline: auto;
}
#features ul li div img.sm {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
#features ul li h3 {
  text-align: center;
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 0.5em;
}

#point ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(60px, 10vw, 100px);
}
#point ul figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 920px) {
  #point ul figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#point ul figure > .img-wrap {
  width: 53%;
}
@media (max-width: 920px) {
  #point ul figure > .img-wrap {
    width: 100%;
  }
}
#point ul figure > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 920px) {
  #point ul figure > .content {
    width: 100%;
  }
}
#point ul figure {
  row-gap: 10px;
}
#point ul figure div {
  position: relative;
}
#point ul figure div span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #962914;
  opacity: 0.15;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1em;
  font-size: 7.6rem;
  height: 1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media (max-width: 920px) {
  #point ul figure div span {
    font-size: clamp(3.8rem, 5vw, 6rem);
  }
}
#point ul figure div h3 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  text-align: center;
  border-bottom: 2px solid #000;
  margin-bottom: 0.5em;
  padding-bottom: 0.4em;
  padding-block: 1.2em;
}
@media (max-width: 920px) {
  #point ul figure div h3 {
    padding-block: 0.5em;
  }
}
#point ul li:nth-child(even) figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 920px) {
  #point ul li:nth-child(even) figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
#point ul li:nth-child(even) figure > .img-wrap {
  width: 53%;
}
@media (max-width: 920px) {
  #point ul li:nth-child(even) figure > .img-wrap {
    width: 100%;
  }
}
#point ul li:nth-child(even) figure > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 920px) {
  #point ul li:nth-child(even) figure > .content {
    width: 100%;
  }
}
#point ul li:nth-child(even) figure {
  row-gap: 10px;
}

#home main {
  padding-top: 0;
}
@media (max-width: 920px) {
  #home main {
    padding-top: 60px;
  }
}

#hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
#hero .content {
  width: 330px;
}
@media (max-width: 920px) {
  #hero .content {
    display: none;
  }
}
#hero .content .info {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#hero .content .info .logo {
  margin-bottom: 3rem;
  width: clamp(100px, 10vw, 120px);
}
#hero .content .info .call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
#hero .content .info .call img {
  width: 1.2em;
}
#hero .content .info .call p {
  line-height: 1em;
}
#hero .content .info .call p span {
  display: block;
  font-size: 1.2rem;
}
#hero .content .info .call p {
  font-size: clamp(2rem, 2vw, 2.6rem);
}
#hero .content .info .button {
  margin-top: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  width: 250px;
  height: 65px;
}
#hero .content .info .button img {
  width: 1.2em;
}
#hero .content ul {
  padding-left: 40px;
  margin-top: 1.5em;
  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-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.5em;
}
#hero .content ul .active {
  color: #962914;
}
#hero .img-wrap {
  height: clamp(400px, 70vh, 800px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
#hero .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#concept .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 920px) {
  #concept .content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
#concept .content-wrap > .img-wrap {
  width: 50%;
}
@media (max-width: 920px) {
  #concept .content-wrap > .img-wrap {
    width: 100%;
  }
}
#concept .content-wrap > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 920px) {
  #concept .content-wrap > .content {
    width: 100%;
  }
}
#concept .content-wrap {
  row-gap: 50px;
}
#concept .content-wrap .content .handwritten.display-pc {
  margin-bottom: 0.8em;
}
#concept .content-wrap .img-wrap {
  position: relative;
}
#concept .content-wrap .img-wrap .absolute {
  width: 90%;
  position: absolute;
  right: -15%;
  bottom: -5%;
}

#floor-intro {
  position: relative;
  z-index: 0;
  background-image: url("images/background/reserve.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
#floor-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
#floor-intro h2 {
  color: #fff;
}
#floor-intro {
  background-image: url(/images/floor/background.png);
  color: #fff;
}
#floor-intro::before {
  backdrop-filter: blur(3px);
}
#floor-intro h3 {
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  margin-bottom: 0.8em;
}
#floor-intro a {
  display: inline-block;
  margin-top: 2em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

#lunch-dinner {
  position: relative;
  z-index: 0;
}
@media (max-width: 920px) {
  #lunch-dinner h3 br {
    display: none;
  }
  #lunch-dinner .price {
    text-align: end;
  }
}
#lunch-dinner::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 50%;
  background: url(/images/background/home-background.png) center/cover no-repeat;
  opacity: 0.15;
  z-index: -2;
}
#lunch-dinner::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 50%;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
}
#lunch-dinner .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 920px) {
  #lunch-dinner .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#lunch-dinner .top > .img-wrap {
  width: 55%;
}
@media (max-width: 920px) {
  #lunch-dinner .top > .img-wrap {
    width: 100%;
  }
}
#lunch-dinner .top > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 920px) {
  #lunch-dinner .top > .content {
    width: 100%;
  }
}
#lunch-dinner .others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
#lunch-dinner .others > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
          flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 920px) {
  #lunch-dinner .others {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #lunch-dinner .others > * {
    width: 100%;
  }
}
#lunch-dinner .others {
  margin-top: clamp(50px, 10vw, 100px);
  row-gap: clamp(50px, 10vw, 100px);
}
#lunch-dinner .others .last {
  padding-top: 80px;
}
@media (max-width: 920px) {
  #lunch-dinner .others .last {
    padding-top: 0;
  }
}
#lunch-dinner .others img {
  margin-bottom: 20px;
}
#lunch-dinner .details {
  margin-top: 1em;
}
#lunch-dinner h3 {
  border-bottom: 2px solid #000;
  margin-bottom: 0.5em;
  padding-bottom: 0.4em;
}
#lunch-dinner .buttons {
  border: 2px solid #000;
  background-color: #fff;
  padding-block: clamp(60px, 10vw, 80px);
  margin-top: clamp(80px, 10vw, 120px);
}
#lunch-dinner .buttons div {
  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: 2em;
}
@media (max-width: 920px) {
  #lunch-dinner .buttons div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#lunch-dinner .buttons div .button {
  margin-top: 0;
}
@media (max-width: 920px) {
  #lunch-dinner .buttons div .button {
    width: 80%;
    padding-inline: auto;
    max-width: 320px;
  }
}

#course .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 920px) {
  #course .content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#course .content-wrap > .img-wrap {
  width: 55%;
}
@media (max-width: 920px) {
  #course .content-wrap > .img-wrap {
    width: 100%;
  }
}
#course .content-wrap > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 920px) {
  #course .content-wrap > .content {
    width: 100%;
  }
}
#course .content-wrap .img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
#course .content-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#course .content-wrap .content h3 {
  border-bottom: 2px solid #000;
  margin-bottom: 0.5em;
  padding-bottom: 0.4em;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}
@media (max-width: 920px) {
  #course .content-wrap .content .price {
    text-align: end;
  }
}
#course .content-wrap .content .details {
  margin-top: 1em;
}

.slider-container {
  width: 100vw;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.slider-container .slide-track {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
  gap: 20px;
}
.slider-container .slide-track li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25vw;
  list-style: none;
}
@media (max-width: 920px) {
  .slider-container .slide-track li {
    width: 50vw;
  }
}
.slider-container .slide-track li img {
  width: 100%;
  height: auto;
  display: block;
}

#floor .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 920px) {
  #floor .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#floor .container > .img-wrap {
  width: 40%;
}
@media (max-width: 920px) {
  #floor .container > .img-wrap {
    width: 100%;
  }
}
#floor .container > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 920px) {
  #floor .container > .content {
    width: 100%;
  }
}
#floor .container .img-wrap div:last-child {
  margin-top: 20px;
}
#floor .container .handwritten {
  margin-bottom: 0.5em;
}

section#info-home {
  padding-top: 0;
}
section#info-home .container {
  border: 2px solid #000;
  max-width: 900px;
  padding: 60px min(5vw, 50px) 25px;
}
@media (max-width: 920px) {
  section#info-home .container {
    padding-block: 40px 20px;
  }
}
section#info-home .container li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-block: 1em;
  border-top: 1px solid #b4b4b4;
  padding-inline: min(3vw, 20px);
}
section#info-home .container li .label {
  width: 10em;
}
@media (max-width: 920px) {
  section#info-home .container li .label {
    width: 5.5em;
  }
}
section#info-home .container li .value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#info .container {
  max-width: 900px;
  margin-inline: auto;
}
#info .container img {
  width: clamp(100px, 20vw, 150px);
  margin-inline: auto;
}
#info .container ul {
  margin-top: clamp(40px, 10vw, 60px);
}
#info .container ul li {
  border-top: 1px solid #b4b4b4;
}
#info .container ul li:last-child {
  border-bottom: 1px solid #b4b4b4;
}
#info .container ul li {
  padding-block: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: min(3vw, 20px);
}
#info .container ul li .label {
  width: 12em;
  font-weight: 500;
}
@media (max-width: 920px) {
  #info .container ul li .label {
    width: 6em;
  }
}
#info .container ul li .value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-wrap: break-word;
  min-width: 0;
}
#info .container .map {
  margin-top: clamp(50px, 12vw, 80px);
  overflow: hidden;
  aspect-ratio: 2/1;
}
@media (max-width: 920px) {
  #info .container .map {
    aspect-ratio: 1/1;
  }
}
#info .container .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

#menu-page h3 {
  border-bottom: 2px solid #000;
  margin-bottom: 0.5em;
  padding-bottom: 0.4em;
}
#menu-page .price {
  text-align: end;
}
#menu-page.menu-column ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  row-gap: clamp(50px, 10vw, 70px);
}
#menu-page.menu-column ul li {
  width: 48%;
}
@media (max-width: 920px) {
  #menu-page.menu-column ul li {
    width: 100%;
  }
}
#menu-page.menu-column ul li img {
  margin-bottom: 15px;
}
#menu-page.menu-row .menu-list > li {
  padding-block: clamp(30px, 10vw, 60px);
  border-top: 1px solid #b4b4b4;
}
#menu-page.menu-row .menu-list > li:last-child {
  border-bottom: 1px solid #b4b4b4;
}
#menu-page.menu-row .menu-list > li figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 920px) {
  #menu-page.menu-row .menu-list > li figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
#menu-page.menu-row .menu-list > li figure img {
  width: 40%;
}
@media (max-width: 920px) {
  #menu-page.menu-row .menu-list > li figure img {
    width: 100%;
  }
}
#menu-page.menu-row .menu-list > li figure figcaption {
  width: 55%;
}
@media (max-width: 920px) {
  #menu-page.menu-row .menu-list > li figure figcaption {
    width: 100%;
  }
}
#menu-page.menu-row .menu-list > li figure figcaption .tag {
  margin-bottom: 0.8em;
}
#menu-page.menu-row .menu-list > li figure figcaption .price {
  text-align: start;
}
@media (max-width: 920px) {
  #menu-page.menu-row .menu-list > li figure figcaption .price {
    text-align: end;
  }
}
#menu-page.menu-row .menu-list > li figure figcaption ul {
  margin-top: clamp(20px, 5vw, 25px);
  padding: 20px min(5vw, 20px);
  background-color: #efefef;
}
#menu-page.menu-row .menu-list > li figure figcaption ul li {
  position: relative;
  padding-left: 1.2em;
}
#menu-page.menu-row .menu-list > li figure figcaption ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#others {
  position: relative;
}
#others::before {
  position: absolute;
  height: 1px;
  width: 100vw;
  left: 0;
  top: 0;
  content: "";
  background-color: #b4b4b4;
}
#others .menu-list {
  border: 2px solid #000;
  max-width: 800px;
  margin-inline: auto;
  padding: 30px min(5vw, 30px);
}
#others .menu-list h3 {
  padding-inline: 10px;
}
#others .menu-list.mt {
  margin-top: clamp(30px, 10vw, 50px);
}
#others .menu-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.8em 10px;
  border-top: 1px solid #b4b4b4;
}
#others .menu-list li .menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#others .menu-list li .price-normal {
  width: 7.5em;
  text-align: end;
}

.asterisk {
  color: #555555;
  font-size: 1.3rem;
  display: block;
}

.display-sp {
  display: none;
}
@media (max-width: 920px) {
  .display-sp {
    display: block;
  }
}

@media (max-width: 920px) {
  .display-pc {
    display: none;
  }
}
.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.br-sp {
  display: none;
}
@media (max-width: 920px) {
  .br-sp {
    display: block;
  }
}

.handwritten {
  font-size: clamp(3.2rem, 3vw, 6rem);
  line-height: 1.4em;
  font-family: "Yuji Syuku", serif;
  margin-bottom: 1.5em;
  letter-spacing: 0em;
}
@media (max-width: 920px) {
  .handwritten {
    text-align: center;
  }
}
.handwritten strong {
  color: #962914;
  font-size: clamp(4.6rem, 4vw, 8rem);
}
.handwritten span {
  padding-left: 1.5em;
}

.price {
  font-size: clamp(2.4rem, 2vw, 3rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #962914;
}
.price span {
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
}

.tag {
  background-color: #962914;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 2.2em;
  display: inline-block;
  padding-inline: 0.8em;
  font-weight: 600;
  font-size: clamp(1.7rem, 1.5vw, 1.8rem);
}

li:has(> .tag),
div:has(> .tag) {
  position: relative;
}
li:has(> .tag) .tag,
div:has(> .tag) .tag {
  position: absolute;
  top: 1em;
  left: -0.5em;
}