@import url("https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700;800&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  background: #1d2083;
  color: #fff;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

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

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

class

------------------------------------------- */
.heading-1 {
  line-height: 1;
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  font-size: 3.6rem;
  font-weight: 800;
  color: #ccc;
}
.heading-1 span {
  border-bottom: solid 0.8rem #ccc;
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .heading-1 {
    font-size: 3rem;
  }
}
.more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 6.4rem;
  color: #1d2083;
  border-radius: 10rem;
  margin: 0 auto;
  font-weight: bold;
  background: linear-gradient(to right, #FFF200, #0097D2);
  font-size: 1.5rem;
}
.more i {
  margin-left: 0.8rem;
}

.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: #0097D2;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

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

hamburger

------------------------------------------- */
.gnav-sp {
  background: #1d2083;
  display: block;
  align-items: center;
  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 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.gnav-sp > div .logo {
  width: 24rem;
}

.gnav-sp nav {
  display: flex;
  justify-content: center;
  margin: 5rem 0 7rem 0;
}

.gnav-sp-menu {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.gnav-sp-menu li {
  font-size: 2rem;
}

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

.gnav-sp-menu li a {
  display: block;
  white-space: nowrap;
}

.gnav-sp .more {
  width: 18rem;
  height: 5.6rem;
}

.toggle-btn {
  background: #1d2083;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  transition: all 0.5s;
  z-index: 100000;
}

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

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

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

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

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

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

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

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) 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 */