@charset "utf-8";

/* Loading */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #bba546;
  text-align: center;
  color: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading Logo Size */
#splash_logo svg {
  width: 180px;
}

.splashbg1,
.splashbg2 {
  display: none;
}

body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/* Right */
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: #bba546;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* Left */
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: #bba546;
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }

  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

#container {
  opacity: 0;
}

body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Animation */
#mask path {
  fill-opacity: 0;
  transition: fill-opacity .5s;
  fill: none;
  stroke: #fff;
}

#mask.done path {
  fill: #fff;
  fill-opacity: 1;
  stroke: none;
}

.glowAnime span {
  opacity: 0;
}
/* .glowAnime.glow span */
.glowAnime.glow {
  animation: glow_anime_on 1s ease-out forwards;
}
@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}


/*Drop-down Menu*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul ul {
  display: block;
}

nav ul li {
  position: relative;
}

/* Nav link */
nav ul li a {
  display: block;
  text-decoration: none;
  color: #bba546;
  padding: 20px 35px;
  transition: all .3s;
  font-size: 0.84rem;
}

nav ul li li a {
  padding: 10px 35px;
}

@media screen and (max-width:1200px) {
  nav ul li a {
    padding: 20px;
  }
  nav ul li li a {
    padding: 10px 20px;
  }
}

nav ul li a:hover {
  color: #fff;
}

/* Arrow */
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 28px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #d9cd9f;
  border-right: 2px solid #d9cd9f;
  transform: rotate(135deg);
}


@media screen and (max-width:1200px) {
  nav ul li.has-child::before {
    left: 0;
  }
}

nav li.has-child ul {
  position: absolute;
  left: -20px;
  top: 62px;
  z-index: 4;
  background: rgb(170 152 60 / 0.7);
  /* border-radius: 2px; */
  width: 210px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgb(255 255 255 / 0.2);
}

nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: rgb(187 165 70 / 0.94);
  color: #fff;
}


@media screen and (max-width:960px) {
  nav {
    padding: 0;
  }

  nav ul {
    display: block;
  }

  nav ul li a {
    border-bottom: solid 1px rgb(255 255 255 / 0.2);
  }

  nav ul li.has-child::before {
    left: 20px;
    top: 20px;
  }

  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
    top: 20px;
  }

  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}

/*Header Menu*/

/*Nav*/
@media screen and (max-width:960px) {
  #g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgb(187 165 70 / 0.96);
    transition: all .3s;
  }

  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav ul {
    width: 90%;
    margin: 70px auto 0 auto;
  }

  #g-nav ul ul {
    width: 100%;
    margin: 0;
  }

  #g-nav ul li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    transform: none;
  }

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #fff6d6;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
    font-feature-settings: "palt"
  }

  #g-nav li span {
    font-weight: normal;
    letter-spacing: 0em;
  }
}


/*Nav Button*/
.g-nav-openbtn {
  display: none;
}

@media screen and (max-width:960px) {
  .g-nav-openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 48px;
    height: 48px;
  }

  .g-nav-openbtn .openbtn-area {
    transition: all .3s;
  }

  .g-nav-openbtn span {
    display: inline-block;
    transition: all .3s;
    position: absolute;
    left: 12px;
    height: 2px;
    border-radius: 2px;
    background: #d9cd9f;
    width: 50%;
  }

  .g-nav-openbtn span:nth-of-type(1) {
    top: 19px;
  }

  .g-nav-openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .g-nav-openbtn span:nth-of-type(3) {
    top: 27px;
  }

  .g-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }

  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 17px;
    left: 17px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }

  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 29px;
    left: 17px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}

/*Nav BG blur-container*/
/* .background-circle {
  filter: blur(8px);
} */


/*Menu Under Line*/
.nav01c li a {
  position: relative;
}

.nav01c li.current a,
.nav01c li a:hover {
  color: #dcd2a0;
}

.nav01c li a::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: #dcd2a0;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.nav01c li li a::after {
  display: none;
}

.nav01c li.current a::after,
.nav01c li a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width:960px) {
  .nav01c li a::after {
    display: none;
  }
}