@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700;800;900&display=swap");
:root {
  --basic-spacer: 240px;
  --basic-radius: 20px;
  --nav-width: 100px;
}

:root {
  --basic-spacer: 240px;
  --basic-radius: 20px;
  --nav-width: 100px;
}

/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
:root {
  --basic-spacer: 240px;
  --basic-radius: 20px;
  --nav-width: 100px;
}

:root {
  --basic-spacer: 240px;
  --basic-radius: 20px;
  --nav-width: 100px;
}

/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* 
================================================================================
class
================================================================================
*/
@font-face {
  font-family: "Gotham Black";
  src: url("../fonts/GothamBlackRegular.woff") format("woff");
}
@media screen and (max-width: 1000px) {
  :root {
    --basic-spacer: 20vw;
    --basic-radius: 2vw;
    --nav-width: 10vw;
  }
}
.fontGotham {
  font-family: "Gotham Black", sans-serif;
  line-height: 1;
  color: #6cd2ef;
  text-stroke: 2px #505050;
  -webkit-text-stroke: 2px #505050;
  margin: 0 auto 20px;
}
.fontGotham.content__title {
  font-size: 4.2rem;
}
@media screen and (max-width: 1000px) {
  .fontGotham.content__title {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .fontGotham {
    text-stroke: 0.25vw #505050;
    -webkit-text-stroke: 0.25vw #505050;
  }
  .fontGotham.content__title {
    font-size: 2.5rem;
  }
}

.nav {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  width: var(--nav-width);
  height: 100%;
  pointer-events: none;
  z-index: 3200;
}

.nav__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0 !important;
  padding: 28px 30px 0;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .nav__mask {
    padding: 2vw 2vw 0;
  }
}

.nav__menu {
  display: none;
  position: fixed;
  width: auto;
  height: auto;
  top: 50px;
  right: 0px;
  padding: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 250ms ease 400ms;
  transition: all 250ms ease 400ms;
  font-size: 27px;
  text-align: left;
}
body.loadingFinish .nav__menu {
  display: block;
}
@media screen and (max-width: 1000px) {
  .nav__menu {
    font-size: 2rem;
    text-align: center;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 10vw;
  }
}
.nav__menu ul {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .nav__menu ul {
    -webkit-transform: translate(-5vw, 0);
            transform: translate(-5vw, 0);
  }
}
.nav__menu ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .nav__menu ul li:not(:last-child) {
    margin-bottom: 5vw;
  }
}
body.navOpen .nav__menu {
  pointer-events: all;
  opacity: 1;
}
body.navClose .nav__menu {
  -webkit-transition: all 200ms ease 0ms;
  transition: all 200ms ease 0ms;
  pointer-events: none;
  opacity: 0;
}
.nav__menu a {
  text-decoration: none;
  color: #505050;
  text-stroke: 0px;
  -webkit-text-stroke: 0px;
}

.nav__inner {
  position: relative;
  height: 100%;
}

.nav__toggle-btn {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
  pointer-events: all;
}
@media screen and (max-width: 1000px) {
  .nav__toggle-btn {
    width: 6vw;
    height: 6vw;
    margin-bottom: 5vw;
  }
}
.nav__toggle-btn i {
  position: absolute;
  display: block;
  height: 3px;
  background: #505050;
  right: 0;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.nav__toggle-btn i:nth-of-type(1) {
  top: 12px;
  width: 100%;
}
body.navOpen .nav__toggle-btn i:nth-of-type(1) {
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 1000px) {
  .nav__toggle-btn i:nth-of-type(1) {
    top: 2vw;
  }
}
.nav__toggle-btn i:nth-of-type(2) {
  bottom: 12px;
  width: 74%;
}
body.navOpen .nav__toggle-btn i:nth-of-type(2) {
  top: 50%;
  bottom: auto;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 1000px) {
  .nav__toggle-btn i:nth-of-type(2) {
    bottom: 2vw;
  }
}

.nav__logo img {
  height: 40px;
  width: auto;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translate3d(0, -100%, 0) rotate(90deg);
          transform: translate3d(0, -100%, 0) rotate(90deg);
}
@media screen and (max-width: 1000px) {
  .nav__logo img {
    height: 6vw;
  }
}

.nav__scroll-line {
  position: absolute;
  bottom: 0;
  left: 18px;
}
@media screen and (max-width: 1000px) {
  .nav__scroll-line {
    left: 1vw;
  }
}
.nav__scroll-line i {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  width: 4px;
  height: 100px;
  background: rgba(80, 80, 80, 0.5);
  overflow: hidden;
}
.nav__scroll-line i::after {
  position: absolute;
  display: block;
  content: " ";
  width: 100%;
  height: 100px;
  background: #505050;
  -webkit-animation: scrollLineLoop 1s linear infinite;
          animation: scrollLineLoop 1s linear infinite;
}
.nav__scroll-line img {
  position: absolute;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  right: -18px;
  bottom: 100%;
  height: 9px;
  width: auto;
}
@media screen and (max-width: 1000px) {
  .nav__scroll-line img {
    right: -4vw;
    height: 2vw;
  }
}

.nav-bg {
  position: absolute;
  background: #6cd2ef;
  right: 0;
  top: 0;
  width: var(--nav-width);
  height: 100%;
  border-left: #505050 1px solid;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
body[page=index] .nav-bg {
  background: #fff581;
}
body.navOpen .nav-bg {
  width: 400px;
}
@media screen and (max-width: 1000px) {
  body.navOpen .nav-bg {
    width: 100vw;
  }
}

#footerWrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3500;
  margin: 0;
  pointer-events: none;
}
#footerWrap footer {
  pointer-events: all;
}

/* 
================================================================================
footer
================================================================================
*/
.footer {
  position: absolute;
  height: 405px;
  width: 100%;
  bottom: 0;
  background: #6cd2ef;
  z-index: 101;
}
@media screen and (max-width: 1000px) {
  .footer {
    height: 100vw;
  }
}

.footer__totop-btn {
  pointer-events: all;
  cursor: pointer;
  position: absolute;
  right: 35px;
  top: 136px;
  width: 40px;
  height: 50px;
  border-top: 1px #505050 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  .footer__totop-btn {
    right: 5vw;
    top: 20vw;
    width: 12vw;
    height: 14vw;
  }
}
.footer__totop-btn i {
  display: block;
  display: block;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px #505050 solid;
  border-left: 1px #505050 solid;
}
.footer__nice-groove {
  position: relative;
  width: 100%;
  height: 60px;
  background: #d5ffff;
  border-top: #505050 1px solid;
  border-bottom: #505050 1px solid;
  margin-bottom: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .footer__nice-groove {
    height: 14vw;
    margin-bottom: 10vw;
  }
}
.footer__nice-groove::after {
  position: absolute;
  display: block;
  content: " ";
  width: 100%;
  height: 46px;
  background: url(../../img/nicegroove.svg) 0 0 repeat-x;
  background-size: 514px auto;
  -webkit-animation: footerNiceGrooveLoop 10s linear infinite;
          animation: footerNiceGrooveLoop 10s linear infinite;
}
@media screen and (max-width: 1000px) {
  .footer__nice-groove::after {
    height: 9vw;
    background: url(../../img/nicegroove.svg) 0 0 repeat-x;
    background-size: 100vw auto;
    -webkit-animation: footerNiceGrooveLoop_SP 10s linear infinite;
            animation: footerNiceGrooveLoop_SP 10s linear infinite;
  }
}

.footer__links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: -0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .footer__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1rem;
    letter-spacing: -0.1em;
    margin: 0 0 5vw;
    padding: 0;
    text-align: center;
  }
}
.footer__links li {
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .footer__links li {
    width: 100%;
    padding: 0 5vw;
    margin-bottom: 5vw;
    border: 0;
  }
}
.footer__links li:not(:last-child)::after {
  position: absolute;
  display: block;
  content: " ";
  width: 0;
  height: 14px;
  right: 0;
  top: 50%;
  margin-top: -7px;
  border-left: #505050 1px solid;
}
@media screen and (max-width: 1000px) {
  .footer__links li:not(:last-child)::after {
    display: none;
  }
}

.footer__logo {
  width: 270px;
  margin: 0 auto;
}
/*# sourceMappingURL=global.css.map */