@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;600&family=Oswald:wght@200..700&display=swap');
/* ==========================================================
   HEADER
========================================================== */
:root {
  --header-bg: #fcfbf8;
  --text: #1b150e;
  --gold: #b6953c;
  --red: #e8081b;
  --shadow: 0 3px 12px rgba(0, 0, 0, .13);
  --transition: .3s ease;
  --max-width: 1000px;
}
/* ==========================================================
   Header
========================================================== */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: var(--header-bg);
  box-shadow: var(--shadow);
  z-index: 999;
}
/* ==========================================================
   Inner
========================================================== */
.headerInner {
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ==========================================================
   Logo
========================================================== */
.siteLogo {
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
  width: 35%;
  max-width: 350px;
}
.siteLogo a {
  display: block;
}
.siteLogo img {
  display: block;
  width: 100%;
  height: auto;
}
/* ==========================================================
   Navigation
========================================================== */
.globalNav {
  margin-left: auto;
}
.gnav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 200;
}
.gnav > li {
  position: relative;
}
/* ==========================================================
   Main Link
========================================================== */
.gnav > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.gnav > li > a:hover {
  color: var(--red);
}
/* underline */
.gnav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: .3s;
}
.gnav > li > a:hover::after {
  width: 100%;
}
.gnav > li.navX > a{
  font-weight: 400;
  font-size: 1.5em;
  background-color: #000;
  color: #fff;
  padding: 3px 0 3px 3px;
  border-radius: 5px;
}
.gnav > li.navX > a:hover{
  background-color: var(--red);
}
.gnav > li.navX > a::after{
  background: none;
  transition: 0s;
}
.gnav > li.navX > a:hover::after{
  background: none;
  transition: 0s;
}
@media(max-width:810px) {
  .gnav > li.navX > a{
    margin: 0 auto;
    padding: 3px 0 3px 3px;
    border-radius: 5px;
    width: 1em;
  }
.gnav > li.navX > a:hover{
  background-color: var(--red);
}
.gnav > li.navX > a::after{
  background: none;
  transition: 0s;
}
.gnav > li.navX > a:hover::after{
  background: none;
  transition: 0s;
}
}
/* ==========================================================
   Arrow
========================================================== */
.arrow {
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-top: -5px;
  transition: .3s;
}
/* ==========================================================
   Dropdown
========================================================== */
.subMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 220px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
}
.hasChild:hover > .subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.subMenu li {
  margin: 0;
}
.subMenu a {
  display: block;
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  transition: .25s;
}
.subMenu a:hover {
  background: #f7f6f2;
  color: var(--red);
}
/* ==========================================================
   Hamburger
========================================================== */
.menuButton {
  display: none;
  position: relative;
  width: 54px;
  height: 54px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10000;
}
.menuButton span, .menuButton::before, .menuButton::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 30px;
  height: 2px;
  background: var(--text);
  transition: .35s;
}
.menuButton::before {
  top: 17px;
}
.menuButton span {
  top: 26px;
}
.menuButton::after {
  top: 35px;
}
/* open */
.menuButton.is-open span {
  opacity: 0;
}
.menuButton.is-open::before {
  top: 26px;
  transform: rotate(45deg);
}
.menuButton.is-open::after {
  top: 26px;
  transform: rotate(-45deg);
}
/* ==========================================================
   Mobile Layout
========================================================== */
@media screen and (max-width:810px) {
  .headerInner {
    width: calc(100% - 24px);
  }
  .siteLogo {
    width: clamp(180px, 45vw, 260px);
  }
  .siteLogo img {
    width: 100%;
  }
  /* -------------------------
       Hamburger
    ------------------------- */
  .menuButton {
    display: block;
  }
  /* -------------------------
       Navigation
    ------------------------- */
  .globalNav {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .35s;
  }
  .globalNav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .gnav {
    width: 100%;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .gnav > li {
    width: 100%;
  }
  .gnav > li > a {
    justify-content: center;
    font-size: 26px;
    padding: 0;
  }
  .gnav > li > a::after {
    display: none;
  }
  /* -------------------------
       PROJECT
    ------------------------- */
  .arrow {
    display: none;
  }
  .subMenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: auto;
    padding: 12px 0 0;
    margin: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
  .hasChild:hover > .subMenu {
    transform: none;
  }
  .subMenu li {
    margin: 12px 0;
  }
  .subMenu a {
    padding: 0;
    font-size: 15px;
    color: #666;
  }
  .subMenu a:hover {
    background: none;
  }
}
/* ==========================================================
   Desktop Only
========================================================== */
@media screen and (min-width:811px) {
  .menuButton {
    display: none;
  }
}
/* ==========================================================
   Body Lock
========================================================== */
body.menu-open {
  overflow: hidden;
}