/*---------------------------------------------------------
ヘッダー PC
---------------------------------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: background .5s ease-in-out;
      height: 6vw;
}

.site-header.is-scrolled {
  background: linear-gradient(
    rgb(255, 255, 255),
    rgba(255, 255, 255, .15)
  );
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-logo {
  display: block;
  width: 18vw;
  flex-shrink: 0;
}

.site-logo img {
  width: 100%;
  height: auto;
  max-height: 4vw;
  object-fit: contain;
  object-position: left center;
}

.global-nav {
  margin-left: auto;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 1.65vw;
}

.global-nav__list a {
      display: flex;
    align-items: center;
    min-height: 3.88vw;
    color: var(--color-text);
    font-size: 1.05vw;
    font-weight: 500;
    white-space: nowrap;
    font-family: var(--font-serif);
}


.global-nav__reservation {
  margin-left: 1.5vw;
}

.global-nav__reservation a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.31vw;
  padding: .63vw 1.5vw;
  border: .06vw solid rgba(78, 85, 89, .14);
  border-radius: 100vw;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 .44vw 1.25vw rgba(68, 83, 89, .1);
  font-family: var(--font-serif);
  font-size: 1vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .05vw;
  white-space: nowrap;
}

.global-nav__reservation a:hover,
.header-line:hover {
  opacity: 1;
  transform: translateY(-.1vw);
  box-shadow: 0 .6vw 1.4vw rgba(68, 83, 89, .15);
}

.header-line {
  display: flex;
  align-items: center;
  gap: .56vw;
  min-height: 3.31vw;
  margin-left: 2.2vw;
  padding: .63vw 1.38vw;
      border-radius: 10vw;
  background: var(--color-line);
  color: var(--color-white);
  box-shadow: 0 .44vw 1.25vw rgba(38, 166, 73, .17);
  font-size: 1vw;
  font-weight: 500;
  white-space: nowrap;
   font-family: var(--font-serif);
}

.header-line .line-mark {
    width: 2vw;
    height: 2vw;
    font-size: .65vw;
}
/*---------------------------------------------------------
モバイルナビ 基本
---------------------------------------------------------*/
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 990;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s, visibility 0s linear .35s;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 46, 50, .32);
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 88vw;
  height: 100dvh;
  overflow-y: auto;
  background: rgba(255, 255, 255, .99);
  transform: translateX(100%);
  transition: transform .45s var(--ease-base);
}

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

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__logo {
  display: block;
}

.mobile-nav__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.mobile-nav__label {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-weight: 500;
}

.mobile-nav__list a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-weight: 500;
}

.mobile-nav__list a::after {
  position: absolute;
  top: 0;
  right: .5vw;
  bottom: 0;
  width: .6vw;
  height: .6vw;
  margin: auto;
  content: "";
  border-top: .12vw solid currentColor;
  border-right: .12vw solid currentColor;
  transform: rotate(45deg);
}

.mobile-nav__actions {
  display: grid;
}

.mobile-nav__line,
.mobile-nav__form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-serif);
  font-weight: 500;
  text-align: center;
}

.mobile-nav__line {
  background: var(--color-line);
  color: var(--color-white);
}

.mobile-nav__form {
  border: .06vw solid #aab1b4;
  background: #fff;
  color: var(--color-text);
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: .06vw solid #cfd4d6;
  border-radius: 50%;
  background: #fff;
  color: var(--color-text-sub);
  font-family: var(--font-serif);
  font-weight: 400;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
}

/*---------------------------------------------------------
フッター PC
---------------------------------------------------------*/

.site-footer {
  background: #fff;
}

.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-block: 2.13vw 1.75vw;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: block;
  width: 13.75vw;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__instagram {
  position: relative;
  display: inline-block;
  margin-top: .9vw;
  padding-bottom: .25vw;
  color: var(--color-text-sub);
  font-family: var(--font-en);
  font-size: 1.5vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1vw;
  text-decoration: none;
}

.site-footer__copyright {
  margin: 0;
  color: var(--color-accent);
  font-size: .7vw;
  text-align: right;
}

@media only screen and (min-width:744px) {
  .site-footer__inner {
    position: relative;
  }

  .site-footer__brand::after {
    content: "";
    display: block;
    height: 2.35vw;
  }

  .site-footer__instagram {
    position: absolute;
    right: 0;
    bottom: 4.7vw;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
  }

  .site-footer__instagram::before {
    content: "";
    display: block;
    width: 1.4vw;
    height: 1.4vw;
    margin-right: .45vw;
    background: url("../images/Instagram-logo-gray.svg") center / contain no-repeat;
    flex: 0 0 auto;
  }
}

.top-btn {
  position: fixed;
  right: 1.38vw;
  bottom: 1.38vw;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.88vw;
  height: 2.88vw;
  border: .06vw solid #aab1b4;
  background: rgba(255, 255, 255, .9);
  color: var(--color-text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5vw);
  transition:
    opacity .25s,
    visibility .25s,
    transform .25s;
}

.top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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


/*---------------------------------------------------------
ヘッダー・フッター SP
---------------------------------------------------------*/

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

     .site-header {
    position: absolute;
    height: var(--header-height-sp);
    background: transparent;
  }

  .site-header.is-scrolled {
    background: transparent;
  }

  .site-header__inner {
    width: 90vw;
  }

  .site-logo {
    width: 44vw;
  }

  .site-logo img {
    max-height: 12.8vw;
  }

  .menu-toggle {
    position: relative;
    width: 11.3vw;
    height: 11.3vw;
    margin-left: auto;
  }

  .menu-toggle span {
    position: absolute;
    left: 2.1vw;
    width: 7.2vw;
    height: .3vw;
    background: var(--color-main);
    transition:
      top .35s,
      opacity .35s,
      transform .35s;
  }

  .menu-toggle span:nth-child(1) {
    top: 3.1vw;
  }

  .menu-toggle span:nth-child(2) {
    top: 5.4vw;
  }

  .menu-toggle span:nth-child(3) {
    top: 7.7vw;
  }

  html.nav-open .menu-toggle span:nth-child(1) {
    top: 5.4vw;
    transform: rotate(45deg);
  }

  html.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  html.nav-open .menu-toggle span:nth-child(3) {
    top: 5.4vw;
    transform: rotate(-45deg);
  }

  .mobile-nav__panel {
    width: 88vw;
    padding: 6vw 6vw calc(7vw + env(safe-area-inset-bottom));
  }

  .mobile-nav__head {
    margin-bottom: 6vw;
  }

  .mobile-nav__logo {
    width: 38vw;
  }

  .mobile-nav__logo img {
    width: 100%;
    max-height: 11vw;
  }

  .mobile-nav__close {
    width: 9vw;
    height: 9vw;
    border-width: .25vw;
    font-size: 5vw;
    line-height: 1;
  }

  .mobile-nav__label {
            margin-bottom: 2.5vw;
        font-size: 4vw;
        letter-spacing: .35vw;
  }

  .mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: .5vw;
  }

  .mobile-nav__list li {
    border-bottom: .25vw solid #e7e9ea;
  }

  .mobile-nav__list a {
    min-height: 11vw;
        padding: 2vw 6vw 2vw 0;
        font-size: 4vw;
        text-align: left;
  }

  .mobile-nav__list a::after {
    right: 1vw;
    width: 1.5vw;
    height: 1.5vw;
    border-top-width: .3vw;
    border-right-width: .3vw;
  }

  .mobile-nav__actions {
    gap: 2.5vw;
    margin-top: 6vw;
  }

  .mobile-nav__line,
  .mobile-nav__form {
    min-height: 13vw;
    padding: 2.5vw 5vw;
    border-radius: 100vw;
    font-size: 4vw;
    line-height: 1.4;
  }

  .mobile-nav__line {
    gap: 2vw;
  }

  .mobile-nav__line .line-mark {
    width: 7vw;
    height: 7vw;
    font-size: 2.2vw;
  }

  .mobile-nav__form {
    gap: 2vw;
    border-width: .25vw;
  }

  .mobile-nav__form .mail-mark {
    font-size: 4vw;
  }

  .site-footer {
    border-top-width: .25vw;
  }

  .site-footer__inner {
    display: block;
    padding-block: 8vw calc(31vw + env(safe-area-inset-bottom));
    text-align: center;
  }

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

  .site-footer__logo {
    width: 44vw;
    margin: 0 auto;
  }

  .site-footer__instagram {
    display: inline-flex;
    align-items: center;
    margin-top: 4vw;
    padding-bottom: .8vw;
    font-size: 5vw;
    letter-spacing: .2vw;
  }

  .site-footer__instagram::before {
    content: "";
    display: block;
    width: 4.2vw;
    height: 4.2vw;
    margin-right: 1.5vw;
    background: url("../images/Instagram-logo-gray.svg") center / contain no-repeat;
    flex: 0 0 auto;
  }

  .site-footer__copyright {
    margin-top: 5vw;
    font-size: 3vw;
    text-align: center;
  }

  .top-btn {
    display: none;
  }

  .sp-fixed-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 950;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 12vw);
    width: 100%;
    height: calc(24vw + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    box-shadow: 0 -1.5vw 5.6vw rgba(31, 39, 43, .09);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity .2s,
      visibility 0s linear .2s;
  }

  .sp-fixed-menu.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  html.nav-open .sp-fixed-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .sp-fixed-menu a,
  .sp-fixed-menu button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 12vw;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-size: 3.7vw;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }

  .sp-fixed-menu a:nth-child(1),
  .sp-fixed-menu a:nth-child(2) {
    border-bottom: .25vw solid var(--color-border);
  }

  .sp-fixed-menu a:nth-child(1),
  .sp-fixed-menu a:nth-child(3) {
    border-right: .25vw solid var(--color-border);
  }

  .sp-fixed-menu .sp-fixed-menu__line {
    background: var(--color-line);
    color: var(--color-white);
  }

}