@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/body-bg.jpg) no-repeat center/cover;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

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

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

style

------------------------------------------- */
/* heading */
.heading-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/heading-deco-1.png) no-repeat center top, url(../img/heading-deco-2.png) no-repeat center bottom;
  background-size: auto 2rem;
  color: #dc7882;
  padding: 3rem 0 3.2rem 0;
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 4rem;
}
.heading-1 span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heading-1 span i {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

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

hamburger

------------------------------------------- */
.gnav-sp {
  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::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/body-bg.jpg) no-repeat center/cover;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

/* wrap */
.gnav-sp .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .gnav-sp-menu li {
    font-size: 1.7rem;
  }
}
.gnav-sp-menu li span {
  display: block;
}

.gnav-sp-menu li a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  white-space: nowrap;
}

.gnav-sp-menu li a::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.5rem;
}

.gnav-sp-menu li:nth-child(1) a::before {
  background: url(../img/gnav-atten-1.png) no-repeat center/contain;
}

.gnav-sp-menu li:nth-child(2) a::before {
  background: url(../img/gnav-atten-3.png) no-repeat center/contain;
}

.gnav-sp-menu li:nth-child(3) a::before {
  background: url(../img/gnav-atten-4.png) no-repeat center/contain;
}

.gnav-sp-menu li:nth-child(4) a::before {
  background: url(../img/gnav-atten-5.png) no-repeat center/contain;
}

.gnav-sp-menu li:nth-child(5) a::before {
  background: url(../img/gnav-atten-6.png) no-repeat center/contain;
}

.gnav-sp-menu li:nth-child(6) a::before {
  background: url(../img/gnav-atten-7.png) no-repeat center/contain;
}

.gnav-sp-menu li:nth-child(7) a::before {
  background: url(../img/gnav-atten-8.png) no-repeat center/contain;
}

/* toggle */
.toggle-btn {
  background: transparent;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  right: calc((100% - 37.6rem) / 2);
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
}

@media screen and (max-width: 768px) {
  .toggle-btn {
    top: 0;
    right: 0;
    position: fixed;
    background: #dc7882;
  }
}
.toggle-btn span {
  background: #dc7882;
  display: block;
  position: absolute;
  left: 1.6rem;
  width: 2.8rem;
  height: 0.3rem;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  .toggle-btn span {
    background: #fff;
  }
}
.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

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

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

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

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

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

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

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

display

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

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 */