/* ========================================
common
======================================== */

/* header */
.site-header{
  position:fixed;
  top:18px;
  left:0;
  width:100%;
  z-index:9999;
  padding:0 20px;
}

.header-inner{
  width:min(92%, 1240px);
  margin:auto;
  min-height:92px;
  padding:14px 26px;
  display:flex;
  align-items:center;
  gap:24px;
}

.site-logo{
  flex:0 0 auto;
}

.site-logo img{
  width:auto;
  height:58px;
  display:block;
}

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

.header-nav-list{
  display:flex;
  align-items:center;
  gap:34px;
}

.header-nav-item a{
  font-weight:500;
  color:#5f4636;
  position:relative;
}

.header-nav-item a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#c86a96;
  transition:.3s;
}

.header-nav-item a:hover::after{
  width:100%;
}

.header-cta{
  margin-left:18px;
}

/* hamburger */
.hamburger{
  display:none;
  border:none;
  background:none;
  cursor:pointer;
  width:44px;
  height:44px;
  position:relative;
}

.hamburger span{
  position:absolute;
  left:9px;
  width:26px;
  height:2px;
  background:#5f4636;
  transition:.3s;
}

.hamburger span:nth-child(1){
  top:13px;
}

.hamburger span:nth-child(2){
  top:21px;
}

.hamburger span:nth-child(3){
  top:29px;
}

/* mobile nav */
.mobile-nav{
  position:fixed;
  inset:0;
  z-index:9998;
  display:none;
  padding:100px 20px 30px;
  background:rgba(255,255,255,.35);
  backdrop-filter:blur(8px);
}

.mobile-nav-inner{
  width:min(92%, 600px);
  margin:auto;
  padding:40px;
}

.mobile-nav-list li + li{
  margin-top:20px;
}

.mobile-nav-list a{
  display:block;
  font-size:18px;
  font-weight:700;
  padding:12px 0;
}

.mobile-nav-cta{
  margin-top:30px;
}

/* footer */
.site-footer{
  padding:0 0 40px;
}

.footer-inner{
  padding:60px 50px;
  text-align:center;
}

.footer-logo img{
  height:58px;
  width:auto;
}

.footer-logo p{
  margin-top:10px;
  color:#8a776a;
}

.footer-nav{
  margin-top:30px;
}

.footer-nav-list{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.footer-nav-list a{
  font-weight:500;
}

.copyright{
  margin-top:34px;
  font-size:14px;
  color:#8a776a;
}

/* utility */
.left{
  text-align:left;
}

.mini-title{
  color:#c86a96;
  font-weight:700;
  margin-bottom:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* animation */
.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:.8s cubic-bezier(.2,.8,.2,1);
}

.fade-up.is-show{
  opacity:1;
  transform:none;
}

/* mobile nav open */
.mobile-nav.is-open{
  display:block;
}

.hamburger.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2){
  opacity:0;
}

.hamburger.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}