@charset "utf-8";

body {
  background-color: #000;
  color: white;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
}


a:hover {
  opacity:0.8;
}
.w-container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

/* タイトル */
.title {
  font-family: "Train One", system-ui;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: rgba(255,255,255,0.5);
  text-shadow:
    0 0 7px #fff,
    0 0 10px #0fa,
    0 0 21px #0fa,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 85px #0fa;
  margin-top: 60px;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

.scroll_up h3 {
  line-height: 1.5em;
}

.abc {
  letter-spacing: 0.1em;
}

.name {
  font-size: 40px;
}

/* グリッチ */
h3 {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 90%;
  top: -60px;
  margin: 0 auto;
  left: 5%;
  right: 0;
  position: absolute;
  text-align: center;
  color: #fff;
  font-weight: 400;
  /*Create overlap*/
  margin: auto;
  /*Animation*/
  animation: glitch1 2.5s infinite;
}

.www {
  position: relative;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}

h3:nth-child(2) {
  position: absolute;
  color: #67f3da;
  animation: glitch2 2.5s infinite;
}

h3:nth-child(3) {
  position: absolute;
  color: #f16f6f;
  animation: glitch3 2.5s infinite;
}
/*Keyframes*/

@keyframes glitch1 {
  0% {
    transform: none;
    opacity: 1;
  }
  7% {
    transform: skew(-0.5deg, -0.9deg);
    opacity: 0.75;
  }
  10% {
    transform: none;
    opacity: 1;
  }
  27% {
    transform: none;
    opacity: 1;
  }
  30% {
    transform: skew(0.8deg, -0.1deg);
    opacity: 0.75;
  }
  35% {
    transform: none;
    opacity: 1;
  }
  52% {
    transform: none;
    opacity: 1;
  }
  55% {
    transform: skew(-1deg, 0.2deg);
    opacity: 0.75;
  }
  50% {
    transform: none;
    opacity: 1;
  }
  72% {
    transform: none;
    opacity: 1;
  }
  75% {
    transform: skew(0.4deg, 1deg);
    opacity: 0.75;
  }
  80% {
    transform: none;
    opacity: 1;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes glitch2 {
  0% {
    transform: none;
    opacity: 0.25;
  }
  7% {
    transform: translate(-2px, -3px);
    opacity: 0.5;
  }
  10% {
    transform: none;
    opacity: 0.25;
  }
  27% {
    transform: none;
    opacity: 0.25;
  }
  30% {
    transform: translate(-5px, -2px);
    opacity: 0.5;
  }
  35% {
    transform: none;
    opacity: 0.25;
  }
  52% {
    transform: none;
    opacity: 0.25;
  }
  55% {
    transform: translate(-5px, -1px);
    opacity: 0.5;
  }
  50% {
    transform: none;
    opacity: 0.25;
  }
  72% {
    transform: none;
    opacity: 0.25;
  }
  75% {
    transform: translate(-2px, -6px);
    opacity: 0.5;
  }
  80% {
    transform: none;
    opacity: 0.25;
  }
  100% {
    transform: none;
    opacity: 0.25;
  }
}

@keyframes glitch3 {
  0% {
    transform: none;
    opacity: 0.25;
  }
  7% {
    transform: translate(2px, 3px);
    opacity: 0.5;
  }
  10% {
    transform: none;
    opacity: 0.25;
  }
  27% {
    transform: none;
    opacity: 0.25;
  }
  30% {
    transform: translate(5px, 2px);
    opacity: 0.5;
  }
  35% {
    transform: none;
    opacity: 0.25;
  }
  52% {
    transform: none;
    opacity: 0.25;
  }
  55% {
    transform: translate(5px, 1px);
    opacity: 0.5;
  }
  50% {
    transform: none;
    opacity: 0.25;
  }
  72% {
    transform: none;
    opacity: 0.25;
  }
  75% {
    transform: translate(2px, 6px);
    opacity: 0.5;
  }
  80% {
    transform: none;
    opacity: 0.25;
  }
  100% {
    transform: none;
    opacity: 0.25;
  }
}

/* ローディング */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100vw;
  height: 100%;
  background-color: #000;
}

.loading-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  margin: 0;
  transform: translate(-50%, -50%);
}

.loading-text {
  text-align: center;
  margin-top: 10px;
}

.lod-txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@keyframes bound-anim{
  0%{transform: translateY(0);}
  100%{transform: translateY(5px);}
}

/*** 全文字にアニメーションを適用 ***/
.bound span{
  display: inline-block; /*横並びにしつつアニメーションを適用*/
  animation: .5s bound-anim ease-in infinite alternate;
}

/*** 各文字のスタート時間をずらす ***/
/* 1文字目 */
.bound span:nth-child(1){
  animation-delay: 0;
}
/* 2文字目 */
.bound span:nth-child(2){
  animation-delay: 0.2s;
}
/* 3文字目 */
.bound span:nth-child(3){
  animation-delay: 0.4s;
}
/* 4文字目 */
.bound span:nth-child(4){
  animation-delay: 0.6s;
}
.bound span:nth-child(5){
  animation-delay: 0.8s;
}
.bound span:nth-child(6){
  animation-delay: 1.0s;
}
.bound span:nth-child(7){
  animation-delay: 1.2s;
}
.bound span:nth-child(8){
  letter-spacing: -0.3em;
  animation-delay: 1.4s;
}
.bound span:nth-child(9){
  letter-spacing: -0.3em;
  animation-delay: 1.6s;
}
.bound span:nth-child(10){
  letter-spacing: -0.3em;
  animation-delay: 1.8s;
}
/*** 装飾用 ***/
.bound {
  letter-spacing: -0.1em;
  color: #fff;
  text-align: center;
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow:
  0 0 7px #0fa,
  0 0 10px #0fa,
  0 0 21px #0fa,
  0 0 42px #0fa;
}


/* ヘッダー */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-nv {
  display: flex;
  gap: 20px;
  color: #b60033;
  text-shadow:
  1px 1px 2px #fff,
  0 0 1em #e95887,
  0 0 0.2em #e95887;
  letter-spacing: 0.1em;
}

/* mv */
.mv {
  background-image: url(../images/main-pc1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: calc(100vh - 64px);
}

.mv-ic {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: calc(100vh - 64px);
  width: 95%;
  margin: auto;
}

.mv-gif2 {
  position: fixed;
  right: 0;
  z-index: 99;
}

.mv-gif2 p {
  text-align: center;
  color: #fff;
  text-shadow:
  1px 1px 2px #b60033,
  0 0 1em #e95887,
  0 0 0.2em #e95887;
}

/* chミニ */
.ch-min {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
}

/* profile */
.about {
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url(../images/logo6.png);
  background-size: 30%;
  background-repeat: repeat;
}

.about h3 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  text-shadow:
  1px 1px 2px #b60033,
  0 0 1em #e95887,
  0 0 0.2em #e95887;
}

.like {
  display: none;
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.like h4 {
  color: rgba(255,255,255,0.5);
  text-shadow:
    0 0 7px #fff,
    0 0 10px #0fa,
    0 0 21px #0fa,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 85px #0fa;
  margin-top: 10px;
  margin-bottom: 10px;
}

.like p {
  line-height: 1.5em;
}

.game h4 {
  color: rgba(255,255,255,0.5);
  text-shadow:
    0 0 7px #fff,
    0 0 10px #0fa,
    0 0 21px #0fa,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 85px #0fa;
  margin-top: 10px;
  margin-bottom: 10px;
}

.game p {
  line-height: 1.5em;
}

.game {
  display: none;
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.plf-img {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
  padding-top: 160px;
}

.plf-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


.plf-txt li {
  line-height: 1.5em;
}



.plf-txt-box1 h4 {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  text-shadow:
    0 0 7px #fff,
    0 0 10px #0fa,
    0 0 21px #0fa,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 85px #0fa;
  margin-top: 20px;
  margin-bottom: 20px;
}

.plf-txt-box1 p {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
}

.ptf {
  text-shadow:
  1px 1px 2px #b60033,
  0 0 2em #e95887,
  0 0 0.5em #e95887;
}

.plf-txt-box2 h4 {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  text-shadow:
    0 0 7px #fff,
    0 0 10px #0fa,
    0 0 21px #0fa,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 85px #0fa;
  margin-top: 20px;
  margin-bottom: 20px;
}

.plf-txt-box2 p {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
}



/* 吹き出し */
/* .plf-txt1 {
  position: relative;
  display: flex;
  justify-content: end;
  height: 100px;
  text-align: center;
  color: #000;
  border-radius:2em;
  font-size: 20px;
  font-weight: bold;
  text-shadow:
  1px 1px 2px #b60033,
  0 0 1em #e95887,
  0 0 0.2em #e95887;
}

.plf-txt1 P {
  margin: auto;
}

.plf-txt2 {
  position: relative;
  display: flex;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.plf-txt2 P {
  margin: auto;
}

.plf-txt3 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.plf-txt3 P {
  margin: auto;
}

.plf-txt4 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.plf-txt4 P {
  margin: auto;
}

.plf-txt5 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.plf-txt5 P {
  margin: auto;
}

.plf-txt6 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.plf-txt6:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  z-index: 0;
}

.plf-txt6 P {
  margin: auto;
}

.plf-txt7 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.plf-txt7:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  z-index: 0;
}

.plf-txt7 P {
  margin: auto;
}

.plf-txt8 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.plf-txt8:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  z-index: 0;
}

.plf-txt8 P {
  margin: auto;
}

.plf-txt9 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.plf-txt9:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  z-index: 0;
}

.plf-txt9 P {
  margin: auto;
}

.plf-txt10 {
  position: relative;
  display: flex;
  justify-content: end;
  padding: 0 5px;
  width: 150px;
  height: 100px;
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.plf-txt10:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  z-index: 0;
}

.plf-txt10 P {
  margin: auto;
} */
/* activity */

.activity h3 {
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  text-shadow:
  1px 1px 2px #b60033,
  0 0 1em #e95887,
  0 0 0.2em #e95887;
}

.ch-img {
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 40px;
}

.ch {
  display: grid;
  gap: 60px;
}

.ch p {
  font-size: 16px;
  margin-top: 10px;
}

.ch1 {
  opacity: 0.3;
}

.ch2 {
  opacity: 0.3;
  transform: scale(-1, 1);
}

/* sns */
.sns {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0.9),rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)),url(../images/plf2.jpg);
  background-size: 30%;
  background-repeat: repeat;
}

.sns-box  ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 60px;
  margin: auto;
}

.sns-box ul img {
  width: 70%;
}

.sns-box img:hover {
  transform:scale(1.1,1.1);
}

.sns-box a:hover {
  opacity: 1;
}

/* フッター */
.footer {
  text-align: center;
  margin-top: 60px;
}

.footer-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

@media (max-width:1024px) {
  .mv-gif2 {
     left: 90%;
  }

  .title {
    font-size: 80px;
  }

  .ch-img {
    gap: 0;
  }
}

@media (max-width:768px) {
.title img {
  width: 150px;
  height: 150px;
}

  .mv-gif2 {
    display: none;
  }
  
  .about h3 {
    font-size: 30px;
  }

  .activity h3 {
    font-size: 30px;
  }

  .about {
    text-align: center;
  }

  .plf-txt-box1 {
    display: none;
  }

  .plf-txt-box2 {
    display: none;
  }

  .like {
    display: block;
  }

  .game {
    display: block;
  }

  .plf-img {
    display: block;
  }

  .ch-img {
    justify-content: space-between;
    gap: 10px;
  }

  .ch1 img,.ch2 img {
    width: 100px;
    height: 150px;
  }

  .header-logo img {
    width: 100px;
  }
}

@media (max-width:430px) {
  .header-nv {
    gap: 10px;
    letter-spacing: none;
    font-size: 16px;
  }

  .mv {
    background-image: url(../images/main-sm1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    height: 500px;
  }

  .about {
    background-size: 50%;
  }

  .title {
    letter-spacing: 0.1em;
    font-size: 36px;
  }

  .name {
    font-size: 32px;
  }

  .title img {
    width: 50px;
    height: 50px;
  }

  .plf-txt {
    display: block;
  }

  .plf-img img {
    width: 300px;
    height: 400px;
  }
  
  .game {
    margin-top: 60px;
  }

  .sns {
    background-size: 50%;
  }

  .sns-box ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ch-min {
    flex-direction: column;
    gap: 60px;
  }

  .ch img {
    width: 300px;
  }

  .ch-img {
    justify-content: center;
  }

  .ch1,
  .ch2 {
    display: none;
  }

  .footer-box {
    flex-direction: column
  }

  .fot {
    display: none;
  }
}