@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
  --blk: #000000;
  --wht: #ffffff;
  --gold: #BBA07A;
  --blk-rgb: 0,0,0;
  --gold-rgb: 187,160,122;
}

/* ===================================================================

  LEX TOKYO Common PC Styles

=================================================================== */
body {
  min-width: 1260px;
  font-family: "Noto Sans JP", sans-serif;
}
.ff-marc {
  font-family: "Marcellus", sans-serif !important;
  font-weight: 400;
}
.l-container {
  position: relative;
  width: 100%;
}
.inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
.sp { display: none; }

/*
  Header
=================================================================== */
.l-header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 20px;
}
.l-header.is-scrolled { background: rgba(var(--blk-rgb),.8); }
.l-header h1 {
  width: 80px;
  height: auto;
}

/* Global Navi
------------------------------------------------------------------- */
.gnav > div {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnav ul {
  display: flex;
  align-items: center;
}
.gnav ul li {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  margin: 0 2em 0 0;
}
.gnav ul li a {
  position: relative;
  color: var(--gold);
  text-decoration: none;
}
.gnav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: -5px;
  border-bottom: solid 1px var(--gold);
  transition: all .3s;
}
.gnav ul li a.is-current::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -5px;
  border-bottom: solid 1px var(--gold);
}
.gnav ul li a:hover { color: var(--gold); }
.gnav ul li a:hover::before { width: 100%; }

.menu-trigger {
  position: relative;
  z-index: 4;
  top: -.75em;
  width: 40px;
  height: 24px;
  display: inline-block;
  transition: all .3s;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  visibility: hidden;
}
.menu-trigger::after {
  content: "MENU";
  position: absolute;
  left: 0;
  bottom: -1.75em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: var(--gold);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  display: inline-block;
  background-color: var(--gold);
  transition: all .3s;
}
.menu-trigger span:first-of-type { top: 0; }
.menu-trigger span:nth-of-type(2n) { top: 11px; }
.menu-trigger span:last-of-type { bottom: 0; }
.menu-trigger.is-toggled span:first-of-type {
  transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.is-toggled span:nth-of-type(2n) { opacity: 0; }
.menu-trigger.is-toggled span:last-of-type {
  transform: translateY(-11px) rotate(45deg);
}

.sp-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Select Language */
.select-lang { color: var(--gold); }
.select-lang a {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--gold);
  text-decoration: none;
}

/*
  Section
=================================================================== */
.section {
  position: relative;
  z-index: 1;
  width: 100%;
}
.sec-heading  {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: .075em;
  color: var(--wht);
  text-align: center;
}

/* Booking Button */
.booking-btn {
  width: fit-content;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .2em;
  text-decoration: none;
  color: #aeaeae;
  border-style: solid;
  border-width: 2px;
  border-color: #aeaeae;
  display: block;
  margin: auto;
  padding: 1em 3em;
  transition: all .3s;
}
.booking-btn:hover {
  color: var(--wht);
  border-color: var(--gold);
  background-color: var(--gold);
}

/*
  Footer
=================================================================== */
.l-footer {
  position: relative;
  text-align: center;
  background-color: #121212;
  padding: 50px 0 25px;
}
.fnav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px;
}
.fnav li { margin: 0 20px; }
.fnav li a { color: var(--wht); }
.fnav li a[href^="tel"] { pointer-events: none; }
.icon-line {
  width: 25px;
  height: auto;
}
.copy {
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--wht);
}