@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;
  /*この数字を変化させたい時間に変更*/
}

.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;
  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)*8);
  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_wrap .title {
    width: calc(clamp(21px, 5vw, 75px)*8);
  }
}

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;
}

@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_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 {
  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_wrap {
  width: 80%;
  margin: 0 auto;
  padding: 10px;
  vertical-align: middle;
}

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

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

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

body .content_wrap01 .content .content_title_wrap .subtitle {
  width: 100%;
  font-size: clamp(10px, 2vw, 16px);
  margin: 0 auto;
  color: #4ff907;
  text-align: center;
  vertical-align: middle;
  font-family: sans-serif;
}

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

body .content_wrap01 .content .content_title_wrap .subtitle01 {
  margin: 20px 0 5px 0;
}

body .content_wrap01 .content .content_title_wrap .subtitle02 {
  margin: 5px 0 20px 0;
}

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

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

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

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

body .content_wrap01 .content .content_text_wrap ul .content_list {
  font-family: sans-serif;
}

body .content_wrap01 .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: 0 10px 10px 10px;
  line-height: 200%;
  letter-spacing: 1px;
}

body .content_wrap01 .content .content_text_wrap .content_text span {
  color: #4ff907;
  margin: 0 10px;
  font-size: clamp(16px, 3vw, 24px);
}

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

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

body .content_wrap01 .content .content_text_wrap .content_text a:link {
  color: #ffff;
}

body .content_wrap02 .content {
  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_wrap {
  width: 50%;
  margin: 0 auto;
  padding: 10px;
  vertical-align: middle;
}

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

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

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

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

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

body .content_wrap02 .content .content_text_wrap ul .content_list {
  font-family: sans-serif;
}

body .content_wrap02 .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: 0 10px 10px 10px;
  line-height: 200%;
  letter-spacing: 1px;
}

body .content_wrap02 .content .content_text_wrap .content_text span {
  color: #4ff907;
  margin: 0 10px;
  font-size: clamp(16px, 3vw, 24px);
}

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

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

body .content_wrap02 .content .content_text_wrap .content_text a:link {
  color: #ffff;
}

body .content_wrap02 .content_table {
  width: 80%;
  color: #ffff;
  font-family: sans-serif;
  font-size: clamp(12px, 3vw, 16px);
  margin: 0 auto;
}

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

body .content_wrap02 .content_table tr {
  height: 80px;
}

@media screen and (max-width: 1024px) {
  body .content_wrap02 .content_table tr {
    height: 75px;
  }
}

body .content_wrap02 .content_table tr td:nth-child(odd) {
  width: 30%;
  border-top: 1px solid #ffff;
  border-bottom: 1px solid #ffff;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  body .content_wrap02 .content_table tr td:nth-child(odd) {
    padding: 10px;
  }
}

body .content_wrap02 .content_table tr td:nth-child(even) {
  width: 70%;
  border-top: 1px solid #ffff;
  border-bottom: 1px solid #ffff;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  body .content_wrap02 .content_table tr td:nth-child(even) {
    padding: 10px;
  }
}

body .content_wrap02 .content_table tr td:nth-child(even) a:link, body .content_wrap02 .content_table tr td:nth-child(even) a:visited {
  color: #ffff;
  text-decoration: none;
}

body .content_wrap02 .content_table tr td i {
  margin: 0 10px;
  color: #4ff907;
}

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

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

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

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

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

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

body .content_wrap03 .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_wrap03 .content .content_title_wrapper .content_title {
    width: 100%;
    text-align: center;
  }
}

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

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

body .content_wrap03 .content .content_text_wrap #members {
  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_wrap03 .content .content_text_wrap #members {
    -ms-grid-columns: 40% 40%;
        grid-template-columns: 40% 40%;
  }
}

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

@media screen and (max-width: 1024px) {
  body .content_wrap03 .content .content_text_wrap #members .member {
    margin: 50px;
  }
}

@media screen and (max-width: 599px) {
  body .content_wrap03 .content .content_text_wrap #members .member {
    margin: 5px;
  }
}

body .content_wrap03 .content .content_text_wrap #members .member img {
  width: 100%;
  aspect-ratio: 1/1;
}

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

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

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

body .content_wrap03 .content .content_text_wrap #members .member .acount a {
  text-decoration: none;
  color: #ffff;
}

body .content_wrap03 .content .content_text_wrap #members .member .acount a .fa-twitter {
  color: #4ff907;
}

body .content_wrap03 .content .content_text_wrap #members .member .acount a:visited,
body .content_wrap03 .content .content_text_wrap #members .member .acount a:link,
body .content_wrap03 .content .content_text_wrap #members .member .acount a:active {
  color: #ffff;
}
/*# sourceMappingURL=about_us.css.map */