@charset "UTF-8";

/*==============================================
NOEZFOXX
noezfoxx.com
================================================
0.0 - 基本設定（base）
1.0 - メイン（main）
2.0 - ファーストビュー（fv_area）
3.0 - セクション基本（section）
4.0 - お知らせ（news）
5.0 - team詳細（team_desc）
5.0 - （about）
6.0 - チーム（teams）
7.0 - スポンサー（sponsors）
8.0 - お問い合わせ（contact）
9.0 - フッター（footer）
10.0 - ハンバーガーメニュー（hamburger-menu）
11.0 - 共通 ‐ 変更・追加用
12.0 -下層・お問い合わせ（contact）
13.0 - 下層・チーム一覧（lower_teams）
14.0 - 下層・メンバー詳細（team_desc）
15.0 - 下層・ニュース一覧（lower_news）
15.0 - 下層・About（lower_news）
==============================================*/
/*  ----------------------------------------------------------
# 0.0 - 基本設定（base）
----------------------------------------------------------  */
/* 基本設定 */
p {
  font-size: 1rem;
}

html {
  /* font-family: "Noto Sans JP", Meiryo, "MS Pゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Raleway", sans-serif; */
  height: -webkit-fill-available;
}

.sp {
  display: none;
}

.sp-only {
  display: none;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::selection,
li::selection,
a::selection,
span::selection,
div::selection,
dd::selection,
dt::selection,
small::selection {
  background: #6ec6d1;
  color: #000;
}

@media screen and (max-width: 950px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .tablet {
    display: none !important;
  }

  .sp-only {
    display: flex !important;
  }
}

a {
  text-decoration: none;
  color: #303030;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-style: none;
  vertical-align: top;
}

ul {
  text-decoration: none;
}

li {
  text-decoration: none;
  list-style: none;
}

body {
  color: #dcdcdc;
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
  /* font-family: "Noto Sans JP", Meiryo, "MS Pゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Raleway", sans-serif; */
  font-size: 1rem;
  position: relative;
  width: 100%;
  letter-spacing: 0.1em;
  background-color: #131313;
}

/* ロードアニメーション */
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #000; /* ここで背景色を設定 */
  position: relative;
}

#loading img {
  width: 300px; /* ローディング画像のサイズを調整 */
  z-index: 9999;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.load_content {
  display: none;
}

@media screen and (max-width: 767px) {
  #loading img {
    width: 80px;
  }
}

/*  ----------------------------------------------------------
# 0.0 - 基本設定（base） -ここまで-
----------------------------------------------------------  */
/*  ----------------------------------------------------------
# 1.0 - メイン（main）
----------------------------------------------------------  */
.main {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.video-wrap {
  width: 100%;
  height: 100vh;
  z-index: 1;
  position: fixed;
  opacity: 0.4;
}

.video-wrap video {
  height: 120vh;
  width: auto;
}

.h_logo_box {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: left;
  z-index: 999;
  display: block;
}

.h_logo {
  position: fixed;
  top: 56px;
  margin-left: -20px;
  width: 191px;
  height: 40px;
}

@media screen and (max-width: 1200px) {
  .h_logo {
    margin-left: 20px;
  }
}

@media screen and (max-width: 950px) {
  .main {
    padding-top: 0;
    overflow: hidden;
  }

  .h_logo_box {
    width: 100%;
  }

  .h_logo {
    position: fixed;
    top: 23px;
    margin-left: 10px;
    height: 29px;
    width: 140px;
  }
}

.slider_parent {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}

.slider_parent .slider {
  display: flex;
}

.text_scroll {
  animation: scroll 40s linear infinite;
}

.text_scroll_reverse {
  animation: scroll 40s linear infinite;
  animation-direction: reverse !important;
}

.logos {
  flex-shrink: 0;
}

.logos img {
  width: auto;
  height: 70px;
}

.slider_parent ul li {
  margin-left: 50px;
  margin-right: 50px;
}

.slider_parent ul li {
  display: inline-block;
}

.slider_parent ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.slider_parent ul li > a img {
  transition: 0.4s;
}
.slider_parent ul li > a img {
  max-width: 100% !important;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*  ----------------------------------------------------------
# 1.0 - メイン（main）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------

# 2.0 - ファーストビュー（fv_area）

----------------------------------------------------------  */
.bnr_area {
  padding-top: 180px;
}
.fv_area_wrap {
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 90;
}

.fv_area_inner {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  text-align: left;
  z-index: 5;
  box-sizing: border-box;
}

.fv_area_inner_img_box {
  position: absolute;
  bottom: 0;
  left: 45%;
  top: 50px;
  transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
  margin-left: 24px;
  display: none;
  opacity: 0;
}

.fv_area_inner_img_box.active {
  display: block;
  opacity: 1;
}

.fv_area_inner_img {
  position: absolute;
  max-height: 100vh;
  width: 590px;
  background-size: cover;
  height: 100%;
}
#fvimg_01 .fv_area_inner_img {
  background-image: url(../img/foy.png);
}
#fvimg_02 .fv_area_inner_img {
  background-image: url(../img/waki.png);
}
#fvimg_03 .fv_area_inner_img {
  background-image: url(../img/tanukana.png);
  width: 700px;
}

@media screen and (max-width: 767px) {
  #fvimg_03 .fv_area_inner_img {
    background-image: url(../img/tanukana.png);
    width: 100%;
  }
  #fvimg_04 .fv_area_inner_img {
    background-image: url(../img/STREAMER_okinawa.png);
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}

.fv_area_inner_logo {
  position: absolute;
  top: 218px;
  top: 50%;
  transform: translateY(-50%);
  left: -5%;
  opacity: 0.4;
  width: 50%;
  max-width: 700px;
}

.fv_area_inner_txt_box {
  clip: inherit !important;
  left: inherit !important;
  right: inherit !important;
  z-index: 10;
  width: 100%;
  position: absolute;
  bottom: 280px;
  right: -85px;
  transform: translateX(50%) !important;
}

.fv_area_inner_name {
  color: #6ec6d1;
  font-size: 70px;
  font-weight: bold;
}

.fv_area_inner_team {
  color: #6ec6d1;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-bottom: 3px;
}

.fv_area_inner_txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 22px;
  letter-spacing: 0;
}

.fv_more {
  text-align: left;
  padding-top: 46px;
}

.more_btn {
  font-size: 18px;
  color: #dddcdc;
  vertical-align: text-bottom;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
}

.more_btn:hover {
  color: #6ec6d1;
}

.more {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.more.about {
  text-align: left;
  justify-content: flex-start;
}

.arrow_icon {
  margin-left: 13px;
  width: 22.8px;
  height: 20.52px;
  background-image: url('../img/arrow.svg');
  background-size: contain;
  display: inline-block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.more_btn:hover .arrow_icon {
  background-image: url('../img/arrow_bl.svg');
}

@media screen and (max-width: 950px) {
  .fv_area_inner {
    width: 100%;
    max-width: 100%;
    height: 80vh;
  }

  .fv_area_inner_img_box {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow: hidden;
    bottom: -30px;
  }

  .fv_area_inner_logo {
    position: absolute;
    top: 89px;
    transform: none;
    left: auto;
    right: -7%;
    opacity: 0.4;
    width: 400px;
    max-width: 400px;
  }

  .fv_area_inner_txt_box {
    position: absolute;
    bottom: min(30vh, 200px) !important;
    right: auto !important;
    left: min(15vw, 100px) !important;
    transform: none !important;
  }

  .fv_area_inner_name {
    font-size: 40px;
  }

  .fv_area_inner_team {
    font-size: 16px;
    padding-bottom: 1px;
  }

  .fv_area_inner_txt {
    font-size: 10px;
    line-height: 18px;
  }

  .fv_more {
    text-align: left;
    padding-top: 23px;
  }

  .more_btn {
    font-size: 16px;
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .fv_area_inner {
    width: 100%;
    max-width: 100%;
    height: 113vh;
  }

  .fv_area_inner_img_box {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .fv_area_inner_logo {
    position: absolute;
    top: 89px;
    transform: none;
    left: auto;
    right: -98px;
    opacity: 0.4;
    width: 351px;
    max-width: 351px;
  }

  .fv_area_inner_img {
    width: 435px;
  }

  .fv_area_inner_txt_box {
    position: absolute;
    bottom: min(30vh, 200px) !important;
    right: auto !important;
    left: min(15vw, 45px) !important;
    transform: none !important;
  }
}

@media screen and (max-width: 450px) {
  .fv_area_inner_img_box {
    width: 110%;
    max-width: 110%;
  }

  .fv_area_inner_txt_box {
    left: 80px !important;
  }
  .fv_area_inner_img {
    /* width: 450px; */
    width: 100%;
    max-height: 90vh;
  }
}

/* cta */
.fv_cta {
  position: fixed;
  right: 28.5px;
  bottom: 38.6px;
  z-index: 9999;
}

.fv_cta_h-menu {
  position: absolute;
  right: 28.5px;
  bottom: 38.6px;
}

.fv_cta_list_item {
  text-align: center;
  padding-bottom: 35px;
}

.fv_cta_list_item:last-child {
  padding-bottom: 0;
}

.fv_cta_icon {
  width: 26px;
}

/*  ----------------------------------------------------------
# 2.0 - ファーストビュー（fv_area）‐ここまで‐
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 2.0 - バナーエリア（bnrContainer）
----------------------------------------------------------  */
.bnr_area_container {
  margin: 0 auto;
  text-align: center;
  width: 85%;
  max-width: 1800px;
  height: 100%;
  position: relative;
}

.bnr_area_item {
  cursor: pointer;
  margin-bottom: 100px;
  position: relative;
  padding: 3px;
  --x-gradient: linear-gradient(90deg, #6ec6d1 0 70px, transparent 0 calc(100% - 70px), #6ec6d1 calc(100% - 70px));
  --y-gradient: linear-gradient(#6ec6d1 0 70px, transparent 0 calc(100% - 70px), #6ec6d1 calc(100% - 70px));
  background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top, right, bottom, left;
}

.bnr_area_item_link img {
  display: block;
  width: 100%;
  box-shadow: 0px 0px 20px #000000;
  filter: blur(2px) grayscale(1);
  transition: all 0.3s;
  transform: scale(0.9);
}

.bnr_area_item:hover img {
  filter: blur(0px) grayscale(0);
  transform: scale(1);
}

@media screen and (max-width: 950px) {
  .bnr_area {
    padding-top: 100px;
    margin-bottom: 80px;
  }
  .bnr_area_item {
    margin-bottom: 50px;
    --x-gradient: linear-gradient(90deg, #6ec6d1 0 30px, transparent 0 calc(100% - 30px), #6ec6d1 calc(100% - 30px));
    --y-gradient: linear-gradient(#6ec6d1 0 30px, transparent 0 calc(100% - 30px), #6ec6d1 calc(100% - 30px));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  }
  .bnr_area_item_link img {
    filter: blur(0) grayscale(0);
    transform: scale(1);
  }
}

/* .line:nth-of-type(1) {
  display: block;
  width: 100px;
  height: 1px;
  background-color: #6ec6d1;
}
.line:nth-of-type(2) {
  display: block;
  width: 1px;
  height: 100px;
  background-color: #6ec6d1;
}

.line_wrap:nth-of-type(2) {
  transform: rotate(90deg);
} */

/*  ----------------------------------------------------------
# 2.0 - バナーエリア（bnrContainer）‐ここまで‐
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 3.0 - セクション基本（section）
----------------------------------------------------------  */

.section_wrapper {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.section {
  position: relative;
  text-align: center;
  min-height: 100vh;
  width: 100%;
}

.section_container {
  margin: 0 auto;
  text-align: center;
  max-width: 1200px;
  transform: translateY(25%);
  height: 100%;
  position: relative;
}

.section_ttl_box {
  position: relative;
}

.section_ttl {
  color: #6ec6d1;
  font-size: 40px;
  font-weight: bold;
  position: relative;
  text-align: left;
  z-index: 1;
}

.section_ttl::after {
  content: '';
  position: absolute;
  left: 30.5px;
  bottom: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .section_container {
    padding: 0 15px;
  }
}

@media screen and (max-width: 950px) {
  .section {
    min-height: auto;
  }

  .section_container {
    max-width: 100%;
    transform: none;
    height: auto;
    padding: 0 15px;
  }

  .section_ttl {
    font-size: 24px;
  }

  .section_ttl::after {
    left: 23px;
    bottom: 15px;
  }
}

/*  ----------------------------------------------------------
# 3.0 - セクション基本（section）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 4.0 - お知らせ（news）
----------------------------------------------------------  */

.news {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 950px) {
  .news {
    padding-bottom: 120px;
  }

  .news_container {
    padding: 0 15px;
  }
}

.news_list_wrap {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 27px;
  padding-top: 19px;
}

.lower_news_list.news_list_wrap {
  flex-wrap: wrap;
  gap: 70px 2%;
}

.news_ttl_box {
  padding-bottom: 80px;
}

.lower_container.news_list {
  padding: 0;
  padding-bottom: 130px;
  padding-top: 221px;
}

.news_box {
  width: 280px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 422px;
  z-index: 1;
  cursor: pointer;
}

.news_box:hover::after {
  opacity: 0;
}

.news_box:nth-of-type(2),
.news_box:nth-of-type(4) {
  margin-top: -70px;
}

.lower_news_list .news_box:nth-of-type(2),
.lower_news_list .news_box:nth-of-type(4) {
  margin-top: 0px;
}

.news_box:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 250px;
  height: 250px;
  border: solid 1px #6ec6d1;
  transition: all 0.3s;
  opacity: 1;
}

.news_box:nth-of-type(1):after,
.news_box:nth-of-type(3):after {
  top: 10px;
  right: 10px;
}

.news_box:nth-of-type(2):after,
.news_box:nth-of-type(4):after {
  top: 10px;
  right: -10px;
}

.lower_news_list .news_box:nth-of-type(2):after,
.lower_news_list .news_box:nth-of-type(4):after {
  top: -10px;
  right: 10px;
}

.news_img_box {
  width: 250px;
  height: 250px;
  object-fit: cover;
  position: relative;
  margin-bottom: -100px;
  z-index: 10;
  overflow: hidden;
}

.news_img {
  width: 100%;
  height: 100%;
}

.news_box_list {
  text-align: left;
  background-color: #313131;
  position: relative;
  width: 280px;
  height: 270px;
  padding-top: 123px;
  overflow: hidden;
}

.news_box_list::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: #6ec6d1;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
}

.news_dl {
  width: 100%;
  display: flex;
  gap: 16px 0;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 20px;
}

.news_dl dt {
  width: 100%;
  color: #6ec6d1;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: normal;
}

.news_dl dd {
  width: 100%;
  color: #dcdcdc;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.01em;

  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 1200px) {
  .news_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .news_box {
    width: calc(25% - 27px);
  }

  .news_box:after {
    width: 90%;
  }

  .news_box_list {
    width: 100%;
    height: 270px;
  }

  .news_img_box {
    width: 95%;
    height: 250px;
    position: relative;
    margin-bottom: -100px;
    z-index: 10;
  }

  .news_img_box::before {
    content: '';
    border: 1px solid #6ec6d1;
    width: 95%;
    height: 250px;
    position: absolute;
  }

  .news_dl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 950px) {
  .news_list_wrap {
    display: block;
    padding-top: 50px;
  }

  .news_box {
    width: 100%;
    max-width: 375px;
    height: auto;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 40px;
  }

  .news_box:nth-of-type(2),
  .news_box:nth-of-type(4) {
    margin-top: 0;
  }

  .news_box:nth-of-type(4) {
    display: none;
  }

  .mg_btm_sp {
    margin-bottom: 0;
  }

  .news_img_box {
    width: 150px;
    height: 150px;
    z-index: 10;
    position: absolute;
    left: 0;
    top: -32px;
    margin-bottom: 0;
  }

  .news_img_box::before {
    width: 150px;
    height: 150px;
  }

  .news_box:nth-of-type(1) .news_img_box::before,
  .news_box:nth-of-type(3) .news_img_box::before {
    top: -7px;
    left: 7px;
  }

  .news_box:nth-of-type(2) .news_img_box::before,
  .news_box:nth-of-type(4) .news_img_box::before {
    top: -7px;
    left: 7px;
  }

  .news_img {
    width: 100%;
    height: 100%;
  }

  .news_box_list {
    text-align: left;
    background-color: #313131;
    position: relative;
    width: 280px;
    height: 128px;

    overflow: hidden;
    padding-left: 85px;
    padding-top: 25px;
    padding-right: 15px;
    padding-bottom: 31px;
  }

  .news_box_list::after {
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
  }

  .news_dl {
    gap: 10px 0;
    padding-left: 22px;
  }

  .news_dl dt {
    font-size: 14px;
  }

  .news_dl dd {
    font-size: 14px;
  }

  .news_container .more {
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
  }

  .news_img_box div,
  .news_img_box::before {
    display: none;
  }

  .news_box:after {
    width: 150px;
    height: 150px;
    top: -39px !important;
    left: 7px !important;
  }
}

/* hover アニメーション*/
.news_img_box div {
  width: 250px;
  height: 250px;
  position: absolute;
}

.news_img_box:before,
.news_img_box:after,
.news_img_box div:before,
.news_img_box div:after {
  content: '';
  position: absolute;
  background: #6ec6d1; /*線の色*/
  right: -250px;
  width: 250px;
  height: 1px;
}

/* 左上→左下のボーダー */
.news_img_box div:before {
  top: -250px;
  left: 0;
  width: 1px;
  height: 250px;
}
.news_box:hover .news_img_box div:before {
  animation: topAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes topAnim {
  0% {
    top: -250px;
  }
  100% {
    top: 250px;
  }
}

/* 左→右のボーダー */
.news_img_box div:after {
  bottom: 0px;
  left: -250px;
  width: 250px;
  height: 1px;
}
.news_box:hover .news_img_box div:after {
  animation: leftAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes leftAnim {
  0% {
    left: -250px;
  }
  100% {
    left: 250px;
  }
}

/* 下→上のボーダー */
.news_img_box::before {
  bottom: -250px;
  right: 0px;
  width: 1px;
  height: 250px;
}
.news_box:hover .news_img_box::before {
  animation: bottomAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes bottomAnim {
  0% {
    bottom: -250px;
  }
  100% {
    bottom: 250px;
  }
}

/* 右→左のボーダー */
.news_img_box::after {
  top: 0px;
  right: -250px;
  width: 250px;
  height: 1px;
}
.news_box:hover .news_img_box::after {
  animation: rightAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes rightAnim {
  0% {
    right: -250px;
  }
  100% {
    right: 250px;
  }
}

/*  ----------------------------------------------------------
# 4.0 - お知らせ（news） -ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 5.0 - （about）
----------------------------------------------------------  */

.about {
  position: relative;
}

.about_logo_img_box {
  position: absolute;
  width: 1200px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: right;
  top: 0;
  z-index: -1;
}

.about_logo_img {
  position: absolute;
  top: 120px;
  right: 52px;
  text-align: right;
  width: 495px;
  height: auto;
}

.about_txt_area {
  width: 920px;
  margin: 0 auto;
  text-align: left;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
}

.about_catchttl {
  color: #dcdcdc;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: -0.015em;
  padding-bottom: 35px;
}

.about_txt {
  color: #dcdcdc;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.015em;
  line-height: 35px;
  padding-bottom: 30px;
}

.about_subttl {
  color: #6ec6d1;
  font-size: 32px;
  line-height: 55px;
  font-weight: bold;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}

@media screen and (max-width: 950px) {
  .about_logo_img_box {
    position: absolute;
    width: 100%;
    height: auto;
    left: auto;
    transform: none;
    text-align: right;
    top: -45px;
    top: 65px;
    right: 0;
  }

  .about_logo_img {
    position: absolute;
    top: 0;
    right: -60px;
    text-align: right;
    width: 287px;
    height: auto;
  }

  .about_txt_area {
    width: 100%;
    padding-top: 26px;
  }

  .about_catchttl {
    font-size: 50px;
    letter-spacing: -0.035em;
    padding-bottom: 25px;
    line-height: 56px;
  }

  .about_txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    padding-bottom: 20px;
  }

  .about_subttl {
    font-size: 23px;
    line-height: 41px;
  }
}

/*  ----------------------------------------------------------
# 5.0 - （about） -ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 6.0 - チーム（teams）
----------------------------------------------------------  */
.team {
  width: 100%;
}

.team_container {
  padding-top: 195px;
  padding-bottom: 164px;
  margin: 0 auto;
  text-align: center;
  max-width: 1200px;
}

.team_box_wrapper {
  width: 100%;
  padding-top: 70px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.team_box_wrapper_second {
  width: 100%;
  padding-top: 150px;
  display: flex;
  gap: 60px;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.team_box {
  width: 570px;
}

.tb_right {
  margin-top: -190px;
}

.tb_right {
  margin-top: -190px;
}

.team_box_inner {
  background-color: #000;
  border: 1px solid #707070;
  width: 570px;
  height: 323px;
  position: relative;
  z-index: 1;
}

.team_box_inner_img {
  background-color: #000;
  border: 1px solid #707070;
  width: 570px;
  height: 323px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team_box_inner_img .apex {
  width: 220px;
}

.team_box_inner::before {
  content: '';
  border: 1px solid #6ec6d1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.more_team {
  padding-top: 26px;
  text-align: left;
  display: flex;
  align-items: center;
  color: #dcdcdc;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.team_box:hover .more_team {
  color: #6ec6d1;
}

.team_box:hover .arrow_icon {
  background-image: url('../img/arrow_bl.svg');
}

.streamer_icon {
  width: 200px;
  height: auto;
}

.valorant_icon {
  width: 247px;
  height: auto;
}

.apex_regends {
  width: 247px;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .team_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team_box_wrapper {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap;
  }

  .team_box_wrapper_second {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team_box {
    width: calc(50% - 30px);
  }

  .team_box_inner {
    width: 100%;
    height: 323px;
  }

  .team_box_inner_img {
    width: 100%;
    height: 323px;
  }
}

@media screen and (max-width: 950px) {
  .team {
    padding-bottom: 32px;
  }

  .team_container {
    padding-top: 100px;
    padding-bottom: 32px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }

  .team_box_wrapper {
    width: 100%;
    padding-top: 45px;
    gap: 94px;
    justify-content: center;
  }

  .team_box_wrapper_second {
    width: 100%;
    padding-top: 94px;
    gap: 80px;
    justify-content: center;
  }

  .team_box {
    width: 315px;
  }

  .tb_right {
    margin-top: 0;
  }

  .team_box_inner {
    width: 315px;
    height: 178px;
  }

  .team_box_inner_img {
    width: 315px;
    height: 178px;
  }

  .streamer_icon {
    width: 117px;
    height: auto;
  }

  .valorant_icon {
    width: 125px;
    height: auto;
  }

  .apex_regends {
    width: 125px;
    height: auto;
  }

  .team_box_inner::before {
    top: -10px;
    right: -10px;
  }

  .team_box:nth-child(2) .team_box_inner::before {
    top: -10px;
    right: 10px;
  }

  .more_team {
    padding-top: 15px;
    font-size: 18px;
    text-align: right;
    justify-content: flex-end;
    padding-bottom: 58px;
    font-weight: 400;
  }
}

/*  ----------------------------------------------------------
# 6.0 - チーム（teams）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
7.0 - グッズ（goods）
----------------------------------------------------------  */
.goods {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 220px;
}
.goods_container {
  text-align: center;
  width: 100%;
}

.goods_container_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.goods_content {
  padding-top: 70px;
}

.goods_content .news_box {
  width: 380px;
  height: 350px;
  cursor: pointer;
}

.goods_content .news_box_list {
  width: 100%;
  position: relative;
  height: 350px;
  padding-top: 230px;
}

.goods_content .news_img_box {
  margin-bottom: -210px;
  position: relative;
  object-fit: contain;
}

.goods_content .news_img_box,
.goods_content .news_box:after {
  width: 350px;
  height: 350px;
}

.goods_content .news_dl dt {
  font-size: 16px;
  color: #dcdcdc;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.goods_content .news_dl {
  width: 350px;
  margin-left: auto;
  padding: 0 20px 0 0;
}

.goods_content .news_box_list::after {
  left: -30px;
  right: inherit;
}

.goods_content .more {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.goods_content .more_btn {
  font-size: 14px;
}

.goods_content .arrow_icon {
  width: 20px;
  height: 17px;
}

.goods_content .tag {
  display: inline-block;
  padding: 7px 12px;
  background-color: #6ec6d1;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Orbitron', sans-serif;
  position: absolute;
  text-transform: capitalize;
  z-index: 1;
}

.goods_content .news_box.soldout .tag {
  background-color: #ff0000;
  color: #fff;
}

.goods_content .news_box.soldout:after {
  border: solid 1px #ff0000;
}

.goods_content .soldout .news_box_list::after {
  background-color: #ff0000;
}

.goods_content .soldout .news_img_box:before,
.goods_content .soldout .news_img_box:after,
.goods_content .soldout .news_img_box div:before,
.goods_content .soldout .news_img_box div:after {
  background: #ff0000;
}

.goods_content .news_box:nth-of-type(odd):after {
  top: -10px;
  right: -10px;
}

.goods_content .news_box:nth-of-type(2),
.goods_content .news_box:nth-of-type(4) {
  margin-top: 0;
}

.goods_content .news_list_wrap {
  flex-wrap: wrap;
  gap: 230px 30px;
}

/* hover アニメーション*/

.goods_content .news_box .news_img {
  transition: all 0.3s;
}

.goods_content .news_box:hover .news_img {
  transform: scale(1.05, 1.05);
}

.goods_content .news_box:hover .more_btn {
  color: #6ec6d1;
}

.goods_content .news_box:hover .arrow_icon {
  background-image: url(../img/arrow_bl.svg);
}

.goods_content .news_box.soldout:hover .more_btn {
  color: #ff0000;
}

.goods_content .news_box.soldout:hover .arrow_icon {
  background-image: url(../img/arrow_red.svg);
}

.goods_content .news_img_box div {
  width: 350px;
  height: 350px;
  position: absolute;
}

.goods_content .news_img_box:before,
.goods_content .news_img_box:after,
.goods_content .news_img_box div:before,
.goods_content .news_img_box div:after {
  content: '';
  position: absolute;
  background: #6ec6d1; /*線の色*/
  right: -350px;
  width: 350px;
  height: 1px;
}

/* 左上→左下のボーダー */
.goods_content .news_img_box div:before {
  top: -350px;
  left: 0;
  width: 1px;
  height: 350px;
}
.goods_content .news_box:hover .goods_content .news_img_box div:before {
  animation: topAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes topAnim {
  0% {
    top: -350px;
  }
  100% {
    top: 350px;
  }
}

/* 左→右のボーダー */
.goods_content .news_img_box div:after {
  bottom: 0px;
  left: -350px;
  width: 350px;
  height: 1px;
}
.goods_content .news_box:hover .goods_content .news_img_box div:after {
  animation: leftAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes leftAnim {
  0% {
    left: -350px;
  }
  100% {
    left: 350px;
  }
}

/* 下→上のボーダー */
.goods_content .news_img_box::before {
  bottom: -350px;
  right: 0px;
  width: 1px;
  height: 350px;
}
.goods_content .news_box:hover .goods_content .news_img_box::before {
  animation: bottomAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes bottomAnim {
  0% {
    bottom: -350px;
  }
  100% {
    bottom: 350px;
  }
}

/* 右→左のボーダー */
.goods_content .news_img_box::after {
  top: 0px;
  right: -350px;
  width: 350px;
  height: 1px;
}
.goods_content .news_box:hover .goods_content .news_img_box::after {
  animation: rightAnim 2s forwards; /* forwardsを追加 */
  animation-delay: 0s;
  animation-iteration-count: 1; /* アニメーションの回数を1回に設定 */
}
@keyframes rightAnim {
  0% {
    right: -350px;
  }
  100% {
    right: 350px;
  }
}

@media screen and (max-width: 950px) {
  .goods {
    width: 100%;
    padding-bottom: 0;
    padding-top: 100px;
  }
  .goods_container {
    padding-bottom: 32px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  .goods_content {
    padding-top: 20px;
  }
  .goods_content .news_img_box,
  .goods_content .news_box:after {
    width: 168px;
    height: 168px;
  }
  .goods_content .news_box_list {
    text-align: left;
    background-color: #313131;
    position: relative;
    width: 280px;
    height: 143px;
    overflow: hidden;
    padding-left: 125px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 31px;
  }
  .goods_content .news_img_box {
    width: 168px;
    height: 168px;
    z-index: 10;
    position: absolute;
    left: 0;
    top: -32px;
    margin-bottom: 0;
  }
  .goods_content .news_box {
    width: 100%;
    max-width: 375px;
    height: auto;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 64px;
  }
  .goods_content .news_box:last-of-type {
    margin-bottom: 0;
  }
  .goods_content .news_box_list::after {
    left: inherit;
    right: -40px;
    bottom: -40px;
    width: 80px;
    height: 80px;
  }
  .goods_content .news_dl dt {
    font-size: 14px;
  }
  .goods_content .news_dl {
    width: 100%;
    padding: 0;
  }
  .goods_content .more {
    bottom: 6px;
    right: 1px;
  }
  .goods_content .arrow_icon {
    background-image: url(../img/arrow_black.svg);
    z-index: 999;
    width: 20px;
    height: 18px;
  }
  .goods_content .news_box.soldout .arrow_icon {
    background-image: url(../img/arrow_white.svg);
  }
  .goods_content .tag {
    font-size: 14px;
    padding: 5px 10px;
  }
}

/*  ----------------------------------------------------------
7.0 - グッズ（goods）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
7.0 - スポンサー（sponsors）
----------------------------------------------------------  */

.sponsors {
  width: 100%;
  padding-top: 145px;
}
.sponsors_container {
  background-color: #2b2b2b;
  text-align: center;
  width: 100%;
  padding-bottom: 100px;
}

.sponsors_container_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sponsors_ttl,
.goods_ttl {
  padding-top: 15px;
}

.sponsors_logo_area {
  display: flex;
  gap: 116px;
  padding-top: 97px;
  padding-bottom: 138px;
  padding-left: 90px;
  align-items: baseline;
}

.astromeda_logo {
  width: auto;
  height: 60px;
}

.voidgamming_logo {
  width: auto;
  height: 60px;
}

.sinragaming_logo {
  width: auto;
  height: 60px;
}

.AIMchair_logo {
  width: 290px;
  height: 50px;
}

@media screen and (max-width: 1200px) {
  .sponsors_container_inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 950px) {
  .sponsors {
    width: 100%;
    padding-top: 100px;
  }

  .sponsors_container_inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  .sponsors_ttl,
  .goods_ttl {
    padding-top: 6px;
  }

  .sponsors_logo_area {
    padding-top: 43px;
    padding-bottom: 45px;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
    gap: 45px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .astromeda_logo {
    width: 140px;
    height: auto;
  }

  .AIMchair_logo {
    width: 209.5px;
    height: 36px;
  }
  .voidgamming_logo {
    height: 53px;
  }
  .sinragaming_logo {
    height: 48px;
  }
}

/*  ----------------------------------------------------------
#7.0 - スポンサー（sponsors） -ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 8.0 - お問い合わせ（contact）
----------------------------------------------------------  */

.contact {
  width: 100%;
  padding-top: 220px;
  padding-bottom: 114px;
}

.contact_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.contact_txt {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 25px;
  padding-top: 20px;
  padding-bottom: 54px;
}

.contact_btn {
  color: #6ec6d1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
  font-size: 26px;
  font-weight: normal;
  letter-spacing: -0.01em;
  /* border: 1px solid #6EC6D1; */
  width: 430px;
  height: 116px;
  padding-right: 51px;
  position: absolute;
  top: 13px;
  left: 328px;
}

.arrow_icon_contact {
  margin-left: 22px;
  width: 22.8px;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .contact_container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 950px) {
  .contact {
    width: 100%;
    padding-top: 104px;
    padding-bottom: 85px;
  }

  .contact_container {
    max-width: 100%;
    padding: 0 15px;
  }

  .contact_txt {
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 25px;
  }

  .contact_btn {
    font-size: 22px;
    width: 315px;
    height: 82px;
    padding-right: 18px;
    position: static;
    margin: 0 auto;
  }

  .arrow_icon_contact {
    margin-left: 54px;
    width: 25px;
    height: auto;
  }
  .arrow_icon {
    margin-left: 8px;
  }
}

/*  ----------------------------------------------------------
# 8.0 - お問い合わせ（contact）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 9.0 - フッター（footer）
----------------------------------------------------------  */
.footer {
  background-color: #000;
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  z-index: 0;
}

.footer_container {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 145px;
  padding-bottom: 40px;
}

.footer_logo_area {
  margin: 0 auto;
  width: 1020px;
}

.footer_logo {
  width: 1020px;
  text-align: center;
}

@media screen and (max-width: 950px) {
  .footer_container {
    margin: 0 auto;
    max-width: 100%;
    padding-top: 59px;
    padding-bottom: 26px;
  }

  .footer_logo_area {
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  .footer_logo {
    width: 100%;
    max-width: 375px;
    text-align: center;
  }
}

/*---フッターナビ---*/
.footer_nav_area {
  padding-top: 47px;
}

.f_nav_list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 56px;
}

.f_nav_list_item {
  font-size: 16px;
  letter-spacing: -0.01em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.f_nav_list_item a {
  color: #dcdcdc;
  transition: all 0.3s;
}

.f_nav_list_item a:hover {
  color: #6ec6d1;
}

.link_icon {
  margin-left: 6px;
  vertical-align: baseline;
  width: 12.5px;
  height: 12.5px;
}

.footer_bottom {
  padding-top: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_nav_second_list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer_nav_second_list_item a {
  cursor: pointer;
  font-size: 14px;
  color: #969696;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  transition: all 0.3s;
}
.footer_nav_second_list_item a:hover {
  color: #6ec6d1;
}

.copyright {
  color: #969696;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: -0.01em;
  text-align: center;
}

@media screen and (max-width: 950px) {
  .footer_nav {
    text-align: center;
    padding-bottom: 38px;
  }

  .footer_nav_area {
    padding-top: 30px;
  }

  .f_nav_list {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 17px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .f_nav_list_item {
    font-size: 14px;
    letter-spacing: -0.01em;
  }

  .f_nav_list_item a {
    color: #dcdcdc;
  }

  .link_icon {
    margin-left: 6px;
    vertical-align: baseline;
    width: 12.5px;
    height: 12.5px;
  }

  .copyright {
    font-size: 10px;
    padding-top: 22px;
  }

  .footer_bottom {
    display: block;
    padding-top: 30px;
  }

  .footer_nav_second_list {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer_nav_second_list_item a {
    font-size: 12px;
  }

  /* cta SP*/
  .fv_cta_list_sp {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
  }

  .fv_cta_list_item_sp {
    text-align: center;
  }

  .fv_cta_list_item_sp a {
    height: 25px;
    display: flex;
    align-items: center;
  }
}

/*  ----------------------------------------------------------
# 9.0 - フッター（footer） -ここまで-
----------------------------------------------------------  */
/*  ----------------------------------------------------------
# 10.0 - ハンバーガーメニュー（hamburger-menu）
----------------------------------------------------------  */
.c-header-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  right: 51px;
  top: 66px;
}

@media screen and (max-width: 950px) {
  .c-header-menu {
    right: 15px;
    top: 28px;
  }
}

.c-header-menu .is-line {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: normal;
  font-size: 12px;
  text-align: center;
  width: 50px;
  height: 20px;
}

.c-header-menu a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 10px;
}

.c-header-menu a .is-line span {
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  position: relative;
}

.c-header-menu a span::before,
.c-header-menu a span::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #6ec6d1;
  display: inline-block;
  vertical-align: bottom;
  position: absolute;
  left: 0;
}

.c-header-menu a span::before {
  top: 0px;
}

.c-header-menu a span::after {
  vertical-align: -1px;
  top: 20px;
}

.c-header-menu a span::before,
.c-header-menu a span::after {
  /* 共通のスタイル */
  transition: transform 0.3s ease;
  /* アニメーションの追加 */
}

.c-header-menu a span.is-show::before {
  content: '';
  transform: rotate(-30deg);
  top: 9px;
  transition: transform 0.3s ease;
  /* アニメーションをスムーズにする */
}

.c-header-menu a span.is-show::after {
  content: '';
  transform: rotate(30deg);
  top: 9px;
  transition: transform 0.3s ease;
  /* アニメーションをスムーズにする */
}

@media screen and (max-width: 950px) {
  .c-header-menu .is-line {
    width: 40px;
    height: 15px;
  }

  .c-header-menu a span::before,
  .c-header-menu a span::after {
    width: 40px;
    /* スマートフォン・タブレットで見たときは"sp"のclassがついた画像が表示される */
  }

  .c-header-menu a span::after {
    top: 15px;
  }

  .c-header-menu a span.is-show::before {
    content: '';
    transform: rotate(-30deg);
    top: 9px;
    transition: transform 0.3s ease;
  }

  .c-header-menu a span.is-show::after {
    content: '';
    transform: rotate(30deg);
    top: 9px;
    transition: transform 0.3s ease;
  }
}

/*---メニュー内---*/

.l-hamburger-navwrap {
  position: relative;
  background-color: #000;
  width: 100%;
  height: 100%;
}

.c-hamburger-nav-large_wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  padding-left: 120px;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.c-hamburger-nav-large_deco_box {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.43;
  height: 100%;
  width: 100%;
}

.h_menu_deco_txt {
  position: absolute;
  font-size: clamp(170px, 13.6vw, 197px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #6ec6d1;
  writing-mode: vertical-lr;
  height: 100%;
  opacity: 0.5;
}

/*
.dont{
  right: -55px;
  top: -30px;
}

.letme{
  font-size:  clamp(170px, 13.6vw, 198px);
  right: 45px;
  top: 152px;
}

.say{
  font-size:  clamp(170px, 13.6vw, 199px);
  -webkit-text-stroke: 1px #818181;
  right: 172px;
  top: 21px;
}

.easy{
  font-size:  clamp(170px, 13.6vw, 198px);
  right: 326px;
  top: 226px;
}

.game{
  font-size:  clamp(170px, 13.6vw, 198px);
  -webkit-text-stroke: 1px #818181;
  right: 426px;
  top: 26px;
} */

.dont {
  right: -3.819vw;
  top: -2.083vw;
}

.letme {
  font-size: clamp(170px, 13.6vw, 198px);
  right: 3.125vw;
  top: 10.556vw;
}

.say {
  font-size: clamp(170px, 13.6vw, 199px);
  -webkit-text-stroke: 1px #818181;
  right: 11.944vw;
  top: 1.458vw;
}

.easy {
  font-size: clamp(170px, 13.6vw, 198px);
  right: 22.639vw;
  top: 15.694vw;
}

.game {
  font-size: clamp(170px, 13.6vw, 198px);
  -webkit-text-stroke: 1px #818181;
  right: 29.583vw;
  top: 1.806vw;
}

.h_menu_line {
  height: 100vh;
  position: absolute;
  left: 48.264vw;
  top: -0.069vw;
  overflow: hidden;
}

.h_menu_line_img {
  height: 105%;
  object-fit: contain;
}

.c-hamburger-nav-large {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding-left: 54px;
  position: relative;
}

.l-hamburger-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  bottom: 0;
  right: -100%;
  transition: right 0.5s ease-in-out;
  background-color: #000;
  max-height: 100vh;
  /* overflow-y: auto; */
}

.h_menu_list {
  display: flex;
  font-size: 62px;
  font-weight: bold;
  color: rgb(255 255 255 / 50%);
  position: relative;
}

.h_menu_list.news {
  padding-bottom: 0;
}

.h_menu_list_teams {
  margin-top: 8px;
}

.h_menu_list_teams_item {
  padding-top: 8px;
  display: list-item;
  font-size: 24px;
  font-weight: bold;
  line-height: 39px;
  color: rgb(220 220 220 / 50%);
  transition: all 0.3s;
}

.h_menu_list_teams_item:hover {
  color: #6ec6d1;
}

.h_menu_list_teams_item span {
  font-weight: normal;
}

.h_menu_list::after {
  width: 370px;
  height: 82px;
  position: absolute;
  left: -36px;
  top: -33px;
  font-size: 113px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #6ec6d1;
  opacity: 0;
  transition: all 0.3s;
}
.h_menu_list.home::after {
  content: 'HOME';
}
.h_menu_list.news::after {
  content: 'NEWS';
}
.h_menu_list.about::after {
  content: 'ABOUT';
}
.h_menu_list.teams::after {
  content: 'TEAMS';
}

.h_menu_list:hover {
  color: #6ec6d1;
}

.h_menu_list:hover::after {
  opacity: 0.38;
}

.h_contact_btn_wrapper {
  position: absolute;
  bottom: 245px;
  right: 22.917vw;
}

.h_contact_btn {
  color: #6ec6d1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
  font-size: 37px;
  font-weight: bold;
  letter-spacing: -0.01em;
  overflow: hidden;
}

.h_contact_btn::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #6ec6d1;
  opacity: 0;
  transition: all 0.3s;
  left: -100%;
}

.h_contact_btn:hover {
  color: #6ec6d1;
}

/* Effect1
 *************************************** */
/* 擬似要素の共通スタイル */
.contact_btn::after,
.contact_btn::before,
.contact_btn span::after,
.contact_btn span::before {
  background-color: #6ec6d1;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
/* 左上へ配置 */
.contact_btn::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}
/* 右下へ配置 */
.contact_btn::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}
/* 左下へ配置 */
.contact_btn span::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}
/* 右上へ配置 */
.contact_btn span::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}

/* hover */
.contact_btn:hover::after,
.contact_btn:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}

.contact_btn:hover span::after,
.contact_btn:hover span::before {
  height: 100%;
  height: calc(100% + 1px);
}

.h_arrow_icon_contact {
  margin-left: 22px;
  width: 22.8px;
  height: auto;
}

.l-hamburger-nav.is-show {
  bottom: 0;
  right: 0;
}

.l-hamburger-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 400;
  display: none;
}

.l-hamburger-background.is-show {
  display: block;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media screen and (min-width: 1680px) {
  .dont {
    right: -2.778vw;
    font-size: clamp(198px, 12vw, 250px);
    top: -1.515vw;
    top: min(-1.515vw, -30px);
  }

  .letme {
    font-size: clamp(198px, 12vw, 250px);
    right: 6vw;
    top: 7.677vw;
    top: min(10vw, 152px);
  }

  .say {
    font-size: clamp(198px, 12vw, 250px);
    -webkit-text-stroke: 1px #818181;
    right: 14vw;
    top: 1.061vw;
  }

  .easy {
    font-size: clamp(198px, 12vw, 250px);
    right: 23vw;
    top: 15vw;
    top: min(15vw, 226px);
  }

  .game {
    font-size: clamp(198px, 12vw, 250px);
    -webkit-text-stroke: 1px #818181;
    right: 31vw;
    top: 1.313vw;
  }
}

@media screen and (max-width: 1200px) {
  .c-hamburger-nav-large_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-left: 50px;
    padding-top: 120px;
    position: relative;
  }

  .h_menu_line {
    /* left: 500px; */
    left: 41.667vw;
  }

  .dont {
    right: -4.583vw;
    top: -2.5vw;
  }

  .letme {
    font-size: clamp(170px, 13.6vw, 198px);
    right: 3.75vw;
    top: 12.667vw;
  }

  .say {
    font-size: clamp(170px, 13.6vw, 199px);
    -webkit-text-stroke: 1px #818181;
    right: 14.333vw;
    top: 1.75vw;
  }

  .easy {
    font-size: clamp(170px, 13.6vw, 198px);
    right: 27.167vw;
    top: 18.833vw;
  }

  .game {
    font-size: clamp(170px, 13.6vw, 198px);
    -webkit-text-stroke: 1px #818181;
    right: 35.5vw;
    top: 2.167vw;
  }
}

@media screen and (max-width: 950px) {
  .c-hamburger-nav-large_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 85px;
    position: relative;
    /* background-image: url("../img/h_menu_bg.svg");
    background-position: 100% 113px;
    background-size: contain; */
  }

  .c-hamburger-nav-large {
    width: 100%;
    gap: 16px;
    padding-left: 15px;
    padding-bottom: 50px;
  }

  .c-hamburger-nav-large_deco_box {
    right: 0;
    top: 113px;
    opacity: 0.25;
  }

  .h_menu_deco_txt {
    font-size: clamp(118px, 29vw, 130px);
  }

  .dont {
    right: -30px;
    top: 0;
  }

  .letme {
    right: 61px;
    top: 92px;
  }

  .say {
    right: 111px;
    top: 31px;
    -webkit-text-stroke: 1px #818181;
  }

  .easy {
    right: 205px;
    top: 226px;
  }

  .game {
    right: 265px;
    right: 58.889vw;
    right: min(70vw, 280px);
    top: 26px;
    -webkit-text-stroke: 1px #818181;
  }

  .h_menu_line {
    display: none;
  }

  .h_menu_list {
    font-size: 40px;
  }

  .h_menu_list.home::after,
  .h_menu_list.news::after,
  .h_menu_list.about::after,
  .h_menu_list.teams::after {
    display: none;
  }

  .h_menu_list_teams {
    margin-top: 0;
  }

  .h_menu_list_teams_item {
    padding-top: 14px;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
  }

  .h_menu_list_teams_item:hover {
    color: rgb(220 220 220 / 50%);
  }

  .h_contact_btn_wrapper {
    position: static;
    margin: 0 auto;
    text-align: center;
  }

  .h_contact_btn {
    border: 1px solid #6ec6d1;
    width: 315px;
    height: 82px;
    justify-content: flex-end;
    margin-left: 0;
    text-align: center;
    font-size: 22px;
    padding-right: 18px;
  }

  .h_arrow_icon_contact {
    margin-left: 55px;
    width: 22.8px;
    height: auto;
  }
}

@media screen and (max-width: 500px) {
  .h_contact_btn {
    margin: 0 auto;
  }

  .h_menu_list:hover::before {
    opacity: 1;
    width: 100%;
    left: 0;
  }
}

/*  ----------------------------------------------------------
# 10.0 - ハンバーガーメニュー（hamburger-menu） -ここまで-
----------------------------------------------------------  */
/*  ----------------------------------------------------------
# 11.0 - 共通 ‐ 変更・追加用
----------------------------------------------------------  */

/*---アンカーリンク位置調整用---*/
a.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
  position: relative;
  z-index: -1;
}

/*  ----------------------------------------------------------
# 11.0 - 共通 ‐ 変更・追加用 -ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 12.0 - 下層・お問い合わせ（contact）
----------------------------------------------------------  */

/* contact */

.lower_contact {
  width: 100%;
  padding-top: 220px;
  padding-bottom: 120px;
}

.lower_contact_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.lower_contact_ttl::after {
  background-image: url('../img/CONTACT.svg');
  width: 679px;
  height: 144px;
}

.lower_contact_txt {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.015em;
  line-height: 25px;
  padding-top: 20px;
  padding-bottom: 54px;
}

.contact_case {
  color: #dcdcdc;
  margin-bottom: 30px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  padding-top: 40px;
}

.contact_form_wrap {
  margin-top: 73px;
  position: relative;
}

.contact_order {
  position: absolute;
  left: 0;
  top: 0;
}

.order {
  margin-bottom: 84px;
  position: relative;
  text-align: center;
}

.order::after {
  content: '';
  width: 14px;
  height: 14px;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  transform: translateX(-50%) rotate(135deg);
  position: absolute;
  bottom: -36px;
  left: 50%;
}

.order_now::after {
  border-top: 1px solid #6ec6d1;
  border-right: 1px solid #6ec6d1;
}

.order:last-child::after {
  display: none;
}

.order_txt {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  color: #969696;
  font-size: 16px;
  line-height: 22px;
}

.number {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  padding-bottom: 4px;
}

.order_now .order_txt {
  color: #dcdcdc;
}

.order_now .number {
  color: #6ec6d1;
}

.contact_info {
  margin: 0 auto;
  text-align: center;
  z-index: 5;
  position: relative;
}

.contact_form {
  width: 714px;
  margin: 0 auto;
  color: #dcdcdc;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
}

.input-form {
  padding-bottom: 100px;
}

.form_dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 50px;
  width: 100%;
  position: relative;
}

.form_dl:last-child {
  padding-bottom: 0;
}

.border_bottom {
  border-bottom: 1px solid #707070;
  padding-top: 30px;
  padding-bottom: 17px;
}

.border_bottom:first-child {
  padding-top: 0;
}

.border_bottom:last-child {
  border-bottom: none;
}

.form_dl dt {
  width: 100%;
  text-align: left;
  padding-bottom: 15px;
}

.form_dl dd {
  text-align: left;
  width: 100%;
  position: relative;
  font-size: 16px;
  color: #969696;
}

select {
  position: relative;
  padding: 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #969696;
}

.form_dl_content {
  align-items: flex-start;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  margin-right: 5px;
}

.checkbox_txt_content {
  display: flex;
  align-items: center;
}

.mwform-checkbox-field label {
  display: flex;
  align-items: center;
  padding-right: 15px;
}

.checkbox_txt_content span {
  align-self: baseline;
}

.label_item {
  color: #dcdcdc;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
}

.w1 {
  max-width: 714px;
  width: 100%;
  background-color: #464646;
  border: 1px solid #6ec6d1;
  padding-left: 20px;
  padding-top: 19px;
  padding-bottom: 18px;
  display: block;
  color: #969696;
  font-size: 15px;
}

.form-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 70px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
  color: #6ec6d1;
  border: 1px solid #6ec6d1;
  overflow: hidden;
}

.thanks-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 70px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
  color: #6ec6d1;
  border: 1px solid #6ec6d1;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #6ec6d1;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
}

.thanks-btns::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #6ec6d1;
  opacity: 0;
  transition: all 0.3s;
  left: -100%;
}

.thanks-btns:hover::before {
  opacity: 1;
  width: 100%;
  left: 0;
}

.c-btn-next {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #6ec6d1;
  font-family: 'Orbitron', sans-serif;
  width: 100%;
  height: 100%;
}

.form-btns::after,
.thanks-btns::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/arrow_bl.svg');
  width: 20px;
  height: 18px;
}

option {
  font-size: 15px;
  border-radius: 0;
}

.contact_thanks_box {
  padding-top: 76px;
  margin: 0 auto;
  text-align: center;
}

.contact_thanks_ttl {
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 0;
  font-family: 'Orbitron', sans-serif;
  color: #6ec6d1;
  padding-bottom: 13px;
}

.contact_thanks_subttl {
  color: #dcdcdc;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  padding-bottom: 50px;
}

.contact_thanks_txt {
  color: #dcdcdc;
  font-size: 16px;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  padding-bottom: 70px;
}

@media screen and (max-width: 950px) {
  .lower_contact {
    padding: 150px 15px 50px;
  }

  .lower_contact_ttl::after {
    width: 283px;
    height: 60px;
  }

  .contact_case {
    font-size: 14px;
    line-height: 22px;
    padding-top: 20px;
    margin-bottom: 30px;
  }

  .contact_form {
    width: 100%;
  }

  .w1 {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .label_item {
    font-size: 14px;
  }

  .form_dl {
    padding-bottom: 30px;
  }

  .form_dl dt {
    padding-bottom: 7px;
  }

  .input-form {
    padding-bottom: 50px;
  }

  .contact_form_wrap {
    margin-top: 30px;
  }

  .contact_info {
    padding-top: 100px;
  }

  .contact_order {
    display: flex;
    gap: 40px;
  }

  .order::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #969696;
    border-right: 1px solid #969696;
    transform: translate(-50%) rotate(45deg);
    position: absolute;
    bottom: 35%;
    left: 120%;
  }

  .number {
    font-size: 16px;
  }

  .order_txt {
    font-size: 14px;
  }

  .border_bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contact_thanks_box {
    padding-top: 50px;
  }

  .contact_thanks_ttl {
    font-size: 40px;
  }

  .contact_thanks_subttl {
    font-size: 20px;
    padding-bottom: 30px;
  }

  .contact_thanks_txt {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .w1 {
    max-width: 100%;
  }
}

/*  ----------------------------------------------------------
# 12.0 - 下層・お問い合わせ（contact） -ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 13.0 - 下層・チーム一覧（lower_teams）
----------------------------------------------------------  */

.lower_teams {
  padding-top: 154px;
  margin-bottom: 125px;
  width: 100%;
}

.lower_teams_container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: content-box;
  padding-bottom: 115px;
}

.lower_teams_container:first-child {
  padding-bottom: 162px;
}

.lower_teams_container:last-child {
  padding-bottom: 0;
}

.lower_teams_logo_box {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 23px;
}

.pd-btm30 {
  padding-bottom: 30px;
}

.pd-btm20 {
  padding-bottom: 20px;
}

.pd-btm104 {
  padding-bottom: 104px;
}

.lower_teams_icon_streamer {
  width: 162px;
  height: auto;
}

.lower_teams_name {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
}
@media screen and (max-width: 950px) {
  .lower_teams_name {
    font-size: 18px;
  }
}

.lower_teams_member_wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 44px;
  align-items: end;
  padding-top: 5px;
}

.member_box {
  width: calc(33% - 30px);
  min-width: 370px;
  position: relative;
  display: flex;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

/* .member_box_inner{
  position: relative;
  height: 100%;
  width: 100%;
}

 */

.member_imgarea {
  min-width: 303px;
  width: 100%;
  position: relative;
  margin-left: 43px;
  display: flex;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.member_box_noimg .member_imgarea {
  align-self: center;
  margin-bottom: 133px;
  margin-left: 0;
  justify-content: center;
}

.member_img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  height: 400px;
  width: auto;
}

.member_img.logo{
  width: 80%;
  height: auto;
  display: block;
  margin-bottom: 100px;
  margin-left: 25px;
}

.member_box:hover .member_img {
  transform: scale(1.1);
}

.member_profarea {
  position: absolute;
  bottom: 58px;
  left: 0;
  width: 100%;
  text-align: left;
}

.member_prof_name {
  color: #6ec6d1;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  padding-bottom: 8px;
  position: relative;
}

.member_prof_name::before {
  content: '';
  position: absolute;
  background-color: #5a5a5a;
  width: 325px;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.member_prof_name::after {
  content: '';
  position: absolute;
  background-color: #5a5a5a;
  bottom: 19px;
  left: 317px;
  width: 57px;
  height: 1px;
  transform: rotate(138deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  /* display: none; */
}

.member_prof_name span::before {
  content: '';
  position: absolute;
  background-color: #6ec6d1;
  width: 325px;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;

  overflow: hidden;
  z-index: 10;
}

.member_prof_name span::after {
  content: '';
  position: absolute;
  background-color: #6ec6d1;
  bottom: 0px;
  left: 326px;
  width: 0;
  height: 1px;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  transition-delay: 0.3s;
  overflow: hidden;
  z-index: 10;
  transform: rotate(138deg);
}

/* hover */

.member_box:hover .member_prof_name span::before {
  width: 325px;
  opacity: 1;
}

.member_box:hover .member_prof_name span::after {
  width: 57px;
  bottom: 19px;
  opacity: 1;
  left: 317px;
}

.member_prof_txt {
  font-size: 11px;
  color: #969696;
  line-height: 22px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 950px) {
  .lower_teams {
    padding-top: 100px;
  }

  .lower_teams_container {
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: 70px;
  }

  .lower_teams_container:first-child {
    padding-bottom: 70px;
  }

  .lower_teams_logo_box {
    display: block;
    text-align: center;
  }

  .lower_teams_icon_streamer {
    width: 100px;
    height: auto;
    margin-bottom: 12px;
  }

  .lower_teams_icon_valorant {
    width: 130px;
    height: auto;
    margin-bottom: 12px;
  }

  .lower_teams_member_wrapper {
    gap: 0;
  }

  .member_box {
    min-width: 50%;
  }

  .member_imgarea {
    min-width: 100%;
    margin-left: 0;
  }

  .member_profarea {
    width: 90%;
  }

  .member_prof_name {
    font-size: 18px;
  }

  .member_prof_txt {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .member_prof_name::before {
    width: 280px;
  }

  .member_prof_name::after {
    left: 273px;
    width: 57px;
  }

  .member_prof_name span::before {
    width: 0;
  }

  .member_prof_name span::after {
    left: 280px;
    width: 0;
  }

  /* hover */

  .member_box:hover .member_prof_name span::before {
    width: 280px;
    opacity: 1;
  }

  .member_box:hover .member_prof_name span::after {
    width: 57px;
    bottom: 19px;
    left: 273px;
  }
}

@media screen and (max-width: 680px) {
  .lower_teams_member_wrapper {
    gap: 15px;
  }

  .member_box {
    min-width: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
  }

  .member_profarea {
    width: 100%;
    bottom: 27px;
  }

  .member_prof_name::before {
    width: calc(100% - 60px);
  }

  .member_prof_name::after {
    left: calc(100% - 66px);
    width: 40px;
    bottom: 13px;
  }

  .member_box_noimg .member_imgarea .member_img {
    width: 90px;
    opacity: 0.6;
  }

  .member_box_noimg .member_imgarea {
    margin-bottom: 113px;
  }

  .member_prof_name span::before {
    width: 0;
  }

  .member_prof_name span::after {
    left: calc(100% - 63px);
    width: 0;
  }

  /* hover */

  .member_box:hover .member_prof_name span::before {
    width: calc(100% - 60px);
    opacity: 1;
  }

  .member_box:hover .member_prof_name span::after {
    left: calc(100% - 66px);
    width: 40px;
    bottom: 13px;
  }
  .member_img.logo{
    margin-left: 15px;
  }
}

@media screen and (max-width: 400px) {
  .member_prof_name::before {
    width: 125px;
  }

  .member_prof_name::after {
    left: 122px;
    width: 22px;
    bottom: 7px;
  }

  /* hover */

  .member_box:hover .member_prof_name span::before {
    width: 125px;
    opacity: 1;
  }

  .member_box:hover .member_prof_name span::after {
    left: 122px;
    width: 22px;
    bottom: 7px;
  }
}

/*  ----------------------------------------------------------
# 13.0 - 下層・チーム一覧（lower_teams）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 14.0 - 下層・メンバー詳細（team_desc）
----------------------------------------------------------  */

.team_desc_inner {
  padding-top: 190px;
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}

.team_desc_ttl_posi {
  font-size: 20px;
  color: #6ec6d1;
}

.team_desc_ttl_posi span {
  color: #dcdcdc;
  font-size: 16px;
}

.team_desc_ttl_name {
  font-size: 70px;
  font-weight: 700;
  color: #6ec6d1;
  margin-bottom: 10px;
  line-height: 88px;
}

.team_desc_ttl_name.ja {
  letter-spacing: -0.1em;
}
.team_desc_txt_deco {
  color: #969696;
  line-height: 1.5;
  font-size: 13px;
  margin-bottom: 90px;
}

.team_desc_txt_prof {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  width: 285px;
  margin-bottom: 15px;
  font-weight: 400;
  color: #969696;
  font-size: 12px;
  line-height: 1.75;
}

.team_desc_txt_trophy {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  width: 100%;
  margin-bottom: 30px;
  font-weight: 400;
  color: #969696;
  font-size: 10px;
  line-height: 1.75;
}

.team_desc_sns {
  display: none;
  gap: 30px;
}

.t_youtube {
  width: 27px;
}

.t_x {
  width: 21px;
}

.t_instagram {
  width: 23px;
}

.t_tiktok {
  width: 20px;
}

.team_desc_member {
  position: absolute;
  width: auto;
  height: 100vh;
  top: 60%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.team_desc_member.icon{
  width: 50%;
  height: auto;
  left: 72%;

}

.team_desc_wrap {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.team_desc_bg {
  opacity: 0.05;
  width: 800px;
  position: absolute;
  top: 49%;
  right: -68%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.team_desc_bg.valorant {
  opacity: 0.05;
  width: 1090px;
  position: absolute;
  top: 52%;
  right: -75%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.team_desc_bg.apex {
  opacity: 0.1;
  width: 1047px;
  position: absolute;
  top: 50%;
  right: -70%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.team_desc_z {
  z-index: 4;
  position: relative;
  width: 500px;
}

.team_desc_tab {
  display: flex;
  gap: 17px;
  position: absolute;
  bottom: 80px;
  right: 65px;
  z-index: 4;
}

.team_desc_tab_item {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0;
}

.team_desc_tab_item a {
  color: #c3c3c3;
}

.team_desc_tab_item a span {
  font-weight: normal;
}

.team_desc_tab_item.active a {
  color: #6ec6d1;
}

.team_desc_tab_item a {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.team_desc_tab_item a:hover {
  color: #6ec6d1;
}

.team_desc_member_tab {
  width: 103px;
  display: flex;
  justify-content: center;
  gap: 22px;
  position: absolute;
  top: 25%;
  right: 51px;
  flex-wrap: wrap;
  z-index: 99;
}

.tab_icon {
  width: 55px;
  height: 48px;
  position: relative;
}

.tab_icon.active {
  width: 103px;
  height: 88px;
}

.hexagon {
  width: 55px;
  height: 48px;
  position: relative;
  display: block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hexagon:hover {
  /* transform: scale(1.1); */
}

.hexagon.active {
  width: 103px;
  height: 88px;
  position: relative;
  display: block;
}

.hexagon.active:hover {
  transform: scale(1);
}

.hexagon div {
  width: 28px;
  width: 28px;
  height: 48px;
  position: absolute;
  left: 14px;
  border-top: 1px solid #505050;
  border-bottom: 1px solid #505050;
  border-top: 1.5px solid #505050;
  border-bottom: 1.5px solid #505050;
  transform-origin: center;
  box-sizing: border-box;
  z-index: 10;
}

.hexagon:hover div {
  border-top: 1px solid #6ec6d1;
  border-bottom: 1px solid #6ec6d1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hexagon.active div {
  width: 50px;
  height: 88px;
  position: absolute;
  left: 26px;
  border-top: 1px solid #6ec6d1;
  border-bottom: 1px solid #6ec6d1;
  border-top: 1.5px solid #6ec6d1;
  border-bottom: 1.5px solid #6ec6d1;
  transform-origin: center;
  box-sizing: border-box;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hexagon div:nth-of-type(1) {
  transform: rotate(0deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hexagon:hover div:nth-of-type(1) {
  transition-delay: 0.3s;
}

.hexagon div:nth-of-type(2) {
  transform: rotate(60deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hexagon:hover div:nth-of-type(2) {
  transition-delay: 0.4s;
}

.hexagon div:nth-of-type(3) {
  transform: rotate(120deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.hexagon:hover div:nth-of-type(3) {
  transition-delay: 0.5s;
}

@media screen and (max-width: 1200px) {
  .team_desc_z {
    padding: 0 15px;
  }
}

@media screen and (max-width: 950px) {
  .team_desc_inner {
    max-width: 100%;
  }

  .team_desc_z {
    position: absolute;
    top: auto;
    bottom: 20%;
    left: 15px;
  }

  .team_desc_ttl_posi {
    font-size: 16px;
  }

  .team_desc_ttl_name {
    font-size: 40px;
    line-height: 45px;
  }

  .team_desc_txt_deco {
    font-size: 10px;
    margin-bottom: 13px;
  }

  .team_desc_txt_prof {
    font-size: 12px;
    width: 300px;
  }

  .team_desc_tab {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 28px;
    left: 0;
    right: auto;
    z-index: 4;
    width: 100%;
  }

  .team_desc_member_tab {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 78px;
    top: auto;
    right: auto;
    left: 0;
    flex-wrap: nowrap;
    z-index: 99;
    align-items: center;
    overflow-x: auto;
    padding-right: 30px;
  }

  .team_desc_tab_item {
    font-size: 16px;
  }

  .team_desc_member.miak {
    min-width: 400px;
    min-height: auto;
  }

  .team_desc_member.hammer {
    min-width: 530px;
    min-height: auto;
  }

  .team_desc_member.meltstera {
    min-width: 530px;
    min-height: auto;
  }
  .team_desc_member.icon{
    left: 59%;
    top: 31%;
    min-width: 260px;
    height: auto;
  }
}

@media screen and (max-width: 430px) {
  .team_desc_z {
    position: absolute;
    top: auto;
    bottom: 200px;
    left: 15px;
  }

  .team_desc_bg {
    width: 441px;
    top: -22px;
    right: -133px;
    transform: none;
  }

  .team_desc_bg.valorant {
    top: 20%;
  }

  .team_desc_tab {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    position: absolute;
    bottom: 28px;
    left: 15px;
    right: auto;
    z-index: 4;
    width: 100%;
  }

  .team_desc_member_tab {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    position: absolute;
    bottom: 78px;
    top: auto;
    right: auto;
    left: 15px;
    flex-wrap: nowrap;
    z-index: 99;
    align-items: center;
  }

  .team_desc_member {
    top: 55%;
  }
  .team_desc_member {
    min-width: 370px;
    min-height: auto;
    top: 55%;
    left: 60%;
    object-fit: contain;
  }
  .varolant .team_desc_member {
    min-width: auto;
    min-height: auto;
    width: 90%;
    display: block;
    height: auto;
    top: 55%;
    left: 60%;
    object-fit: contain;
  }
  .streamer .team_desc_member {
    min-width: auto;
    min-height: auto;
    width: 90%;
    display: block;
    height: auto;
    top: 55%;
    left: 60%;
    object-fit: contain;
  }
  .team_desc_member.waki {
    width: 100%;
    top: 52%;
  }
  .team_desc_member.tanukana {
    width: 100%;
    top: 49%;
  }
}

/*  ----------------------------------------------------------
# 14.0 - 下層・メンバー詳細（team_desc）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 15.0 - 下層・ニュース一覧（lower_news）
----------------------------------------------------------  */

.lower_news {
  padding-top: 221px;

  width: 100%;
}

.lower_container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
  padding-bottom: 130px;
  padding-top: 221px;
}

.lower_container_next {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
  padding-bottom: 120px;
}

.lower_news_list_wrap {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 90px 27px;
  padding-top: 19px;
  flex-wrap: wrap;
  max-width: 1440px;
}

.lower_news_box {
  width: 270px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 422px;
  z-index: 1;
}

.lower_news_box:after {
  content: '';
  position: absolute;
  z-index: 10;
  display: block;
  width: 250px;
  height: 250px;
  border: solid 1px #6ec6d1;
  transition: all 0.3s;
  opacity: 1;
}

.news_box:nth-of-type(odd):after,
.lower_news_box:nth-of-type(odd):after {
  top: -10px;
  right: 10px;
}

.news_box:nth-of-type(even):after,
.lower_news_box:nth-of-type(even):after {
  top: -10px;
  right: -10px;
}

.news_box:nth-of-type(even):after,
.lower_news_box:nth-of-type(even) {
  margin-top: 0;
}

@media screen and (max-width: 950px) {
  .lower_news {
    padding-top: 158px;
    padding-bottom: 75px;
  }

  .lower_container {
    padding: 100px 15px 60px;
  }
  .news_ttl_box {
    padding-bottom: 0;
  }

  .lower_news_list_wrap {
    gap: 59px 30px;
    padding: 0;
  }
  .lower_news_box {
    width: 100%;
    max-width: 375px;
    height: auto;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 0;
  }

  .news_box:after,
  .lower_news_box:after {
    content: '';
    position: absolute;
    z-index: 10;
    display: block;
    width: 150px;
    height: 150px;
    border: solid 1px #6ec6d1;
    transition: all 0.3s;
    opacity: 1;
  }

  .news_box:nth-of-type(odd):after,
  .lower_news_box:nth-of-type(odd):after {
    top: -39px;
    right: auto;
    left: 7px;
  }

  .news_box:nth-of-type(even):after,
  .lower_news_box:nth-of-type(even):after {
    top: -39px;
    right: auto;
    left: 7px;
  }

  .member_img {
    height: 260px;
    margin-bottom: 20px;
  }

  .member_box:hover .member_img {
    opacity: 0.6;
  }
}

/* フィルタリング  */

.lower_news_menu_tab {
  padding-top: 66px;
  padding-bottom: 88px;
  padding-left: 30px;
  display: none;
}

input[type='radio'] {
  position: absolute;
  left: -9999px;
}
.filters {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}
.filters * {
  display: inline-block;
}
.filters label {
  font-size: 18px;
  text-align: center;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s;
}
.filters label:hover {
  border-bottom: 1px solid #6ec6d1;
  color: #6ec6d1;
}
[value='filter_all']:checked ~ .filters [for='filter_all'],
[value='filter_news']:checked ~ .filters [for='filter_news'],
[value='filter_sponsor']:checked ~ .filters [for='filter_sponsor'],
[value='filter_team1']:checked ~ .filters [for='filter_team1'],
[value='filter_team2']:checked ~ .filters [for='filter_team2'],
[value='filter_team3']:checked ~ .filters [for='filter_team3'] {
  border-bottom: 1px solid #6ec6d1;
  color: #6ec6d1;
}

@media screen and (max-width: 950px) {
  .lower_news_menu_tab {
    padding: 17.5px 15px;
    overflow-x: auto;
    max-width: 1200px;
    margin-top: 33px;
    margin-bottom: 73px;
    border-top: 1px solid rgba(110, 198, 209, 0.2);
    border-bottom: 1px solid rgba(110, 198, 209, 0.2);
  }

  .filters {
    width: 768px;
    gap: 25px;
  }
}
/*  ----------------------------------------------------------
# 15.0 - 下層・ニュース一覧（lower_news）-ここまで-
----------------------------------------------------------  */

/*  ----------------------------------------------------------
# 16.0 - 下層・About（lower_news）-ここから-
----------------------------------------------------------  */
.company_content {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 80px;
  color: #dcdcdc;
  font-weight: 500;
  position: relative;
}
.company_content_item {
  display: flex;
  width: 580px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #707070;
}

.company_content_item_left {
  width: 30%;
}
.company_content_item_right {
  width: 70%;
}

.company_content_item_right a {
  color: #6ec6d1;
}

.company_content_item_right_link {
  font-size: 14px;
}

.company_content_deco {
  position: absolute;
  opacity: 0.05;
  height: 120%;
  top: -15%;
  right: -20%;
}
@media screen and (max-width: 767px) {
  .company_content {
    font-weight: 400;
  }
  .company_content_item {
    flex-direction: column;
    grid-gap: 7px;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .company_content_item_right,
  .company_content_item_left {
    width: 100%;
  }
  .company_content_deco {
    width: 100%;
    top: -5%;
    right: -40%;
    height: inherit;
  }
}

/*  ----------------------------------------------------------
# 15.0 - 下層・mcm-guideline
----------------------------------------------------------  */
.lower_contents {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  margin-top: 60px;
  color: #dcdcdc;
}

.guideline_contents {
  line-height: 1.75;
}

.guideline_contents_l1 {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: solid 1px #707070;
}

.guideline_contents_link{
  display: block;
  cursor: pointer;
  margin-bottom: 20px;
}

.guideline_contents_l2 {
  margin-bottom: 40px;
}

.guideline_contents_l3 {
  margin-bottom: 20px;
}

.guideline_contents_l1 .guideline_contents_l2:last-of-type,
.guideline_contents_l1:last-of-type {
  margin-bottom: 0;
}

.guideline_contents_l1:last-of-type {
  border-bottom: inherit;
  padding: 0;
}

.guideline_contents h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.guideline_contents h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.guideline_contents p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.guideline_contents a {
  color: #6ec6d1;
}

.guideline_contents ul {
  margin-top: 5px;
}

.guideline_contents ul li {
  margin-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.guideline_contents ol li {
  list-style: decimal;
  margin-left: 20px;
}

.guideline_contents ul li::before {
  content: '・';
  position: absolute;
  top: 0px;
  left: -20px;
}

.guideline_contents .right {
  text-align: right;
}

.qa_contents {
  line-height: 1.75;
}

.qa_contents_item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #707070;
}

.qa_contents_item:last-of-type {
  margin-bottom: 0;
}

.qa_contents_item_q,
.qa_contents_item_a {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.qa_contents_item_q {
  margin-bottom: 5px;
}

.qa_contents_item_q .qa_contents_item_right {
  font-size: 20px;
  font-weight: 500;
}

.qa_contents_item_left {
  font-size: 30px;
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
  color: #6ec6d1;
}

.about_caption {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  text-align: right;
  line-height: 2;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .lower_contents {
    margin-top: 40px;
  }
  .lower_container_next {
    padding-bottom: 80px;
  }
  .guideline_contents h2 {
    font-size: 23px;
    line-height: 1.5;
  }
  .guideline_contents h2 {
    margin-bottom: 30px;
  }
  .guideline_contents p {
    font-size: 14px;
    line-height: 1.5;
  }
  .guideline_contents h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .guideline_contents_l2 {
    margin-bottom: 30px;
  }
  .guideline_contents ul {
    font-size: 14px;
  }
  .guideline_contents ul li {
    margin-bottom: 0;
  }
  .guideline_contents_l1 {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .qa_contents_item_left {
    font-size: 24px;
    margin-top: 0;
  }
  .qa_contents_item_q .qa_contents_item_right {
    font-size: 18px;
  }
  .qa_contents_item_right {
    font-size: 14px;
  }
  .guideline_contents ol li {
    font-size: 14px;
  }
  .qa_contents_item {
    margin-bottom: 25px;
    padding-bottom: 30px;
  }
  .about_caption {
    font-size: 14px;
    margin-top: 40px;
  }
}

/*  ----------------------------------------------------------
  アニメーション
----------------------------------------------------------  */

.js-txtanime {
  visibility: hidden;
}

.js_typing {
  display: none;
}

.endAnime {
  display: block;
}

/* video */
#gifContainer1,
#gifContainer2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

#gifContainer1 {
  opacity: 0.4;
}

#gifContainer1 img,
#gifContainer2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageContent {
  display: none; /* 最初は非表示 */
}

/* グリッチテキスト */
.glitch-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glitch {
  position: relative;
  font-size: 50px;
  font-weight: bold;
  color: #dcdcdc;
  letter-spacing: -0.015em;
  z-index: 1;
}

.glitch:before,
.glitch:after {
  display: block;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #00ffff;
  z-index: -1;
}

.glitch:after {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #ff00ff;
  z-index: -2;
}

.glitch.still:before,
.glitch.still:after {
  animation: none;
}

@keyframes glitch-it {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 1px);
  }
  40% {
    transform: translate(0);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(1px, -2px);
  }
  to {
    transform: translate(0);
  }
}

/* SVG */
.svg_ttl {
  text-align: left;
  display: block;
  margin-bottom: -20px;
  margin-left: 30px;
}

#svg_goods {
  position: absolute;
  top: -40px;
}

#svg_sponsors {
  position: absolute;
  top: -40px;
}

#svg_contact {
  position: absolute;
  top: -55px;
}

/* @-webkit-keyframes animate-svg-stroke-1{0%{stroke-dashoffset:532.8214721679688px;stroke-dasharray:532.8214721679688px}100%{stroke-dashoffset:0;stroke-dasharray:532.8214721679688px}}@keyframes animate-svg-stroke-1{0%{stroke-dashoffset:532.8214721679688px;stroke-dasharray:532.8214721679688px}100%{stroke-dashoffset:0;stroke-dasharray:532.8214721679688px}}.svg-elem-1{-webkit-animation:animate-svg-stroke-1 1s linear 0s both;animation:animate-svg-stroke-1 1s linear 0s both}@-webkit-keyframes animate-svg-stroke-2{0%{stroke-dashoffset:563.3599853515625px;stroke-dasharray:563.3599853515625px}100%{stroke-dashoffset:0;stroke-dasharray:563.3599853515625px}}@keyframes animate-svg-stroke-2{0%{stroke-dashoffset:563.3599853515625px;stroke-dasharray:563.3599853515625px}100%{stroke-dashoffset:0;stroke-dasharray:563.3599853515625px}}.svg-elem-2{-webkit-animation:animate-svg-stroke-2 1s linear 0.12s both;animation:animate-svg-stroke-2 1s linear 0.12s both}@-webkit-keyframes animate-svg-stroke-3{0%{stroke-dashoffset:633.1473388671875px;stroke-dasharray:633.1473388671875px}100%{stroke-dashoffset:0;stroke-dasharray:633.1473388671875px}}@keyframes animate-svg-stroke-3{0%{stroke-dashoffset:633.1473388671875px;stroke-dasharray:633.1473388671875px}100%{stroke-dashoffset:0;stroke-dasharray:633.1473388671875px}}.svg-elem-3{-webkit-animation:animate-svg-stroke-3 1s linear 0.24s both;animation:animate-svg-stroke-3 1s linear 0.24s both}@-webkit-keyframes animate-svg-stroke-4{0%{stroke-dashoffset:612.1414794921875px;stroke-dasharray:612.1414794921875px}100%{stroke-dashoffset:0;stroke-dasharray:612.1414794921875px}}@keyframes animate-svg-stroke-4{0%{stroke-dashoffset:612.1414794921875px;stroke-dasharray:612.1414794921875px}100%{stroke-dashoffset:0;stroke-dasharray:612.1414794921875px}}.svg-elem-4{-webkit-animation:animate-svg-stroke-4 1s linear 0.36s both;animation:animate-svg-stroke-4 1s linear 0.36s both} */

/* news */
svg#svg_news .svg-elem-1 {
  stroke-dashoffset: 532.8214721679688px;
  stroke-dasharray: 532.8214721679688px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_news.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_news .svg-elem-2 {
  stroke-dashoffset: 563.3599853515625px;
  stroke-dasharray: 563.3599853515625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_news.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_news .svg-elem-3 {
  stroke-dashoffset: 633.1473388671875px;
  stroke-dasharray: 633.1473388671875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_news.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_news .svg-elem-4 {
  stroke-dashoffset: 612.1414794921875px;
  stroke-dasharray: 612.1414794921875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_news.active .svg-elem-4 {
  stroke-dashoffset: 0;
}

/* about */
svg#svg_about .svg-elem-1 {
  stroke-dashoffset: 550.3381958007812px;
  stroke-dasharray: 550.3381958007812px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
#svg_about.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
#svg_about .svg-elem-2 {
  stroke-dashoffset: 614.2830810546875px;
  stroke-dasharray: 614.2830810546875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_about.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_about .svg-elem-3 {
  stroke-dashoffset: 534.47412109375px;
  stroke-dasharray: 534.47412109375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_about.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_about .svg-elem-4 {
  stroke-dashoffset: 472.8371276855469px;
  stroke-dasharray: 472.8371276855469px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_about.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_about .svg-elem-5 {
  stroke-dashoffset: 347.5999755859375px;
  stroke-dasharray: 347.5999755859375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
#svg_about.active .svg-elem-5 {
  stroke-dashoffset: 0;
}

/* team */
svg#svg_team .svg-elem-1 {
  stroke-dashoffset: 347.6000061035156px;
  stroke-dasharray: 347.6000061035156px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_team.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_team .svg-elem-2 {
  stroke-dashoffset: 563.3599853515625px;
  stroke-dasharray: 563.3599853515625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_team.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_team .svg-elem-3 {
  stroke-dashoffset: 550.33837890625px;
  stroke-dasharray: 550.33837890625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_team.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_team .svg-elem-4 {
  stroke-dashoffset: 567.337158203125px;
  stroke-dasharray: 567.337158203125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_team.active .svg-elem-4 {
  stroke-dashoffset: 0;
}

/* sponsors */
svg#svg_sponsors .svg-elem-1 {
  stroke-dashoffset: 612.1408081054688px;
  stroke-dasharray: 612.1408081054688px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_sponsors.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_sponsors .svg-elem-2 {
  stroke-dashoffset: 489.3072204589844px;
  stroke-dasharray: 489.3072204589844px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_sponsors.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_sponsors .svg-elem-3 {
  stroke-dashoffset: 534.47412109375px;
  stroke-dasharray: 534.47412109375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_sponsors.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_sponsors .svg-elem-4 {
  stroke-dashoffset: 532.8214111328125px;
  stroke-dasharray: 532.8214111328125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_sponsors.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_sponsors .svg-elem-5 {
  stroke-dashoffset: 612.1416015625px;
  stroke-dasharray: 612.1416015625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
svg#svg_sponsors.active .svg-elem-5 {
  stroke-dashoffset: 0;
}
#svg_sponsors .svg-elem-6 {
  stroke-dashoffset: 534.4744873046875px;
  stroke-dasharray: 534.4744873046875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
svg#svg_sponsors.active .svg-elem-6 {
  stroke-dashoffset: 0;
}
svg#svg_sponsors .svg-elem-7 {
  stroke-dashoffset: 607.2434692382812px;
  stroke-dasharray: 607.2434692382812px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
}
svg#svg_sponsors.active .svg-elem-7 {
  stroke-dashoffset: 0;
}
svg#svg_sponsors .svg-elem-8 {
  stroke-dashoffset: 612.1419067382812px;
  stroke-dasharray: 612.1419067382812px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
}
svg#svg_sponsors.active .svg-elem-8 {
  stroke-dashoffset: 0;
}

/* contact */
svg#svg_contact .svg-elem-1 {
  stroke-dashoffset: 473.37530517578125px;
  stroke-dasharray: 473.37530517578125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_contact.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_contact .svg-elem-2 {
  stroke-dashoffset: 545.7737426757812px;
  stroke-dasharray: 545.7737426757812px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_contact.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
#svg_contact .svg-elem-3 {
  stroke-dashoffset: 541.279296875px;
  stroke-dasharray: 541.279296875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_contact.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_contact .svg-elem-4 {
  stroke-dashoffset: 347.6000061035156px;
  stroke-dasharray: 347.6000061035156px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_contact.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_contact .svg-elem-5 {
  stroke-dashoffset: 561.7669677734375px;
  stroke-dasharray: 561.7669677734375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
svg#svg_contact.active .svg-elem-5 {
  stroke-dashoffset: 0;
}
svg#svg_contact .svg-elem-6 {
  stroke-dashoffset: 473.3754577636719px;
  stroke-dasharray: 473.3754577636719px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
svg#svg_contact.active .svg-elem-6 {
  stroke-dashoffset: 0;
}
svg#svg_contact .svg-elem-7 {
  stroke-dashoffset: 347.60003662109375px;
  stroke-dasharray: 347.60003662109375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
}
svg#svg_contact.active .svg-elem-7 {
  stroke-dashoffset: 0;
}

/* company */
svg#svg_company .svg-elem-1 {
  stroke-dashoffset: 470.0364074707031px;
  stroke-dasharray: 470.0364074707031px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_company.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_company .svg-elem-2 {
  stroke-dashoffset: 534.4740600585938px;
  stroke-dasharray: 534.4740600585938px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_company.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_company .svg-elem-3 {
  stroke-dashoffset: 567.3372802734375px;
  stroke-dasharray: 567.3372802734375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_company.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_company .svg-elem-4 {
  stroke-dashoffset: 489.30731201171875px;
  stroke-dasharray: 489.30731201171875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_company.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_company .svg-elem-5 {
  stroke-dashoffset: 550.3384399414062px;
  stroke-dasharray: 550.3384399414062px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
svg#svg_company.active .svg-elem-5 {
  stroke-dashoffset: 0;
}
svg#svg_company .svg-elem-6 {
  stroke-dashoffset: 532.821533203125px;
  stroke-dasharray: 532.821533203125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
svg#svg_company.active .svg-elem-6 {
  stroke-dashoffset: 0;
}
svg#svg_company .svg-elem-7 {
  stroke-dashoffset: 348.1885986328125px;
  stroke-dasharray: 348.1885986328125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
}
svg#svg_company.active .svg-elem-7 {
  stroke-dashoffset: 0;
}

/* guideline */
svg#svg_guideline .svg-elem-1 {
  stroke-dashoffset: 577.396484375px;
  stroke-dasharray: 577.396484375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_guideline.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-2 {
  stroke-dashoffset: 472.83709716796875px;
  stroke-dasharray: 472.83709716796875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_guideline.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-3 {
  stroke-dashoffset: 206.239990234375px;
  stroke-dasharray: 206.239990234375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_guideline.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-4 {
  stroke-dashoffset: 549.0576171875px;
  stroke-dasharray: 549.0576171875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_guideline.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-5 {
  stroke-dashoffset: 563.3599853515625px;
  stroke-dasharray: 563.3599853515625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
svg#svg_guideline.active .svg-elem-5 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-6 {
  stroke-dashoffset: 347.8399658203125px;
  stroke-dasharray: 347.8399658203125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
svg#svg_guideline.active .svg-elem-6 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-7 {
  stroke-dashoffset: 206.239990234375px;
  stroke-dasharray: 206.239990234375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
}
svg#svg_guideline.active .svg-elem-7 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-8 {
  stroke-dashoffset: 532.821533203125px;
  stroke-dasharray: 532.821533203125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
}
svg#svg_guideline.active .svg-elem-8 {
  stroke-dashoffset: 0;
}
svg#svg_guideline .svg-elem-9 {
  stroke-dashoffset: 563.3599853515625px;
  stroke-dasharray: 563.3599853515625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
}
svg#svg_guideline.active .svg-elem-9 {
  stroke-dashoffset: 0;
}

/* Q&A */
svg#svg_qa .svg-elem-1 {
  stroke-dashoffset: 621.398681640625px;
  stroke-dasharray: 621.398681640625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_qa.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_qa .svg-elem-2 {
  stroke-dashoffset: 621.6165771484375px;
  stroke-dasharray: 621.6165771484375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_qa.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_qa .svg-elem-3 {
  stroke-dashoffset: 550.33837890625px;
  stroke-dasharray: 550.33837890625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_qa.active .svg-elem-3 {
  stroke-dashoffset: 0;
}

/* svg_privacy */
svg#svg_privacy .svg-elem-1 {
  stroke-dashoffset: 489.30706787109375px;
  stroke-dasharray: 489.30706787109375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_privacy.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-2 {
  stroke-dashoffset: 243.819091796875px;
  stroke-dasharray: 243.819091796875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_privacy.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-3 {
  stroke-dashoffset: 235.760009765625px;
  stroke-dasharray: 235.760009765625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_privacy.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-4 {
  stroke-dashoffset: 326.5259704589844px;
  stroke-dasharray: 326.5259704589844px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_privacy.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-5 {
  stroke-dashoffset: 481.2197265625px;
  stroke-dasharray: 481.2197265625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
svg#svg_privacy.active .svg-elem-5 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-6 {
  stroke-dashoffset: 376.6622314453125px;
  stroke-dasharray: 376.6622314453125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
svg#svg_privacy.active .svg-elem-6 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-7 {
  stroke-dashoffset: 511.6033630371094px;
  stroke-dasharray: 511.6033630371094px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
}
svg#svg_privacy.active .svg-elem-7 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-8 {
  stroke-dashoffset: 475.8731384277344px;
  stroke-dasharray: 475.8731384277344px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
}
svg#svg_privacy.active .svg-elem-8 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-9 {
  stroke-dashoffset: 406.3783874511719px;
  stroke-dasharray: 406.3783874511719px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
}
svg#svg_privacy.active .svg-elem-9 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-10 {
  stroke-dashoffset: 240.443115234375px;
  stroke-dasharray: 240.443115234375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
}
svg#svg_privacy.active .svg-elem-10 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-11 {
  stroke-dashoffset: 235.7598876953125px;
  stroke-dasharray: 235.7598876953125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
svg#svg_privacy.active .svg-elem-11 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-12 {
  stroke-dashoffset: 376.6622619628906px;
  stroke-dasharray: 376.6622619628906px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s;
}
svg#svg_privacy.active .svg-elem-12 {
  stroke-dashoffset: 0;
}
svg#svg_privacy .svg-elem-13 {
  stroke-dashoffset: 511.6036376953125px;
  stroke-dasharray: 511.6036376953125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
}
svg#svg_privacy.active .svg-elem-13 {
  stroke-dashoffset: 0;
}

/* svg_goods */
svg#svg_goods .svg-elem-1 {
  stroke-dashoffset: 577.396484375px;
  stroke-dasharray: 577.396484375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
svg#svg_goods.active .svg-elem-1 {
  stroke-dashoffset: 0;
}
svg#svg_goods .svg-elem-2 {
  stroke-dashoffset: 534.4740600585938px;
  stroke-dasharray: 534.4740600585938px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
}
svg#svg_goods.active .svg-elem-2 {
  stroke-dashoffset: 0;
}
svg#svg_goods .svg-elem-3 {
  stroke-dashoffset: 534.47412109375px;
  stroke-dasharray: 534.47412109375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
}
svg#svg_goods.active .svg-elem-3 {
  stroke-dashoffset: 0;
}
svg#svg_goods .svg-elem-4 {
  stroke-dashoffset: 549.0577392578125px;
  stroke-dasharray: 549.0577392578125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
}
svg#svg_goods.active .svg-elem-4 {
  stroke-dashoffset: 0;
}
svg#svg_goods .svg-elem-5 {
  stroke-dashoffset: 612.1416015625px;
  stroke-dasharray: 612.1416015625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
}
svg#svg_goods.active .svg-elem-5 {
  stroke-dashoffset: 0;
}

@media screen and (max-width: 767px) {
  .svg_ttl {
    width: auto;
    height: 37px;
    margin-left: 20px;
    margin-bottom: -15px;
  }

  #svg_sponsors,
  #svg_contact,
  #svg_goods {
    top: -16px;
  }
  .contact_btn {
    border: 1px solid #6ec6d1;
  }

  .contact_btn::after,
  .contact_btn::before,
  .contact_btn span::after,
  .contact_btn span::before {
    display: none;
  }

  .team_desc_txt_trophy {
    display: none;
  }

  .filters label {
    font-size: 14px;
  }
  .video-wrap {
    opacity: 0.2;
  }
  .video-wrap video {
    height: 100vh;
    width: auto;
  }
  [value='filter_all']:checked ~ .filters [for='filter_all'],
  [value='filter_news']:checked ~ .filters [for='filter_news'],
  [value='filter_sponsor']:checked ~ .filters [for='filter_sponsor'],
  [value='filter_team1']:checked ~ .filters [for='filter_team1'],
  [value='filter_team2']:checked ~ .filters [for='filter_team2'],
  [value='filter_team3']:checked ~ .filters [for='filter_team3'] {
    border-bottom: none;
    color: #6ec6d1;
  }
}

.news_detail {
  font-family: 'Noto Sans JP', Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Raleway', sans-serif;
  padding-bottom: 80px;
  transition: all 0.5s;
}

.news_detail_ttl {
  text-align: left;
  font-size: 24px;
  margin-bottom: 50px;
}

.news_detail_date {
  color: #6ec6d1;
  font-family: 'Orbitron', 'Noto Sans JP', sans-serif;
  margin-bottom: 15px;
}

.news_detail_inner {
  width: 1000px;
  margin: 0 auto;
}

.news_detail_txt {
  text-align: left;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .news_detail_inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .news_detail_ttl {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 23px;
  }
  .news_detail {
    padding-bottom: 0;
  }
  .news_detail_txt {
    font-size: 14px;
    line-height: 1.75;
  }
  .news_detail_ttl {
  }
}

@media screen and (max-width: 767px) {
  .sponsors_container {
    padding-bottom: 50px;
  }
  .slider_parent {
    padding-top: 10px;
  }
  .slider_parent ul li {
    margin-left: 15px;
    margin-right: 15px;
  }
  .slider_parent ul li img {
    height: 40px;
    width: auto;
  }
  .text_scroll {
    animation: scroll 30s linear infinite;
  }
}
