:root {
  --black: #1a1a1a;
  --grey03: #828282;
  --original: #221b15;
  --grey05: #e0e0e0;
  --grey04: #bdbdbd;
  --pink: #ffebe8;
  --white: white;
  --grey02: #4f4f4f;
  --grey01: #595959;
  --base: #f5eee8;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #000;
  font-family: Noto Sans JP, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 180%;
}

h2 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 180%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 180%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 180%;
}

p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 180%;
  display: block;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: opacity .2s;
}

a:hover {
  opacity: .7;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

strong {
  font-weight: bold;
}

blockquote {
  color: var(--grey03);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Sawarabi Gothic, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
}

.navigation {
  z-index: 999;
  justify-content: flex-end;
  min-height: 100px;
  padding: 45px;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}

.navigation.blend-mode {
  padding-right: 70px;
  top: 16px;
}

.dark-body {
  background-color: var(--original);
  color: #fff;
}

.nav-menu-list {
  align-items: center;
  max-height: 44px;
  display: flex;
}

.nav-link-black {
  color: var(--original);
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 180%;
}

.nav-menu-list-item {
  align-self: center;
  padding-left: 20px;
  padding-right: 20px;
}

.body {
  color: #1a1a1a;
}

.columns {
  padding: 45px;
}

.style-guide-list-item {
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 20px;
}

.style-guide-list-item-first {
  padding-top: 0;
  padding-bottom: 10px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 20px;
}

.style-guide-logo {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 160%;
}

.style-guide-logo-ja {
  margin-top: 0;
  line-height: 160%;
}

.style-guide-header {
  background-color: #f7f7f7;
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 27px;
}

.style-guide-header.sub-header {
  margin-bottom: 0;
}

.style-guide-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
}

.style-guide-section {
  margin-bottom: 60px;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.style-guide-color {
  background-color: #1a1a1a;
  width: 100%;
  min-height: 100px;
}

.style-guide-color.color-grey-05 {
  background-color: var(--grey05);
}

.style-guide-color.color-grey-04 {
  background-color: var(--grey04);
}

.style-guide-color.color-grey-03 {
  background-color: var(--grey03);
}

.style-guide-color.color-grey-02 {
  background-color: #4f4f4f;
}

.style-guide-color.color-grey-01 {
  background-color: #333;
}

.style-guide-color.color-original {
  background-color: var(--original);
}

.style-guide-color-detail {
  width: 100%;
  min-height: 100px;
}

.typography-container {
  padding: 27px 63px;
}

.style-guide-button-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.button {
  cursor: pointer;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  transition: opacity .2s;
  display: flex;
}

.button:hover {
  opacity: .7;
}

.button.button-black {
  background-color: var(--black);
  color: #fff;
  max-width: 172px;
  font-size: 16px;
  font-weight: 500;
}

.button.button-black-border {
  border: 1px solid var(--black);
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
}

.button.button-white {
  color: var(--black);
  background-color: #fff;
}

.button.button-white-border {
  background-color: var(--black);
  color: #fff;
  border: 1px solid #fff;
}

.button-icon {
  margin-right: 4px;
}

.style-guide-button-block-text {
  margin-top: 15px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.style-guide-button-block-text.white-text {
  color: #fff;
}

.button-grid {
  grid-column-gap: 15px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  margin-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
}

.button-grid.bg-black {
  background-color: var(--black);
  padding-top: 45px;
  padding-bottom: 45px;
}

.button-square {
  background-color: var(--pink);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: opacity .2s;
  display: flex;
}

.button-square:hover {
  opacity: .7;
}

.button-square.button-square-black {
  background-color: var(--black);
  color: var(--white);
  line-height: 160%;
}

.button-square.button-square-black-border {
  border: 1px solid var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.button-square.button-square-white {
  background-color: var(--white);
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.button-square.button-square-white-border {
  border: 1px solid var(--white);
  color: var(--white);
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.button-square.button-square-medium {
  width: 172px;
}

.button-square.button-square-medium.button-square-black-border {
  color: var(--black);
}

.button-square.button-square-medium.button-square-white {
  color: var(--black);
  font-family: Sawarabi Gothic, sans-serif;
}

.button-square.button-square-large {
  width: 223px;
}

.button-square.button-square-large.button-square-black-border {
  color: var(--black);
}

.button-square.button-square-large.button-square-white {
  color: var(--black);
  margin-left: 30px;
}

.button-square.button-square-large.button-square-footer {
  background-color: var(--white);
  color: var(--black);
  width: 200px;
  margin-right: 15px;
}

.button-square.pink {
  background-color: #f68d88;
}

.style-guide-list-link {
  border-left: 5px solid var(--white);
  color: var(--black);
  padding-left: 15px;
}

.style-guide-list-link.w--current {
  border-left: 5px solid var(--grey04);
  color: var(--grey02);
}

.style-guide-column {
  position: -webkit-sticky;
  position: sticky;
  top: 45px;
}

.logo-link-block {
  padding: 35px 13px;
}

.logo.invert {
  filter: none;
}

.style-guide-logo-block {
  justify-content: center;
  align-items: center;
  padding: 39px 13px;
  display: flex;
}

.style-guide-logo-block.bg-black {
  background-color: var(--black);
}

.section-mv {
  width: 100%;
  height: 100vh;
  max-height: 800px;
  margin-bottom: 200px;
  padding-top: 150px;
  position: relative;
}

.section-mv.default-mv {
  width: 100%;
  height: 100vh;
  margin-bottom: 200px;
}

.section-mv.option-mv {
  margin-bottom: 100px;
  position: relative;
}

.option-mv-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  max-height: 570px;
}

.button-left-text {
  color: var(--black);
  margin-right: 10px;
}

.button-left-text.white {
  color: var(--white);
}

.button-phone-number {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
}

.button-phone-number.white {
  color: var(--white);
}

.logo-block {
  z-index: 100;
  padding: 45px;
  position: absolute;
  top: 0;
  left: 0;
}

.logo-block.logo-block-default {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.logo-block.logo-block-default.logo-home {
  background-color: rgba(0, 0, 0, 0);
  display: none;
}

.section {
  justify-content: center;
  width: 100%;
  margin-bottom: 200px;
  padding: 50px 45px;
  display: flex;
}

.section.timeline-section {
  padding-bottom: 0;
}

.section.section-menu-list {
  margin-bottom: 50px;
}

.section.hide-contents {
  display: none;
}

.wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.concept-heading {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 40px;
}

.concept-column-texts {
  padding-left: 0;
  padding-right: 2%;
}

.concept-column-image {
  padding-left: 0;
  padding-right: 0;
}

.concept-image {
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.timeline-column {
  width: 100%;
}

.timeline-column-title {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.timeline-column-list {
  padding-left: 0;
  padding-right: 0;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 30px;
}

.section-heading.text-center.and-paragraph {
  margin-bottom: 20px;
}

.section-heading.text-center.other-menu {
  margin-bottom: 60px;
}

.section-heading.section-heading-column {
  margin-bottom: 20px;
}

.fs-collection-item {
  border-bottom: 1px solid #595959;
  margin-bottom: 65px;
  padding-bottom: 45px;
}

.timeline-list-date {
  margin-bottom: 5px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.timeline-list-title {
  font-family: Shippori Mincho, sans-serif;
  font-size: 20px;
  line-height: 180%;
}

.menu-list {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 25px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.menu-list.menu-page {
  justify-content: space-between;
  max-width: 1200px;
  margin-bottom: 100px;
}

.menu-list-item {
  width: 45%;
  height: 100%;
}

.menu-list-item.timeline {
  width: 100%;
}

.menu-list-item-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 420px;
}

.menu-list-item-header {
  border-bottom: 1px solid var(--grey01);
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 13px;
  display: flex;
}

.menu-list-item-title {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  display: inline-block;
}

.menu-list-item-price {
  font-family: Shippori Mincho, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  display: inline-block;
}

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

.section-footer {
  background-color: var(--pink);
  flex-direction: column;
  align-items: center;
  padding: 70px 45px;
  display: flex;
}

.footer-column-left {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 30px;
  font-style: normal;
  display: flex;
}

.footer-store-name {
  margin-top: 0;
  font-size: 22px;
}

.footer-column-address {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  align-items: flex-start;
  display: flex;
}

.footer-address-text {
  white-space: pre-wrap;
  margin-bottom: 0;
  font-size: 16px;
}

.footer-map-pin {
  margin-right: 5px;
  display: block;
}

.footer-map-link {
  height: 100%;
  margin-bottom: 5px;
  margin-left: 5px;
}

.footer-header {
  width: 100%;
  margin-bottom: 20px;
}

.footer-column-list-item {
  border-bottom: 1px solid #e1c5c5;
  align-items: center;
  min-height: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.footer-list-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.footer-list-description {
  white-space: pre-line;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 160%;
}

.footer-list-column {
  width: 100%;
}

.footer-column {
  width: 100%;
  margin-bottom: 50px;
}

.footer-menu {
  border-top: 1px solid #e1c5c5;
  width: 100%;
  padding-top: 55px;
  padding-bottom: 55px;
}

.footer-logo {
  filter: brightness(0%) invert();
  margin-bottom: 30px;
}

.copy-right {
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.footer-nav-menu-list {
  justify-content: center;
  align-items: center;
  max-height: 44px;
  display: flex;
}

.column-2 {
  padding-top: 43px;
  padding-left: 0;
  padding-right: 0;
}

.sp-nav-menu {
  display: none;
}

.humberger {
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  display: flex;
}

.hamberger-lottie {
  width: 26px;
  height: 15px;
}

.hamberger-lottie.invert {
  filter: none;
}

.button-sp-default {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.sp-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
}

.sp-modal.dark {
  background-color: var(--black);
  opacity: 0;
  display: none;
}

.sp-modal.white-mode {
  display: none;
}

.sp-nav-logo {
  justify-content: center;
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
}

.sp-modal-menu-item {
  padding-top: 18px;
  padding-bottom: 18px;
}

.sp-modal-menu-link {
  color: #000;
  font-family: Shippori Mincho, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.sp-modal-menu-link.w--current {
  color: var(--black);
}

.sp-modal-menu-link.text-color-black {
  font-weight: 500;
}

.nav-menu-list-cta {
  justify-content: space-between;
  width: 357px;
  margin-left: 30px;
  display: flex;
}

.button-sp-option {
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 50px;
  font-size: 16px;
  display: flex;
}

.button-sp-option.button-sp-dark {
  background-color: var(--black);
  color: var(--white);
}

.mv-copy-right {
  color: var(--white);
  font-family: Open Sans, sans-serif;
  font-size: 13px;
  position: absolute;
  bottom: 43px;
  left: 55px;
  transform: rotate(90deg);
}

.wide-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.wide-section {
  justify-content: center;
  width: 100%;
  margin-bottom: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.wide-section.sns-section {
  margin-bottom: 0;
  padding-top: 150px;
  padding-bottom: 0;
}

.concept-heading-option {
  letter-spacing: 1em;
  margin: 0 auto 140px;
  font-family: Zen Kaku Gothic Antique, sans-serif;
  font-size: 32px;
  line-height: 300%;
}

.concept-image-option {
  object-fit: cover;
  width: 100%;
  max-width: 1100px;
  max-height: 614px;
  margin-left: auto;
  display: block;
}

.concept-content-option {
  padding-top: 115px;
  position: relative;
}

.concept-content-text {
  width: 100%;
  max-width: 460px;
  line-height: 200%;
  position: absolute;
  top: 0;
  left: 5%;
}

.news-option-list {
  justify-content: center;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.news-option-list-item {
  width: 33.33%;
  max-width: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

.news-option-title {
  height: 40px;
  font-size: 22px;
  overflow: hidden;
}

.news-option-image {
  object-fit: cover;
  width: 100%;
  min-height: 258px;
  max-height: 258px;
  margin-bottom: 19px;
}

.news-option-description {
  height: 75px;
  font-size: 14px;
  overflow: hidden;
}

.news-option-description a {
  color: var(--white);
  transition: opacity .2s;
}

.news-option-description a.w--current {
  opacity: .7;
}

.news-option-image-default {
  background-color: var(--grey02);
  width: 100%;
  min-height: 258px;
  margin-bottom: 19px;
}

.news-option-more-btn {
  color: var(--white);
  font-family: Shippori Mincho, sans-serif;
  font-size: 20px;
  line-height: 180%;
  text-decoration: underline;
}

.news-option-more {
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
}

.menu-option-image {
  object-fit: cover;
  width: 100%;
  max-height: 560px;
}

.menu-option-texts {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.menu-option-header {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.menu-option-description {
  align-items: flex-end;
  width: 50%;
  position: relative;
}

.menu-option-description-text {
  font-family: Noto Sans JP, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.menu-option-description-text p {
  margin-bottom: 0;
  font-size: 14px;
}

.menu-option-column {
  width: 100%;
  max-width: 1250px;
  padding-left: 45px;
  padding-right: 45px;
}

.menu-option-column-link {
  font-family: Shippori Mincho, sans-serif;
  font-size: 19px;
  line-height: 180%;
  text-decoration: underline;
}

.menu-option-column-link.text-color-white {
  color: var(--white);
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.swiper-slide {
  width: 65%;
  min-width: 65%;
  height: 100%;
}

.swiper-slide-gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.swiper-button-next {
  color: #191919;
  background-color: #191919;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  top: 45%;
  right: 23%;
}

.swiper-gallery {
  width: 100%;
  height: 100%;
  max-height: 560px;
  position: relative;
  overflow: hidden;
}

.menu-option-column-2 {
  padding-left: 0;
  padding-right: 0;
}

.collection-item-2 {
  margin-bottom: 80px;
}

.menu-option-more-copy {
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.sp-modals {
  display: none;
}

.sp-modal-tel-icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.sp-modal-tel-link {
  color: var(--black);
  font-family: Noto Sans JP, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.sp-modal-tel-link.text-color-black {
  line-height: 160%;
}

.sp-modal-tel-block {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.sp-modal-tel-caption {
  font-family: Noto Sans JP, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 180%;
}

.reserve-list {
  width: 100%;
}

.reserve-list-item {
  border-bottom: 1px solid var(--grey01);
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 15px 25px;
  display: flex;
}

.reserve-list-link {
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  line-height: 180%;
}

.reserve-list-link.text-color-black {
  color: var(--black);
}

.reserve-tel-text {
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.sns-heading {
  font-size: 34px;
  line-height: 180%;
  display: inline-block;
}

.sns_contents_right_img-2 {
  object-fit: cover;
  width: 40%;
  height: 85%;
  position: absolute;
  top: -30px;
  bottom: 0;
  right: 10%;
}

.sns-contents-header {
  width: 35%;
  margin-left: 5%;
  margin-right: 5%;
}

.sns_contents_right_img-1 {
  object-fit: cover;
  width: 40%;
  height: 85%;
  position: absolute;
  top: -100px;
  left: 0;
}

.sns_icon_item_text {
  line-height: 200%;
}

.sns_icon_item_text.darkmode {
  color: #fff;
}

.sns_icon_area {
  margin-top: 25px;
  display: flex;
}

.sns-contents-images {
  width: 55%;
  min-height: 594px;
  position: relative;
}

.sns-contents {
  background-image: linear-gradient(164deg, #3f3e45 8%, #323237 91%);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.sns_icon_item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  min-height: 70px;
  margin-right: 30px;
  display: flex;
}

.fs-collection-item-review {
  margin-left: 3%;
  margin-right: 3%;
}

.fs-collection-wrapper-review {
  width: 100%;
}

.star {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.fs-dynamic-feed-review {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  overflow: scroll;
}

.review-box {
  border: 1px solid #595959;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  height: 344px;
  padding: 17px;
  display: flex;
  position: relative;
}

.fs-slide-content-review {
  display: block;
  position: relative;
}

.review-name {
  margin-top: 10px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 18px;
  line-height: 180%;
}

.review-description {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  font-family: Noto Sans JP, sans-serif;
  line-height: 180%;
  overflow: scroll;
}

.review-description p {
  font-size: 14px;
}

.review-rating {
  justify-content: flex-start;
  width: 143px;
  margin-top: 6px;
  display: flex;
}

.review-icon {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 100%;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
}

.footer-map {
  height: 420px;
  margin-bottom: 75px;
  display: none;
}

.footer-sns-links {
  margin-bottom: 30px;
  display: flex;
}

.footer-sns-link-item {
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.footer-sns-link-item.hidden {
  display: none;
}

.footer-sns-icon {
  padding-right: 5px;
}

.sns-contents-white {
  background-image: linear-gradient(164deg, #f2eae1 8%, #f2eae1 91%);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.invert {
  filter: invert();
}

.news-list-wrapper {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  display: flex;
}

.sns-contents-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  display: flex;
}

.default-mv-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.default-mv-image.pc {
  object-position: 50% 50%;
}

.default-mv-image.tab {
  display: none;
}

.empty-state {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  font-size: 16px;
}

.text-black {
  color: var(--black);
}

.main-container {
  flex-direction: column;
  align-items: center;
  padding-top: 200px;
  display: flex;
}

.menu-contents-sectioin {
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 150px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.menu-contents-image {
  width: 60%;
}

.menu-contents-description {
  flex-direction: column;
  justify-content: center;
  width: 40%;
  padding-left: 10%;
  font-weight: 400;
  display: flex;
}

.menu-contents-description.menu-contents-no-image {
  align-items: center;
  width: 80%;
  padding-left: 0%;
}

.menu-contents-image-element {
  object-fit: cover;
  width: 100%;
}

.main-contents-description-rich {
  font-family: Noto Sans JP, sans-serif;
  line-height: 180%;
}

.main-contents-description-title {
  margin-bottom: 0;
  font-size: 24px;
}

.main-contents-description-price {
  font-size: 24px;
  line-height: 180%;
  display: inline-block;
}

.menu-contents-price-box {
  margin-bottom: 20px;
}

.main-container-header {
  width: 100%;
  max-width: 636px;
}

.main-container-title {
  text-align: center;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  font-weight: 400;
}

.main-container-title.top {
  margin-bottom: 60px;
}

.main-container-section {
  justify-content: center;
  width: 100%;
  margin-bottom: 200px;
  padding-top: 0;
  padding-bottom: 50px;
  display: flex;
}

.category-collection {
  width: 100%;
  margin-bottom: 200px;
}

.category-collection-image {
  object-fit: cover;
  width: 100%;
  max-height: 500px;
}

.category-item-collection {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
}

.category-item-collection-list {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.category-item-collection-list-item {
  border-bottom: 1px solid #595959;
  width: 45%;
  height: 100%;
  margin-bottom: 100px;
  padding-bottom: 15px;
}

.category-item-collection-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 360px;
  transition: transform 1s cubic-bezier(.39, .575, .565, 1);
}

.category-item-collection-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  display: inline-block;
}

.category-item-collection-price {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.category-item-collection-paragraph {
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  line-height: 180%;
}

.category-item-collection-paragraph p {
  font-size: 16px;
}

.category-item-collection-paragraph a {
  color: var(--black);
  transition: opacity .2s;
}

.category-item-collection-paragraph a:hover {
  opacity: .6;
}

.category-collection-border {
  background-color: #595959;
  width: 100%;
  max-width: 1100px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-column-more {
  border-bottom: 1px solid var(--grey03);
  color: var(--black);
  font-size: 16px;
  line-height: 120%;
  display: inline-block;
}

.timeline-list-thumbnail {
  object-fit: cover;
  width: 100%;
}

.timeline-list-thumbnail.timeline-page-list-thumbnail {
  max-height: 100%;
  margin-bottom: 25px;
}

.timeline-list-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.timeline-list-pragraph {
  white-space: pre-line;
  width: 100%;
  font-family: Noto Sans JP, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  display: inline-block;
}

.timeline-list-pragraph p {
  font-size: 16px;
}

.timeline-list-pragraph a {
  color: var(--black);
  transition: opacity .2s;
}

.timeline-list-pragraph a:hover {
  opacity: .6;
}

.sp {
  display: none;
}

.component-section {
  padding-left: 70px;
  padding-right: 70px;
}

.swiper-timeline {
  display: none;
  overflow: hidden;
}

.timeline-container {
  width: 100%;
  max-width: 636px;
  margin-bottom: 100px;
  padding-left: 18px;
  padding-right: 18px;
}

.category-item-collection-link {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fs-slide-content {
  width: 100%;
  height: 100%;
}

.collection-item {
  margin-bottom: 65px;
}

.menu-list-item-link {
  width: 100%;
  height: 100%;
  margin-bottom: 25px;
  overflow: hidden;
}

.menu-option-column-1 {
  padding-left: 0;
  padding-right: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.menu-container-pragraph {
  text-align: center;
  max-width: 700px;
  font-family: Noto Sans JP, sans-serif;
  display: block;
}

.menu-container-pragraph p {
  margin-left: auto;
  font-family: Noto Sans JP, sans-serif;
}

.button-sp-default-circle {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.humberger-circle {
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 50px;
  display: flex;
}

.sp-nav-menu-circle {
  display: none;
}

.button-sp-option-circle {
  background-color: var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 50px;
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.button-sp-option-circle.button-sp-dark {
  background-color: var(--black);
  color: var(--white);
}

.menu-header-block {
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
}

.menu-option-description-text-black {
  font-family: Noto Sans JP, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.menu-option-description-text-black p {
  margin-bottom: 0;
  font-size: 14px;
}

.menu-option-description-text-black a {
  color: var(--black);
}

.utility-page-wrap {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.main {
  width: 100vw;
}

.footer-brand {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-phone-number {
  color: var(--white);
}

.paragraph.concept-p {
  max-width: 480px;
  font-size: 18px;
}

.pc-modals {
  z-index: 0;
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.pc-modal-web-reserve {
  z-index: 1000;
  background-color: var(--black);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 350px;
  max-width: 500px;
  margin: auto;
  display: flex;
  overflow: hidden;
}

.pc-modal-bg {
  background-color: rgba(35, 20, 6, .5);
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.mv-scroll-down {
  width: 50px;
  height: 100px;
  position: absolute;
  bottom: 0;
  right: 10px;
}

.div-block {
  width: 100%;
  height: 100%;
  position: relative;
}

.scroll-text {
  color: var(--white);
  margin-top: 40px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  display: inline-block;
  transform: rotate(90deg);
}

.c-scrolldown {
  background-color: #231406;
  width: 1px;
  height: 63px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 0;
  overflow: hidden;
}

.c-line {
  background-image: linear-gradient(#fff 45%, rgba(255, 255, 255, 0) 48%);
  width: 100%;
  height: 100%;
}

.timeline-list-thumbnail-link {
  width: 100%;
  margin-bottom: 15px;
}

.section-pragraph {
  text-align: center;
  max-width: 680px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Noto Sans JP, sans-serif;
}

.sign {
  mix-blend-mode: darken;
  object-fit: contain;
  width: 240px;
  height: 48px;
  position: absolute;
  bottom: 17px;
  right: 55px;
}

.mv-contents {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 20%;
  right: 20%;
}

.mv-logo-area {
  flex-direction: column;
  align-items: center;
  margin-left: 30px;
  display: flex;
}

.mv-access {
  width: 54px;
  height: 197px;
  margin-top: 15px;
}

.mv-heading {
  width: 158px;
  height: 375px;
}

.mv-wrapper {
  background-color: var(--white);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  max-height: 650px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-paragraph {
  max-width: 460px;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.timeline-paragraph {
  margin-bottom: 18px;
}

.nav-link-white {
  color: var(--white);
  font-family: Shippori Mincho, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 180%;
}

.sp-modal-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding-bottom: 200px;
  padding-left: 18px;
  padding-right: 18px;
}

.div-block-2 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.lottie-animation {
  z-index: 1;
  width: 63px;
  height: 63px;
  position: absolute;
  bottom: 12px;
  left: 55px;
}

.lottie-animation.sp-swipe-down {
  display: none;
}

.phone-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sp-modal-phone-number {
  color: var(--black);
}

.empty-state-2 {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
}

.timeline-list-thumbnail-link-2 {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}

.timeline-list-thumbnail-2 {
  object-fit: cover;
  width: 100%;
  max-height: 380px;
}

.timeline-list-header-2 {
  justify-content: space-between;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.timeline-list-title-2 {
  font-size: 20px;
  line-height: 180%;
}

.timeline-list-date-2 {
  margin-bottom: 5px;
  font-family: Noto Sans JP, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 180%;
}

.nav-menu-list-item-button {
  margin-left: 21px;
}

.empty-empty {
  display: none;
}

.footer-phone-block {
  align-items: center;
  display: flex;
}

.footer-phone-text {
  font-size: 16px;
}

.timeline-more-text {
  justify-content: flex-end;
  margin-top: 10px;
  display: flex;
}

.google-map {
  margin-top: 36px;
  display: flex;
}

.timeline-column-more-text {
  border-bottom: 1px solid var(--grey03);
  color: var(--black);
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
  display: inline-block;
}

.paragraph-2 {
  white-space: pre-wrap;
}

.link {
  color: var(--black);
  text-align: center;
  font-size: 16px;
  text-decoration: underline;
  display: block;
}

.heading {
  font-size: 28px;
  font-weight: 400;
}

.paragraph-3 {
  text-align: center;
  max-width: 800px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-3 {
  color: #000;
}

@media screen and (min-width: 1280px) {
  .fs-dynamic-feed-review {
    grid-auto-columns: 1fr;
  }
}

@media screen and (max-width: 991px) {
  p {
    font-size: 16px;
    display: block;
  }

  blockquote {
    font-size: 16px;
  }

  .navigation {
    min-height: 50px;
    padding: 0;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .navigation.blend-mode {
    padding-left: 16px;
    padding-right: 16px;
    top: auto;
    bottom: 20px;
  }

  .nav-menu-list.pc {
    flex-wrap: wrap;
    display: none;
  }

  .button.button-white-border.button-top {
    margin-bottom: 18px;
  }

  .section-mv {
    height: auto;
    margin-bottom: 50px;
    padding-top: 0;
  }

  .section-mv.default-mv {
    margin-bottom: 100px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-block.logo-block-default {
    justify-content: center;
    width: 100%;
    display: flex;
    position: relative;
  }

  .logo-block.logo-block-default.logo-home {
    display: flex;
    position: absolute;
  }

  .section {
    margin-bottom: 0;
  }

  .section.timeline-section {
    margin-bottom: 100px;
  }

  .section.section-menu-list {
    margin-bottom: 0;
  }

  .concept-heading {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .concept-column-texts {
    padding-right: 0%;
  }

  .concept-column-image {
    padding-top: 40px;
  }

  .timeline-column-title {
    margin-bottom: 300px;
  }

  .timeline-column-list {
    flex-direction: column;
    display: flex;
  }

  .section-heading {
    text-align: center;
    margin-bottom: 20px;
  }

  .section-heading.section-heading-column {
    text-align: left;
  }

  .menu-list {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: column;
  }

  .menu-list-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .menu-list-item-image {
    object-position: 50% 100%;
    min-height: 280px;
    max-height: 280px;
  }

  .menu-list-item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column-left {
    margin-bottom: 16px;
    padding-right: 0;
  }

  .footer-column-list {
    border-bottom: 1px solid var(--grey02);
  }

  .footer-menu {
    display: none;
  }

  .footer-nav-menu-list {
    flex-wrap: wrap;
  }

  .footer-list-column-titile {
    margin-bottom: 15px;
  }

  .sp-nav-menu {
    z-index: 100;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    position: relative;
  }

  .humberger.dark {
    z-index: 2;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: #ff8686;
    flex-flow: column;
    position: relative;
  }

  .hamberger-lottie.invert {
    height: 26px;
  }

  .sp-contact-area {
    z-index: 2;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    display: flex;
    position: relative;
  }

  .sp-contact-area.sp-contact-area-center {
    justify-content: center;
    padding-right: 10px;
  }

  .sp-contact-area.sp-contact-area-circle {
    background-color: rgba(0, 0, 0, 0);
    padding-right: 10px;
  }

  .button-sp-default {
    background-color: var(--white);
  }

  .button-sp-default.button-sp-default-black {
    color: var(--black);
  }

  .sp-modal {
    opacity: 0;
    display: none;
  }

  .sp-modal.dark {
    padding-top: 0;
  }

  .sp-modal.white-mode {
    z-index: 0;
    background-color: var(--white);
    opacity: 0;
    padding-top: 0;
    display: none;
  }

  .sp-nav-logo {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .sp-modal-menu {
    margin-bottom: 20px;
  }

  .sp-modal-menu-item {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .sp-modal-menu-link {
    font-size: 24px;
    line-height: 180%;
  }

  .sp-modal-address {
    margin-bottom: 0;
    font-size: 12px;
  }

  .button-sp-option.button-sp-dark {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
  }

  .button-sp-option.button-sp-white {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
  }

  .wide-section {
    margin-bottom: 50px;
  }

  .wide-section.sns-section {
    padding-top: 0;
  }

  .concept-heading-option {
    font-size: 24px;
  }

  .news-option-title {
    font-size: 20px;
  }

  .news-option-image {
    min-height: 145px;
    max-height: 145px;
  }

  .news-option-image-default {
    min-height: 145px;
  }

  .menu-option-texts {
    padding-top: 13px;
    padding-bottom: 0;
  }

  .menu-option-header {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .menu-option-description {
    display: none;
  }

  .menu-option-column {
    padding-left: 18px;
    padding-right: 18px;
  }

  .menu-option-column-link, .menu-option-column-link.text-color-white {
    display: none;
  }

  .menu-option-column-2 {
    z-index: 0;
  }

  .collection-item-2 {
    margin-bottom: 50px;
  }

  .sp-modal-tel {
    background-color: var(--black);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100px;
    padding-top: 10px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transform: translate(0, 100%);
  }

  .sp-modal-tel.white-mode {
    background-color: var(--white);
  }

  .sp-modals {
    z-index: 1;
    display: block;
    position: relative;
  }

  .sp-modal-tel-icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .sp-modal-tel-link {
    color: var(--white);
    font-family: Noto Sans JP, sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 160%;
  }

  .sp-modal-tel-link.text-color-black {
    color: var(--black);
  }

  .sp-modal-web-reserve {
    background-color: var(--black);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transform: translate(0, 100%);
  }

  .sp-modal-web-reserve.white-mode {
    background-color: var(--white);
  }

  .reserve-list {
    width: 100%;
    overflow: scroll;
  }

  .reserve-list-item {
    border-bottom: 1px solid var(--grey01);
    justify-content: center;
    min-height: 50px;
    padding: 15px 25px;
    display: flex;
  }

  .reserve-list-item.white-mode {
    border-bottom: 1px solid var(--grey04);
  }

  .reserve-list-link {
    color: var(--white);
    font-family: Noto Sans JP, sans-serif;
    font-size: 16px;
    line-height: 180%;
  }

  .sp-modal-reserve {
    background-color: var(--black);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100px;
    padding-bottom: 23px;
    padding-right: 0;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transform: translate(0, 100%);
  }

  .sp-modal-reserve.white-mode {
    background-color: var(--white);
    padding-bottom: 83px;
    transform: translate(0, 100%);
  }

  .reserve-tel-text {
    color: var(--white);
    margin-top: 20px;
    font-family: Noto Sans JP, sans-serif;
    font-size: 16px;
    line-height: 180%;
  }

  .reserve-tel-text.text-color-black {
    color: var(--black);
  }

  .sp-modal-takeout {
    background-color: var(--black);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 200px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transform: translate(0, 100%);
  }

  .sp-modal-takeout.white-mode {
    background-color: var(--white);
    padding-bottom: 60px;
    transform: translate(0, 100%);
  }

  .button-top {
    margin-bottom: 18px;
  }

  .sns-heading {
    text-align: center;
  }

  .sns_contents_right_img-2 {
    width: 35%;
    height: 100%;
    max-height: 600px;
    position: relative;
    right: 0%;
  }

  .sns-contents-header {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .sns_contents_right_img-1 {
    width: 35%;
    height: 100%;
    max-height: 600px;
    margin-top: -140px;
    margin-right: 35px;
    position: relative;
    top: 0;
  }

  .sns_icon_area {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sns-contents-images {
    justify-content: center;
    width: 100%;
    min-height: auto;
    margin-top: 200px;
    display: flex;
  }

  .sns-contents {
    flex-direction: column;
    padding-top: 70px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .sns_icon_item {
    margin-left: 20px;
    margin-right: 20px;
  }

  .review-box.review-box-white {
    border-color: var(--grey04);
  }

  .footer-map {
    margin-bottom: 50px;
  }

  .footer-sns-links {
    display: flex;
  }

  .footer-sns-link-item {
    color: var(--white);
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
  }

  .text-block-2 {
    font-family: Noto Sans JP, sans-serif;
    font-size: 12px;
  }

  .sns-contents-white {
    flex-direction: column;
    padding: 70px 25px;
  }

  .sns-contents-wrapper {
    flex-direction: column;
  }

  .default-mv-image.pc {
    display: none;
  }

  .default-mv-image.sp {
    object-position: 50% 100%;
  }

  .default-mv-image.tab {
    object-position: 50% 100%;
    display: block;
  }

  .main-container {
    padding-top: 50px;
  }

  .menu-contents-description {
    padding-left: 5%;
    padding-right: 18px;
  }

  .menu-contents-image-element {
    height: 400px;
  }

  .main-container-header {
    padding-top: 0;
  }

  .main-container-title {
    padding: 35px 20px;
  }

  .main-container-section, .category-collection {
    margin-bottom: 100px;
  }

  .category-collection-image {
    max-height: 350px;
  }

  .category-item-collection-image {
    min-height: 250px;
  }

  .menu-list-item-link {
    margin-bottom: 10px;
  }

  .menu-option-column-1 {
    z-index: 1;
  }

  .menu-container-pragraph {
    margin-top: 0;
  }

  .button-sp-default-circle {
    background-color: var(--white);
    color: var(--black);
    border-radius: 40px;
  }

  .humberger-circle.dark {
    z-index: 999;
    background-color: var(--black);
    border-radius: 40px;
  }

  .sp-nav-menu-circle {
    z-index: 100;
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: relative;
  }

  .button-sp-option-circle {
    color: var(--black);
    border-radius: 40px;
    width: 48.8%;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .paragraph.concept-p {
    max-width: 100%;
  }

  .pc-modals {
    z-index: 1;
    display: none;
    position: relative;
  }

  .pc-modal-web-reserve {
    background-color: #1a1a1a;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
    bottom: 50px;
    left: 0;
    overflow: hidden;
    transform: translate(0, 100%);
  }

  .pc-modal-bg {
    display: none;
  }

  .mv-scroll-down {
    bottom: 50px;
  }

  .sp-modal-logo {
    max-width: 160px;
    padding: 35px 13px;
  }

  .sign {
    width: 200px;
    height: 40px;
    bottom: 4px;
  }

  .mv-contents {
    z-index: 1;
    justify-content: center;
    position: absolute;
    top: 10%;
    right: 5%;
  }

  .mv-logo-area {
    display: flex;
  }

  .mv-heading {
    margin-left: 21px;
  }

  .sp-modal-wrapper {
    position: relative;
    overflow: scroll;
  }

  .sp-modal-reserve-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .sp-modal-takeout-wrapper {
    width: 100%;
  }

  .reserve-close {
    width: 0;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .lottie-animation {
    bottom: -17px;
    left: 21px;
  }

  .paragraph-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hamberger-line {
    background-color: #fff;
    width: 24px;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-mv {
    height: auto;
    min-height: auto;
  }

  .section-mv.default-mv {
    margin-bottom: 50px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .section-mv.option-mv {
    margin-bottom: 50px;
  }

  .logo-block.logo-block-default {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 200px;
    display: flex;
    position: static;
  }

  .section, .section.timeline-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .timeline-column-title {
    margin-bottom: 45px;
    position: static;
  }

  .section-heading {
    font-size: 24px;
  }

  .section-heading.section-heading-column {
    text-align: center;
  }

  .fs-collection-item {
    min-width: 450px;
    margin-bottom: 35px;
    padding-bottom: 20px;
  }

  .timeline-list-title {
    font-size: 18px;
  }

  .menu-list-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .menu-list-item-image {
    min-height: 200px;
    max-height: 200px;
  }

  .menu-list-item-title, .menu-list-item-price {
    font-size: 16px;
  }

  .section-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sp-nav-menu {
    padding-bottom: 0;
    padding-right: 0;
  }

  .humberger.dark {
    position: relative;
  }

  .sp-contact-area {
    padding-bottom: 0;
  }

  .button-sp-default {
    border-radius: 0;
  }

  .sp-modal {
    background-color: var(--white);
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
  }

  .button-sp-option {
    background-color: var(--white);
    border-radius: 0;
  }

  .button-sp-option.button-sp-dark {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
  }

  .button-sp-option.button-sp-white {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
  }

  .wide-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wide-section.horizon-scroll-section, .wide-section.sns-section, .wide-section.gallery-section {
    padding-left: 0;
    padding-right: 0;
  }

  .concept-heading-option.vertical {
    margin-bottom: 40px;
  }

  .concept-content-option {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .concept-content-text {
    margin-bottom: 40px;
    position: static;
  }

  .news-option-list {
    justify-content: flex-start;
    max-width: 100%;
    padding-left: 18px;
    overflow: scroll;
  }

  .news-option-list-item {
    border: 1px solid #595959;
    border-radius: 10px;
    min-width: 252px;
    margin-right: 21px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .news-option-more-btn.text-color-black {
    color: var(--black);
  }

  .menu-option-column {
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-slide.swiper-slide-timeline {
    padding-left: 15px;
    padding-right: 15px;
  }

  .swiper-button-next {
    border-style: none;
    width: 80px;
    height: 80px;
    top: 60%;
    right: 16%;
  }

  .swiper-gallery.hide-content {
    display: none;
  }

  .collection-item-2 {
    margin-bottom: 50px;
  }

  .sp-modal-tel {
    transform: translate(0, 100%);
  }

  .sp-modal-web-reserve, .sp-modal-reserve, .sp-modal-takeout {
    min-height: 200px;
    transform: translate(0, 100%);
  }

  .sns_contents_right_img-2 {
    width: 45%;
  }

  .sns-contents-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sns_contents_right_img-1 {
    width: 45%;
  }

  .sns-contents-images {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sns-contents {
    padding-top: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-dynamic-feed-review {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    display: flex;
  }

  .footer-map {
    max-height: 300px;
    margin-bottom: 25px;
  }

  .sns-contents-white {
    padding-top: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .default-mv-image.tab {
    display: none;
  }

  .main-container {
    padding-top: 0;
  }

  .menu-contents-sectioin {
    flex-direction: column;
  }

  .menu-contents-image {
    width: 100%;
  }

  .menu-contents-description {
    width: 100%;
    padding-left: 18px;
  }

  .menu-contents-image-element {
    height: 350px;
  }

  .main-container-header {
    padding-top: 0;
  }

  .main-container-title {
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 22px;
  }

  .main-container-section, .category-item-collection {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-item-collection-list {
    flex-direction: column;
  }

  .category-item-collection-list-item {
    width: 100%;
  }

  .timeline-column-more {
    display: none;
  }

  .timeline-list-thumbnail {
    width: 100%;
    margin-bottom: 0;
  }

  .timeline-list-thumbnail.timeline-page-list-thumbnail {
    max-width: 100%;
  }

  .timeline-list-pragraph, .timeline-list-pragraph p {
    font-size: 14px;
  }

  .pc {
    display: none;
  }

  .sp, .swiper-timeline {
    display: block;
  }

  .swiper-timeline-button-next {
    background-color: var(--grey05);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    display: flex;
  }

  .collection-wrapper {
    display: none;
  }

  .collection-list {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .collection-item {
    max-width: 100%;
    margin-bottom: 35px;
    padding-bottom: 20px;
  }

  .humberger-circle.dark {
    position: relative;
  }

  .button-sp-option-circle {
    background-color: var(--white);
    border-radius: 0;
  }

  .next, .previous {
    display: none;
  }

  .timeline-pagenation {
    position: absolute;
    bottom: -46px;
    right: 5%;
  }

  .utility-page-wrap {
    height: 300px;
  }

  .pc-modal-web-reserve {
    min-height: 200px;
    transform: translate(0, 100%);
  }

  .timeline-list-thumbnail-link {
    margin-bottom: 0;
  }

  .sign {
    width: 150px;
    height: 30px;
    right: 32px;
  }

  .mv-contents {
    flex-direction: row-reverse;
    justify-content: flex-end;
    top: 9%;
    left: 8%;
    right: auto;
  }

  .mv-logo-area {
    margin-left: 0;
  }

  .mv-access {
    width: 46px;
    height: 163px;
  }

  .mv-access.sp {
    width: 45px;
    height: 147px;
  }

  .mv-heading {
    width: 101.12px;
    height: 240px;
    margin-left: 20px;
  }

  .mv-wrapper {
    height: auto;
  }

  .lottie-animation {
    margin-left: auto;
    margin-right: auto;
  }

  .lottie-animation.sp-swipe-down {
    display: block;
  }

  .lottie-animation.pc-scroll-down {
    display: none;
  }

  .timeline-list-thumbnail-link-2 {
    margin-bottom: 0;
  }

  .timeline-list-thumbnail-2 {
    width: 100%;
    min-height: 280px;
    max-height: 280px;
    margin-bottom: 0;
  }

  .timeline-list-title-2, .timeline-column-more-text, .paragraph-3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  p {
    white-space: break-spaces;
  }

  .section-mv {
    min-height: auto;
  }

  .option-mv-image {
    max-height: 200px;
  }

  .fs-collection-item {
    min-width: 200px;
  }

  .timeline-list-title {
    font-size: 16px;
  }

  .menu-list-item-image {
    min-height: 150px;
    max-height: 150px;
  }

  .news-option-more-btn {
    font-size: 12px;
  }

  .news-option-more {
    justify-content: flex-end;
    padding-right: 18px;
  }

  .menu-option-more-copy {
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 18px;
  }

  .sns-heading {
    font-size: 24px;
  }

  .sns_contents_right_img-2 {
    width: 47%;
  }

  .sns_contents_right_img-1 {
    width: 47%;
    margin-top: -100px;
    margin-right: 20px;
  }

  .sns-contents-images {
    margin-top: 150px;
  }

  .mv-contents {
    left: 15%;
  }

  .mv-heading {
    width: 119px;
    height: 240px;
  }
}

#w-node-_93b8aeb0-19eb-9b43-bb10-89c4df38da4d-dcb80edb, #w-node-_09bc0cf0-047c-068a-8105-c71fa16db0dc-dcb80edb, #w-node-_94c94031-b888-8c38-4bd9-f7eef977418e-dcb80edb, #w-node-_800d7f28-d0bf-ce14-aad2-6c9e819c9f22-dcb80edb, #w-node-_84913f53-9d4c-5365-9ea4-05e8a8c1492e-dcb80edb, #w-node-_5fe47459-986d-9de1-a6fd-c070f969901c-dcb80edb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


