.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;
  }
}
html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

*,
*::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;
}

main {
  padding-top: clamp(6rem, 8vw, 8rem);
  background-color: #d5a792;
}

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

section:not(#hero) {
  padding: clamp(100px, 12vw, 120px) 0;
}

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

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

html {
  font-size: 62.5%;
}

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

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

h2 {
  font-family: "Lora", serif;
  font-size: clamp(3rem, 3vw, 4rem);
  margin-bottom: clamp(3rem, 10vw, 4rem);
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.05em;
}

h2 span {
  display: block;
  font-size: 1.5rem;
  line-height: 1em;
  padding-top: 0.6em;
}

strong,
#info h3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  display: block;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  background-color: #282828;
  color: #fff;
}

.button .material-symbols-outlined {
  font-weight: 200;
  width: 1em;
}

.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: 250px;
  height: 55px;
  padding: 0 20px;
  margin-top: clamp(30px, 10vw, 50px);
}

.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;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  -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(20px, 15vw, 70px);
}
section#page-hero.page-hero--concept {
  background-image: url("../images/background/concept.png");
}
section#page-hero.page-hero--menu {
  background-image: url("../images/background/menu.png");
}
section#page-hero h2 {
  margin-bottom: 0;
}

#reserve {
  position: fixed;
  bottom: 5vh;
  right: min(5vw, 40px);
}
#reserve a {
  aspect-ratio: 1/1;
  background-color: #d5a792;
  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;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  border: 2px solid #fff;
  font-weight: 500;
  -webkit-animation: floatY 2.5s ease-in-out infinite;
          animation: floatY 2.5s ease-in-out infinite;
}

@-webkit-keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floatY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#info .info__inner {
  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) {
  #info .info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  #info .info__inner > * {
    width: 100%;
  }
}
#info .info__inner .map {
  width: 50%;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#info .info__inner .map iframe {
  width: 100%;
  height: 100%;
}
#info .info__inner .info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#info .info__inner .info__content dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1fr;
  grid-template-columns: 140px 1fr;
  row-gap: 1.2em;
}
#info .info__inner .info__content dl dt {
  font-weight: 400;
}
#info .info__inner .info__content dl dd {
  margin: 0;
}
#info .info__inner .info__content dl dd + dd {
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 0.4em;
}

.footer {
  background-color: #b7b7b7;
  padding-top: clamp(20px, 15vw, 70px);
  padding-bottom: 20px;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 min(5vw, 20px);
  padding-bottom: clamp(30px, 15vw, 40px);
}
@media (max-width: 920px) {
  .footer__inner {
    -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;
    gap: 50px;
  }
}
@media (max-width: 920px) {
  .footer__inner .footer__info {
    width: 100%;
  }
}
.footer__inner .footer__info .logo {
  display: block;
  width: clamp(80px, 12vw, 100px);
}
@media (max-width: 920px) {
  .footer__inner .footer__info .logo {
    margin: 0 auto;
  }
}
.footer__inner .footer__info .address {
  margin-top: 10px;
}
@media (max-width: 920px) {
  .footer__inner .footer__info .address {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.footer__inner .footer__info .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 920px) {
  .footer__inner .footer__info .footer_social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__inner .footer__info .footer_social a {
  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: 30px;
  aspect-ratio: 1/1;
}
.footer__inner .footer__info .footer_social a i {
  font-size: 25px;
  line-height: 1;
}
.footer__inner nav ul {
  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: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
}
@media (max-width: 920px) {
  .footer__inner nav ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.3rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d5a792;
  -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;
  color: #fff;
  font-size: 1.8rem;
}
.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: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(6rem, 8vw, 8rem);
  padding: 0 min(5vw, 30px);
}
.header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(80px, 12vw, 120px);
}
.header h1 a {
  display: inline-block;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.header__nav ul .active {
  opacity: 0.5;
}
.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;
    top: 0;
    right: -100%;
    -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: flex-start;
    gap: 30px;
    width: 75%;
    max-width: 380px;
    height: 100vh;
    background: #d5a792;
    padding: 120px 30px 40px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 150;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .header.is-open .header__nav {
    right: 0;
  }
}

#voice li {
  background-color: #fff;
  padding: 20px min(3vw, 20px);
}
#voice li:nth-child(n+2) {
  margin-top: clamp(30px, 5vw, 60px);
}
#voice li .title {
  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;
  border-bottom: 1px solid #989898;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#voice li .title img {
  width: 150px;
}

#message .message__inner {
  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) {
  #message .message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  #message .message__inner > * {
    width: 100%;
  }
}
#message .message__inner img {
  width: 30%;
}
@media (max-width: 920px) {
  #message .message__inner img {
    width: min(100%, 400px);
  }
}
#message .message__inner .message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#message .message__inner .message__content .name {
  padding-top: 10px;
}

#question li {
  background-color: #fff;
  padding: 20px min(3vw, 20px);
}
#question li:nth-child(n+2) {
  margin-top: clamp(30px, 5vw, 60px);
}
#question li h3 {
  border-bottom: 1px solid #989898;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

#hero {
  position: relative;
  height: clamp(600px, 80vh, 800px);
  overflow: hidden;
}
#hero img {
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

#concept .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media (max-width: 920px) {
  #concept .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#concept .container .concept__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#concept .container img {
  width: 50%;
}

#features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
#features ul > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * (3 - 1)) / 3);
          flex: 0 0 calc((100% - 40px * (3 - 1)) / 3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 920px) {
  #features ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #features ul > * {
    width: 100%;
  }
}
#features ul li {
  background-color: #ffffff;
}

#menu 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: min(10vw, 40px);
}
#menu 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) {
  #menu ul figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  #menu ul figure > * {
    width: 100%;
  }
}
#menu ul figure img {
  width: 40%;
}
@media (max-width: 920px) {
  #menu ul figure img {
    width: 100%;
  }
}
#menu ul figure figcaption {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#instagram iframe {
  display: block;
  aspect-ratio: 2/1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#menu-list .menu__content {
  max-width: 900px;
  margin: 0 auto;
}
#menu-list .menu__content h3 {
  margin-bottom: 10px;
}
#menu-list .menu__content ul {
  background-color: #fff;
  padding: 0 min(3vw, 20px);
}
#menu-list .menu__content ul li {
  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;
  border-top: 1px solid #989898;
  padding: 15px 0;
}
#menu-list .menu__content ul li:first-child {
  border-top: none;
}
#menu-list .menu__content ul li .name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#menu-list .menu__content ul li .price {
  width: 5em;
  text-align: end;
}

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