@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;800;900&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
:root {
  --pink: #e4007f;
}

html {
  position: relative;
}

html::before,
html::after {
  content: "";
  width: 100%;
  height: 6rem;
  pointer-events: none;
  position: fixed;
  left: 0;
}

html::before {
  background: url(../img/line-1.png) no-repeat left top;
  background-size: 100% auto;
  top: 0;
}

html::after {
  background: url(../img/line-1.png) no-repeat left bottom;
  background-size: 100% auto;
  bottom: 0;
  z-index: -1;
}

body {
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  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: -2;
}

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

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

style

------------------------------------------- */
/* heading */
.heading-1 {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 3rem;
}

.heading-1 .en {
  font-size: 5.6rem;
  margin-right: 1.5rem;
}

.heading-1 .jp {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.heading-2 {
  background: url(../img/line-dot.png) no-repeat left bottom;
  background-size: 100% auto;
  position: relative;
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
}

.more {
  border: solid 0.15rem #fff;
  width: 100%;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.2rem;
}

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

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%;
  background: url(../img/line-1.png) no-repeat left top, url(../img/line-1.png) no-repeat left bottom;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .gnav-sp .wrap {
    background: none;
  }
}
.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: 1rem;
}

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

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

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

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

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

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

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

.gnav-sp-menu li:nth-child(8) a::before {
  background: url(../img/ico-heart-yellow.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;
  }
}
.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 1.6rem;
  width: 2.8rem;
  height: 0.3rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
  background: #e4007f;
}

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

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

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