@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700&family=Sorts+Mill+Goudy:ital@0;1&display=swap");
:root {
  --color-bg: #292828;
  --color-beige: #d3cdb6;
  --color-gold: #cda700;
  --color-white: #ffffff;
  --color-brown: #331e07;
  --color-brown-light: #d3cdb6;
  --font-mincho: 'Zen Old Mincho', serif;
  --font-gothic: 'Zen Kaku Gothic Antique', sans-serif;
  --font-goudy: 'Sorts Mill Goudy', serif;
  --scroll-offset: 120px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: var(--scroll-offset);
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-gothic);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

ul,
ol,
dl {
  list-style: none;
}

dt,
dd {
  margin: 0;
}

figure {
  margin: 0;
}

address {
  font-style: normal;
}

hr {
  border: none;
}

small {
  font-size: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.85);
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.header--scrolled::before {
  opacity: 1;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 35px 40px;
}
.header__nav {
  pointer-events: auto;
}
.header__nav-list {
  display: flex;
  gap: 31px;
  list-style: none;
}
.header__nav-item:not(.btn_reserve) a {
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2.7px;
  line-height: 20px;
  padding: 20px 5px;
  pointer-events: auto;
  transition: margin-top 0.5s;
}
.header__nav-item:not(.btn_reserve) a:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0;
  margin-top: 13px;
  background: var(--color-gold);
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.header__nav-item:not(.btn_reserve) a:hover {
  margin-top: 10px;
  opacity: 1;
}
.header__nav-item:not(.btn_reserve) a:hover::after {
  height: 50px;
}
.header__nav-item:not(.btn_reserve).active a {
  margin-top: 10px;
  opacity: 1;
}
.header__nav-item:not(.btn_reserve).active a::after {
  height: 50px;
}
.header__nav-item.btn_reserve {
  height: 170px;
  border: 1px solid var(--color-white);
  border-radius: 80px;
  position: relative;
}
.header__nav-item.btn_reserve a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.85px;
  line-height: 20px;
  padding: 20px 5px;
  pointer-events: auto;
}
.header__nav-item.btn_reserve a:hover {
  opacity: 1;
}
.header__logo {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 42px;
  transform: translateX(-50%);
}
.header__logo img {
  width: 50px;
  height: auto;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.header__lang {
  min-width: 170px;
  font-family: var(--font-goudy);
  font-size: 10px;
  letter-spacing: 0;
  padding: 8px 16px;
  border: 1px solid var(--color-white);
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.header__lang-triangle {
  width: 7px;
  height: 7px;
}

.footer {
  position: relative;
  overflow: hidden;
}
.footer__bg {
  position: absolute;
  inset: 0;
  background: url("../images/footer-bg.jpg") center/cover no-repeat;
}
.footer__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer__inner::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background: rgba(51, 30, 7, 0.9);
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}
.footer__col {
  position: relative;
  padding-top: 93px;
}
.footer__col--info {
  padding-left: 77px;
  padding-top: 55px;
  padding-bottom: 44px;
}
.footer__col--nav {
  border-left: 1px solid var(--color-white);
  display: flex;
  justify-content: center;
}
.footer__col--reservation {
  border-left: 1px solid var(--color-white);
  display: flex;
  align-items: flex-start;
  padding-left: 96px;
  padding-bottom: 44px;
  gap: 20px;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 5px;
}
.footer__logo img {
  width: 116px;
  height: auto;
}
.footer__logo-deco {
  margin-bottom: 12px;
}
.footer__logo-deco img {
  width: 30px;
  height: auto;
}
.footer__address {
  font-family: var(--font-mincho);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.footer__phone-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.footer__phone-number {
  font-family: var(--font-goudy);
  font-size: 25px;
  color: var(--color-white);
  letter-spacing: 9px;
}
.footer__phone-divider {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgb(211, 205, 182);
}
.footer__phone-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.footer__note {
  font-family: var(--font-gothic);
  font-size: 12px;
  line-height: 1.8;
}
.footer__bottom {
  margin-top: 80px;
}
.footer__links {
  font-family: var(--font-gothic);
  font-size: 12px;
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.footer__copyright {
  font-family: var(--font-goudy);
  font-size: 10px;
}
.footer__nav {
  writing-mode: vertical-rl;
  gap: 46px;
}
.footer__nav p {
  margin-block: 40px;
  letter-spacing: 0.1em;
}
.footer__nav-item {
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.footer__nav-item--reservation {
  writing-mode: vertical-rl;
  margin-left: 10px;
}
.footer__reservation-buttons {
  display: flex;
  gap: 40px;
  list-style: none;
}
.footer__reservation-btn {
  writing-mode: vertical-rl;
  width: 50px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gothic);
  border-radius: 100px;
  font-size: 14px;
  gap: 12px;
  transition: opacity 0.3s;
  position: relative;
}
.footer__reservation-btn--filled {
  background: var(--color-white);
  color: #555;
}
.footer__reservation-btn--filled:hover {
  opacity: 0.8;
  color: #555;
}
.footer__reservation-btn--outline {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.footer__reservation-btn--outline:hover {
  opacity: 0.8;
  color: var(--color-white);
}
.footer__reservation-btn img {
  position: absolute;
  bottom: 25px;
}
.footer__reservation-btn-icon {
  width: 12px;
  height: 12px;
}

.header__hamburger {
  display: none;
}

.global-menu {
  display: none;
}

.vertical-text {
  writing-mode: vertical-rl;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn_arrow .arrow {
  display: flex;
  width: 12px;
  height: 12px;
  overflow: hidden;
  position: relative;
}
.btn_arrow .arrow img {
  position: relative;
  transition: all 0.3s;
}
.btn_arrow .arrow img:last-child {
  top: 12px;
  left: -12px;
}
.btn_arrow:hover .arrow img:first-child {
  top: -12px;
  left: 24px;
}
.btn_arrow:hover .arrow img:last-child {
  top: 0;
  left: 12px;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --scroll-offset: 60px;
  }
  .header__inner {
    padding-bottom: 90px;
  }
  .header__nav-list {
    display: none;
  }
  .header__right {
    display: none;
  }
  .header__logo {
    top: 30px;
  }
  .header__logo img {
    width: 40px;
  }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 55px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
    position: relative;
    top: -5px;
    right: -17px;
    z-index: 101;
    transform: rotate(-9deg);
  }
  .header__hamburger-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-white);
    transition: transform 0.3s, opacity 0.3s;
  }
  .global-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--color-bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
  }
  .global-menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .global-menu__inner {
    padding: 35px 25px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .global-menu__close {
    align-self: flex-end;
    width: 55px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
  }
  .global-menu__close span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    top: 50%;
    left: 0;
  }
  .global-menu__nav {
    margin-top: 80px;
  }
  .global-menu__nav-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 0;
    list-style: none;
  }
  .global-menu__nav-item {
    writing-mode: vertical-rl;
    font-family: var(--font-mincho);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.85px;
    line-height: 20px;
    padding: 0 18px;
  }
  .global-menu__nav-item::before {
    content: "・";
    display: inline-block;
  }
  .global-menu__reservation {
    margin-top: 40px;
  }
  .global-menu__reservation-title {
    font-family: var(--font-mincho);
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
  }
  .global-menu__phone-label {
    font-family: var(--font-gothic);
    font-size: 14px;
    padding-left: 20px;
  }
  .global-menu__phone-number {
    font-family: var(--font-goudy);
    font-size: 30px;
    letter-spacing: 9px;
    padding-left: 20px;
    margin-bottom: 24px;
  }
  .global-menu__phone-number a {
    color: var(--color-white);
  }
  .global-menu__online-label {
    font-family: var(--font-gothic);
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 16px;
  }
  .global-menu__buttons {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }
  .global-menu__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 300px;
    height: 60px;
    border: 1px solid var(--color-white);
    border-radius: 100px;
    font-family: var(--font-gothic);
    font-size: 14px;
    color: var(--color-white);
    position: relative;
  }
  .global-menu__btn img {
    position: absolute;
    right: 24px;
  }
  .global-menu__secretary {
    margin-top: 16px;
    padding-left: 20px;
  }
  .global-menu__secretary-title {
    font-family: var(--font-gothic);
    font-size: 14px;
    margin-bottom: 8px;
  }
  .global-menu__secretary-text {
    font-family: var(--font-gothic);
    font-size: 13px;
    line-height: 25px;
  }
  .global-menu__secretary-text a {
    border-bottom: 1px solid var(--color-white);
  }
  .global-menu__secretary-text a img.reservation-section__btn-icon {
    display: inline-block;
    position: unset;
    margin: 0 0 0 0.5em;
    transform: translateY(1px);
  }
  .global-menu__secretary-line {
    width: 39px;
    height: 1px;
    background: var(--color-white);
    border: none;
    margin-top: 16px;
  }
  .global-menu__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 170px;
    height: 32px;
    border: 1px solid var(--color-white);
    border-radius: 80px;
    font-family: var(--font-goudy);
    font-size: 10px;
    letter-spacing: 3px;
    margin: 40px auto 0;
  }
  .global-menu__copyright {
    font-family: var(--font-goudy);
    font-size: 10px;
    letter-spacing: 3px;
    margin-top: auto;
    padding-top: 80px;
  }
  body.menu-open {
    overflow: hidden;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
@media (max-width: 1200px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    gap: 5%;
    width: 100%;
  }
  .footer__nav p {
    margin-block: 0;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    height: auto;
    margin-block: 76px;
    border-top: 1px solid rgba(211, 205, 182, 0.25);
    border-bottom: none;
  }
  .footer__col--info {
    padding: 40px 10%;
    border-top: 1px solid rgba(211, 205, 182, 0.25);
    border-bottom: none;
    order: 3;
  }
  .footer__col--nav {
    border-left: none;
    border-bottom: 1px solid rgba(211, 205, 182, 0.25);
    padding: 60px 20px;
    justify-content: center;
  }
  .footer__col--reservation {
    border-left: none;
    padding: 60px 20px;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateX(20px);
  }
  .footer__reservation-buttons {
    flex-wrap: wrap;
  }
  .footer__reservation-btn {
    letter-spacing: 0.3em;
  }
  .footer__reservation-btn span {
    margin-inline: 2.4em auto;
  }
}/*# sourceMappingURL=style.css.map */