@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 76%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.sp-br {
  display: none;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: hsla(0, 0%, 100%, 0.2);
}
header .container {
  display: flex;
  padding: 1.5rem 0;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 92%;
  max-width: 1200px;
}
header .container .logo {
  width: 8rem;
  z-index: 100;
  position: relative;
}
header .container .navigation-items {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
header .container .navigation-items .navigation-item {
  margin: 2rem 1rem;
  display: inline-block;
  padding-right: 2.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  display: inline-block;
  background: url("images/header-arrow.svg") no-repeat 100%;
  padding-right: 2.5rem;
  font-weight: 700;
}
header .container .hamburger-menu {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}
header .container .hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: #e4bc5f;
  position: absolute;
  left: 0;
  transition: 0.3s ease-in-out;
}
header .container .hamburger-menu span:nth-child(1) {
  top: 0;
}
header .container .hamburger-menu span:nth-child(2) {
  top: 9px;
}
header .container .hamburger-menu span:nth-child(3) {
  bottom: 0;
}
header .container .hamburger-menu.active span:nth-child(1) {
  top: 9px;
  transform: rotate(-45deg);
}
header .container .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
header .container .hamburger-menu.active span:nth-child(3) {
  bottom: 9px;
  transform: rotate(45deg);
}
header .sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 99;
  padding-top: 10rem;
}
header .sp-nav ul {
  list-style: none;
  text-align: center;
}
header .sp-nav ul li {
  border-bottom: 1px solid #46ad55;
  width: 92%;
  margin: 0 auto;
}
header .sp-nav ul li a {
  color: rgba(0, 0, 0, 0.87);
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 700;
  display: block;
  width: 100%;
  padding: 2rem 0;
}
header .sp-nav.active {
  display: block;
}

main .fv {
  margin-bottom: 3rem;
  width: 100%;
  position: relative;
}
main .fv .item {
  width: 100%;
}
main .fv .item img {
  width: 100%;
}
main .fv .slick-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 23px;
  position: absolute;
  z-index: 50;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}
main .fv .slick-dots li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  padding: 0;
}
main .fv .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 13px;
  height: 13px;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
}
main .fv .slick-dots li button:focus {
  outline: none;
}
main .fv .slick-dots li button::before {
  content: none;
}
main .fv .slick-dots li.slick-active button {
  background-color: rgba(255, 255, 255, 0.8);
}
main .about {
  margin: 0 0 3rem;
}
main .about .container {
  margin: 0 auto;
  max-width: 60rem;
}
main .about .container h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}
main .about .container p {
  margin-bottom: 2rem;
  line-height: 2;
}
main .about .container a {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 0.5rem 0;
  border-radius: 100vh;
  background-color: #46ad55;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
main .course {
  background-image: url("images/course_bg.jpg");
  -o-object-fit: contain;
  object-fit: contain;
  background-color: #76368e;
  background-position: 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
main .course > img {
  width: 100%;
  max-width: 35rem;
}
main .course > img.top-accessory {
  margin-top: 1.6rem;
}
main .course > img.bottom-accessory {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 35rem;
  transform: scaleY(-1);
  padding-top: 1.6rem;
}
main .course .container {
  margin: 4rem auto;
  width: 92%;
  max-width: 1200px;
}
main .course .container .header {
  margin: 0 auto;
  width: 36rem;
  font-size: 2.5rem;
  display: flex;
}
main .course .container .header img {
  display: block;
  margin: 0 auto;
}
main .course .container .header img.left-accessory {
  transform: rotate(-90deg);
}
main .course .container .header img.right-accessory {
  transform: rotate(90deg);
}
main .course .container .header h1 {
  font-size: 2.5rem;
}
main .course .container h2 {
  padding: 6rem 0;
  font-size: 2rem;
}
main .course .container .course-list {
  display: flex;
  justify-content: center;
}
main .course .container .course-list img {
  width: 33%;
  padding: 0 1.5rem;
  display: block;
  margin: 0 auto 6rem;
  max-width: 30rem;
}
main .course .container p {
  font-weight: 400;
  font-size: 1.6rem;
}
main .course .container .link {
  position: relative;
  width: 100%;
  max-width: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem auto;
  padding: 0.5rem 0;
  border-radius: 100vh;
  background-color: #46ad55;
  font-weight: 700;
  cursor: pointer;
}
main .course .container .link a {
  text-decoration: none;
  color: #ffffff;
}
main .course .container .link img {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 4rem;
}
main .member .container .item {
  padding-top: unset;
  margin-bottom: 8rem;
  position: relative;
}
main .member .container .item .info {
  background-color: #fff8ff;
}
main .member .container .item .info h2 {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 4rem;
  color: #b43eb4;
}
main .member .container .item .info h1 {
  font-weight: bolder;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
main .member .container .item .info img {
  position: absolute;
  z-index: 1;
}
main .member .container .item:nth-child(1) .info {
  min-height: 35rem;
  padding: 5rem 20rem 5rem 15%;
  width: 70%;
}
main .member .container .item:nth-child(1) .info img {
  max-width: 20rem;
  top: 3rem;
  right: 15%;
}
main .member .container .item:nth-child(2) {
  margin-bottom: 5rem;
}
main .member .container .item:nth-child(2) .info {
  min-height: 45rem;
  margin-left: 30%;
  padding: 3rem 15% 3rem 20rem;
  width: 70%;
}
main .member .container .item:nth-child(2) .info img {
  max-width: 30rem;
  top: 3rem;
  left: 15%;
}
main.about {
  max-width: 1200px;
  margin: 0 auto;
  width: 92%;
}
main.about .title {
  padding-top: 11rem;
  padding-bottom: 1rem;
  background-image: url("images/about-title-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
main.about .title .title-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 92%;
}
main.about .title .title-inner .title-box {
  text-align: left;
}
main.about .title .title-inner .title-box p {
  font-size: 1.6rem;
  font-weight: bolder;
}
main.about .title .title-inner .title-box h1 {
  font-weight: bolder;
  font-size: 2rem;
}
main.about .title .title-inner .best-psychic-box {
  padding: unset;
  margin-bottom: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  flex: 1;
  max-width: 60%;
  padding: 0 4rem;
}
main.about .title .title-inner .best-psychic-box h2 {
  margin: 0 auto 1.6rem;
  font-size: 2.2rem;
  font-weight: bolder;
  color: #d85ee8;
}
main.about .title .title-inner .best-psychic-box p {
  margin-bottom: unset;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.5;
}
main.about .title .title-inner > img {
  width: 20%;
  max-width: 14rem;
  height: auto;
  display: block;
}
main.about .first-block {
  display: none;
}
main.about .profile {
  display: flex;
  justify-content: center;
  padding: 3rem 5%;
}
main.about .profile img {
  width: 80%;
  max-width: 30rem;
  max-height: 38rem;
}
main.about .profile .info {
  width: 100vw;
  background-color: #fff8ff;
  padding: inherit;
  margin: 5% 0;
}
main.about .profile .info h2 {
  margin: 0 auto 1.6rem;
  font-size: 2.2rem;
  font-weight: bolder;
  color: #d85ee8;
}
main.about .profile .info p {
  line-height: 2;
  margin: 0 auto;
  max-width: 60rem;
}
main.about .life-support {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background-color: #f5f5f5;
  margin-bottom: 3rem;
  padding: 2rem;
}
main.about .life-support p {
  max-width: 90rem;
  margin: 0 auto;
  line-height: 2;
}
main.about .sleeping-force {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5% 2rem;
}
main.about .sleeping-force img {
  width: 80%;
  max-width: 30rem;
  max-height: 38rem;
}
main.about .sleeping-force .info {
  width: 100vw;
  padding: inherit;
  margin: 2% 0;
}
main.about .sleeping-force .info h2 {
  margin: 0 auto 1.6rem;
  font-size: 2.2rem;
  font-weight: bolder;
  color: #d85ee8;
}
main.about .sleeping-force .info h2.second {
  margin-top: 2rem;
}
main.about .sleeping-force .info p {
  line-height: 2;
  margin: 0 auto;
  max-width: 60rem;
}
main.about .original-power {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
  margin-bottom: 3rem;
  padding: 5rem 2rem 2rem;
  background-color: #f5e5fc;
}
main.about .original-power .polygon {
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 8rem;
  height: 3rem;
  background-color: #ffffff;
  position: absolute;
  top: -3.1rem;
  left: 50%;
  transform: translate(-50%, 100%);
}
main.about .original-power p {
  text-align: center;
  max-width: 90rem;
  font-weight: 400;
  margin: 0 auto;
}

.site-footer {
  position: relative;
  padding-bottom: 0.5rem;
}
.site-footer .move-top {
  padding: 1rem;
  width: 100%;
  display: block;
  background-color: #acabab;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
.site-footer .move-top p {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtODU3IC03Mjk4KSI+PGNpcmNsZSBjeD0iMTYiIGN5PSIxNiIgcj0iMTYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg1NyA3Mjk4KSIgZmlsbD0iI2ZmZiIvPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDg2Ni4wOTcgNzMwNi4xNDcpIj48cGF0aCBkPSJNNywwbDcsOUgwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTAuMDk3IC0wLjE0OCkiIGZpbGw9IiNhY2FiYWIiLz48cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0LjQwMyA2Ljg1NCkiIGZpbGw9IiNhY2FiYWIiLz48L2c+PC9nPjwvc3ZnPg==) no-repeat 0;
  background-size: 20px;
  padding-left: 40px;
  margin-bottom: 0;
  display: inline-block;
  text-align: center;
}
.site-footer .container .footer-content {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  margin: 0 auto;
  width: 92%;
  max-width: 1200px;
}
.site-footer .container .footer-content img {
  width: 10rem;
}
.site-footer .container .footer-content .navigation-items {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.site-footer .container .footer-content .navigation-items .navigation-item {
  margin: 2rem 1rem;
  display: inline-block;
  padding-right: 2.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
  display: inline-block;
  background: url("images/header-arrow.svg") no-repeat 100%;
  padding-right: 2.5rem;
  font-weight: 700;
}
.site-footer .container .copyright {
  padding-top: 2rem;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 67%;
  }
  main .fv .item {
    height: 80vh;
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  main .fv .item img {
    display: none;
  }
  main .fv .item.item01 {
    background-image: url("images/fv-sp01.png");
  }
  main .fv .item.item02 {
    background-image: url("images/fv-sp02.png");
  }
  main .fv .item.item03 {
    background-image: url("images/fv-sp03.png");
  }
  main .about .container {
    max-width: 45rem;
    width: 92%;
  }
  main .course {
    background-image: none;
  }
  main .course .container .header {
    flex-direction: column;
    width: 100%;
  }
  main .course .container .header img.left-accessory {
    transform: rotate(0);
  }
  main .course .container .header img.right-accessory {
    transform: rotate(180deg);
  }
  main .course .container h2 {
    padding: 4rem 0;
    font-size: 1.7rem;
  }
  main .course .container .link {
    margin: 4rem auto;
  }
  main .course > img.top-accessory {
    margin-top: 0;
  }
  main .course > img.bottom-accessory {
    padding-top: 0;
  }
  main .member .container .item {
    padding-top: 10rem;
  }
  main .member .container .item:nth-child(1) .info {
    min-height: 35rem;
    padding: 28rem 3rem 3rem;
    width: 100%;
  }
  main .member .container .item:nth-child(1) .info img {
    max-width: 20rem;
    top: 0;
    right: 0;
  }
  main .member .container .item:nth-child(2) {
    margin-bottom: 5rem;
  }
  main .member .container .item:nth-child(2) .info {
    min-height: 45rem;
    margin-left: 0;
    padding: 28rem 3rem 3rem;
    width: 100%;
  }
  main .member .container .item:nth-child(2) .info img {
    max-width: 20rem;
    top: 0;
    left: 0%;
  }
  main.about .title {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
  main.about .title .title-inner {
    justify-content: center;
  }
  main.about .title .title-inner .title-box {
    text-align: center;
  }
  main.about .title .title-inner .title-box p {
    font-size: 2rem;
  }
  main.about .title .title-inner .best-psychic-box {
    display: none;
  }
  main.about .title .title-inner > img {
    display: none;
  }
  main.about .first-block {
    display: block;
    padding-top: 1.6rem;
    margin: 0 auto;
    max-width: 60rem;
  }
  main.about .first-block h2 {
    margin: 0 auto 1.6rem;
    font-size: 2.2rem;
    font-weight: bolder;
    color: #d85ee8;
    max-width: 30rem;
  }
  main.about .first-block img {
    display: block;
    margin: 0 auto;
    padding: 2rem 0;
    width: 80%;
    max-width: 30rem;
  }
  main.about .profile {
    display: block;
    position: relative;
    padding-top: 25rem;
    margin-top: 5rem;
  }
  main.about .profile img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  main.about .profile .info {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-top: 12rem;
  }
  main.about .profile .info h2 {
    max-width: 60rem;
    font-size: 2rem;
  }
  main.about .profile .info p {
    max-width: 60rem;
    line-height: 1.8;
  }
  main.about .life-support p {
    max-width: 60rem;
    line-height: 1.8;
  }
  main.about .sleeping-force {
    flex-direction: column;
  }
  main.about .sleeping-force .info h2 {
    max-width: 60rem;
    font-size: 2rem;
  }
  main.about .sleeping-force .info p {
    line-height: 1.8;
  }
  main.about .original-power p {
    max-width: 60rem;
  }
  .site-footer .container .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .site-footer .container .footer-content .navigation-items {
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
  }
  .site-footer .container .footer-content .navigation-items .navigation-item {
    margin: 0;
    padding-right: 2.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    display: inline-block;
    background: url("images/header-arrow.svg") no-repeat 100%;
    padding-right: 2.5rem;
    font-weight: 700;
  }
  .site-footer .container .copyright {
    padding-top: 2rem;
    text-align: center;
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  header {
    background-color: inherit;
  }
  header .container .navigation-items {
    display: none;
  }
  header .container .hamburger-menu {
    display: block;
  }
  main .course .container .course-list {
    flex-wrap: wrap;
  }
  main .course .container .course-list img {
    width: 100%;
    padding: 0;
    margin: 0 auto 3rem;
  }
}/*# sourceMappingURL=style.css.map */