@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Goblin+One&family=IBM+Plex+Sans+JP:wght@400;600&display=swap');
/* ==========================================================
   HEADER
========================================================== */
:root {
  --header-bg: #fcfbf8;
  --text: #1b150e;
  --gold: #b1913e;
  --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: 0;
  background-image: url("../img/bg02.jpg");
  box-shadow: var(--shadow);
  z-index: 999;
  height: 60px;
}
/* ==========================================================
   Inner
========================================================== */
.headerInner {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto;
}
/* ==========================================================
   Navigation
========================================================== */
.globalNav {}
.gnav {
  margin: 0;
  padding: 15px 0;
  font-family: "Goblin One", serif;
  font-weight: 400;
  text-align: center;
}
.gnav li {
  display: inline-block;
  margin: 0 6px;
  padding: 0;
}

.gnav li a {
  padding: 20px 0 5px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.gnav li a:hover {
  color: var(--gold);
}
/* underline */
.gnav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .3s;
}
.gnav li a:hover::after {
  width: 100%;
}
.gnav .snsBtn{
  padding: 0;
}
.gnav .snsBtn li{
  margin: 0;
  padding: 0;
}
.gnav .snsBtn li a{
  font-weight: 400;
  font-size: 0.5em;
  background-color: #000;
  color: #fff;
  padding: 3px;
  border-radius: 3px;
}
.gnav .snsBtn li a:hover{
  background-color: var(--gold);
}
.gnav .snsBtn li a:hover::after {
  height: 0;
}
/* ==========================================================
   Hamburger
========================================================== */
#menuButton {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
#menuButton.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menuButton {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 54px;
  height: 54px;
  border: none;
  background: rgba(0,0,0,.8);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10000;
}
button.menuButton:hover{
  background: rgba(0,0,0,.8);
  color: #b1913e;
}
.menuButton span, .menuButton::before, .menuButton::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 30px;
  height: 2px;
  background: var(--gold);
  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) {
  .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    z-index: 999;
    height: 60px;
  }
  .headerInner {
    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%;
    text-align: center;
  }
  .gnav li {
    width: 100%;
    padding: 10px 0;
  }
  .gnav li a {
    justify-content: center;
    font-size: 20px;
    padding: 0;
  }
  .gnav li a::after {
    display: none;
  }
  .snsBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; /* アイコン間の余白 */
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
  }
  .snsBtn li {
    margin: 0;
    width: 1em;
  }
  .snsBtn li a{
    width: 1em;
  }
  .snsBtn li a:hover{
    background-color: var(--gold);
  }
  .snsBtn li a:hover::after {
    height: 0;
  }
}
/* ==========================================================
   Desktop Only
========================================================== */
@media screen and (min-width:811px) {
  .menuButton {
    display: none;
  }
}
/* ==========================================================
   Body Lock
========================================================== */
body.menu-open {
  overflow: hidden;
}