@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: 1;
          animation-iteration-count: 1;
  /*この数字を必要回数分に変更*/
}

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

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

.content_title_anime {
  -webkit-animation: fadeUpAnime 1s 0.2s ease-out forwards;
          animation: fadeUpAnime 1s 0.2s ease-out forwards;
}

.fadeInUpTriggerOnce {
  opacity: 0;
}

body {
  width: 100vw;
  height: 100vh;
  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: 4vh auto 0 auto;
  }
}

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

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

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

body main .title_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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_wrapper .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;
}

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

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

body main .title_wrapper .border_wrapper .left_border {
  width: 50%;
  position: relative;
}

body main .title_wrapper .border_wrapper .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_wrapper .border_wrapper .right_border {
  width: 50%;
  position: relative;
}

body main .title_wrapper .border_wrapper .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_wrap01 {
  width: 100%;
  margin: 25px 0;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

body .content_wrap01 .content .content_title_wrapper .content_title {
  width: 100%;
  font-size: clamp(20px, 4vw, 28px);
  width: clamp(130px, 14vw, 200);
  margin: 0 auto;
  color: #4ff907;
  text-align: center;
  vertical-align: middle;
  font-family: dash-digital;
}

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

body .content_wrap01 .content .content_title_wrapper .content_subtitle {
  text-align: center;
  color: #4ff907;
  font-size: clamp(12px, 3vw, 16px);
  font-family: sans-serif;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  body .content_wrap01 .content .content_title_wrapper .content_subtitle {
    margin: 0 0 5px 0;
  }
}

@media screen and (min-width: 599px) {
  body .content_wrap01 .content .content_title_wrapper .content_subtitle .sp {
    display: none;
  }
}

body .content_wrap01 .content .content_text_wrap {
  width: 100%;
  font-family: sans-serif;
}

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

body .content_wrap01 .content .content_text_wrap #box_wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 20% 20% 20%;
      grid-template-columns: 20% 20% 20% 20%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 1024px) {
  body .content_wrap01 .content .content_text_wrap #box_wrapper {
    -ms-grid-columns: 40% 40%;
        grid-template-columns: 40% 40%;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap01 .content .content_text_wrap #box_wrapper {
    -ms-grid-columns: 45% 45%;
        grid-template-columns: 45% 45%;
  }
}

@media screen and (max-width: 1024px) {
  body .content_wrap01 .content .content_text_wrap #box_wrapper .box {
    margin: 50px;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap01 .content .content_text_wrap #box_wrapper .box {
    margin: 5px;
  }
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box img {
  width: 100%;
  aspect-ratio: 1/1;
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box .name {
  color: #ffff;
  font-size: clamp(14px, 2vw, 16px);
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box .intro {
  color: #ffff;
  font-family: sans-serif;
  font-size: clamp(14px, 2vw, 16px);
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box .acount {
  color: #ffff;
  font-family: sans-serif;
  font-size: clamp(12px, 2vw, 16px);
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box .acount a {
  text-decoration: none;
  color: #ffff;
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box .acount a .fa-twitter {
  color: #4ff907;
}

body .content_wrap01 .content .content_text_wrap #box_wrapper .box .acount a:visited,
body .content_wrap01 .content .content_text_wrap #box_wrapper .box .acount a:link,
body .content_wrap01 .content .content_text_wrap #box_wrapper .box .acount a:active {
  color: #ffff;
}

body .content_wrap03 {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

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

body .content_wrap03 .content {
  width: 100%;
  vertical-align: middle;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  body .content_wrap03 .content {
    display: inline-block;
    padding: 10px 10px 50px 10px;
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap03 .content {
    width: 90%;
  }
}

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

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

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

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

body .content_wrap03 .content .content_list_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  body .content_wrap03 .content .content_list_wrap {
    display: block;
  }
}

body .content_wrap03 .content .content_list_wrap .booth_map {
  width: 100%;
}

body .content_wrap03 .content .content_list_wrap .booth_map img {
  width: 100%;
}

body .content_wrap03 .content .content_list_wrap .booth_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .content_wrap03 .content .content_list_wrap .booth_list img {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  body .content_wrap03 .content .content_list_wrap .booth_list img {
    width: 50%;
  }
}

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

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

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

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

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

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

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

body .content_wrap02 .content .content_title_wrapper .content_title {
  width: 100%;
  font-size: clamp(20px, 4vw, 28px);
  width: clamp(130px, 14vw, 200);
  margin: 0 auto;
  color: #4ff907;
  text-align: center;
  vertical-align: middle;
  font-family: dash-digital;
}

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

body .content_wrap02 .content .content_title_wrapper .content_subtitle {
  text-align: center;
  color: #4ff907;
  font-size: clamp(12px, 3vw, 16px);
  font-family: sans-serif;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  body .content_wrap02 .content .content_title_wrapper .content_subtitle {
    margin: 0 0 5px 0;
  }
}

@media screen and (min-width: 599px) {
  body .content_wrap02 .content .content_title_wrapper .content_subtitle .sp {
    display: none;
  }
}

body .content_wrap02 .content .content_text_wrap {
  width: 100%;
  font-family: sans-serif;
}

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

body .content_wrap02 .content .content_text_wrap #box_wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 20% 20% 20%;
      grid-template-columns: 20% 20% 20% 20%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 1024px) {
  body .content_wrap02 .content .content_text_wrap #box_wrapper {
    -ms-grid-columns: 40% 40%;
        grid-template-columns: 40% 40%;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap02 .content .content_text_wrap #box_wrapper {
    -ms-grid-columns: 45% 45%;
        grid-template-columns: 45% 45%;
  }
}

@media screen and (max-width: 1024px) {
  body .content_wrap02 .content .content_text_wrap #box_wrapper .box {
    margin: 50px;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap02 .content .content_text_wrap #box_wrapper .box {
    margin: 5px;
  }
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box img {
  width: 100%;
  aspect-ratio: 1/1;
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .name {
  color: #ffff;
  font-size: clamp(14px, 2vw, 16px);
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .intro {
  color: #ffff;
  font-family: sans-serif;
  font-size: clamp(14px, 2vw, 16px);
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount {
  color: #ffff;
  font-family: sans-serif;
  font-size: clamp(12px, 2vw, 16px);
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount a {
  text-decoration: none;
  color: #ffff;
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount a .fa-twitter {
  color: #4ff907;
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount a:visited,
body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount a:link,
body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount a:active {
  color: #ffff;
}

body .content_wrap02 .content .content_text_wrap #box_wrapper .box .acount .linkfire_logo {
  width: 15px;
}
/*# sourceMappingURL=artists.css.map */