@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Ysabeau+Office:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

main{
    overflow-x: hidden;
}
body.nav-open{
    overflow: hidden;
}
img{
    width: 100%;
}
p{
    color:#333;
    /* p */
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}
/* flex */
._flex{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
._flex._reverse{
    flex-direction: row-reverse;
}


/* inner */
._inner{
    max-width: 1080px;
    width: 80%;
    margin: 0 auto;
}

/* button */
._btn{
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
    border-radius: 50px;
    border: 1.5px solid #333;
    max-width: 100%;
    text-decoration: none;
}
._btn::before{
    content: '';
    display: block;
    width: 16px;
    aspect-ratio: 1/1;
    background: #333;
    border-radius: 50%;
}
._btn p{
    color: var(--txt, #333);
    /* p */
    font-family: "Shippori Mincho";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}
._btn:hover{
    background: #333;
    color: #fff;
}
._btn:hover p{
    color: #fff;
}
._btn:hover::before{
    background: #fff;
}

._btn-gold{
    background: #333;
    border: 1.5px solid #c9a36f;
}
._btn-gold p{
    color: #fff;
}
._btn-gold:hover{
    background: #fff;
    border: 1.5px solid #333;
}
._btn-gold:hover p{
    color: #333;
}
._btn-gold::before{
    background:linear-gradient(225deg, #E5CFA7 0%, #6D6047 100%);
}
._btn-gold:hover::before{
    background: linear-gradient(225deg, #E5CFA7 0%, #6D6047 100%);
}

/* italic */

._italic{
    color: #848484;
    font-family: Futura-Light;
    font-style: italic;
    font-weight: 300;
    line-height: 120%; /* 86.4px */
    letter-spacing: 3.6px;
}
@media (max-width: 768px) {
    ._flex{
        flex-direction: column;
    }
    footer ._flex{
      flex-direction: row;
    }
}





/*-------------------------------------
 header navigation
-------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  }
  
  .site-header__inner {
    width: min(90%, 1080px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-branding{
    max-width: 100px;
  }
  .site-logo {
    position: relative;
    font-family: "Futura-Light";
    font-size: clamp(2rem, 1.2rem + 1vw, 2.4rem);
    color: #333;
    text-decoration: none;
    letter-spacing: 0.6em;
    z-index: 99;
  }
  
  .site-header__right{
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 99;
  }
  .nav-toggle {
    height: 48px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    color: #333;
    z-index: 99;
  }
  
  .nav-toggle__bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 18px;
  }
  
  .nav-toggle__bars span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .nav-toggle__label {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
  }
  
  .site-header.is-open .nav-toggle__bars span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .site-header.is-open .nav-toggle__bars span:nth-child(2) {
    opacity: 0;
  }
  
  .site-header.is-open .nav-toggle__bars span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .global-nav {
    position: fixed;
    inset: 0;
    background: rgba(246, 246, 246, 0.95);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    animation: navSlideIn 0.4s ease forwards;
  }
  
  .global-nav[hidden] {
    display: none !important;
  }
  
  @keyframes navSlideIn {
    from {
      opacity: 0;
      transform: translateY(-10%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .global-nav__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: rgba(246, 246, 246, 0.95);
    min-height: 300px;
  }
  
  .global-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
    padding:48px 10%  ;
    max-height: 300px;
  }
  
  .global-nav__list a {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #333;
    font-family: Futura-Light;
    font-style: italic;
    font-weight: 300;
    line-height: 120%; /* 86.4px */
    letter-spacing: 3.6px;
    position: relative;
    text-decoration: none;
    padding-left: 12px;
  }
  .global-nav__list a::before{
    content: '';
    display: block;
    width: 1px;
    height: 70%;
    background: var(--main, linear-gradient(225deg, #E5CFA7 0%, #6D6047 100%));
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .global-nav__cta a{
    min-width: 148px;
  }
  .global-nav__cta  ._btn{
    height: 48px;
  }
  .global-nav__cta.sp-only{
    display: none;
    margin-top: 24px;
  }
  @media (max-width: 768px) {
    .site-header__inner {
      width: 90%;
    }
    .pc-only{
      display: none;
    }
  
    .global-nav__list a {
      letter-spacing: 0.1em;
    }
    .global-nav__cta.sp-only{
      display: block;
      width: 90%;
      margin: 0 auto 40px;
    }
  }




  /* -------------------------------------
 footer query
-------------------------------------*/
footer{
  padding: 0 0 16px;
}
footer ._inner{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 80px;
}
.footer-map{
  width: 50%;
}
.footer-map iframe{
  width: 100%;
  height: 100%;
}
.footer-info{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}
.footer-info h2{
  color: var(--txt, #333);
  font-family: Futura-Light;
  font-size: clamp(2rem, 1.757rem + 1.04vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 120%; /* 57.6px */
  letter-spacing: 2.4px;
  margin-bottom: 0;
}
.footer-info-box{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-info-box-title{
  width: fit-content;
  padding: 0 8px;
  background: #333;
}
.footer-info-box-title p{
  color: #fff;
}
.copyright{
  text-align: center;
  color: #333;
  font-family: "Shippori Mincho";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  margin-top: 80px;
}


@media (max-width: 768px) {
  footer ._inner{
      flex-direction: column;
  }
  .footer-map{
      width: 100%;
  }
  .footer-info{
      width: 100%;
  }
}
