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

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

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

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: #f0e3d7;
}

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

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

.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);
  color: #49300f;
}

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;
}
@media (max-width: 920px) {
  h2 {
    text-align: center;
  }
}
h2 span {
  display: block;
  font-size: 1.5rem;
  line-height: 1em;
  padding-top: 0.6em;
  color: #ae8959;
  font-weight: 600;
}

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

strong {
  font-family: "Shippori Mincho", serif;
  line-height: 1.5em;
  font-weight: 500;
}

.button {
  display: block;
  background-color: #aeaf19;
  color: #fff;
  border-radius: 8px;
  line-height: 1em;
}
.button .text {
  display: block;
}
.button .text span {
  font-size: 1.1rem;
  display: block;
  padding-top: 0.3em;
}

.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: 270px;
  height: 65px;
  padding: 0 20px;
  margin-top: clamp(30px, 10vw, 50px);
}
@media (max-width: 920px) {
  .button--primary {
    margin-inline: auto;
  }
}
.button--primary .material-symbols-outlined {
  font-weight: 100;
  font-size: 1.2em;
}

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

.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;
  gap: 10px;
  width: 320px;
  height: 85px;
  background-color: #aeaf19;
  color: #fff;
}
@media (max-width: 920px) {
  .button--lg {
    width: 280px;
    height: 80px;
  }
}
.button--lg img {
  width: auto;
  height: 35px;
}
.button--lg img.call {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.button--lg .text {
  font-size: 1.8rem;
}
.button--lg .text span {
  font-size: 1.2rem;
  padding-top: 0.5em;
}

.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: 1px;
  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(9.5px) rotate(45deg);
          transform: translateY(9.5px) rotate(45deg);
}

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

.header.is-open .hamburger span:nth-child(3) {
  -webkit-transform: translateY(-9.5px) rotate(-45deg);
          transform: translateY(-9.5px) 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-color: rgba(21, 17, 14, 0.5);
  z-index: -1;
  backdrop-filter: blur(5px);
}
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;
}
section#page-hero h2 span {
  color: #fff;
}

#reserve {
  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;
}
#reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: rgba(21, 17, 14, 0.5);
  z-index: -1;
  backdrop-filter: blur(5px);
}
#reserve h2 {
  color: #fff;
}
#reserve {
  background-image: url("../images/background/reserve.png");
}
#reserve h2 span {
  color: #fff;
}
#reserve 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: 40px;
}
@media (max-width: 920px) {
  #reserve ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

#info .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) {
  #info .content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#info .content-wrap > .img-wrap {
  width: 50%;
}
@media (max-width: 920px) {
  #info .content-wrap > .img-wrap {
    width: 100%;
  }
}
#info .content-wrap > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#info .content-wrap .map {
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 10px;
}
#info .content-wrap .map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 920px) {
  #info .content-wrap .content {
    width: 100%;
  }
}
#info .content-wrap .content dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6em 1fr;
  grid-template-columns: 6em 1fr;
  row-gap: 1.2em;
}
#info .content-wrap .content dl dt {
  font-weight: 400;
}
#info .content-wrap .content dl dd {
  margin: 0;
}
#info .content-wrap .content dl dd + dd {
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 0.4em;
}

.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;
  border-radius: 10px;
}

.footer {
  background-color: #f0e3d7;
  padding-top: clamp(20px, 15vw, 70px);
  padding-bottom: 20px;
  padding-inline: min(5vw, 30px);
}
.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-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;
  font-size: 1.2rem;
  line-height: 1.5em;
}
@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 nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 920px) {
  .footer__inner nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer__inner nav ul li {
  line-height: 1.4em;
}
.footer__inner nav ul li a {
  display: block;
  font-size: 1.8rem;
}
.footer__inner nav ul li a span {
  display: block;
  font-size: 1.3rem;
}
@media (max-width: 920px) {
  .footer__inner nav ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__inner nav .insta {
  display: block;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  margin-top: 10px;
}
@media (max-width: 920px) {
  .footer__inner nav .insta {
    margin-inline: auto;
    margin-top: 30px;
  }
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -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;
  padding-inline: min(5vw, 30px);
  background-color: #f0e3d7;
}
.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);
}
.header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(45px, 6vw, 60px);
}
.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;
  letter-spacing: 0.11em;
}
.header__nav ul li {
  line-height: 1.1em;
  font-size: 1.7rem;
}
.header__nav ul li.active {
  color: #aeaf19;
}
.header__nav ul li span {
  display: block;
  font-size: 1.1rem;
}
@media (max-width: 920px) {
  .header__nav .button {
    margin-inline: auto;
    width: 220px;
    height: 60px;
  }
}
.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: 40px;
    width: 75%;
    max-width: 270px;
    height: 100vh;
    background: #f0e3d7;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding-top: 100px;
    z-index: 150;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .header__nav ul a {
    display: block;
    width: 8em;
    margin-inline: auto;
  }
  .header.is-open .header__nav {
    right: 0;
  }
}

#concept-page .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) {
  #concept-page .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#concept-page .container > .img-wrap {
  width: 45%;
}
@media (max-width: 920px) {
  #concept-page .container > .img-wrap {
    width: 100%;
  }
}
#concept-page .container > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#concept-page .container .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#concept-page .container .img-wrap img {
  border-radius: 10px;
}
#concept-page .container .img-wrap .img-01 {
  width: 90%;
}
#concept-page .container .img-wrap .img-02 {
  width: 60%;
  margin-top: -10%;
  margin-left: auto;
}
@media (max-width: 920px) {
  #concept-page .container .img-wrap .img-02 {
    margin-top: -30%;
  }
}

#voice ul.voices {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  row-gap: 30px;
}
@media (max-width: 920px) {
  #voice ul.voices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#voice ul.voices li {
  width: 48%;
  border-radius: 10px 10px 10px 0;
  background-color: #fff;
  padding: 20px min(3vw, 20px);
  position: relative;
}
@media (max-width: 920px) {
  #voice ul.voices li {
    width: 100%;
  }
}
#voice ul.voices li img {
  position: absolute;
  width: 2.5%;
  bottom: 0;
  right: 100%;
}
#voice .detail {
  margin-top: clamp(40px, 5vw, 60px);
}
#voice .detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-top: 30px;
}
@media (max-width: 920px) {
  #voice .detail ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

#info-page .table-wrap {
  border: 1px solid #a89784;
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
}
#info-page .table-wrap table {
  background-color: #fff;
  width: 100%;
}
#info-page .table-wrap table tr th {
  background-color: #aeaf19;
  padding-block: 20px;
  color: #fff;
  font-weight: 400;
  padding-inline: min(3vw, 20px);
  width: clamp(10rem, 20vw, 15rem);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
#info-page .table-wrap table tr:first-child th, #info-page .table-wrap table tr:first-child td {
  border-top: none;
}
#info-page .table-wrap table tr td {
  padding-block: 20px;
  padding-inline: min(3vw, 20px);
  border-top: 1px solid rgba(168, 151, 132, 0.5);
}
#info-page .map {
  max-width: 900px;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #a89784;
  margin-inline: auto;
  aspect-ratio: 3/2;
  margin-top: clamp(40px, 5vw, 80px);
}
@media (max-width: 920px) {
  #info-page .map {
    aspect-ratio: 1/1;
  }
}
#info-page .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

#parking .content {
  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) {
  #parking .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#parking .content > .img-wrap {
  width: 40%;
}
@media (max-width: 920px) {
  #parking .content > .img-wrap {
    width: 100%;
  }
}
#parking .content > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#parking .content img {
  border-radius: 10px;
}

#hero {
  position: relative;
  height: clamp(600px, 80vh, 800px);
  overflow: hidden;
}
#hero img {
  height: 100%;
  display: block;
  -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: 45%;
}
@media (max-width: 920px) {
  #concept .content-wrap > .img-wrap {
    width: 100%;
  }
}
#concept .content-wrap > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#concept .content-wrap .content strong {
  margin-bottom: 1.2em;
}
#concept .content-wrap .content .button {
  margin-top: clamp(40px, 5vw, 60px);
}
#concept .content-wrap .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#concept .content-wrap .img-wrap img {
  border-radius: 10px;
}
#concept .content-wrap .img-wrap .img-01 {
  margin-left: auto;
  width: 95%;
}
#concept .content-wrap .img-wrap .img-02 {
  width: 55%;
  margin-top: -10%;
}
@media (max-width: 920px) {
  #concept .content-wrap .img-wrap .img-02 {
    margin-top: -30%;
  }
}

#features {
  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;
}
#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: rgba(21, 17, 14, 0.5);
  z-index: -1;
  backdrop-filter: blur(5px);
}
#features h2 {
  color: #fff;
}
#features {
  background-image: url(/images/background/features.png);
}
#features h2 span {
  color: #fff;
}
#features 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;
  row-gap: 60px;
}
#features ul > * {
  width: 23%;
  -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 {
  margin-inline: auto;
}
@media (max-width: 920px) {
  #features ul {
    max-width: 300px;
  }
}
#features ul li {
  background-color: #fff;
  padding-bottom: 40px;
  position: relative;
  border-radius: 10px;
}
#features ul li span {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 500;
  font-size: clamp(2.2rem, 1.5vw, 2.8rem);
  color: #ae8959;
}
#features ul li .img-wrap {
  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;
  aspect-ratio: 3/2;
}
#features ul li .img-wrap img {
  height: 60%;
}
#features ul li .img-wrap img.img-sm {
  height: 30%;
}
#features ul li h3 {
  text-align: center;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  margin-bottom: 0.5em;
}
#features ul li p {
  text-align: center;
  font-size: 1.3rem;
}

#menu strong {
  margin-bottom: 30px;
}
#menu img {
  max-width: 800px;
  margin-inline: auto;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

#menu-list .menu__content {
  max-width: 900px;
  margin-inline: auto;
  margin-top: clamp(80px, 5vw, 100px);
}
#menu-list .menu__content.first {
  margin-top: 0;
}
#menu-list .menu__content ul li {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #a89784;
  padding: 20px 0;
}
#menu-list .menu__content ul li:nth-child(n+2) {
  margin-top: 50px;
}
#menu-list .menu__content ul li.no-detail {
  background-color: transparent;
  border: 1px solid #a89784;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
#menu-list .menu__content ul li.no-detail ul li {
  border-radius: 0;
  margin-top: 0;
  border: none;
  border-top: 1px solid #a89784;
}
#menu-list .menu__content ul li.no-detail ul li:first-child {
  border-top: none;
}
#menu-list .menu__content ul li.no-detail ul li h3 {
  padding-bottom: 0;
  border: none;
}
#menu-list .menu__content ul li h3 {
  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 dashed #a89784;
  padding-bottom: 0.8em;
  padding-inline: min(5vw, 30px);
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
}
#menu-list .menu__content ul li h3 .coupon {
  background-color: #aeaf19;
  color: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  display: inline-block;
  padding-block: 0.11em 0.16em;
  padding-inline: 1em 0.8em;
  border-radius: 2em;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}
#menu-list .menu__content ul li h3 .price {
  width: 5em;
  text-align: end;
}
#menu-list .menu__content ul li > p {
  padding-inline: min(5vw, 30px);
  padding-top: 20px;
}

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