html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.6;
  color: #181818;
  background-color: #fff;
}

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

body>img[width="1"][height="1"],
body>img[src*="googletagmanager"],
body>img[src*="google-analytics"],
body>img[src*="doubleclick"],
body>img[src*="adobedtm"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
label[for],
select,
summary,
[onclick] {
  cursor: pointer;
}

.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

.textbox__flexbox {
  display: flex;
  gap: 20.5%;
  padding: 0 9.375%;
}

.textbox__title {
  font-family: "Aboreto", sans-serif;
  font-size: 60px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #001E3A;
  width: 340px;
}

.textbox__title--wide {
  width: 100%;
}

.textbox__text01 {
  font-size: 32px;
  letter-spacing: 0.012em;
  margin-bottom: 138px;
}

.textbox__text03 {
  font-size: 40px;
  letter-spacing: 0.012em;
  margin-bottom: 138px;
}

.textbox__text02,
.textbox__text04 {
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.005em;
}

@media (max-width: 1420px) {
  .textbox__flexbox {
    gap: 10%;
  }

  .textbox__title {
    font-size: 36px;
    width: 240px;
  }

  .textbox__text03 {
    font-size: 32px;
    margin-bottom: 64px;
  }
}

.site-header {
  width: 100%;
  z-index: 100;
  transition: transform 0.3s ease;
}

.site-header.is-scrolling {
  transform: translateY(-100%);
}

.site-header__inner {
  height: 100%;
  margin: 0 auto;
  padding: 48px 88px 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.site-header__logo img {
  width: 134px;
  height: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: "Aboreto", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.site-header__nav-link {
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  pointer-events: auto;
}

.site-header--primary {
  position: absolute;
  top: 0;
  left: 0;
}

.site-header--primary .site-header__nav-link {
  color: #fff;
}

.site-header--secondary {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #EEECE7;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.6s ease;
}

.site-header--secondary.is-visible {
  opacity: 1;
  visibility: visible;
}

.site-header__menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

@media (max-width: 1500px) {
  .site-header__inner {
    padding: 32px 72px 32px 36px;
  }
}

@media (max-width: 900px) {
  .site-header {
    pointer-events: auto;
  }

  .site-header__inner {
    pointer-events: auto;
    padding: 20px 20px;
    transition: background-color 0.3s ease;
  }

  .site-header--primary.is-scrolled .site-header__inner {
    background-color: #EEECE7;
  }

  .site-header__logo img {
    width: 75px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }

  .site-header--secondary {
    display: none;
  }

  .site-header--primary {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    margin-left: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 9999;
  }

  .site-header__menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
  }

  .site-header--primary.is-scrolled .site-header__menu-toggle span,
  .site-header__menu-toggle.is-dark span {
    background: #181818;
  }

  .site-header--primary.is-scrolled .site-header__logo img {
    filter: none;
  }

  .site-header__menu-toggle.is-open {
    position: fixed;
    top: 22px;
    right: 20px;
  }

  .site-header__menu-toggle.is-open span {
    background: #181818;
  }

  .site-header__menu-toggle.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .site-header__menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav__inner {
    margin: auto;
    width: min(90%, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .mobile-nav__logo img {
    width: 140px;
    height: auto;
    display: block;
  }

  .mobile-nav__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: "Aboreto", sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .mobile-nav__nav-link {
    color: #181818;
    text-decoration: none;
    font-size: 16px;
  }

  .mobile-nav__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .mobile-nav__sns-icon img {
    width: 44px;
    height: 44px;
    display: block;
  }

  .mobile-nav__blank-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .mobile-nav__blank-link {
    color: #181818;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-nav__blank-link-icon img {
    width: 12px;
    height: 12px;
    display: block;
  }

  body.is-mobile-nav-open .site-header--primary .site-header__logo img {
    visibility: hidden;
  }

  body.is-mobile-nav-open .site-header--primary .site-header__inner {
    background-color: transparent;
  }
}

.kv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kv__slides {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
}

.kv__slide {
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.kv__slide--active {
  opacity: 1;
}

.kv__slide picture,
.kv__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.kv__slide picture {
  position: relative;
  overflow: hidden;
}

.kv__slide img {
  object-fit: cover;
  transform-origin: center;
  max-width: none;
  transform: scale(1.1) translateX(4.545%);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .kv__slide img {
    animation: none;
    transform: none;
  }
}

.kv__indicators {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 10;
}

.kv__indicator {
  width: auto;
  height: calc(50px * (100vw / 1920px));
  border: none;
  background: transparent;
  padding: 0 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.kv__indicator-track {
  position: relative;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  overflow: hidden;
}

.kv__indicator--active .kv__indicator-track {
  background-color: rgba(255, 255, 255, 0.5);
}

.kv__indicator-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  border-radius: inherit;
}

.kv__indicator--active .kv__indicator-fill {
  animation: kvIndicatorFill 5s linear forwards;
}

.kv__indicator--completed .kv__indicator-fill {
  animation: none;
  height: 100%;
}

@keyframes kvIndicatorFill {
  from {
    height: 0%;
  }

  to {
    height: 100%;
  }
}

.kv__header-text {
  position: absolute;
  bottom: 7%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.kv__header-text img {
  width: 93%;
  margin: 0 auto;
}

.kv__header-text02 {
  position: absolute;
  top: 40%;
  left: 9.375%;
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.concept {
  position: relative;
}

.concept__bg {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: -10;
}

.concept__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.textbox__concept {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  justify-content: center;
}

@media (max-width: 1420px) {
  .textbox__concept {
    top: 300px;
  }
}

.timeline {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 160px;
  margin-top: 240px;
  padding-bottom: 400px;
}

.serchbox {
  margin: 200px 20% 0;
  position: relative;
}

.search_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 28%;
  position: absolute;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.search_01,
.search_05,
.search_06,
.search_07 {
  flex-direction: column-reverse;
}

.search_text_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  width: 100%;
}

.search_text_box img {
  width: clamp(0px, 8%, 20px);
  transition: opacity 0.3s ease;
}

.search_text {
  font-size: clamp(0px, 1.25vw, 20px);
  text-align: center;
  transition: opacity 0.3s ease;
}

.search_image_box {
  width: 30%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_image_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.search_image_box img {
  width: 100%;
  display: block;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.search_image_box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.search_wrapper:hover .search_text,
.search_wrapper:hover .search_text_box img {
  opacity: 0.5;
}

.search_wrapper:hover .search_image_box img {
  opacity: 0.5;
}

.search_wrapper:hover .search_image_box::after {
  opacity: 0.5;
}

.search_wrapper:hover .search_image_box::before {
  opacity: 0.5;
}

.search_01 {
  top: 77%;
  left: -13.5%;
}

.search_02 {
  top: -1.5%;
  left: -2%;
}

.search_03 {
  top: -16%;
  left: 25.5%;
}

.search_04 {
  top: 30%;
  left: -14%;
}

.search_05 {
  top: 95%;
  right: 57.5%;
}

.search_06 {
  top: 85%;
  right: 32.8%;
}

.search_07 {
  top: 77%;
  right: -0.4%;
}

.search_08 {
  top: -2%;
  left: 57%;
}

.search_09 {
  top: 23%;
  right: -13.7%;
}

.parallax {
  position: relative;
  z-index: 1;
  height: 300vh;
  margin-top: -100vh;
}

.parallax__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.parallax__layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.parallax__layer picture,
.parallax__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.businessschedule {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-top: 240px;
  margin-top: -100vh;
}

.pt_160 {
  padding-top: 160px;
}

.businessschedule__title__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 120px 0 16px;
}

.businessschedule__title {
  font-size: 32px;
  letter-spacing: 0.1em;
}

.businessschedule__title__text__box {
  margin: 50px 0 0px;
  padding: 0 9.375%;
  width: 100%;
  text-align: center;
}

.businessschedule__title__text__box__inner {
  border: 1px solid #181818;
  padding: 30px 10px;
  max-width: 1040px;
  margin: 0 auto;
}

.businessschedule__title__text {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 0;
}

.businessschedule__title__text.text_02 {
  font-size: 16px;
}

.businessschedule__title__text.text_03 {
  margin-top: 60px;
}

.businessschedule__title__text a {
  color: inherit;
  text-decoration: underline;
}

.businessschedule__title__text a:hover {
  text-decoration: none;
}

.text-red {
  color: #DD1F1F;
}

.businessschedule__content__box {
  padding: 0 9.375%;
}

.businessschedule__content__label {
  background-color: #EEECE7;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.businessschedule__content__label__title {
  font-size: 20px;
}

.businessschedule__content__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: #F7F7F7;
  height: 113px;
}

.businessschedule__content__description__image {
  width: 40px;
  height: 40px;
}

.businessschedule__content__description__text {
  font-size: 16px;
  font-weight: bold;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 24px;
  margin-bottom: 48px;
}

.businessschedule__content__image__box {
  border: 1px solid #E2E2E2;
  margin: 24px 0 48px;
}

.restaurant-grid__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background-color: #F7F7F7;
  border: 1px solid #E2E2E2;
}

.restaurant-grid__image {
  flex: 0 0 60.263%;
  overflow: hidden;
}

.restaurant-grid__image img {
  width: 100%;
  height: auto;
  display: block;
}

.restaurant-grid__info {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: 22px;
}

.restaurant-grid__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 1500px) {
  .restaurant-grid__meta {
    font-size: 14px;
  }
}

.restaurant-grid__status {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1%;
  border-top: 1px solid #E2E2E2;
}

.restaurant-grid__icon {
  width: 20%;
  height: auto;
  display: block;
  object-fit: cover;
}

.restaurant-grid__status-text {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1500px) {
  .restaurant-grid__status-text {
    font-size: 12px;
  }
}

.businessschedule__content__image__box {
  margin: 10px 0 24px;
}

.restaurant-grid__note {
  text-align: center;
  font-size: 20px;
  margin-top: 48px;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
}

.restaurant-grid__note a {
  color: inherit;
  text-decoration: underline;
}

.restaurant-grid__note a:hover {
  text-decoration: none;
}

.faq {
  position: relative;
  padding: 240px 0 240px;
  margin-top: 400px;
  background-color: #EEECE7;
  overflow: hidden;
}

.faq__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.faq_flexbox {
  position: relative;
  display: flex;
  gap: 12%;
  z-index: 1;
  padding: 0 9.375%;
}

.faq_left {
  flex: 0 0 auto;
  max-width: 200px;
}

.faq_right {
  flex: 1;
  max-width: 1027px;
}

.accordion {
  border-bottom: 1px solid #181818;
}

.accordion__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 30px 8px 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.accordion__trigger:focus-visible {
  outline: 2px solid rgba(135, 199, 143, 0.7);
  outline-offset: 6px;
}

.accordion:first-child .accordion__trigger {
  padding-top: 0;
}

.accordion__label {
  display: flex;
  gap: 18px;
  text-align: left;
}

.accordion__symbol {
  font-size: 14px;
  letter-spacing: 0.2em;
}

.accordion__question {
  font-size: 16px;
  letter-spacing: 0.04em;
  padding-right: 12px;
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #181818;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion.is-open .accordion__icon::after {
  opacity: 0;
}

.accordion__panel {
  display: block !important;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.accordion__answer {
  background-color: rgba(24, 24, 24, 0.04);
  padding: 26px 8px 26px 32px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.accordion__answer .accordion__label {
  display: flex;
  gap: 18px;
  text-align: left;
}

.accordion__answer-text {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.accordion__answer-text a {
  color: inherit;
  text-decoration: underline;
}

.accordion__answer-text a:hover {
  text-decoration: none;
}

.sns {
  padding: 160px 0 320px;
  margin: 140px 9.375% 0;
  background-color: #fff;
}

.sns__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.sns__lead {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.08em;
  margin-top: 24px;
}

.sns__icons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  padding: 0;
}

.sns__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}

.sns__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sns__gallery {
  display: flex;
  flex-direction: column;
}

.sns__gallery-row {
  display: flex;
}

.sns__gallery-item {
  flex: 1;
  overflow: hidden;
}

.sns__gallery-item a {
  display: block;
}

.sns__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.sns__gallery-item:hover img {
  transform: scale(1.05);
}

body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__dialog {
  position: relative;
  width: 50vw;
  background: #EEECE7;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1500px) {
  .modal__dialog {
    width: 60vw;
  }
}

.modal__body {
  position: relative;
  background: #000;
}

.modal__slides {
  display: flex;
  transition: transform 0.4s ease;
}

.modal__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.modal__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 9%;
  aspect-ratio: 1;
  border: none;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  z-index: 3;
}

.modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 1px;
  background: #fff;
  transform-origin: center;
}

.modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 20px;
  background: #EEECE7;
}

.modal__nav {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.modal__nav span {
  position: absolute;
  width: 19px;
  height: 19px;
  border-top: 1px solid #001E3A;
  border-right: 1px solid #001E3A;
  background: transparent;
}

.modal__nav--prev span {
  transform: rotate(-135deg);
}

.modal__nav--next span {
  transform: rotate(45deg);
}

.modal__nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.modal__indicators {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.modal__indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #D3D3D3;
  cursor: pointer;
}

.modal__indicator.is-active {
  background: #001E3A;
}

.modal__caption {
  padding: 20px 60px 20px;
  background: #EEECE7;
}

.modal__title {
  font-family: "Aboreto", sans-serif;
  font-size: 36px;
  letter-spacing: 0.08em;
}

.modal__subtitle {
  font-size: 22px;
  margin: 0;
}

.modal__subtitle02 {
  text-align: right;
  margin-top: 15px;
}

.modal__subtitle02 .note {
  font-size: 12px;
}

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

.site-footer__banner {
  background-color: #fff;
}

.site-footer__banner img {
  width: 99%;
  display: block;
  margin: 0 auto;
}

.site-footer__inner {
  background-color: #184066;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 140px 0 50px;
}

.site-footer__brand img {
  width: 180px;
  height: auto;
}

.site-footer__address {
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  line-height: 39px;
}

.site-footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  text-decoration: underline;
}

.site-footer__link-icon img {
  width: 14px;
  height: 14px;
  display: block;
}

@media (max-width: 768px) {
  .br_pc {
    display: none;
  }

  .br_sp {
    display: block;
  }

  .textbox__flexbox {
    flex-direction: column;
    gap: 48px;
    padding-left: 0;
    padding: 0 24px;
  }

  .textbox__title {
    font-size: 32px;
    width: 100%;
  }

  .textbox__text01,
  .textbox__text03 {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .textbox__text02 {
    line-height: 27px;
    font-size: 13px;
  }

  .textbox__text04 {
    line-height: 30px;
    font-size: 16px;
  }

  .kv__indicators {
    top: 67%;
    right: 6px;
    gap: 20px;
  }

  .kv__indicator {
    width: auto;
    height: 24px;
    padding: 0 20px;
  }

  .kv__indicator-track {
    width: 1px;
  }

  .kv {
    height: 100svh;
  }

  .kv__slides {
    height: 100%;
  }

  .kv__slide picture,
  .kv__slide img {
    height: 100svh;
    object-fit: cover;
  }

  .kv__header-text {
    bottom: 4%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .kv__header-text picture,
  .kv__header-text img {
    width: 93%;
    height: auto;
  }

  .kv__header-text02 {
    top: 19%;
    width: 36.8%;
    left: auto;
    right: 37px;
  }

  .textbox__concept {
    top: 240px;
  }

  .timeline {
    padding-top: 140px;
    margin-top: 0;
    padding-bottom: 160px;
  }

  .serchbox {
    margin: 27% 9% 0 15%;
  }

  .search_wrapper {
    width: 36%;
    gap: 4px;
  }

  .search_image_box {
    width: 35%;
  }

  .search_text_box img {
    width: clamp(0px, 11%, 20px);
  }

  .search_text {
    font-size: 2.94vw;
    white-space: nowrap;
    line-height: 1.2;
  }

  .search_01 {
    top: 81%;
    left: -17.2%;
  }

  .search_02 {
    top: -8%;
    left: -14.5%;
  }

  .search_03 {
    top: -21%;
    left: 12.6%;
  }

  .search_04 {
    top: 26%;
    left: -19%;
  }

  .search_05 {
    top: 99%;
    right: 52.7%;
  }

  .search_06 {
    top: 78%;
    right: 35%;
  }

  .search_07 {
    top: 85%;
    right: 5%;
  }

  .search_08 {
    top: -5%;
    left: 42%;
  }

  .search_09 {
    top: 17%;
    right: -4.4%;
  }

  .businessschedule {
    padding-top: 0px;
  }

  .pt_160 {
    padding-top: 140px;
  }

  .businessschedule__title__box {
    margin: 40px 0 12px;
  }

  .businessschedule__title {
    font-size: 20px;
  }

  .businessschedule__title__text__box {
    padding: 0 24px;
    margin: 30px 0 0;
  }

  .businessschedule__title__text {
    font-size: 14px;
    margin-top: 0;
    text-align: center;
  }

  .businessschedule__title__text.text_02 {
    font-size: 12px;
  }

  .businessschedule__title__text.text_03 {
    margin-top: 30px;
  }

  .businessschedule__content__box {
    padding: 0 24px;
  }

  .businessschedule__content__label {
    height: 40px;
  }

  .businessschedule__content__label__title {
    font-size: 16px;
  }

  .businessschedule__content__description {
    height: 72px;
  }

  .businessschedule__content__description__image {
    width: 27px;
    height: 27px;
  }

  .businessschedule__content__description__text {
    font-size: 12px;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
    margin-top: 10px;
    gap: 10px;
    margin-bottom: 20px;
  }

  .restaurant-grid__item {
    gap: 12px;
  }

  .restaurant-grid__info {
    margin-right: 12px;
  }

  .restaurant-grid__meta {
    flex-direction: row;
    font-size: 13px;
    align-items: center;
  }

  .restaurant-grid__image {
    flex: 0 0 47.866%;
  }

  .restaurant-grid__icon {
    width: 17%;
    max-width: 40px;
  }

  .restaurant-grid__status {
    gap: 1px;
  }

  .restaurant-grid__note {
    text-align: left;
    font-size: 10px;
    margin-top: 16px;
    margin-bottom: 50px;
  }

  .faq {
    padding: 80px 0 100px;
    margin-top: 140px;
  }

  .faq_flexbox {
    flex-direction: column;
    gap: 44px;
    padding: 0 24px;
  }

  .faq_left {
    max-width: 100%;
    text-align: center;
  }

  .accordion__trigger {
    padding: 18px 6px;
  }

  .accordion__label {
    gap: 12px;
  }

  .accordion__answer .accordion__label {
    gap: 12px;
  }

  .accordion__question {
    font-size: 14px;
    padding-right: 16px;
  }

  .accordion__icon {
    width: 11px;
    height: 11px;
  }

  .accordion__answer {
    padding: 16px 6px;
  }

  .accordion__answer-text {
    font-size: 14px;
  }

  .sns {
    padding: 80px 0 80px;
    margin: 0 24px;
  }

  .sns__inner {
    gap: 26px;
  }

  .sns__icons {
    gap: 27px;
    margin-top: 24px;
  }

  .modal__dialog {
    width: 90vw;
  }

  .modal__close {
    width: 10.15%;
  }

  .modal__controls {
    padding-top: 18px;
    gap: 12px;
  }

  .modal__nav {
    width: 14px;
    height: 14px;
  }

  .modal__nav span {
    width: 11px;
    height: 11px;
  }

  .modal__indicators {
    gap: 14px;
  }

  .modal__indicator {
    width: 6px;
    height: 6px;
  }

  .modal__caption {
    padding: 20px 24px 20px;
  }

  .modal__title {
    font-size: 24px;
  }

  .modal__subtitle {
    font-size: 14px;
    margin-top: 4px;
  }

  .modal__subtitle02 {
    text-align: left;
    font-size: 12px;
    margin-top: 30px;
  }

  .modal__subtitle02 .note {
    font-size: 10px;
  }

  .site-footer__banner img {
    width: 97%;
  }

  .site-footer__inner {
    padding: 60px 0 40px;
    gap: 40px;
  }

  .site-footer__brand img {
    width: 160px;
  }

  .site-footer__address {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 26px;
  }

  .site-footer__links {
    row-gap: 12px;
    column-gap: 36px;
  }

  .site-footer__link {
    font-size: 12px;
  }

  .site-footer__link-icon img {
    width: 12px;
    height: 12px;
  }
}