body {
  cursor: none;
  position: relative;
  background-color: #000;
  width: 100%;
  overflow-x: hidden;
}
#background-img {
  position: fixed;
  height: 100%;
  width: 100%;
  bottom: 0%;
  opacity: 0.3;
}
.corsor-wrapper {
  position: relative;
}
.corsor {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 3px #fff;
  background-color: #fff;
  transform: translate(5%, 5%);
  text-align: center;
  justify-content: center;
  z-index: 99;
  pointer-events: none;
  transform-origin: center;
  transition: 0.2s;
  transition-property: all;
  mix-blend-mode: difference;
  opacity: 0;
}
.hover {
  height: 80px;
  transform: translate(-15%, -15%);
  width: 80px;
}
h1 {
  font-family: 'Marcellus', serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
}
.img {
  width: 100%;
}
.img-hover-box {
  overflow: hidden;
  background-color: #000;
}
#top {
  position: relative;
  width: 100%;
}
#hamburger {
  display: block;
  position: fixed;
  top: 22px;
  right: 25px;
  width: 50px;
  height: 40px;
  z-index: 5;
}
.hamburger-line {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 1.2px;
  background-color: #000;
  border-radius: 0px;
  margin-left: 15px;
}
#hamburger-line1 {
  top: 0;
}
#hamburger-line2 {
  top: 10.5px;
}
#hamburger-line3 {
  top: 21px;
}
#menu-content {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 80;
  opacity: 0.8;
  background-color: #fff;
  font-family: 'Marcellus', serif;
  letter-spacing: 0.1em;
}
.menu {
  left: 100%;
  transition: all 0.5s;
}
.open {
  transition: all 0.5s;
  left: 70%;
}
#menu-close {
  position: absolute;
  top: 13px;
  right: 23px;
  padding-left: 15px;
  width: 50px;
  height: 40px;
}
.menu-line {
  width: 35px;
  height: 1px;
  background-color: #000;
  border-radius: 0px;
}
#menu-line1 {
  position: absolute;
  top: 50%;
  transform: rotate(30deg);
}
#menu-line3 {
  position: absolute;
  top: 50%;
  transform: rotate(-30deg);
}
#menu-ul {
  margin-top: 40%;
  margin-left: 10%;
  margin-bottom: 40%;
}
#menu-li {
  margin-top: 12%;
  margin-left: 15%;
}
.click-obj {
  cursor: none;
  font-size: 1.3vw;
  letter-spacing: 0.2em;
}
.menu-sub-text {
  font-size: 10px;
  letter-spacing: 0.15em;
}
#menu-sns {
  position: absolute;
  width: 10vw;
  top: 40vw;
  left: 23%;
  font-family: 'Marcellus', serif;
  font-size: 1.3vw;
  letter-spacing: 0.2em;
}
#menu-instagram-icon {
  position: absolute;
  width: 2vw;
  margin-top: 32px;
  left: 0%;
}
#menu-twitter-icon {
  position: absolute;
  width: 1.75vw;
  margin-top: 33px;
  margin-left: 39%;
}
/* アニメーション設定 */
.scr-target {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
.scr-target.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}
