/* =======================================
共通設定
======================================= */
html {
  font-size: .69444444444vw;
  scroll-behavior: auto !important;
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  scroll-padding-top: 15rem
}

p {
  line-height: 2;
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

h3 {
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

main {
  background-color: #000;
}

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

.--mt4 {
  margin-top: 4rem;
}


.c-link {
  color: #d6c5ad;
}

h2 {
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}


.w-100 {
  width: 100%;
}

a {
  transition: .3s;
  display: block;
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

a:hover {
  opacity: .7;
}

.u-hidden-sp {
  display: block;
}

.u-hidden-pc {
  display: none;
}

@media screen and (max-width: 768px) {

  .u-hidden-sp {
    display: none;
  }

  .u-hidden-pc {
    display: block;
  }

  html {
    font-size: 2.625vw;
    scroll-behavior: auto !important;
  }

}

.l-inner {
  padding: 0 2rem;
  width: 100%;
  margin: auto;
  max-width: 74rem;
}


.l-inner02 {
  padding: 0 2rem;
  width: 100%;
  margin: auto;
  max-width: 103rem;
}


body {
  background: #f0e4d0;
  color: #2a1a0a;
  font-family: 'Noto Sans JP', sans-serif;
}

/* =======================================
   HEADER
======================================= */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ハンバーガーボタン（PCでは非表示） */
.header-hamburger {
  display: none;
}

/* ドロワー・オーバーレイ（PCでは非表示） */
.hamburger-overlay,
.hamburger-drawer {
  display: none;
}


/* --- トップバー --- */
.header-topbar {
  background: #111;
  padding: 0.55rem 2.4rem;
}

.header-topbar__text {
  font-size: 1.6rem;
  padding: 0;
  color: #fff;
  text-align: center;
}

/* --- メインヘッダー --- */
.header-main {
  position: relative;
  display: flex;
  background: #E6DACC;
  align-items: center;
  gap: 2rem;
  min-height: 6rem;
}

/* --- ブランド --- */
.header-brand {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-brand__link {
  max-width: 18rem;
  width: 100%;
}

/* --- ナビゲーション --- */

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.header-nav__link {
  color: #000000;
  font-size: 1.6rem;
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

.header-nav__link.--price:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/header/header-icon01.webp) no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: sub;
  margin-right: 1rem;
}

.header-nav__link.--food:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/header/header-icon02.webp) no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: sub;
  margin-right: 1rem;
}

.header-nav__link.--access:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/header/header-icon03.webp) no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: sub;
  margin-right: 1rem;
}

.header-nav__reserve {
  background: #111;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  padding: 2.4rem 2.6rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.header-reserve {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

.header-reserve-link {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #A58A64;
  padding: 0 3rem;
  font-size: 1.6rem;
}

.header-reserve-link:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/header/header-icon04.webp) no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: sub;
}

.c-fixed {
  max-width: 20rem;
  width: 100%;
  position: fixed;
  right: 4rem;
  z-index: 333;
  bottom: 4rem;
}

.c-fixed-batsu {
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  max-width: 3.2rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {

  /* --- SP ヘッダー --- */
  .header-topbar {
    display: none;
  }

  .header-main {
    padding: 1.7rem 2rem;
    min-height: auto;
    justify-content: space-between;
  }

  .header-brand {
    padding: 0;
    max-width: 14rem;
  }

  .header-brand__link {
    color: #2a1a0a;
  }

  .header-brand__emblem {
    width: 3rem;
    height: 3rem;
    color: #2a1a0a;
  }

  .header-brand__name {
    font-size: 3.6rem;
    color: #2a1a0a;
  }

  .header-nav {
    display: none;
  }

  /* --- ハンバーガーボタン --- */
  .header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: fixed;
    top: 2.3rem;
    right: 2rem;
    z-index: 222;
  }

  .header-hamburger__line {
    display: block;
    width: 2.8rem;
    height: 2px;
    background: #2a1a0a;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

  .header-hamburger[aria-expanded="true"] .header-hamburger__line:nth-child(1) {
    transform: translateY(0.6rem) rotate(45deg);
  }

  .header-hamburger[aria-expanded="true"] .header-hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .header-hamburger[aria-expanded="true"] .header-hamburger__line:nth-child(3) {
    transform: translateY(-0.6rem) rotate(-45deg);
  }

  /* --- オーバーレイ --- */
  .hamburger-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
  }

  .hamburger-overlay.is-open {
    display: block;
  }

  /* --- ドロワー --- */
  .hamburger-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #f5f0e8;
    z-index: 201;
    overflow-y: auto;
    transition: right 0.32s ease;
    text-align: center;
  }

  .hamburger-drawer.is-open {
    right: 0;
    padding: 4rem 0;
  }

  .hamburger-drawer__section {
    padding: 2rem 0 2rem 0;
    text-align: center;
    max-width: 8rem;
    margin: auto;
  }

  .hamburger-drawer__menu,
  .hamburger-drawer__contents {
    display: flex;
    flex-wrap: wrap;
  }

  .hamburger-drawer__menu li {
    width: 50%;
    border: 1px solid;
    margin-top: -1px;
    margin-right: -1px;
  }

  .hamburger-drawer__contents li {
    width: 50%;
    border: 1px solid;
    margin-top: -1px;
    margin-right: -1px;
  }

  .hamburger-drawer__menu a,
  .hamburger-drawer__contents a {
    display: flex;
    padding: 1.5rem 1rem;
    align-items: center;
    gap: 1rem;
  }

  .hamburger-drawer__menu a img,
  .hamburger-drawer__contents a img {
    max-width: 12rem;
  }

  .hamburger-drawer__menu a:hover,
  .hamburger-drawer__contents a:hover {
    background: #ede6d8;
    opacity: 1;
  }

  .hamburger-drawer__menu svg,
  .hamburger-drawer__contents svg {
    width: 2.8rem;
    height: 2.8rem;
    color: #8c7a62;
  }

  .hamburger-drawer__tel {
    text-align: center;
    background: #837a6b;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-radius: 1rem;
    width: 90%;
  }

  .hamburger-drawer__tel svg {
    width: 2.2rem;
    height: 2.2rem;
    flex-shrink: 0;
  }

  .hamburger-drawer__close {
    margin-top: 4rem;
    max-width: 11rem;
    display: none;
  }

  .header-reserve-link {
    display: none;
  }

  .c-fixed {
    max-width: 17rem;
    right: 2rem;
    z-index: 333;
    bottom: 8rem;
  }

  .c-fixed-batsu {
    max-width: 2rem;
    right: -1rem;
    top: -1rem;
  }
}

/* =======================================
   FOOTER
======================================= */

.c-footerList {
  background-color: #000;
  text-align: center;
  padding: 8rem 0;
}

.c-footerList__list {
  margin-top: 8rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-footerList__list-item {
  width: 48%;
}

.c-footerList__list-item img {
  width: 100%;
}

.footer {
  background: #111;
  color: #c4b49a;
}

/* フッターメイン */
.footer-main {
  padding: 6rem 0 5rem;
}

.footer-main__inner {
  display: flex;
  width: 100%;
  gap: 6rem;
  padding: 0 2rem;
  max-width: 103rem;
  margin: 0 auto;
}

.footer-main__col-left {
  flex: 1;
  min-width: 0;
}

.footer-main__col-right {
  width: 40rem;
  flex-shrink: 0;
}

.footer-info__text01 {
  font-size: 1.2rem;
  margin-top: 4rem;
}

.footer-info__text02 {
  font-size: 1.2rem;
}

.footer-info__text02:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/footer/footer_icon1.webp) no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-right: -.5rem;
}

.footer-info__text03:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/footer/footer_icon2.webp) no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-right: -0rem;
}

.footer-info__text03 {
  font-size: 1.2rem;
}

.footer-info__sns {
  margin-top: 2rem;
}

.footer-info__sns a {
  max-width: 3rem;
}

.footer-info__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
  margin-bottom: 2rem;
}

.footer-info__address-row {
  font-size: 1.1rem;
  color: #8a7a62;
  letter-spacing: 0.03em;
}

.footer-nav {
  margin-top: 4rem;
}

/* Contentsナビ */
.footer-nav__heading {
  font-size: 2rem;
  font-style: italic;
  color: #d4c4a4;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
}

.footer-nav__link {
  font-size: 1.2rem;
  color: #d4c4a4;
  font-family: "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

.footer-payment__note {
  font-size: 1.2rem;
  color: #d4c4a4;
  margin-top: 2rem;
}

.footer-payment__brands {
  margin-top: 1rem;
}

.footer-payment__card {
  height: 2.2rem;
  width: auto;
}

.footer-payment__emoney {
  font-size: 1.2rem;
  color: #d4c4a4;
  margin-top: 2rem;
}

.footer-recruit {
  margin-top: 4rem;
}

.footer-recruit-text {
  font-size: 1.2rem;
  color: #d4c4a4;
  margin-top: 4rem;
}

/* コピーライト */
.footer-copyright {
  text-align: center;
  padding: 2rem 0;
  font-size: 1.4rem;
  color: #d4c4a4;
}

.footer-main-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .footer-main {
    display: none;
  }

  .footer-copyright {
    display: none;
  }

  .footer-main-sp {
    display: block;
    background-color: #E6DACC;
    text-align: center;
  }

  .footer-main__inner-sp {
    padding: 4rem 2rem 8rem 2rem;
    color: #000;
    font-size: 1.6rem;
  }

  .footer-main__inner-sp-ttl {
    font-size: 1.8rem;
  }

  .footer-main__inner-sp-text {
    font-size: 1.6rem;
    margin-top: 1rem;
  }

  .footer-main__inner-sp-tel {
    margin: auto;
    max-width: 28rem;
    margin-top: 4rem;
  }

  .footer-main__inner-sp-sns {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .footer-main__inner-sp-sns-content {
    max-width: 5.5rem;
  }

  .c-footerList {
    padding: 4rem 0;
  }

  .c-footerList__list {
    margin-top: 4rem;
    flex-direction: column;
    gap: 2rem;
  }

  .c-footerList__list-item {
    width: 100%;
  }
}