@charset "UTF-8";

/* =====================================================
  HEADER
===================================================== */
.tg-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--tg-header-h);
  background: #fff;
  border-bottom: 1px solid var(--tg-line);
  z-index: 1000;
}

.tg-header__inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.tg-header__brand{
  display: flex;
  align-items: center;
}

.tg-logo{
  display: inline-flex;
  align-items: center;
}

.tg-logo__img{
  display: block;
  height: 48px;
  width: auto;
}

/* =====================================================
  MENU BUTTON
===================================================== */
.tg-menu-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.tg-menu-btn__line{
  display: block;
  width: 26px;
  height: 1px;
  background: #222;
}

.tg-menu-btn__label{
  font-family: var(--tg-en);
  font-size: 12px;
  letter-spacing: .18em;
  color: #222;
  line-height: 1;
}

/* =====================================================
  FULLSCREEN MENU
===================================================== */
.tg-menu{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--tg-menu-bg);
  color: var(--tg-menu-text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

.tg-menu.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tg-menu__inner{
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}

.tg-menu__close{
  position: absolute;
  top: 26px;
  right: 24px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: .14em;
  cursor: pointer;
}

.tg-menu__nav{
  width: 100%;
}

.tg-menu__list{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.tg-menu__list a{
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .12em;
  line-height: 1.5;
}

.tg-menu__sub{
  margin-top: 36px;
  text-align: center;
}

.tg-menu__reserve{
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

/* =====================================================
  FOOTER
===================================================== */
.tg-footer{
  padding: 100px 0 60px;
  background: #f7f5f1;
}

.tg-footer .tg-container{
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 40px;
}

.tg-footer__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.tg-footer__col{
  min-width: 0;
}

.tg-footer__title{
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .14em;
}

.tg-footer__text{
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

.tg-footer__text + .tg-footer__text{
  margin-top: 10px;
}

.tg-footer__linkline{
  margin-top: 18px;
}

.tg-footer__linkline a{
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(0,0,0,.4);
  transition: opacity .3s ease, border-color .3s ease;
}

.tg-footer__linkline a:hover{
  opacity: .6;
  border-bottom-color: #000;
}

.tg-footer__nav{
  margin-top: 56px;
}

.tg-footer__list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.tg-footer__copy{
  margin-top: 36px;
  font-size: 12px;
  text-align: center;
  opacity: .6;
}

/* =====================================================
  MOBILE
===================================================== */
@media (max-width:768px){
  .tg-header__inner{
    padding: 0 20px;
  }

  .tg-logo__img{
    height: 38px;
  }

  .tg-menu__close{
    top: 18px;
    right: 20px;
  }

  .tg-footer{
    padding: 80px 0 48px;
  }

  .tg-footer .tg-container{
    padding-inline: 20px;
  }

  .tg-footer__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tg-footer__text{
    font-size: 13px;
    line-height: 1.9;
  }

  .tg-footer__nav{
    margin-top: 40px;
  }

  .tg-footer__list{
    gap: 14px 18px;
  }

  .tg-footer__copy{
    margin-top: 32px;
  }
}