@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/vfx2gla.css");
a {
  color: #010101;
}
a:hover {
  color: #565656;
}

.btn--main {
  background: #010101;
  color: #ffffff;
}
.btn--main:hover {
  background: #565656;
}

.btn--sub {
  background: transparent;
  color: #010101;
}
.btn--sub:hover {
  background: #565656;
  color: #ffffff;
}

.detail__btn a::before {
  border-color: #010101;
}

.btn--chevron {
  color: #010101;
}
.btn--chevron::after {
  border-color: #010101;
}
.btn--chevron:hover {
  color: #565656;
}
.btn--chevron:hover::after {
  border-color: #565656;
}

.btn--chevron-left {
  color: #010101;
}
.btn--chevron-left::after {
  border-color: #010101;
}
.btn--chevron-left:hover {
  color: #565656;
}
.btn--chevron-left:hover::after {
  border-color: #565656;
}

.page--mypage .wrap > section {
  overflow: hidden;
}

header {
  padding: 2em 5% 0;
}
header h1 {
  position: relative;
  width: 20vw;
  max-width: 240px;
  margin: 3em auto 1em;
}
header h1 svg {
  fill: #010101;
}

.section--login {
  padding-top: 0;
}

.block--attention {
  padding: 20px;
  border: solid 1px;
  border-radius: 6px;
  font-size: 14px;
}

.ph, .thumb {
  position: relative;
  line-height: 0;
}
.ph img, .thumb img {
  width: 100%;
}
.ph::after, .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/static/common/global-image/dummy.gif);
  background-size: cover;
}
.ph .dummy, .thumb .dummy {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.block--firstlogin .login--attention {
  padding: 20px;
  border: solid 2px #cc0000;
  background: #ffdada;
  font-size: 13px;
}
.block--firstlogin .login--attention .txt--basic {
  display: inline-block;
  margin: 0 0 0.8em;
  border-bottom: solid 1px;
}
.block--firstlogin .login--attention b {
  color: #cc0000;
}
.block--firstlogin .login--attention a {
  color: #010101;
}
.block--firstlogin .login--attention .btn--firstlogin {
  margin: 6% auto 9%;
}
.block--firstlogin .login--attention .btn--firstlogin a {
  position: relative;
  border-bottom: solid 2px #cc0000;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.block--firstlogin .login--attention .btn--firstlogin a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #010101;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover {
  color: #565656;
}
.block--firstlogin .login--attention .btn--firstlogin a:hover::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.section--oshimen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto 3em;
  padding: 2em;
  border-radius: 1.5em;
  border: solid 1px #010101;
  background-color: #ffffff;
  -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}
.section--oshimen ul.block--ohimen--info {
  width: 70%;
}
.section--oshimen ul.block--ohimen--info li {
  margin-bottom: 0.8em;
}
.section--oshimen ul.block--ohimen--info li:last-of-type {
  margin-bottom: 0;
}
.section--oshimen ul.block--ohimen--info li dl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
}
.section--oshimen ul.block--ohimen--info li dl dt {
  display: inline-block;
  margin-bottom: 0.4em;
  font-size: 12px;
}
.section--oshimen ul.block--ohimen--info li dl dd {
  font-size: 15px;
}
.section--oshimen ul.block--ohimen--character {
  width: 30%;
}
.section--oshimen ul.block--ohimen--character li img {
  width: 100%;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: dance 5s infinite linear 1.5s both;
          animation: dance 5s infinite linear 1.5s both;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  .section--oshimen {
    width: 100%;
    margin: 0 auto 3em;
  }
  .section--oshimen ul.block--ohimen--info {
    width: 60%;
  }
  .section--oshimen ul.block--ohimen--character {
    width: 40%;
  }
}
@-webkit-keyframes dance {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  6% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  9% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  12% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  18% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  53% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  56% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  66% {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes dance {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  6% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  9% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  12% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  15% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
  }
  18% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  53% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  56% {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  66% {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.block--card {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: display 0.3s ease;
  transition: display 0.3s ease;
  /* close icon */
  /*
  .close {
  	display: block;
  	position: absolute;
  	top: 10px;
  	right: 10px;
  	z-index: 100;
  	width: 26px;
  	height: 26px;
  	border-radius: 50%;
  	background:rgba(0,0,0,.8);
  	cursor: pointer;
  	&::before, &::after {
  		content: '';
  		display: block;
  		position: absolute;
  		top: 0;
  		bottom: 0;
  		left: 0;
  		right: 0;
  		width: 15px;
  		height: 1px;
  		margin: auto;
  		background: $base-color;
  		transform: rotate(45deg);
  	}
  	&::after {
  		transform: rotate(-45deg);
  	}
  }
  */
}
.block--card .block--card--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 11vh;
  background: rgba(1, 1, 1, 0.8);
}
.block--card .close {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 5vh;
  bottom: 5dvh;
  left: 0;
  z-index: 100;
  max-width: 200px;
  margin: 0 auto;
  padding: 0.8em;
  border-radius: 100em;
  border: solid 1px #010101;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-family: citrus-gothic-solid, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
}
.block--card .card {
  width: 300px;
  height: 70vh;
  height: 70dvh;
  max-height: 500px;
  border-radius: 0.3em;
}
.block--card .card .card--inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 0.3em;
}
.block--card .card .card--inner .block--logo {
  width: 80%;
  margin: 12vh auto 0;
}
.block--card .card .card--inner .block--logo--decoration {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/static/gangparade/assets/logo--official--mark.svg) no-repeat center center;
  background-size: 111%;
}
.block--card .card .card--inner .block--status {
  position: absolute;
  right: 0;
  bottom: 15%;
  left: 0;
  width: 80%;
  margin: 0 auto;
  color: #010101;
  text-shadow: 0 1px 0 #ffffff;
}
.block--card .card .card--inner .block--status .number {
  margin-bottom: 1em;
  font-family: citrus-gothic-solid, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 18px;
  line-height: 1;
}
.block--card .card .card--inner .block--status .number span {
  margin-right: 0.2em;
  font-weight: 400;
  font-size: 12px;
}
.block--card .card .card--inner .block--status .item--tit {
  display: block;
  margin-bottom: 0.2em;
  font-family: citrus-gothic-solid, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.block--card .card .card--inner .block--status .nickname,
.block--card .card .card--inner .block--status .joindate {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
}
.block--card .card .card--inner .block--status .nickname {
  margin-bottom: 1.2em;
  line-height: 1.5;
}
.block--card .card .card--inner .block--status .block--status--details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  font-size: 12px;
}
.block--card.basic .block--card--inner {
  background: rgba(255, 255, 255, 0.8);
}
.block--card.basic .card {
  background: linear-gradient(120deg, #010101 15%, #2a2a2a 40%, #565656 50%, #2a2a2a 60%, #010101 90%, #000000);
  background-size: 150% 100%;
  -webkit-animation: gradient_moving_horizontal 15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: gradient_moving_horizontal 15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  -webkit-box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3);
}
.block--card.basic .card .card--inner .block--logo--decoration {
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.block--card.basic .card .card--inner .block--status {
  color: #ffffff;
  text-shadow: 0 1px 0 #000000;
}
.block--card.silver .card {
  background: linear-gradient(120deg, #e1e1e1 11%, #b6b6b6 40%, #e8e8e8 56%, #e1e1e1 60%, #818181 90%, #888888);
  background-size: 150% 100%;
  -webkit-animation: gradient_moving_horizontal 15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: gradient_moving_horizontal 15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  -webkit-box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3);
}
.block--card.silver .card .card--inner .block--logo--decoration {
  opacity: 0.6;
  mix-blend-mode: overlay;
}
.block--card.silver .card .card--inner .block--status {
  color: #010101;
  text-shadow: 0 1px 0 #ffffff;
}
.block--card.silver .card .close {
  border: solid 1px #ffffff;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
.block--card.gold .card, .block--card.platinum .card {
  background: linear-gradient(115deg, #FF7777 0%, #FE6AAE 8%, #F1A8FF 20%, #BFFFF2 50%, #BFF654 65%, #FFE856 80%, #FFB12A);
  background-size: 120% 100%;
  -webkit-animation: gradient_moving_horizontal 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: gradient_moving_horizontal 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  -webkit-box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3);
}
.block--card.gold .card .card--inner .block--logo--decoration, .block--card.platinum .card .card--inner .block--logo--decoration {
  opacity: 0.6;
  mix-blend-mode: soft-light;
}
.block--card.gold .card .card--inner .block--status, .block--card.platinum .card .card--inner .block--status {
  color: #010101;
  text-shadow: 0 1px 0 #ffffff;
}
.block--card.gold .card .close, .block--card.platinum .card .close {
  border: solid 1px #ffffff;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
.block--card.type--app .block--card--inner {
  padding-top: 3vh;
  padding-top: 3dvh;
}
.block--card.type--app .card {
  max-height: 480px;
}
.block--card.type--app .close {
  bottom: 9vh;
  bottom: 9dvh;
}

body.card-visible .section--oshimen ul.block--ohimen--character li img {
  -webkit-animation: none;
          animation: none;
}

.btn--birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3em;
  padding: 1.5em 1em;
  border-radius: 100em;
  background: linear-gradient(100deg, #FF7777 0%, #FE6AAE 8%, #F1A8FF 20%, #BFFFF2 50%, #BFF654 65%, #FFE856 80%, #FFB12A);
  background-size: 111% 111%;
  color: #010101;
  font-family: citrus-gothic-solid, sans-serif;
  -webkit-animation: gradient_moving_horizontal 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
          animation: gradient_moving_horizontal 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}
.btn--birthday i {
  margin-right: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-size: 3em;
}
.btn--birthday span {
  font-size: 20px;
  line-height: 1.2;
}

.list--menu .list--notes {
  margin-bottom: 0;
  padding-top: 0.5em;
}
.list--menu .list--notes li {
  margin-bottom: 0.5em;
  border: none;
}
.list--menu .list--notes li a {
  display: inline-block;
  padding: 0;
  font-size: 11px;
  text-indent: 0;
  text-decoration: underline;
}
.list--menu .list--notes li a::after {
  display: none;
}

.mypage .detail__btn.app a::after {
  content: "BACK";
}

#mypage--app section .area--user-status.status--free {
  background: #777777;
}

#mypage--app section .area--user-status.status--member {
  background: #010101;
}

@-webkit-keyframes gradient_moving_horizontal {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient_moving_horizontal {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes gradient_moving_vertical {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@keyframes gradient_moving_vertical {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@-webkit-keyframes dokidoki {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes dokidoki {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  header h1 {
    width: 50vw;
    margin: 6px auto 20px;
  }
}