@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  background: #000;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
a {
  color: #fff;
}

/* -------------------------------------------

class

------------------------------------------- */
.heading-1 {
  line-height: 1;
  margin-bottom: 4rem;
  text-align: center;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 3rem;
  background: url(../img/ornament-ttl-1.png) no-repeat center top, url(../img/ornament-ttl-2.png) no-repeat center bottom;
  background-size: 10.5rem auto;
  padding: 3rem 0 2.7rem 0;
}

@media screen and (max-width: 768px) {
  .heading-1 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}
.base-width {
  width: 88rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .base-width {
    width: auto;
  }
}
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}
#page-top a {
  background: #ba9625;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

/* display */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
  background: #000;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
}

.gnav-sp nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 1.6rem;
  text-align: center;
}

.gnav-sp-menu li span {
  display: block;
}

.gnav-sp-menu li a {
  font-family: "Cinzel", serif;
  font-weight: 500;
  display: block;
  padding: 1rem 0;
  white-space: nowrap;
}

.gnav-sp .sns {
  margin-bottom: 3rem;
}

/* toggle */
.toggle-btn {
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
}

.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 1.3rem;
  width: 3.4rem;
  height: 0.3rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.7rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.7rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(1rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-1rem) rotate(45deg);
}

/* -------------------------------------------

fade

------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(2rem);
}

.fade.is-animation {
  animation: fade 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=common.css.map */