@charset "UTF-8";
@import url(../settings/settings.scss);
@font-face {
  font-family: 'dash-digital';
  src: url("../../fonts/dash_digital-7.ttf") format("truetype");
}

@-webkit-keyframes anima_slide_8 {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

@keyframes anima_slide_8 {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

@-webkit-keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes border_anime2 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anime2 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes fadeInText {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInText {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.count2 {
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
  /*この数字を必要回数分に変更*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  /*この数字を変化させたい時間に変更*/
}

.fadeInUpTriggerOnce {
  opacity: 0;
}

body {
  width: 100vw;
  font-family: 'dash-digital';
  background-color: #000;
}

body main {
  width: 100%;
  margin: 17vh auto 0 auto;
}

@media screen and (max-width: 1024px) {
  body main {
    width: 100%;
    margin: 10vh auto 0 auto;
  }
}

body main .title_wrap {
  width: 100%;
  position: relative;
}

body main .title_wrap .title {
  width: calc(clamp(24px, 5vw, 75px)*14);
  color: #4ff907;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin: 5px auto;
  font-weight: bolder;
}

@media screen and (max-width: 599px) {
  body main .title_wrap .title {
    width: calc(clamp(21px, 5vw, 75px)*14);
  }
}

body main .title_wrap .title span {
  display: inline-block;
  font-size: clamp(24px, 5vw, 75px);
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  margin: 0 auto;
  padding: 10px 0;
}

body main .title_wrap .title span:nth-child(1) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.1s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.1s forwards;
}

body main .title_wrap .title span:nth-child(2) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.2s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.2s forwards;
}

body main .title_wrap .title span:nth-child(3) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.3s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.3s forwards;
}

body main .title_wrap .title span:nth-child(4) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.4s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.4s forwards;
}

body main .title_wrap .title span:nth-child(5) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.5s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.5s forwards;
}

body main .title_wrap .title span:nth-child(6) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.6s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.6s forwards;
}

body main .title_wrap .title span:nth-child(7) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.7s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.7s forwards;
}

body main .title_wrap .title span:nth-child(8) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.8s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.8s forwards;
}

body main .title_wrap .title span:nth-child(9) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.9s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 0.9s forwards;
}

body main .title_wrap .title span:nth-child(10) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1s forwards;
}

body main .title_wrap .title span:nth-child(11) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.1s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.1s forwards;
}

body main .title_wrap .title span:nth-child(12) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.2s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.2s forwards;
}

body main .title_wrap .title span:nth-child(13) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.3s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.3s forwards;
}

body main .title_wrap .title span:nth-child(14) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.4s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.4s forwards;
}

body main .title_wrap .title span:nth-child(15) {
  -webkit-animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.5s forwards;
          animation: fadeInText 1s cubic-bezier(0.8, 0, 0.5, 1) 1.5s forwards;
}

@media screen and (max-width: 599px) {
  body main .title_wrap .title span {
    font-size: clamp(21px, 5vw, 75px);
  }
}

body main .title_wrap .border_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body main .title_wrap .border_wrap .left_border {
  width: 50%;
  position: relative;
}

body main .title_wrap .border_wrap .left_border::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px #4ff907;
  -webkit-animation: border_anime 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
          animation: border_anime 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
}

body main .title_wrap .border_wrap .right_border {
  width: 50%;
  position: relative;
}

body main .title_wrap .border_wrap .right_border::before {
  content: '';
  position: absolute;
  left: 100%;
  bottom: 0;
  width: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-bottom: solid 1px #4ff907;
  -webkit-animation: border_anime2 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
          animation: border_anime2 1s 0.6s cubic-bezier(0.8, 0, 0.5, 1) forwards;
}

body .content_wrap {
  width: 100%;
  margin: 25px 0;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  body .content_wrap {
    margin: 10px 0;
    padding: 10px 0;
  }
}

body .content_wrap .content {
  font-family: sans-serif;
  width: 100%;
  vertical-align: middle;
  padding: 50px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  body .content_wrap .content {
    display: inline-block;
    padding: 20px 20px 50px 20px;
  }
}

body .content_wrap .content .content_title_wrap {
  width: 50%;
  margin: 0 auto;
  padding: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  body .content_wrap .content .content_title_wrap {
    width: 100%;
  }
}

body .content_wrap .content .content_title_wrap .content_title {
  width: 100%;
  font-size: clamp(16px, 2vw, 24px);
  margin: 0 auto;
  color: #4ff907;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  body .content_wrap .content .content_title_wrap .content_title {
    width: 100%;
    text-align: center;
  }
}

body .content_wrap .content .content_text_wrap {
  width: 80%;
  font-family: sans-serif;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  body .content_wrap .content .content_text_wrap {
    width: 100%;
  }
}

body .content_wrap .content .content_text_wrap .content_text {
  font-family: sans-serif;
  font-size: clamp(12px, 3vw, 16px);
  color: #ffff;
  width: 100%;
  text-align: left;
  margin: 0 auto;
  padding: 10px 10px 10px 10px;
  margin: 10px 0;
  line-height: 200%;
  letter-spacing: 1px;
}

body .content_wrap .content .content_text_wrap .content_text span {
  margin: 0 10px;
  font-size: clamp(14px, 3vw, 20px);
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  body .content_wrap .content .content_text_wrap .content_text {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap .content .content_text_wrap .content_text {
    padding: 2px;
  }
}

body .content_wrap .content .content_text_wrap .content_text a:link, body .content_wrap .content .content_text_wrap .content_text a:visited {
  color: #ffff;
}
/*# sourceMappingURL=privacy_policy.css.map */








.topBtn {
  width: 250px;
  margin: 20px auto 40px;
}

.topBtn p {
    text-align: center;
}


.topBtn a {
  color: white;
}





