@charset "UTF-8";

.blinking {
  -webkit-animation: blink 0.6s ease-in-out infinite alternate;
  -moz-animation: blink 0.6s ease-in-out infinite alternate;
  animation: blink 0.6s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "logo-font";
  src: url("../font/851Gkktt.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* vp:480px */
/* vp:896px */
/* vp:1024px */
/* Scss Document */
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  word-break: break-all;
  border-bottom: none;
  text-decoration: none;
}
a img {
  border-bottom: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  /*border-bottom: none;*/
}

ul, li {
  list-style: none;
}

/* FORM */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-y: scroll;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

li.noList {
  list-style-type: none;
  margin-left: -20px;
}

html {
  font-size: 62.5%; /*16px x 0.625 = 10px(=1rem) */
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: '微軟正黑體', Arial, MS Gothic;
  font-size: 1.5rem;
  font-style: normal;
  color: #000;
  font-display: swap;
  display: none;
  /*background-color: #fffaad;*/
  letter-spacing: 0.15rem;
  line-height: 1.8;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow-x: hidden;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  body {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  body {
    font-size: 1.6741071429vw;
  }
}
@media screen and (max-width:480px) {
  body {
    font-size: 3.125vw;
  }
}
body footer {
  margin-top: auto;
}

img {
  max-width: 100%;
}

a {
  /*color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
	color:#000;
}
a:hover, a:active {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
	color:#000;
}
a:hover svg, a:active svg {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input:disabled {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
  opacity: 0.2;
}

::selection {
/*  background: #fff;
  color: #302986;*/
}

::-moz-selection {
/*  background: #fff;
  color: #302986;*/
}

.header {
  font-family: '微軟正黑體', Arial, MS Gothic;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  position: fixed;
  width: 220px;
  height: 100vh;
  z-index: 9999;
  background: url("../images/background.png");
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .header {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .header {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .header {
    font-size: 3.3333333333vw;
  }
}
.header::before {
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  position: absolute;
  content: "";
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
  filter: blur(10px);
}
.header__wrap {
  padding: 5rem 1.5rem;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-image:image('../images/background.png');
  background-size: 10px 10px;
}
.header__wrap::before, .header__wrap::after {
  position: absolute;
  content: "";
  height: 100vh;
  width: 2px;
  top: 0;
}

.header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.header__inner .logo {
	padding: 23px;
	width:150%;
}
.header__inner .nav {
  width: 100%;
}
.header__inner .nav__main {
  font-size: 1.7rem;
  color: #fff;
	backdrop-filter: blur(2px);
	  margin:0 auto;
  /*filter: drop-shadow(0 0 5px #BA86DC);*/
}
.header__inner .nav__main a:hover {
  /*text-shadow: 0.06rem 0 0.06rem #00FFFF, -0.125rem 0 0.06rem #EE00FF;
  animation-duration: 1s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;*/
}
@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #00FFFF, -2px 0 0 #EE00FF;
  }
  to {
    text-shadow: 2px 0.5px 2px #00FFFF, -1px -0.5px 2px #EE00FF;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .header__inner .nav__main {
    font-size: 2.44140625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .header__inner .nav__main {
    font-size: 2.7901785714vw;
  }
}
@media screen and (max-width:480px) {
  .header__inner .nav__main {
    font-size: 5.2083333333vw;
  }
}

.header__inner .nav{
	padding:0px 20px;
}

.header__inner .nav__sns {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 12px 20px;
  /*display: flex;*/
  background-color: rgba(255, 255, 255, 0.5);
  /*justify-content: space-evenly;
  align-items: center;*/
  border-radius: 8px;
}
.header__inner .nav__sns li {
	color: #000;
	font-weight:bold;
	font-size:1.7rem;
	margin-bottom:15px;
}

.header__inner .nav__sns li {
	border-left: #F00 5px solid;
}

.header__inner .nav__sns li:hover {
	border-left: #EFD200 5px solid;
}

.header__inner .nav__sns li a {
	color: #000;
	text-shadow: 0px 0px 6px rgba(255,255,255,0.7);
	padding-left:10px;
}

.header__inner .nav__sns li a:hover {
	text-shadow: 0px 0px 6px rgba(0,0,0,0.7);
}

.header__inner .nav__sns img {
  display: block;
  width: 27px;
  padding: 5px;
}
.header__inner .nav__sns a:hover img {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  /*filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px #00FFFF) drop-shadow(0 0 2px #EE00FF) drop-shadow(0 0 5px rgba(0, 255, 255, 0.5)) drop-shadow(0 0 5px rgba(238, 0, 255, 0.5)) drop-shadow(0 0 7.5px rgba(0, 255, 255, 0.25)) drop-shadow(0 0 7.5px rgba(238, 0, 255, 0.25)) opacity(0.95);*/
}
.header__inner .copy {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .header__inner .copy {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .header__inner .copy {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .header__inner .copy {
    font-size: 3.3333333333vw;
  }
}
.header__inner .pp {
  font-size: 1rem;
  margin-top: 2rem;
}
.header__inner .pp a {
  display: block;
  font-size: 1rem;
}
.header__bottom {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__bottom .copy {
  font-size: 1rem;
}
@media screen and (max-width:1200px) {
  .header {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
    z-index: -9999;
    width: 100%;
  }
  .header::before {
    opacity: 0.8;
  }
  .header__wrap {
    background-color: rgba(0, 0, 0, 0);
  }
  .header__inner {
    align-items: center;
    /*justify-content: center;*/
    gap: 3rem;
  }
  .header__inner .logo {
    max-width: 250px;
  }
  .header__inner .nav__main {
    /*text-align: center;*/
	  backdrop-filter: blur(2px);
	  margin:0 auto;
  }
  .header__inner .nav__sns {
    max-width: 300px;
  }
  .header__bottom {
    align-self: self-end;
    margin-top: 0;
  }
  .header__bottom .pp {
    margin: 0;
  }
  .header__bottom .copy {
    display: none;
  }
  .header.active {
    opacity: 1;
    z-index: 9999;
  }
	
}
@media screen and (max-height: 700px) and (min-width: 1023px) {
  .header__wrap {
    padding: 0 5rem 0;
  }
  .header__inner {
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .header__inner .nav {
    margin: 2rem 0;
  }
  .header__inner .logo {
    margin-top: 5rem;
  }
  .header__bottom {
    margin-bottom: 5rem;
  }
}
@media screen and (max-height: 500px) {
  .header__wrap {
    overflow-x: scroll;
  }
  .header__inner {
    display: inline-flex;
  }
}

.menu-icon {
  display: none;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  width: 30px;
  height: 21px;
  top: 13px;
  right: 13px;
  z-index: 10000;
}
.menu-icon span {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  display: block;
  width: 100%;
  background-color: #fff;
}
.menu-icon span:nth-child(1) {
  height: 3px;
  top: 0;
}
.menu-icon span:nth-child(2) {
  margin: auto;
  height: 2px;
  top: 1px;
  bottom: 0;
}
.menu-icon span:nth-child(3) {
  height: 1px;
  bottom: 0;
}
.menu-icon.active {
  height: 22px;
}
.menu-icon.active span {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu-icon.active span:nth-child(1) {
  transform: rotate(-45deg);
  transform-origin: right top;
  width: 98%;
}
.menu-icon.active span:nth-child(2) {
  width: 0;
}
.menu-icon.active span:nth-child(3) {
  transform: rotate(45deg);
  transform-origin: right top;
  bottom: -1px;
}
.menu-icon.hide {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translateY(-43px);
}
@media screen and (max-width:1200px) {
  .menu-icon {
    display: block;
  }
}

.sp-logo {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  width: 15%;
  max-width: 80px;
  top: 10px;
  left: 20px;
  z-index: 1001;
}
.sp-logo.hide {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translateY(-43px);
}

#top .sp-logo {
  /*display: none;*/
}

.sp-bar {
	position: fixed;
	background: url('../images/background.png');
	width: 100%;
	height:50px;
	top:0;
	left:0;
	z-index:1000;
	margin-bottom: -50px;
}

.wrap, .wrap_store {
  width: calc(100% - 220px);
  margin-left: auto;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
@media screen and (max-width:1200px) {
  .wrap {
    width: 100%;
	  padding-top:25px;
  }
	
	.wrap_store {
    width: 100%;
	  padding-top:50px;
  }
}

.outer {
  position: relative;
  width: min(90%, 960px);
  margin: 5rem auto;
}
@media screen and (max-width: 1024px) {
  .outer {
    margin: 7.5rem auto;
  }
}
@media screen and (max-width:480px) {
  .outer {
    margin: 4rem auto;
  }
}

.inner {
  position: relative;
  width: min(90%, 760px);
  margin: 15rem auto;
}
@media screen and (max-width: 1024px) {
  .inner {
    margin: 10rem auto;
  }
}
@media screen and (max-width: 896px) {
  .inner {
    margin: 0rem auto;
  }
}

.info .banner a {
  position: relative;
  display: inline-block;
}
.info .banner a img {
  transform: filter 2s ease;
  position: relative;
  filter: drop-shadow(0px 0px 30px rgba(255, 0, 0, 0.1));
  border: 0.5px solid rgba(255, 0, 0, 0.1);
}
.info .banner a::after {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  right: -5px;
  background-color: red;
  opacity: 0.1;
  filter: blur(5px);
  z-index: -1;
}
.info .banner a:hover::after {
  opacity: 0;
}
.info .banner a:hover img {
  filter: none;
}
.info .title--neon.latest-info {
  opacity: 0;
  position: absolute;
  left: -15%;
  top: -5%;
  font-size: 5.5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .info .title--neon.latest-info {
    font-size: 5.37109375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .info .title--neon.latest-info {
    font-size: 6.1383928571vw;
  }
}
@media screen and (max-width:480px) {
  .info .title--neon.latest-info {
    font-size: 9.375vw;
  }
}
.info .title--neon.ftct {
  opacity: 0;
  position: absolute;
  right: -15%;
  bottom: -3%;
  font-size: 2.7rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .info .title--neon.ftct {
    font-size: 2.63671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .info .title--neon.ftct {
    font-size: 3.0133928571vw;
  }
}
@media screen and (max-width:480px) {
  .info .title--neon.ftct {
    font-size: 4.1666666667vw;
  }
}
.info .title--neon.ftct::before, .info .title--neon.ftct::after {
  animation-delay: 1s;
}
.info .title--neon.animation.latest-info {
  opacity: 1;
  left: -10%;
  transition: 0.5s ease;
}
.info .title--neon.animation.ftct {
  opacity: 1;
  right: 0%;
  transition: 0.5s ease;
}
.info__inner {
  position: relative;
  padding: 4rem 5%;
  border-radius: 5px 50px;
  background-color: rgba(0, 0, 0, 0.65);
  filter: opacity(0) blur(2px);
}
.info__inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: cornflowerblue;
  top: 10px;
  right: 10px;
  border-radius: 5px 50px;
  z-index: -1;
  filter: blur(1px) opacity(0.04) drop-shadow(0 0 4px cornflowerblue);
}
.info__inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: radial-gradient(#fff, 15%, transparent 15%);
  background-size: 15px 15px;
  top: -15px;
  left: 10px;
  z-index: -1;
  filter: blur(1px) opacity(0.05);
  border-radius: 5px 50px;
}
.info__inner--author {
  display: flex;
  align-content: center;
  margin-bottom: 2rem;
}
.info__inner--author .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: calc(50px / 2);
  margin-right: calc(50px / 5);
}
.info__inner--author .name {
  align-self: center;
  line-height: 1.5;
}
.info__inner--author .name span {
  color: #777;
  font-weight: 300;
}
.info__inner.animation {
  right: 30px;
  transition: 1s ease;
  transition-delay: 0.2s;
  filter: opacity(1) blur(0);
}
@media screen and (max-width: 1024px) {
  .info {
    position: relative;
    min-height: 43vh;
    margin-bottom: 2vh;
    width: 95%;
    margin: 0 auto;
    bottom: 0;
  }
  .info .title--neon.latest-info, .info .title--neon.ftct {
    text-align: center;
    -webkit-text-stroke: 0.1px #302986;
    text-stroke: 0.1px #302986;
    right: 0;
    left: 0;
    opacity: 1;
  }
  .info .title--neon.latest-info {
    top: -22px;
    filter: blur(0.3px);
  }
  .info .title--neon.latest-info::before, .info .title--neon.latest-info::after {
    left: 10px;
  }
  .info .title--neon.ftct {
    bottom: -10px;
    filter: blur(0.2px);
  }
  .info .title--neon.ftct::before, .info .title--neon.ftct::after {
    left: 0;
  }
  .info__inner {
    padding: 3rem 5%;
    border-radius: 5px 50px;
  }
  .info__inner.animation {
    right: 0;
  }
  .info__inner.animation::before {
    top: 5px;
    right: 5px;
  }
  .info__inner.animation::after {
    top: -10px;
    left: 10px;
  }
  .info__inner.animation::before, .info__inner.animation::after {
    border-radius: 5px 50px;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) and (orientation: landscape) {
  .info {
    min-height: 100vh;
  }
  .info__inner {
    height: 100vh;
  }
}

.news__list {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.news__list a {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.news__list--time {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .news__list--time {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .news__list--time {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .news__list--time {
    font-size: 3.3333333333vw;
  }
}
.news__list--icon {
  display: block;
  width: 50px;
  border-radius: 3px;
  margin: 0 2rem;
  white-space: nowrap;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}
.news__list--title {
  width: 75%;
}
.news__list:last-of-type a {
  border-bottom: none;
  /* ニュース5件以上になったらpadding-bottom: 0;*/
}
.news__list:hover {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.75;
}
@media screen and (max-width: 896px) {
  .news__list a {
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .news__list--time {
    padding-bottom: 0.5rem;
  }
  .news__list--icon {
    width: 50px;
    margin: 0 1rem 0 0;
  }
  .news__list--title {
    width: 100%;
  }
}

.article.inner {
  margin-top: 0;
}
.article__time {
  display: block;
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .article__time {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .article__time {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .article__time {
    font-size: 3.3333333333vw;
  }
}
.article__title {
  font-size: 2.8rem;
  margin: 1rem 0 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .article__title {
    font-size: 2.734375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .article__title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width:480px) {
  .article__title {
    font-size: 5vw;
  }
}
.article__read {
  position: relative;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .article__read {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .article__read {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .article__read {
    font-size: 3.3333333333vw;
  }
}
.article__text {
  letter-spacing: 0.1em;
}
.article__text p + p {
  margin-top: 2rem;
}
.article__text--song {
  display: flex;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.article__text--song img {
  display: block;
  max-width: 200px;
  padding-right: 1rem;
}
.article__text--song .title {
  font-size: 120%;
}
@media screen and (max-width: 1024px) {
  .article__text--song {
    display: block;
  }
  .article__text--song img {
    width: 100%;
    max-width: 300px;
    padding-right: 0;
  }
}
.article__interview {
  letter-spacing: 0em;
  margin-bottom: 10rem;
}
.article__interview--intro {
  margin: 1.5rem 0 !important;
}
.article__interview--intro p {
  margin-bottom: 1rem;
}
.article__interview .interview {
  padding: 6rem;
  margin: 1rem 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.article__interview .interview li {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}
.article__interview .interview .tag {
  letter-spacing: 0.2em;
  width: 10%;
  position: relative;
  background-color: transparent;
  color: #fff;
  margin: 0;
  padding: 0 0.5rem;
  filter: none;
  border: none;
  /*&::after {
    content: ":";
    color: $wh;
    margin-left: 1rem;
  }*/
}
.article__interview .interview .tag--interviewer {
  align-self: flex-start;
  width: 7%;
  height: 1px;
  margin-top: 1.1rem;
  margin-right: 3%;
  background-color: #fff;
}
.article__interview .interview .tag--nora {
  color: #A5C5FF;
}
.article__interview .interview .tag--layla {
  color: #FFBDA5;
}
.article__interview .interview .comment {
  width: 80%;
  line-height: 1.5;
}
.article__interview .interview .comment--interviewer {
  font-weight: 500;
}
.article__interview .interview .comment--nora {
  color: #A5C5FF;
}
.article__interview .interview .comment--layla {
  color: #FFBDA5;
}
.article__interview .interview .youtube {
  margin: 3rem 0;
}
.article__interview .interview--info {
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  margin: 5rem 0 0;
  padding: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .article__interview--intro {
    margin: 1rem 0 !important;
  }
  .article__interview .interview {
    padding: 2rem 1rem;
  }
  .article__interview .interview li {
    margin-bottom: 1rem;
  }
  .article__interview .interview .tag {
    width: 15%;
  }
  .article__interview .interview .tag--interviewer {
    margin-top: 0.8rem;
  }
  .article__interview .interview .comment {
    width: 85%;
  }
  .article__interview .interview--info {
    padding: 1rem;
  }
}

.interview {
  letter-spacing: 0em;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.7;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 4rem 0;
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .interview {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .interview {
    font-size: 3.75vw;
  }
}
.interview__inner {
  width: 90%;
  max-width: 640px;
  margin: 0 auto;
}
.interview .title--paragraph {
  letter-spacing: 0.05em;
  font-size: 2.4rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.interview .title--paragraph:first-of-type {
  margin-top: 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .interview .title--paragraph {
    font-size: 2.34375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .interview .title--paragraph {
    font-size: 2.6785714286vw;
  }
}
@media screen and (max-width:480px) {
  .interview .title--paragraph {
    font-size: 5vw;
  }
}
.interview__img {
  text-align: center;
  margin: 2rem 0;
}
.interview__img img {
  max-height: 500px;
  width: auto;
  margin: 0 auto;
}
.interview__img figcaption {
  text-align: center;
  color: #bfbfbf;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .interview__img figcaption {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width:480px) {
  .interview__img figcaption {
    font-size: 2.9166666667vw;
  }
}
.interview p {
  margin-bottom: 1.8rem;
}
.interview .intro {
  margin-bottom: 3rem;
}
.interview .paragraph {
  margin-bottom: 3rem;
}
.interview .interviewer {
  color: #bfbfbf;
}
.interview .interviewer::before {
  content: "——";
  margin-right: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .interview {
    padding: 3rem 0;
  }
  .interview p {
    margin-bottom: 1rem;
  }
  .interview .paragraph {
    margin-bottom: 1.5rem;
  }
  .interview__img img {
    max-height: auto;
    max-width: 500px;
    width: 80%;
  }
}

.movie #slick-movie .slick-list {
  opacity: 0;
  transform: skewX(10deg);
  filter: blur(5px);
}
.movie #slick-movie .slide-arrow, .movie #slick-movie .slide-dots {
  width: 0;
}
.movie #slick-movie:after {
  animation: flicker 5s linear infinite;
  content: "";
  width: 0%;
  height: 85%;
  background-color: cornflowerblue;
  filter: blur(1px) opacity(0.08) drop-shadow(0 0 4px cornflowerblue);
  position: absolute;
  top: 20px;
  left: -20px;
  z-index: -1;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}
@keyframes flicker {
  from {
    opacity: 0.7;
  }
  4% {
    opacity: 0.6;
  }
  6% {
    opacity: 0.75;
  }
  8% {
    opacity: 0.65;
  }
  10% {
    opacity: 0.6;
  }
  11% {
    opacity: 0.622;
  }
  12% {
    opacity: 0.5;
  }
  14% {
    opacity: 0.55;
  }
  16% {
    opacity: 0.68;
  }
  17% {
    opacity: 0.6;
  }
  19% {
    opacity: 0.63;
  }
  20% {
    opacity: 0.69;
  }
  24% {
    opacity: 0.7;
  }
  26% {
    opacity: 0.64;
  }
  28% {
    opacity: 0.68;
  }
  37% {
    opacity: 0.63;
  }
  38% {
    opacity: 0.5;
  }
  39% {
    opacity: 0.66;
  }
  42% {
    opacity: 0.7;
  }
  44% {
    opacity: 0.67;
  }
  46% {
    opacity: 0.634;
  }
  56% {
    opacity: 0.6;
  }
  58% {
    opacity: 0.6;
  }
  60% {
    opacity: 0.69;
  }
  68% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.65;
  }
  93% {
    opacity: 0.63;
  }
  95% {
    opacity: 0.65;
  }
  97% {
    opacity: 0.63;
  }
  to {
    opacity: 0.7;
  }
}
.movie #slick-movie.animation .slick-list {
  filter: blur(0);
  opacity: 1;
  transform: skewX(0deg);
  transition: 1s ease-in-out;
  transition-delay: 0.5s;
}
.movie #slick-movie.animation .slide-arrow {
  width: 100px;
}
.movie #slick-movie.animation .slide-dots {
  width: 98%;
}
.movie #slick-movie.animation:after {
  width: 100%;
  transition: 0.5s ease;
}
@media screen and (max-width: 1024px) {
  .movie #slick-movie .inner {
    width: 100%;
  }
  .movie #slick-movie.animation .slide-arrow {
    width: 30px;
  }
  .movie #slick-movie.animation:after {
    width: 90%;
    left: auto;
    right: 10%;
  }
}
.movie .js-modal-video {
  position: relative;
}
.movie .js-modal-video .thumbg {
  padding-top: 49.25%;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}
.movie .js-modal-video .thumbg div {
  filter: blur(3px);
  background-size: 105%;
  transition: 0.5s ease;
}
.movie .js-modal-video .thumbg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
}
.movie .js-modal-video .title {
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.15em;
  z-index: 1;
  position: relative;
  display: inline-block;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .movie .js-modal-video .title {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .movie .js-modal-video .title {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .movie .js-modal-video .title {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .movie .js-modal-video .title {
    font-size: 2.9296875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .movie .js-modal-video .title {
    font-size: 3.125vw;
  }
}
@media screen and (max-width:480px) {
  .movie .js-modal-video .title {
    font-size: 5.8333333333vw;
  }
}
.movie .js-modal-video .title span {
  opacity: 0;
  margin-left: 0.5rem;
  transition: 0.1s ease;
  filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.4)) drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.2)) drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.1));
}
.movie .js-modal-video .title::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  left: 2px;
  top: 0;
  bottom: 0;
}
.movie .js-modal-video .play-icon:before, .movie .js-modal-video .play-icon:after {
  transition: 0.5s ease;
  bottom: 25px;
  transform: rotateY(90deg);
  opacity: 0;
}
.movie .js-modal-video .play-icon:after {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.movie .js-modal-video.animation .thumbg div {
  filter: blur(0);
  background-size: 100%;
  transition: 0.5s ease;
}
.movie .js-modal-video.animation .title span {
  opacity: 1;
  transition: 0.5s ease;
  transition-delay: 0.5s;
}
.movie .js-modal-video.animation .title::before {
  animation: slickAnimation 1s ease forwards;
  z-index: -1;
}
@keyframes slickAnimation {
  from {
    width: 0;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  to {
    width: 0;
  }
}
.movie .js-modal-video.animation .play-icon:before, .movie .js-modal-video.animation .play-icon:after {
  transition: 0.5s ease;
  transition-delay: 0.75s;
  transform: rotateY(0deg);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .movie .js-modal-video .thumbg {
    padding-top: 56.25%;
  }
  .movie .js-modal-video .title span {
    height: -webkit-fill-available;
    height: -moz-available;
    height: available;
  }
}

@media screen and (max-width: 896px) {
  #about .outer {
    margin: 0 auto;
  }
}

.discography .outer {
  position: relative;
}
.discography .outer::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 3px;
  background-color: #EE00FF;
  filter: blur(0px) drop-shadow(0 0 0px transparent) opacity(0.1);
  transition: 0.75s ease;
}
.discography .outer .date, .discography .outer .title--song, .discography .outer .caption, .discography .outer .btn {
  filter: opacity(0.2);
  transition: 2s ease;
}
.discography .outer .caption {
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin: 2rem 0;
  margin-left: 1rem;
}
.discography .outer .caption .font--logo {
  display: block;
  margin: 1rem;
  margin-left: -1rem;
  font-size: 2.2rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .outer .caption .font--logo {
    font-size: 2.1484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .outer .caption .font--logo {
    font-size: 2.4553571429vw;
  }
}
@media screen and (max-width:480px) {
  .discography .outer .caption .font--logo {
    font-size: 4.5833333333vw;
  }
}
.discography .outer .caption img {
  width: 60%;
}
.discography .outer .js-modal-video {
  position: relative;
  margin-top: 1rem;
}
.discography .outer .js-modal-video .thumbg {
  box-shadow: none;
}
.discography .outer .js-modal-video .thumbg div {
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0.8;
  background-size: 110%;
  background-position: left center;
  filter: brightness(0.3);
}
.discography .outer .js-modal-video::before {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  position: absolute;
  content: attr(date-num);
  font-size: 10rem;
  color: rgba(238, 0, 255, 0.2);
  filter: blur(1px) opacity(0.1);
  -webkit-text-stroke: 0.3px #fff;
  text-stroke: 0.3px #fff;
  bottom: calc(100% - 6px);
  right: -20px;
  line-height: 1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .outer .js-modal-video::before {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .outer .js-modal-video::before {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .discography .outer .js-modal-video::before {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .outer .js-modal-video::before {
    font-size: 9.765625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .outer .js-modal-video::before {
    font-size: 8.9285714286vw;
  }
}
@media screen and (max-width:480px) {
  .discography .outer .js-modal-video::before {
    font-size: 16.6666666667vw;
  }
}
.discography .outer .js-modal-video::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -1rem;
  right: -1rem;
  z-index: -9999;
  background-color: rgba(238, 0, 255, 0.2);
  filter: blur(1px) opacity(0.1);
  border: 1px solid #fff;
}
.discography .outer .play-icon:before, .discography .outer .play-icon:after {
  filter: opacity(0.1);
  box-shadow: none;
  transition: 1s ease;
}
.discography .outer .btn--normal {
  font-family: shippori-antique, serif;
  font-size: 1.5rem;
  font-style: normal;
  color: #fff;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .outer .btn--normal {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .outer .btn--normal {
    font-size: 1.6741071429vw;
  }
}
@media screen and (max-width:480px) {
  .discography .outer .btn--normal {
    font-size: 3.125vw;
  }
}
.discography .outer:nth-child(odd)::before {
  right: 0;
  background-color: #00FFFF;
}
.discography .outer:nth-child(odd) .caption {
  margin-left: 0;
  margin-right: 1rem;
}
.discography .outer:nth-child(odd) .caption .font--logo {
  border-left: none;
  padding-left: 0;
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 0;
  margin-right: -1rem;
}
.discography .outer:nth-child(odd) .caption, .discography .outer:nth-child(odd) .date, .discography .outer:nth-child(odd) .title--song {
  text-align: right;
}
.discography .outer:nth-child(odd) .js-modal-video .thumbg div {
  background-position: right center;
}
.discography .outer:nth-child(odd) .js-modal-video::before {
  color: rgba(0, 255, 255, 0.2);
  filter: blur(1px) opacity(0.1);
  left: -20px;
}
.discography .outer:nth-child(odd) .js-modal-video::after {
  background-color: rgba(0, 255, 255, 0.2);
  left: -1rem;
  filter: blur(1px) opacity(0.1);
}
.discography .outer:nth-child(odd) .btn--normal {
  background-color: rgba(0, 255, 255, 0.05);
}
.discography .outer:nth-child(odd) .thumbg::after {
  filter: drop-shadow(0 0 15px #00FFFF);
  box-shadow: 0 0 15px #00FFFF;
}
.discography .outer:nth-child(odd) .play-icon:before, .discography .outer:nth-child(odd) .play-icon:after {
  filter: opacity(0.1);
  box-shadow: none;
  transition: 1s ease;
}
.discography .outer:first-child .inner {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .discography .outer .inner {
    margin: 15rem auto;
  }
  .discography .outer .caption {
    margin: 2rem 0;
  }
  .discography .outer .caption .font--logo {
    margin-left: 0;
  }
  .discography .outer .caption img {
    width: 100%;
  }
  .discography .outer .js-modal-video::before {
    -webkit-text-stroke: 0.8px #fff;
    text-stroke: 0.8px #fff;
    right: -14px;
    bottom: calc(100% - 4px);
  }
  .discography .outer .js-modal-video::after {
    top: -0.7rem;
    right: -0.7rem;
  }
  .discography .outer:nth-child(odd) .js-modal-video::before {
    left: -14px;
  }
  .discography .outer:nth-child(odd) .js-modal-video::after {
    left: -0.7rem;
  }
}
.discography .outer.animation::before {
  opacity: 0.1;
  -webkit-animation: neonLighting;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: steps(18);
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  filter: blur(1px) drop-shadow(0 0 5px #EE00FF) opacity(1);
  animation-duration: 0.25s;
}
@keyframes neonLighting {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  8% {
    opacity: 0.25;
  }
  13% {
    opacity: 0.1;
  }
  30% {
    opacity: 0.1;
  }
  32% {
    opacity: 0.65;
  }
  34% {
    opacity: 0.25;
  }
  38% {
    opacity: 0.45;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.discography .outer.animation .date, .discography .outer.animation .title--song, .discography .outer.animation .caption, .discography .outer.animation .btn {
  filter: opacity(1);
  transition: 2s ease;
}
.discography .outer.animation .js-modal-video .thumbg div {
  opacity: 1;
  background-size: 100%;
  filter: brightness(1);
}
.discography .outer.animation .js-modal-video::before {
  opacity: 0.1;
  -webkit-animation: neonLighting;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: steps(18);
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.1s;
  animation-duration: 0.5s;
  filter: opacity(1) blur(1px) drop-shadow(0 0 4px rgba(238, 0, 255, 0.8)) drop-shadow(0 0 6px rgba(238, 0, 255, 0.6)) drop-shadow(0 0 8px rgba(238, 0, 255, 0.4));
}
@keyframes neonLighting {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  8% {
    opacity: 0.25;
  }
  13% {
    opacity: 0.1;
  }
  30% {
    opacity: 0.1;
  }
  32% {
    opacity: 0.65;
  }
  34% {
    opacity: 0.25;
  }
  38% {
    opacity: 0.45;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.discography .outer.animation .js-modal-video::after {
  opacity: 0.1;
  -webkit-animation: neonLighting;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: steps(18);
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.25s;
  animation-duration: 0.2s;
  filter: opacity(1) blur(1px) drop-shadow(0 0 4px rgba(238, 0, 255, 0.8)) drop-shadow(0 0 6px rgba(238, 0, 255, 0.6)) drop-shadow(0 0 8px rgba(238, 0, 255, 0.4));
}
@keyframes neonLighting {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  8% {
    opacity: 0.25;
  }
  13% {
    opacity: 0.1;
  }
  30% {
    opacity: 0.1;
  }
  32% {
    opacity: 0.65;
  }
  34% {
    opacity: 0.25;
  }
  38% {
    opacity: 0.45;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.discography .outer.animation .play-icon:before, .discography .outer.animation .play-icon:after {
  filter: opacity(1);
  transition: 1s ease;
}
.discography .outer.animation:nth-child(odd)::before {
  filter: blur(1px) drop-shadow(0 0 5px #00FFFF) opacity(1);
}
.discography .outer.animation:nth-child(odd) .js-modal-video::before {
  filter: blur(1px) drop-shadow(0 0 4px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 6px rgba(0, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}
.discography .outer.animation:nth-child(odd) .js-modal-video::after {
  filter: blur(1px) drop-shadow(0 0 4px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 6px rgba(0, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}
.discography .outer.animation:nth-child(odd) .play-icon:before, .discography .outer.animation:nth-child(odd) .play-icon:after {
  filter: opacity(1);
  transition: 1s ease;
}
.discography .song-list .release {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 1.2rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .song-list .release {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .song-list .release {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .discography .song-list .release {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .song-list .release {
    font-size: 1.171875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .song-list .release {
    font-size: 1.3392857143vw;
  }
}
@media screen and (max-width:480px) {
  .discography .song-list .release {
    font-size: 2.5vw;
  }
}
.discography .song-list .title {
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .song-list .title {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .song-list .title {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .discography .song-list .title {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .song-list .title {
    font-size: 2.34375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .song-list .title {
    font-size: 2.6785714286vw;
  }
}
@media screen and (max-width:480px) {
  .discography .song-list .title {
    font-size: 5vw;
  }
}
.discography .song-list .title .small {
  font-size: 1.4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .song-list .title .small {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .song-list .title .small {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width:480px) {
  .discography .song-list .title .small {
    font-size: 2.9166666667vw;
  }
}
.discography .song-list__item {
  width: 370px;
  padding-right: 3vw;
}
.discography .song-list__item .jacket {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.discography .song-list__item .jacket img {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.discography .song-list__item .jacket::after {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "MORE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  z-index: 1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .discography .song-list__item .jacket::after {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .discography .song-list__item .jacket::after {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .discography .song-list__item .jacket::after {
    font-size: 3.3333333333vw;
  }
}
.discography .song-list__item:hover {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.discography .song-list__item:hover .jacket {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.discography .song-list__item:hover .jacket img {
  transform: scale(1.1);
  filter: blur(2px) brightness(0.3);
}
.discography .song-list__item:hover .jacket::after {
  transition-delay: 0.2 0.5s;
  opacity: 1;
}
.discography #slick-disco {
  position: relative;
  margin-left: max((100% - 960px) / 2, 150px);
}
.discography .slide-area {
  position: relative;
}
.discography .slide-area .slide-num {
  position: absolute;
  bottom: 100%;
  left: max((100% - 960px) / 2, 150px);
}
.discography .slide-area .slide-arrow {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: calc((100% - 960px) / 2 / -1);
  margin: auto;
}
@media screen and (max-width:1600px) {
  .discography .slide-area .slide-arrow {
    left: -90px;
  }
}
@media screen and (max-width: 896px) {
  .discography .song-list__item {
    width: 90vw;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 2.5vw;
  }
  .discography #slick-disco {
    width: 100%;
    margin: 0 auto;
  }
  .discography .slide-area .slide-num {
    bottom: initial;
    top: 100%;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 3rem;
  }
}

.soloworks {
  position: relative;
  /*padding-top: 5rem;*/
}
.soloworks .outer {
  max-width: 1200px;
}
.soloworks .bg-glitch {
  position: absolute;
  top: 20rem;
  bottom: auto;
  filter: opacity(0.2) blur(1.5px);
  background: transparent no-repeat right;
}
.soloworks .song-list__item {
  cursor: pointer;
}
.soloworks .song-list__item .thumbg {
  max-width: 100%;
  overflow: hidden;
}
.soloworks .song-list__item .thumbg > * {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.soloworks .song-list__item .title--song-s {
  color: #F00;
font-weight:bold;
  transition: 0.5s ease;
  transition-delay: 0.1s;
  line-height: 1.2;
}
.soloworks .song-list__item .title--song-s::after {
  width: 1px;
  transition: 0.5s ease;
}
.soloworks .song-list__item:hover .thumbg img {
  /*-webkit-transform: scale(1.25) rotate(10deg);
  transform: scale(1.25) rotate(10deg);
  filter: grayscale(0.8) contrast(1.2);*/
}
.soloworks .song-list__item:hover .title--song-s {
  color: #FFF;
}
.soloworks .song-list__item:hover .title--song-s::after {
  width: 100%;
}
.soloworks .song-list::after {
  display: block;
  content: "";
  width: 28%;
  max-width: 360px;
	margin-bottom:80px;
}
.soloworks .movie-list .thumbg {
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
@media screen and (max-width:480px) {
  .soloworks {
    padding-top: 2.5rem;
  }
  .soloworks .bg-glitch {
    top: 142px;
    max-height: 100px;
    width: 80%;
    background-size: contain;
  }
  .soloworks .song-list__item {
    margin-bottom: 2rem;
  }
  .soloworks .song-list::after {
    width: 48%;
  }
}

.profile {
  position: relative;
}
.profile__yorumachi {
  position: relative;
}
.profile__yorumachi .bg-glitch {
  background-position: top center;
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  filter: opacity(0.65) blur(0.2px);
}
.profile__yorumachi .bg-glitch::before, .profile__yorumachi .bg-glitch::after, .profile__yorumachi .bg-glitch .channel {
  animation-delay: 2s;
}
.profile__nora {
  display: flex;
  gap: 3rem;
}
.profile__nora .img {
  width: 30%;
}
@media screen and (max-width: 896px) {
  .profile__yorumachi {
    padding-top: 200px;
  }
  .profile__yorumachi .bg-glitch {
    width: 90%;
    top: 0;
    bottom: auto;
  }
  .profile__nora {
    flex-direction: column;
    gap: 1.5rem;
  }
  .profile__nora .img {
    width: 100%;
  }
  .profile__nora .img img {
    aspect-ratio: 3.2/1;
    object-fit: cover;
    object-position: center -28px;
  }
  .profile .language-switch {
    margin-top: 3rem;
  }
}

.story {
  position: relative;
}
.story .text-box {
  margin-bottom: 8rem;
}
.story .bg-glitch {
  right: 0;
}
.story__personal {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
.story__personal .img {
  text-align: center;
  margin: 1rem 0;
}
.story__personal .img figcaption {
  font-size: smaller;
  color: #bfbfbf;
}
.story__personal--nora, .story__personal--layla {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .story__personal {
    flex-direction: column;
    gap: 2rem;
  }
  .story__personal--nora, .story__personal--layla {
    width: 100%;
  }
}
.story__chapter {
  position: relative;
}
.story__chapter .bg-glitch {
  top: 10rem;
}
.story__chapter--02 .bg-glitch {
  left: 0;
  right: auto;
}
@media screen and (max-width: 1024px) {
  .story__chapter {
    margin-top: 5rem;
  }
}

.main-visual {
  position: relative;
  min-height: 100svh;
  margin-bottom: 20rem;
}
.main-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  background-image: url(../images/banner01.jpg);
  background-size: cover;
  background-position: 130px 0%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  filter: opacity(0.15) contrast(0.5) blur(5px);
  transition: 1.5s ease;
  right: 0;
  z-index: -10000;
  clip-path: polygon(0% 0%, 100% 0, 100% 90%, 0 100%);
}
@media screen and (max-width:1200px) {
  .main-visual::before {
    background-position: 49% 0%;
  }
}
.main-visual .banner {
  position: absolute;
  bottom: 3rem;
  right: 5rem;
  filter: blur(2px) opacity(0);
}
.main-visual .banner a {
  position: relative;
  display: inline-block;
}
.main-visual .banner a img {
  max-width: 350px;
  border-radius: 50%;
  transform: filter 2s ease;
  position: relative;
  filter: drop-shadow(0px 0px 30px rgba(255, 255, 0, 0.1));
  border: 0.5px solid rgba(255, 255, 0, 0.1);
}
.main-visual .banner a::after {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  border-radius: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  right: -5px;
  background-color: yellow;
  opacity: 0.1;
  filter: blur(5px);
  z-index: -1;
}
.main-visual .banner a:hover::after {
  opacity: 0;
}
.main-visual .banner a:hover img {
  filter: none;
}
.main-visual .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: calc(80% - 320px);
  max-width: 900px;
  filter: blur(2px) opacity(0);
}
.main-visual .scrolldown {
  filter: blur(2px) opacity(0);
}
.main-visual.animated::before {
  transition: 2s ease;
  filter: opacity(0.45) contrast(1.25) blur(0px);
}
.main-visual.animated .scrolldown, .main-visual.animated .logo, .main-visual.animated .banner {
  transition: 2s ease;
  filter: blur(0) opacity(1);
}
@media screen and (max-width:1200px) {
  .main-visual {
    position: relative;
    width: 100%;
    min-height: 100svh;
    margin-bottom: 20rem;
  }
  .main-visual .banner {
    bottom: 1rem;
    right: auto;
    left: 1rem;
  }
  .main-visual .banner img {
    width: 50vw;
    max-width: 290px;
  }
  .main-visual .logo {
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-visual .logo picture {
    text-align: center;
  }
  .main-visual .logo img {
    position: static;
    top: auto;
    left: auto;
    transform: initial;
    height: 100svh;
  }
}
@media screen and (max-width: 896px) {
  .main-visual {
    margin-bottom: 15rem;
  }
  .main-visual .banner {
    margin-bottom: 0;
    bottom: 0.5rem;
    left: 0.5rem;
  }
  .main-visual .banner a img {
    width: 33vh;
    max-width: 100%;
  }
  .main-visual .logo {
    width: 33svh;
  }
  .main-visual .logo img {
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (max-width: 896px) and (orientation: landscape) {
  .main-visual {
    height: auto;
  }
  .main-visual .logo {
    height: 100vh;
  }
  .main-visual .logo img {
    height: 100vh;
  }
}
@media screen and (max-width:480px) {
  .main-visual {
    margin-bottom: 8rem;
  }
}

@media screen and (max-width: 1024px) {
  .banner {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width:480px) {
  .banner {
    margin-bottom: 5rem;
  }
}

#top .event--img {
  position: relative;
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  padding: 1rem;
}
#top .event--img img {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}
#top .event--img:before {
  content: "";
  width: 100%;
  height: 100%;
  filter: blur(0.8px) drop-shadow(0 0 4px cornflowerblue);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: luminosity;
  background: rgba(100, 149, 237, 0.1);
  background-size: 6px 6px;
  transform: rotate(-0.5deg);
}
#top .event--img:after {
  content: "";
  width: 100%;
  height: 100%;
  filter: blur(0.8px) opacity(0.5) drop-shadow(0 0 4px cornflowerblue);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: luminosity;
  background-image: radial-gradient(cornflowerblue 30%, transparent 30%);
  background-size: 6px 6px;
  transform: rotate(1deg);
}
@media screen and (max-width: 896px) {
  #top .event {
    padding: 0.5rem;
  }
}
#top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 110%;
  /*background-color: dodgerblue;*/
  filter: opacity(0.05) blur(2px);
  z-index: -10001;
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 93%);
}
@media screen and (max-width: 1024px) {
  #top::after {
    background-position: right bottom;
  }
}
#top .contents {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
#top .contents__inner {
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
}
#top .contents .name {
  text-align: center;
  margin-bottom: 4rem;
}
#top .contents .name img {
  width: 75%;
}
#top .contents__title {
  margin-bottom: 0;
}
#top .contents__jacket {
  margin: 3rem 0;
}
#top .contents__text .en {
  font-family: vdl-yotag, sans-serif;
}
#top .contents .song {
  font-size: 3rem;
  font-family: shippori-antique, serif;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #top .contents .song {
    font-size: 2.9296875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #top .contents .song {
    font-size: 3.3482142857vw;
  }
}
@media screen and (max-width:480px) {
  #top .contents .song {
    font-size: 6.25vw;
  }
}
@media screen and (max-width: 1024px) {
  #top .contents {
    margin: 0;
    padding: 1rem 0;
    margin-bottom: 3rem;
  }
  #top .contents__title {
    margin-bottom: 2.5rem;
  }
  #top .contents__jacket {
    margin: 2rem 0;
  }
  #top .contents .name {
    margin-bottom: 2.5rem;
  }
}

.contact p {
  padding-bottom: 30px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .contact p {
    padding-bottom: 25px;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .contact p {
    padding-bottom: 20px;
  }
}
@media screen and (max-width:480px) {
  .contact p {
    padding-bottom: 15px;
  }
}
.contact .form__lists {
  font-size: 2rem;
  padding-bottom: 15px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .contact .form__lists {
    font-size: 1.5625vw;
    padding-bottom: 12px;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .contact .form__lists {
    font-size: 1.7857142857vw;
    padding-bottom: 10px;
  }
}
@media screen and (max-width:480px) {
  .contact .form__lists {
    font-size: 3.3333333333vw;
    padding-bottom: 8px;
  }
}
.contact .form__lists .title {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-weight: 400;
  font-size: 2.2rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .contact .form__lists .title {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .contact .form__lists .title {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .contact .form__lists .title {
    font-size: 3.3333333333vw;
  }
}
.contact .form__lists .content {
  font-family: shippori-antique, serif;
  font-size: 1.5rem;
  font-style: normal;
  color: #fff;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .contact .form__lists .content {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .contact .form__lists .content {
    font-size: 1.6741071429vw;
  }
}
@media screen and (max-width:480px) {
  .contact .form__lists .content {
    font-size: 3.125vw;
  }
}
.contact .form__lists .content input[type=text], .contact .form__lists .content input[type=email], .contact .form__lists .content textarea {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 15px 10px;
  border-radius: 1px;
}
.contact .form__lists .content.age {
  display: flex;
  width: 20%;
  gap: 1rem;
  align-items: flex-end;
}
.contact .form__lists .content.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 2em;
  border: none;
}
.contact .form__lists .content.radio label {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
  cursor: pointer;
}
.contact .form__lists .content.radio label::before, .contact .form__lists .content.radio label::after {
  border-radius: 50vh;
  content: "";
}
.contact .form__lists .content.radio label::before {
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
.contact .form__lists .content.radio label::after {
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: transparent;
}
.contact .form__lists .content.radio label:has(:checked)::after {
  background-color: #fff;
  animation: anim-radio 0.3s linear;
}
@keyframes anim-radio {
  0% {
    box-shadow: 0 0 0 1px transparent;
  }
  50% {
    box-shadow: 0 0 0 10px #fff;
  }
  100% {
    box-shadow: 0 0 0 10px transparent;
  }
}
.contact .form__lists .content.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}
.contact .form__lists .content.selectbox select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border-radius: 3px;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
}
.contact .form__lists .content.selectbox option {
  background-color: #fff;
  color: #000;
  border-radius: 0;
}
.contact .form__lists .content.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.contact .form__lists .content textarea {
  height: 15em;
}
.contact .form .btn--normal {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  margin: 5rem auto;
  opacity: 0.25;
}
.contact .form .btn--normal:hover {
  cursor: default;
}
.contact .form .btn--normal.checked {
  opacity: 1;
}
.contact .form .btn--normal.checked:hover {
  cursor: pointer;
}
.contact .form .checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 15px;
  position: relative;
  width: auto;
}
.contact .form .checkbox::before {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1px;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.contact .form .checkbox::after {
  border-right: 3px solid #CE00FF;
  border-bottom: 3px solid #CE00FF;
  content: "";
  display: block;
  height: 20px;
  left: 7px;
  margin-top: -16px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  width: 9px;
}
.contact .form .checkbox.checked {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contact .form .checkbox.checked::before {
  border-color: #666;
}
.contact .form .checkbox.checked::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}
@media screen and (max-width: 896px) {
  .contact .form__lists .content.age {
    width: 50%;
  }
  .contact .form .btn--normal {
    margin: 2.5rem auto;
  }
}
.contact .send-message {
  border: 1px solid #fff;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}
.contact #fanletter p {
  padding-bottom: 1rem;
}
.contact #fanletter .letterbox {
  border: solid 1px;
  padding: 2rem;
  margin-bottom: 5rem;
}

.footer {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-display: swap;
  /*padding: 1rem 0;*/
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .footer {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .footer {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .footer {
    font-size: 3.3333333333vw;
  }
}

#top .footer {
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  #top .footer {
    min-height: 5vh;
    position: static;
    /*display: flex;
    justify-content: center;*/
    padding: 0;
  }
  #top .footer small {
    align-self: center;
  }
}

.width-1 {
  width: 5% !important;
}

.width-2 {
  width: 10% !important;
}

.width-3 {
  width: 15% !important;
}

.width-4 {
  width: 20% !important;
}

.width-5 {
  width: 25% !important;
}

.width-6 {
  width: 30% !important;
}

.width-7 {
  width: 35% !important;
}

.width-8 {
  width: 40% !important;
}

.width-9 {
  width: 45% !important;
}

.width-10 {
  width: 50% !important;
}

.width-11 {
  width: 55% !important;
}

.width-12 {
  width: 60% !important;
}

.width-13 {
  width: 65% !important;
}

.width-14 {
  width: 70% !important;
}

.width-15 {
  width: 75% !important;
}

.width-16 {
  width: 80% !important;
}

.width-17 {
  width: 85% !important;
}

.width-18 {
  width: 90% !important;
}

.width-19 {
  width: 95% !important;
}

.width-20 {
  width: 100% !important;
}

.margin-1 {
  margin: 5px !important;
}

.margin-2 {
  margin: 10px !important;
}

.margin-3 {
  margin: 15px !important;
}

.margin-4 {
  margin: 20px !important;
}

.margin-5 {
  margin: 25px !important;
}

.margin-6 {
  margin: 30px !important;
}

.margin-7 {
  margin: 35px !important;
}

.margin-8 {
  margin: 40px !important;
}

.margin-9 {
  margin: 45px !important;
}

.margin-10 {
  margin: 50px !important;
}

.margin-11 {
  margin: 55px !important;
}

.margin-12 {
  margin: 60px !important;
}

.margin-13 {
  margin: 65px !important;
}

.margin-14 {
  margin: 70px !important;
}

.margin-15 {
  margin: 75px !important;
}

.margin-16 {
  margin: 80px !important;
}

.margin-17 {
  margin: 85px !important;
}

.margin-18 {
  margin: 90px !important;
}

.margin-19 {
  margin: 95px !important;
}

.margin-20 {
  margin: 100px !important;
}

.marginTop-1 {
  margin-top: 5px !important;
}

.marginTop-2 {
  margin-top: 10px !important;
}

.marginTop-3 {
  margin-top: 15px !important;
}

.marginTop-4 {
  margin-top: 20px !important;
}

.marginTop-5 {
  margin-top: 25px !important;
}

.marginTop-6 {
  margin-top: 30px !important;
}

.marginTop-7 {
  margin-top: 35px !important;
}

.marginTop-8 {
  margin-top: 40px !important;
}

.marginTop-9 {
  margin-top: 45px !important;
}

.marginTop-10 {
  margin-top: 50px !important;
}

.marginTop-11 {
  margin-top: 55px !important;
}

.marginTop-12 {
  margin-top: 60px !important;
}

.marginTop-13 {
  margin-top: 65px !important;
}

.marginTop-14 {
  margin-top: 70px !important;
}

.marginTop-15 {
  margin-top: 75px !important;
}

.marginTop-16 {
  margin-top: 80px !important;
}

.marginTop-17 {
  margin-top: 85px !important;
}

.marginTop-18 {
  margin-top: 90px !important;
}

.marginTop-19 {
  margin-top: 95px !important;
}

.marginTop-20 {
  margin-top: 100px !important;
}

.marginBottom-1 {
  margin-bottom: 5px !important;
}

.marginBottom-2 {
  margin-bottom: 10px !important;
}

.marginBottom-3 {
  margin-bottom: 15px !important;
}

.marginBottom-4 {
  margin-bottom: 20px !important;
}

.marginBottom-5 {
  margin-bottom: 25px !important;
}

.marginBottom-6 {
  margin-bottom: 30px !important;
}

.marginBottom-7 {
  margin-bottom: 35px !important;
}

.marginBottom-8 {
  margin-bottom: 40px !important;
}

.marginBottom-9 {
  margin-bottom: 45px !important;
}

.marginBottom-10 {
  margin-bottom: 50px !important;
}

.marginBottom-11 {
  margin-bottom: 55px !important;
}

.marginBottom-12 {
  margin-bottom: 60px !important;
}

.marginBottom-13 {
  margin-bottom: 65px !important;
}

.marginBottom-14 {
  margin-bottom: 70px !important;
}

.marginBottom-15 {
  margin-bottom: 75px !important;
}

.marginBottom-16 {
  margin-bottom: 80px !important;
}

.marginBottom-17 {
  margin-bottom: 85px !important;
}

.marginBottom-18 {
  margin-bottom: 90px !important;
}

.marginBottom-19 {
  margin-bottom: 95px !important;
}

.marginBottom-20 {
  margin-bottom: 100px !important;
}

.padding-1 {
  padding: 5px !important;
}

.padding-2 {
  padding: 10px !important;
}

.padding-3 {
  padding: 15px !important;
}

.padding-4 {
  padding: 20px !important;
}

.padding-5 {
  padding: 25px !important;
}

.padding-6 {
  padding: 30px !important;
}

.padding-7 {
  padding: 35px !important;
}

.padding-8 {
  padding: 40px !important;
}

.padding-9 {
  padding: 45px !important;
}

.padding-10 {
  padding: 50px !important;
}

.padding-11 {
  padding: 55px !important;
}

.padding-12 {
  padding: 60px !important;
}

.padding-13 {
  padding: 65px !important;
}

.padding-14 {
  padding: 70px !important;
}

.padding-15 {
  padding: 75px !important;
}

.padding-16 {
  padding: 80px !important;
}

.padding-17 {
  padding: 85px !important;
}

.padding-18 {
  padding: 90px !important;
}

.padding-19 {
  padding: 95px !important;
}

.padding-20 {
  padding: 100px !important;
}

.paddingTop-1 {
  padding-top: 5px !important;
}

.paddingTop-2 {
  padding-top: 10px !important;
}

.paddingTop-3 {
  padding-top: 15px !important;
}

.paddingTop-4 {
  padding-top: 20px !important;
}

.paddingTop-5 {
  padding-top: 25px !important;
}

.paddingTop-6 {
  padding-top: 30px !important;
}

.paddingTop-7 {
  padding-top: 35px !important;
}

.paddingTop-8 {
  padding-top: 40px !important;
}

.paddingTop-9 {
  padding-top: 45px !important;
}

.paddingTop-10 {
  padding-top: 50px !important;
}

.paddingTop-11 {
  padding-top: 55px !important;
}

.paddingTop-12 {
  padding-top: 60px !important;
}

.paddingTop-13 {
  padding-top: 65px !important;
}

.paddingTop-14 {
  padding-top: 70px !important;
}

.paddingTop-15 {
  padding-top: 75px !important;
}

.paddingTop-16 {
  padding-top: 80px !important;
}

.paddingTop-17 {
  padding-top: 85px !important;
}

.paddingTop-18 {
  padding-top: 90px !important;
}

.paddingTop-19 {
  padding-top: 95px !important;
}

.paddingTop-20 {
  padding-top: 100px !important;
}

.paddingBottom-1 {
  padding-bottom: 5px !important;
}

.paddingBottom-2 {
  padding-bottom: 10px !important;
}

.paddingBottom-3 {
  padding-bottom: 15px !important;
}

.paddingBottom-4 {
  padding-bottom: 20px !important;
}

.paddingBottom-5 {
  padding-bottom: 25px !important;
}

.paddingBottom-6 {
  padding-bottom: 30px !important;
}

.paddingBottom-7 {
  padding-bottom: 35px !important;
}

.paddingBottom-8 {
  padding-bottom: 40px !important;
}

.paddingBottom-9 {
  padding-bottom: 45px !important;
}

.paddingBottom-10 {
  padding-bottom: 50px !important;
}

.paddingBottom-11 {
  padding-bottom: 55px !important;
}

.paddingBottom-12 {
  padding-bottom: 60px !important;
}

.paddingBottom-13 {
  padding-bottom: 65px !important;
}

.paddingBottom-14 {
  padding-bottom: 70px !important;
}

.paddingBottom-15 {
  padding-bottom: 75px !important;
}

.paddingBottom-16 {
  padding-bottom: 80px !important;
}

.paddingBottom-17 {
  padding-bottom: 85px !important;
}

.paddingBottom-18 {
  padding-bottom: 90px !important;
}

.paddingBottom-19 {
  padding-bottom: 95px !important;
}

.paddingBottom-20 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 896px) {
  .sp_width-1 {
    width: 5% !important;
  }
  .sp_width-2 {
    width: 10% !important;
  }
  .sp_width-3 {
    width: 15% !important;
  }
  .sp_width-4 {
    width: 20% !important;
  }
  .sp_width-5 {
    width: 25% !important;
  }
  .sp_width-6 {
    width: 30% !important;
  }
  .sp_width-7 {
    width: 35% !important;
  }
  .sp_width-8 {
    width: 40% !important;
  }
  .sp_width-9 {
    width: 45% !important;
  }
  .sp_width-10 {
    width: 50% !important;
  }
  .sp_width-11 {
    width: 55% !important;
  }
  .sp_width-12 {
    width: 60% !important;
  }
  .sp_width-13 {
    width: 65% !important;
  }
  .sp_width-14 {
    width: 70% !important;
  }
  .sp_width-15 {
    width: 75% !important;
  }
  .sp_width-16 {
    width: 80% !important;
  }
  .sp_width-17 {
    width: 85% !important;
  }
  .sp_width-18 {
    width: 90% !important;
  }
  .sp_width-19 {
    width: 95% !important;
  }
  .sp_width-20 {
    width: 100% !important;
  }
  .sp_margin-1 {
    margin: 5px !important;
  }
  .sp_margin-2 {
    margin: 10px !important;
  }
  .sp_margin-3 {
    margin: 15px !important;
  }
  .sp_margin-4 {
    margin: 20px !important;
  }
  .sp_margin-5 {
    margin: 25px !important;
  }
  .sp_margin-6 {
    margin: 30px !important;
  }
  .sp_margin-7 {
    margin: 35px !important;
  }
  .sp_margin-8 {
    margin: 40px !important;
  }
  .sp_margin-9 {
    margin: 45px !important;
  }
  .sp_margin-10 {
    margin: 50px !important;
  }
  .sp_margin-11 {
    margin: 55px !important;
  }
  .sp_margin-12 {
    margin: 60px !important;
  }
  .sp_margin-13 {
    margin: 65px !important;
  }
  .sp_margin-14 {
    margin: 70px !important;
  }
  .sp_margin-15 {
    margin: 75px !important;
  }
  .sp_margin-16 {
    margin: 80px !important;
  }
  .sp_margin-17 {
    margin: 85px !important;
  }
  .sp_margin-18 {
    margin: 90px !important;
  }
  .sp_margin-19 {
    margin: 95px !important;
  }
  .sp_margin-20 {
    margin: 100px !important;
  }
  .sp_marginTop-1 {
    margin-top: 5px !important;
  }
  .sp_marginTop-2 {
    margin-top: 10px !important;
  }
  .sp_marginTop-3 {
    margin-top: 15px !important;
  }
  .sp_marginTop-4 {
    margin-top: 20px !important;
  }
  .sp_marginTop-5 {
    margin-top: 25px !important;
  }
  .sp_marginTop-6 {
    margin-top: 30px !important;
  }
  .sp_marginTop-7 {
    margin-top: 35px !important;
  }
  .sp_marginTop-8 {
    margin-top: 40px !important;
  }
  .sp_marginTop-9 {
    margin-top: 45px !important;
  }
  .sp_marginTop-10 {
    margin-top: 50px !important;
  }
  .sp_marginTop-11 {
    margin-top: 55px !important;
  }
  .sp_marginTop-12 {
    margin-top: 60px !important;
  }
  .sp_marginTop-13 {
    margin-top: 65px !important;
  }
  .sp_marginTop-14 {
    margin-top: 70px !important;
  }
  .sp_marginTop-15 {
    margin-top: 75px !important;
  }
  .sp_marginTop-16 {
    margin-top: 80px !important;
  }
  .sp_marginTop-17 {
    margin-top: 85px !important;
  }
  .sp_marginTop-18 {
    margin-top: 90px !important;
  }
  .sp_marginTop-19 {
    margin-top: 95px !important;
  }
  .sp_marginTop-20 {
    margin-top: 100px !important;
  }
  .sp_marginBottom-1 {
    margin-bottom: 5px !important;
  }
  .sp_marginBottom-2 {
    margin-bottom: 10px !important;
  }
  .sp_marginBottom-3 {
    margin-bottom: 15px !important;
  }
  .sp_marginBottom-4 {
    margin-bottom: 20px !important;
  }
  .sp_marginBottom-5 {
    margin-bottom: 25px !important;
  }
  .sp_marginBottom-6 {
    margin-bottom: 30px !important;
  }
  .sp_marginBottom-7 {
    margin-bottom: 35px !important;
  }
  .sp_marginBottom-8 {
    margin-bottom: 40px !important;
  }
  .sp_marginBottom-9 {
    margin-bottom: 45px !important;
  }
  .sp_marginBottom-10 {
    margin-bottom: 50px !important;
  }
  .sp_marginBottom-11 {
    margin-bottom: 55px !important;
  }
  .sp_marginBottom-12 {
    margin-bottom: 60px !important;
  }
  .sp_marginBottom-13 {
    margin-bottom: 65px !important;
  }
  .sp_marginBottom-14 {
    margin-bottom: 70px !important;
  }
  .sp_marginBottom-15 {
    margin-bottom: 75px !important;
  }
  .sp_marginBottom-16 {
    margin-bottom: 80px !important;
  }
  .sp_marginBottom-17 {
    margin-bottom: 85px !important;
  }
  .sp_marginBottom-18 {
    margin-bottom: 90px !important;
  }
  .sp_marginBottom-19 {
    margin-bottom: 95px !important;
  }
  .sp_marginBottom-20 {
    margin-bottom: 100px !important;
  }
  .sp_padding-1 {
    padding: 5px !important;
  }
  .sp_padding-2 {
    padding: 10px !important;
  }
  .sp_padding-3 {
    padding: 15px !important;
  }
  .sp_padding-4 {
    padding: 20px !important;
  }
  .sp_padding-5 {
    padding: 25px !important;
  }
  .sp_padding-6 {
    padding: 30px !important;
  }
  .sp_padding-7 {
    padding: 35px !important;
  }
  .sp_padding-8 {
    padding: 40px !important;
  }
  .sp_padding-9 {
    padding: 45px !important;
  }
  .sp_padding-10 {
    padding: 50px !important;
  }
  .sp_padding-11 {
    padding: 55px !important;
  }
  .sp_padding-12 {
    padding: 60px !important;
  }
  .sp_padding-13 {
    padding: 65px !important;
  }
  .sp_padding-14 {
    padding: 70px !important;
  }
  .sp_padding-15 {
    padding: 75px !important;
  }
  .sp_padding-16 {
    padding: 80px !important;
  }
  .sp_padding-17 {
    padding: 85px !important;
  }
  .sp_padding-18 {
    padding: 90px !important;
  }
  .sp_padding-19 {
    padding: 95px !important;
  }
  .sp_padding-20 {
    padding: 100px !important;
  }
  .paddingTop-1 {
    padding-top: 5px !important;
  }
  .paddingTop-2 {
    padding-top: 10px !important;
  }
  .paddingTop-3 {
    padding-top: 15px !important;
  }
  .paddingTop-4 {
    padding-top: 20px !important;
  }
  .paddingTop-5 {
    padding-top: 25px !important;
  }
  .paddingTop-6 {
    padding-top: 30px !important;
  }
  .paddingTop-7 {
    padding-top: 35px !important;
  }
  .paddingTop-8 {
    padding-top: 40px !important;
  }
  .paddingTop-9 {
    padding-top: 45px !important;
  }
  .paddingTop-10 {
    padding-top: 50px !important;
  }
  .paddingTop-11 {
    padding-top: 55px !important;
  }
  .paddingTop-12 {
    padding-top: 60px !important;
  }
  .paddingTop-13 {
    padding-top: 65px !important;
  }
  .paddingTop-14 {
    padding-top: 70px !important;
  }
  .paddingTop-15 {
    padding-top: 75px !important;
  }
  .paddingTop-16 {
    padding-top: 80px !important;
  }
  .paddingTop-17 {
    padding-top: 85px !important;
  }
  .paddingTop-18 {
    padding-top: 90px !important;
  }
  .paddingTop-19 {
    padding-top: 95px !important;
  }
  .paddingTop-20 {
    padding-top: 100px !important;
  }
  .paddingBottom-1 {
    padding-bottom: 5px !important;
  }
  .paddingBottom-2 {
    padding-bottom: 10px !important;
  }
  .paddingBottom-3 {
    padding-bottom: 15px !important;
  }
  .paddingBottom-4 {
    padding-bottom: 20px !important;
  }
  .paddingBottom-5 {
    padding-bottom: 25px !important;
  }
  .paddingBottom-6 {
    padding-bottom: 30px !important;
  }
  .paddingBottom-7 {
    padding-bottom: 35px !important;
  }
  .paddingBottom-8 {
    padding-bottom: 40px !important;
  }
  .paddingBottom-9 {
    padding-bottom: 45px !important;
  }
  .paddingBottom-10 {
    padding-bottom: 50px !important;
  }
  .paddingBottom-11 {
    padding-bottom: 55px !important;
  }
  .paddingBottom-12 {
    padding-bottom: 60px !important;
  }
  .paddingBottom-13 {
    padding-bottom: 65px !important;
  }
  .paddingBottom-14 {
    padding-bottom: 70px !important;
  }
  .paddingBottom-15 {
    padding-bottom: 75px !important;
  }
  .paddingBottom-16 {
    padding-bottom: 80px !important;
  }
  .paddingBottom-17 {
    padding-bottom: 85px !important;
  }
  .paddingBottom-18 {
    padding-bottom: 90px !important;
  }
  .paddingBottom-19 {
    padding-bottom: 95px !important;
  }
  .paddingBottom-20 {
    padding-bottom: 100px !important;
  }
}
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/background--noise.png) repeat;
  animation: noise_anima 1s steps(10) infinite;
  z-index: -9999;
}

@keyframes noise_anima {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 123px 456px;
  }
}
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 10000;
}
.loading .logo {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.loading.animation {
  animation: turnOn 2.25s linear;
  animation-fill-mode: forwards;
}
.loading.animation .logo {
  animation: 1s;
  opacity: 0;
}
@keyframes turnOn {
  0% {
    transform: scale(1, 0.8) translate3d(0, 0, 0);
    filter: brightness(30);
    opacity: 1;
  }
  3.5% {
    transform: scale(1, 0.8) translate3d(0, 100%, 0);
  }
  3.6% {
    transform: scale(1, 0.8) translate3d(0, -100%, 0);
  }
  9% {
    transform: scale(1.3, 0.6) translate3d(0, 100%, 0);
    filter: brightness(30);
  }
  11% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    filter: contrast(0) brightness(0);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translate3d(0, 0, 0);
    filter: contrast(1) brightness(1.1) saturate(1.1);
    opacity: 0;
  }
}
.loading--remove {
  display: none;
}
.loading--normal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 15000;
  background-color: #302986;
}
.loading--normal .loader {
  --uib-size: 40px;
  --uib-speed: 1.3s;
  --uib-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: var(--uib-size);
  height: calc(var(--uib-size) * 0.27);
  display: flex;
}
.loading--normal .loader__dot, .loading--normal .loader::before, .loading--normal .loader::after {
  content: "";
  display: block;
  height: calc(var(--uib-size) * 0.18);
  width: calc(var(--uib-size) * 0.18);
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
}
.loading--normal .loader::before {
  animation: pulse var(--uib-speed) ease-in-out infinite;
}
.loading--normal .loader__dot {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * 0.125) infinite both;
  margin: 0 1rem;
}
.loading--normal .loader::after {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * 0.25) infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.5);
  }
}

.flame {
  position: fixed;
  width: calc(100% - 320px);
  height: 100vh;
  border: 15px rgba(255, 255, 255, 0.05) solid;
  filter: blur(1px);
  z-index: -9999;
}
@media screen and (max-width:1200px) {
  .flame {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .flame {
    border: 7.5px rgba(255, 255, 255, 0.05) solid;
  }
}

.btn {
  display: block;
}
.btn--text {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--text {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--text {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .btn--text {
    font-size: 3.3333333333vw;
  }
}
.btn--text:hover {
  text-shadow: 0.06rem 0 0.06rem #00FFFF, -0.125rem 0 0.06rem #EE00FF;
  animation-duration: 1s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #00FFFF, -2px 0 0 #EE00FF;
  }
  to {
    text-shadow: 2px 0.5px 2px #00FFFF, -1px -0.5px 2px #EE00FF;
  }
}
.btn--normal {
  position: relative;
  display: inline-block;
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 1.8rem;
  border: 1px solid #fff;
  padding: 0.8rem 6rem;
  background-color: rgba(238, 0, 255, 0.05);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--normal {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--normal {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .btn--normal {
    font-size: 3.3333333333vw;
  }
}
.btn--normal:hover {
  text-shadow: 0.06rem 0 0.06rem #00FFFF, -0.125rem 0 0.06rem #EE00FF;
  animation-duration: 1s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #00FFFF, -2px 0 0 #EE00FF;
  }
  to {
    text-shadow: 2px 0.5px 2px #00FFFF, -1px -0.5px 2px #EE00FF;
  }
}
.btn--store {
  max-width: 300px;
  backdrop-filter: blur(2px);
  display: block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.btn--store img {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .btn--normal {
    padding: 0.5rem 1rem;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .btn {
    font-size: 3.75vw;
  }
}

.title--neon {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-display: swap;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  -webkit-text-stroke: 0.3px #fff;
  text-stroke: 0.3px #fff;
  display: inline-block;
  line-height: 1;
  z-index: 1;
  font-weight: 300;
  font-style: italic;
  filter: blur(0.55px);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--neon {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--neon {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--neon {
    font-size: 3.3333333333vw;
  }
}
.title--neon::before, .title--neon::after {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  animation: flicker 5s linear infinite;
}
@keyframes flicker {
  from {
    opacity: 0.7;
  }
  4% {
    opacity: 0.6;
  }
  6% {
    opacity: 0.75;
  }
  8% {
    opacity: 0.65;
  }
  10% {
    opacity: 0.6;
  }
  11% {
    opacity: 0.622;
  }
  12% {
    opacity: 0.5;
  }
  14% {
    opacity: 0.55;
  }
  16% {
    opacity: 0.68;
  }
  17% {
    opacity: 0.6;
  }
  19% {
    opacity: 0.63;
  }
  20% {
    opacity: 0.69;
  }
  24% {
    opacity: 0.7;
  }
  26% {
    opacity: 0.64;
  }
  28% {
    opacity: 0.68;
  }
  37% {
    opacity: 0.63;
  }
  38% {
    opacity: 0.5;
  }
  39% {
    opacity: 0.66;
  }
  42% {
    opacity: 0.7;
  }
  44% {
    opacity: 0.67;
  }
  46% {
    opacity: 0.634;
  }
  56% {
    opacity: 0.6;
  }
  58% {
    opacity: 0.6;
  }
  60% {
    opacity: 0.69;
  }
  68% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.65;
  }
  93% {
    opacity: 0.63;
  }
  95% {
    opacity: 0.65;
  }
  97% {
    opacity: 0.63;
  }
  to {
    opacity: 0.7;
  }
}
.title--neon::before {
  color: #00FFFF;
  filter: drop-shadow(0 0 2px #00FFFF) blur(5px);
  -webkit-text-stroke: 5px #00FFFF;
  text-stroke: 5px #00FFFF;
  top: 1px;
  right: 1px;
  left: 0;
  animation-delay: 0.05s;
}
.title--neon::after {
  color: #EE00FF;
  filter: drop-shadow(0 0 2px #EE00FF) blur(5px);
  -webkit-text-stroke: 5px #EE00FF;
  text-stroke: 5px #EE00FF;
  top: -1px;
  left: 0;
  right: -1px;
}
@media screen and (max-width: 1024px) {
  .title--neon::before {
    top: 1px;
    right: 1px;
  }
  .title--neon::after {
    top: -1px;
    right: -1px;
  }
}
.title--page {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 8rem;
  margin: 10rem 0 5rem;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  letter-spacing: -0.05em;
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.2)) drop-shadow(0px 0px 3px rgba(0, 255, 255, 0.4)) drop-shadow(0px 0px 3px rgba(238, 0, 255, 0.4)) drop-shadow(0px 0px 6px rgba(0, 255, 255, 0.2)) drop-shadow(0px 0px 6px rgba(238, 0, 255, 0.2));
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--page {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--page {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--page {
    font-size: 3.3333333333vw;
  }
}
.title--page span {
  position: relative;
  line-height: 1;
  padding: 5px;
}
.title--page span::before, .title--page span::after {
  content: attr(data-text);
  position: absolute;
  -webkit-text-stroke: 0 #fff;
  text-stroke: 0 #fff;
  opacity: 0.37;
  z-index: -1;
}
.title--page span::before {
  color: #00FFFF;
  filter: drop-shadow(0 0 1px #00FFFF) blur(1px);
  top: 4px;
  right: 4px;
}
.title--page span::after {
  color: #EE00FF;
  filter: drop-shadow(0 0 1px #EE00FF) blur(1px);
  bottom: 4px;
  left: 4px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--page {
    font-size: 7.8125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--page {
    font-size: 8.9285714286vw;
  }
}
@media screen and (max-width:480px) {
  .title--page {
    font-size: 10.4166666667vw;
  }
}
@media screen and (max-width: 896px) {
  .title--page {
    margin: 6rem 0 3rem;
  }
  .title--page:not(:first-child) {
    margin-top: 3rem;
  }
}
.title--read {
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #000;
  font-size: 2.5rem;
  line-height: 1.2;
  width: 90%;
	font-weight: bold;
  position: relative;
  border-bottom: 1px solid rgb(255, 207, 0);
  margin-bottom: 6rem;
	z-index: 999;
	color:#666;
}

.title--read img{
	height:30px;
	margin-right:8px;
	margin-bottom:8px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--read {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--read {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--read {
    font-size: 3.3333333333vw;
  }
}
.title--read .logo {
  width: 50%;
  margin-bottom: 1rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--read {
    font-size: 3.41796875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--read {
    font-size: 3vw;
  }
}
@media screen and (max-width:480px) {
  .title--read {
    font-size: 4vw;
  }
}
.title--read::before, .title--read::after {
  position: absolute;
  content: "";
  height: 1px;
  bottom: -1px;
  transition: 0.75s ease;
}
.title--read::before {
  width: 0;
  background-color: rgb(255, 207, 0);
  left: 0;
}
.title--read::after {
  width: 0;
  background-color: rgb(255, 207, 0);
  right: 0;
  bottom: -2px;
  transform: rotate(220deg);
  transform-origin: right top;
}
.title--read.right {
  margin-left: auto;
  text-align: right;
}
.title--read.right::before {
  left: auto;
  right: 0;
}
.title--read.right::after {
  right: auto;
  left: 0;
  transform: rotate(140deg);
  transform-origin: left top;
}
.title--read.animation img {
  transform: rotateX(0deg);
}
.title--read.animation::before {
  width: 20%;
}
.title--read.animation::after {
  width: 10%;
}
@media screen and (max-width: 896px) {
  .title--read {
    margin-bottom: 4rem;
  }
}
.title--subread {
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  transition: 0.75s;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--subread {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--subread {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--subread {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--subread {
    font-size: 2.9296875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--subread {
    font-size: 3.3482142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--subread {
    font-size: 6.25vw;
  }
}
.title--subread img {
  transition: 0.75s ease;
  transform: rotateX(90deg);
}
.title--subread::before {
  position: absolute;
  content: "";
  height: 1px;
  bottom: -1px;
  width: 0;
  background-color: #fff;
  left: 0;
  transition: 0.75s ease;
}
@media screen and (max-width: 896px) {
  .title--subread {
    height: 30px;
  }
  .title--subread img {
    height: -webkit-fill-available;
    height: -moz-available;
    height: available;
  }
}
.title--subread.animation img {
  transform: rotateX(0deg);
}
.title--subread.animation::before {
  width: 30%;
}
.title--subheading {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 1.8rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
  border-left: 1px solid;
  font-style: normal;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--subheading {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--subheading {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--subheading {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--subheading {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--subheading {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .title--subheading {
    font-size: 3.75vw;
  }
}
.title--song {
  letter-spacing: 0.05em;
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-size: 3.4rem;
  padding: 1rem 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--song {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--song {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--song {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--song {
    font-size: 3.41796875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--song {
    font-size: 3.90625vw;
  }
}
@media screen and (max-width:480px) {
  .title--song {
    font-size: 5.2083333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .title--song {
    padding: 1rem 0 1.25rem;
  }
}
.title--song-s {
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.6rem;
  padding-left: 1rem;
  margin: 1rem 0 0.25rem;
  line-height: 1.5em;
}
.title--song-s span {
  font-size: 75%;
}
.title--song-s::after {
  position: absolute;
  content: "";
  background-color: rgb(255, 207, 0);
	color:#FFF;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--song-s {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--song-s {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--song-s {
    font-size: 3.3333333333vw;
    padding-left: 0.7rem;
  }
}
.title--article {
  font-size: 1.6rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--article {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--article {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--article {
    font-size: 3.3333333333vw;
  }
}
.title--article-read {
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
  margin: 2rem 0 1rem;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--article-read {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--article-read {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .title--article-read {
    font-size: 3.75vw;
  }
}
.title--article-subread {
  font-size: 1.6rem;
  color: 5px #fff solid;
  border-left: 5px #fff solid;
  padding-left: 10px;
  margin: 2rem 0 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--article-subread {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--article-subread {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .title--article-subread {
    font-size: 3.3333333333vw;
  }
}
.title--interview {
  font-size: 120%;
  padding-left: 2rem;
  border-left: 3px solid;
  margin: 0.7rem 0 1.5rem;
}
@media screen and (max-width: 1024px) {
  .title--interview {
    padding-left: 1rem;
    margin: 0 0 1rem;
  }
}
.title--chapter {
  position: relative;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  margin: 3rem 0;
}
.title--chapter:first-of-type {
  margin-top: 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--chapter {
    font-size: 2.34375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--chapter {
    font-size: 2.6785714286vw;
  }
}
@media screen and (max-width:480px) {
  .title--chapter {
    font-size: 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .title--chapter {
    margin: 2rem 0;
  }
}

.textbox p {
  margin-bottom: 1rem;
}
.textbox p:last-child {
  margin-bottom: 0;
}
.textbox--normal {
  background-color: rgba(255, 255, 255, 0.15);
  border-left: 2px solid #fff;
  padding: 1rem 2rem;
}
.textbox--copy {
  letter-spacing: 0.15em;
  font-size: 1.8rem;
  margin-bottom: 10rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .textbox--copy {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .textbox--copy {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .textbox--copy {
    font-size: 3.3333333333vw;
  }
}
.textbox--copy p {
  margin-bottom: 3rem;
}
.textbox--copy span {
  position: relative;
  color: transparent;
}
.textbox--copy span::before, .textbox--copy span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
}
.textbox--copy.animation span {
  animation: textAnimation 0.1s ease forwards;
  animation-delay: 0.5s;
}
.textbox--copy.animation span::before {
  animation: textAnimation-before 0.5s ease forwards;
  z-index: -1;
}
.textbox--copy.animation span::after {
  z-index: 2;
  animation: textAnimation-after 1s ease forwards;
  animation-delay: 0.5s;
}
@keyframes textAnimation {
  from {
    color: transparent;
  }
  to {
    color: #302986;
  }
}
@keyframes textAnimation-before {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes textAnimation-after {
  from {
    left: 0;
    width: 100%;
  }
  to {
    left: 100%;
    width: 0;
  }
}
@media screen and (max-width: 1024px) {
  .textbox--copy {
    line-height: 1.5;
    margin-bottom: 5rem;
  }
  .textbox--copy p {
    margin-bottom: 2rem;
  }
  .textbox--copy span {
    padding: 0.1rem;
  }
}
.textbox--bg div {
  position: relative;
  margin: 0 1.5rem 1.5rem 0;
}
.textbox--bg div img {
  float: left;
  margin-right: 1.5rem;
  width: 200px;
  border-radius: 3px;
}
.textbox--bg div::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  filter: blur(1px);
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .textbox--bg div {
    margin: 0 1rem 1rem 0;
  }
  .textbox--bg div img {
    width: 40%;
    margin-right: 1rem;
  }
  .textbox--bg div::after {
    bottom: -1rem;
    right: -1rem;
  }
}
@media screen and (max-width:480px) {
  .textbox--bg div p {
    line-height: 1.5;
  }
}
.textbox--article {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: drop-shadow(0 0 15px #fff);
  margin: 2rem 0;
  border-radius: 2px;
}
.textbox--article .article__read {
  margin: 0 0 1rem;
  border-right: none;
  border-top: none;
  border-bottom: none;
  border-left: 3px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: drop-shadow(0 0 1px #000);
}

.scrolldown {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  position: absolute;
  height: 50px;
  left: calc(50% + 320px / 2);
  bottom: 0;
  left: auto;
  right: 25px;
  bottom: 60px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .scrolldown {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .scrolldown {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .scrolldown {
    font-size: 3.3333333333vw;
  }
}
.scrolldown span {
  position: absolute;
  color: #eee;
  font-size: 1.4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .scrolldown span {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .scrolldown span {
    font-size: 1.6741071429vw;
  }
}
@media screen and (max-width:480px) {
  .scrolldown span {
    font-size: 3.125vw;
  }
}
.scrolldown .scroll {
  left: -32px;
  top: -30px;
  writing-mode: vertical-rl;
  top: -70px;
  left: auto;
  right: -10px;
  line-height: 1;
}
.scrolldown .circle {
  font-style: normal;
  left: -4px;
  top: -5px;
}
.scrolldown::before {
  content: "";
  position: absolute;
  top: 7px;
  width: 2px;
  height: 120px;
  background: #eee;
  top: 0;
  right: -4px;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 7px;
  left: -1px;
  width: 4px;
  height: 120px;
  background: #eee;
  animation: pathmove 2.5s ease-in-out infinite;
  right: -5px;
  left: auto;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 7px;
  }
  30% {
    height: 30px;
  }
  100% {
    height: 0;
    top: 125px;
  }
}
@media screen and (max-width:1200px) {
  .scrolldown {
    bottom: 50px;
    left: auto;
    right: 25px;
  }
  .scrolldown .scroll {
    writing-mode: vertical-rl;
    top: -70px;
    left: auto;
    right: -5px;
    font-weight: 700;
  }
  .scrolldown .circle {
    display: none;
  }
  .scrolldown::before {
    right: 0;
  }
  .scrolldown::after {
    right: -1px;
    left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .scrolldown .scrolldown::before {
    right: -5px;
  }
  .scrolldown .scrolldown::after {
    right: -6px;
  }
}

.js-modal-video {
  position: relative;
}
.js-modal-video .play-icon::before {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -4px;
  left: 0;
  border-style: solid;
  border-width: 8px 0 8px 17px;
  border-color: transparent transparent transparent #fff;
  z-index: 2;
}
.js-modal-video .play-icon::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50vh;
  background-color: rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 15px #EE00FF);
  box-shadow: 0 0 15px #EE00FF;
  border: 1px solid #fff;
  z-index: 1;
}
.js-modal-video .thumbg {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
  cursor: pointer;
}
.js-modal-video .thumbg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .js-modal-video .play-icon::before {
    right: -2px;
    width: 10px;
    height: 10px;
    border-width: 5px 0 5px 10px;
  }
  .js-modal-video .play-icon::after {
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
  }
}

.modaal-close:before, .modaal-close:after, .modaal-gallery-control:before, .modaal-gallery-control:after {
  border-radius: 0 !important;
  width: 2px !important;
}
.modaal-close:hover, .modaal-gallery-control:hover {
  background: transparent !important;
}
.modaal-close:hover:before, .modaal-close:hover:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #302986 !important;
  mix-blend-mode: lighten !important;
}
.modaal-gallery-prev:before {
  margin: 6px 0 0 !important;
}
.modaal-gallery-prev:after {
  margin: -6px 0 0 !important;
}
.modaal-gallery-next:before {
  margin: -6px 0 0 !important;
}
.modaal-gallery-next:after {
  margin: 6px 0 0 !important;
}
@media screen and (max-width: 1024px) {
  .modaal--img {
    pointer-events: none;
  }
}

.modal {
  display: none;
  position: relative;
  z-index: 10005;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10005;
  width: 100vw;
  min-height: 100vh;
}
.modal__wrapper {
  overflow-y: auto;
  height: -webkit-fill-available;
  cursor: pointer;
}
.modal__inner {
  width: 760px;
  margin: 15rem auto;
  cursor: default;
}
.modal__inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal__inner::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.modal section {
  margin-top: 3rem;
}
.modal .title {
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-size: 4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .title {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .title {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .modal .title {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .title {
    font-size: 3.90625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .title {
    font-size: 4.4642857143vw;
  }
}
@media screen and (max-width:480px) {
  .modal .title {
    font-size: 8.3333333333vw;
  }
}
.modal .title .small {
  font-size: 2.5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .title .small {
    font-size: 2.44140625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .title .small {
    font-size: 2.7901785714vw;
  }
}
@media screen and (max-width:480px) {
  .modal .title .small {
    font-size: 5.2083333333vw;
  }
}
.modal .text {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .text {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .text {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .modal .text {
    font-size: 3.3333333333vw;
  }
}
.modal .link {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 1.8rem;
  color: #fff;
  border-bottom: none;
  margin: 5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .link {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .link {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .modal .link {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .modal .link {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .modal .link {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .modal .link {
    font-size: 3.75vw;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal[aria-hidden=false] {
  animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] {
  animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .modal__inner {
    width: 90%;
    margin: 5rem auto;
    padding: 0;
  }
}

#slick-movie .slider {
  margin: 0 auto;
}
#slick-movie .slick-current {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #slick-movie .slick-list {
    overflow: visible;
  }
  #slick-movie .slick-slide {
    margin-right: 2vw !important;
    margin-left: 2vw !important;
  }
  #slick-movie .slick-slide:not(.slick-center) {
    -webkit-filter: opacity(0.5);
    -moz-filter: opacity(0.5);
    -o-filter: opacity(0.5);
    -ms-filter: opacity(0.5);
    filter: opacity(0.5);
    transition: 0.2s ease;
  }
  #slick-movie .slick-slide:not(.slick-center) .title {
    display: none;
  }
  #slick-movie .thumbg {
    transform: scale(0.9);
  }
  #slick-movie .slick-current .thumbg {
    transition: 0.5s;
    transform: scale(1);
  }
  #slick-movie .slide-arrow img {
    display: none;
  }
  #slick-movie .slide-arrow.next-arrow:hover {
    right: -60px;
  }
  #slick-movie .slide-arrow.prev-arrow:hover {
    left: -60px;
  }
}

#slick-disco .slide-arrow img {
  width: 50px;
}
#slick-disco .slide-arrow.next-arrow {
  top: 0;
}
#slick-disco .slide-arrow.prev-arrow {
  bottom: 0;
}
#slick-disco .slick-disabled {
  opacity: 0.3;
}

#slick-songList .slick-slide li, #slick-movieList .slick-slide li {
  margin: 0 0 2rem;
  padding: 10px;
}
#slick-songList .slick-slide > div, #slick-movieList .slick-slide > div {
  display: flex;
}
#slick-songList .slide-dots li, #slick-movieList .slide-dots li {
  margin: 10px;
}

#slick-item {
  margin-bottom: 1rem;
}
#slick-item img:hover {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  transition: 0.3s;
  opacity: 0.9;
  cursor: pointer;
}

#slick-item-btn .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  flex-flow: row wrap;
}
#slick-item-btn .slick-slide {
  display: block !important;
  float: none !important;
  flex: 0 0 20%;
}
#slick-item-btn .slick-slide:not(.slick-current) {
  opacity: 0.5;
  cursor: pointer;
}
#slick-item-btn .slick-slide:not(.slick-current) img:hover {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  opacity: 0.9;
}

/*slick setting*/
.slide-dots {
  text-align: right;
	margin-top:30px;
}
.slide-dots li {
  display: inline-block;
  margin: 0 15px;
  color: #fff;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button:before {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  position: absolute;
  content: "";
  opacity: 0.3;
  top: -20px;
  left: 10px;
  width: 7px;
  height: 7px;
  background-color: #000;
}
.slide-dots li.slick-active button:before {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  opacity: 1;
}

.slide-arrow {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  cursor: pointer;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .slide-arrow {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .slide-arrow {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .slide-arrow {
    font-size: 3.3333333333vw;
  }
}
.slide-arrow img {
  width: 50px;
  pointer-events: all;
 margin:0px 20px;
  /*filter: invert(1) drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.4)) drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.2)) drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.1));*/
}
.slide-arrow.next-arrow {
  right: -100px;
}
.slide-arrow.next-arrow img {
  /*transform: scale(-1, 1);*/
}
.slide-arrow.prev-arrow {
  left: -100px;
}

@media screen and (min-width:1px) and (max-width: 1024px) {
  .slide-arrow.next-arrow {
  right: -50px;
}

.slide-arrow.prev-arrow {
  left: -50px;
}
  }
}

.slide-num {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 0.8rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .slide-num {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .slide-num {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .slide-num {
    font-size: 3.3333333333vw;
  }
}
.slide-num .allcnt, .slide-num .nowcnt {
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .slide-dots li button:before {
    top: 0px;
    left: 2%;
  }
}
.bg-glitch {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  background: transparent no-repeat center;
  background-size: 0;
  width: 65%;
  height: 300px;
  overflow: hidden;
  filter: opacity(0.2) blur(0.75px);
}
.bg-glitch::before, .bg-glitch::after, .bg-glitch .channel {
  position: absolute;
  background: inherit;
  background-size: cover;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.bg-glitch::before {
  animation: glitch-before 4s linear infinite alternate both;
  content: "";
}
@keyframes glitch-before {
  0% {
    clip-path: polygon(0% 10.1703270002%, 100% 10.1703270002%, 100% 19.1675246797%, 0% 19.1675246797%);
    transform: translate(1.5054424368%, 0.4452670266%);
  }
  4% {
    clip-path: polygon(0% 31.285749347%, 100% 31.285749347%, 100% 40.9376902105%, 0% 40.9376902105%);
    transform: translate(-5.2147226151%, -0.4274046681%);
  }
  8% {
    clip-path: polygon(0% 81.0201985946%, 100% 81.0201985946%, 100% 91.0187438109%, 0% 91.0187438109%);
    transform: translate(-4.2594086949%, -0.0070441095%);
  }
  12% {
    clip-path: polygon(0% 33.2736193656%, 100% 33.2736193656%, 100% 41.6478873591%, 0% 41.6478873591%);
    transform: translate(-6.8961303323%, 0.1689032816%);
  }
  16% {
    clip-path: polygon(0% 70.2710490354%, 100% 70.2710490354%, 100% 71.4242508151%, 0% 71.4242508151%);
    transform: translate(6.0375120874%, 0.1554799392%);
  }
  20%, 100% {
    clip-path: none;
    transform: none;
  }
}
.bg-glitch::after {
  animation: glitch-after 4s linear infinite alternate both;
  content: "";
}
@keyframes glitch-after {
  0% {
    clip-path: polygon(0% 73.4981162355%, 100% 73.4981162355%, 100% 82.8501299345%, 0% 82.8501299345%);
    transform: translate(6.389888485%, -0.3073594295%);
  }
  4% {
    clip-path: polygon(0% 85.8656659622%, 100% 85.8656659622%, 100% 95.8484185324%, 0% 95.8484185324%);
    transform: translate(-0.0615321045%, 0.1931327909%);
  }
  8% {
    clip-path: polygon(0% 40.4808745549%, 100% 40.4808745549%, 100% 44.2735933188%, 0% 44.2735933188%);
    transform: translate(-6.0266511154%, 0.3425383006%);
  }
  12% {
    clip-path: polygon(0% 83.8545672404%, 100% 83.8545672404%, 100% 90.4557638692%, 0% 90.4557638692%);
    transform: translate(-2.527473164%, -0.4418593914%);
  }
  16% {
    clip-path: polygon(0% 22.1880311985%, 100% 22.1880311985%, 100% 23.2360622556%, 0% 23.2360622556%);
    transform: translate(-1.7360566074%, -0.2622716009%);
  }
  20%, 100% {
    clip-path: none;
    transform: none;
  }
}
.bg-glitch .channel {
  mix-blend-mode: screen;
}
.bg-glitch .channel::before {
  bottom: 0;
  content: "";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.bg-glitch .r {
  animation: rgb-shift-r 4s steps(1, jump-end) infinite alternate both;
}
@keyframes rgb-shift-r {
  0% {
    transform: translate(-0.2898528015%, -0.1627472604%);
  }
  4% {
    transform: translate(-0.5586283671%, 0.0391975047%);
  }
  8% {
    transform: translate(0.0415932324%, 0.3772674688%);
  }
  12% {
    transform: translate(-1.8600914873%, 0.4276163602%);
  }
  16% {
    transform: translate(-1.1362448581%, -0.1733912781%);
  }
  20%, 100% {
    transform: none;
  }
}
.bg-glitch .r::before {
  background: #f00;
}
.bg-glitch .g {
  animation: rgb-shift-g 4s steps(1, jump-end) infinite alternate both;
}
@keyframes rgb-shift-g {
  0% {
    transform: translate(0.2216173323%, 0.321134756%);
  }
  4% {
    transform: translate(1.0143235269%, -0.3214717808%);
  }
  8% {
    transform: translate(0.6640926746%, 0.3541378219%);
  }
  12% {
    transform: translate(0.3485574245%, 0.3685920922%);
  }
  16% {
    transform: translate(1.842663642%, -0.2134444253%);
  }
  20%, 100% {
    transform: none;
  }
}
.bg-glitch .g::before {
  background: #0f0;
}
.bg-glitch .b {
  animation: rgb-shift-b 4s steps(1, jump-end) infinite alternate both;
}
@keyframes rgb-shift-b {
  0% {
    transform: translate(-0.5853924327%, -0.0902529596%);
  }
  4% {
    transform: translate(-1.8160132288%, 0.3599074776%);
  }
  8% {
    transform: translate(-1.6495696278%, -0.1641742439%);
  }
  12% {
    transform: translate(0.1804737003%, 0.3770343358%);
  }
  16% {
    transform: translate(1.4821680595%, 0.3764803252%);
  }
  20%, 100% {
    transform: none;
  }
}
.bg-glitch .b::before {
  background: #00f;
}
@media screen and (max-width: 1024px) {
  .bg-glitch {
    width: 80%;
    height: 80%;
    max-height: 400px;
    bottom: auto;
    top: 8rem;
  }
}

.pager {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .pager {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .pager {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .pager {
    font-size: 3.3333333333vw;
  }
}
.pager li {
  margin-right: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.pager .current {
  background-color: #fff;
  color: #302986;
}

.cdt {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .cdt {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .cdt {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .cdt {
    font-size: 3.3333333333vw;
  }
}
.cdt__num {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.2)) drop-shadow(0px 0px 3px rgba(0, 255, 255, 0.4)) drop-shadow(0px 0px 3px rgba(238, 0, 255, 0.4)) drop-shadow(0px 0px 6px rgba(0, 255, 255, 0.2)) drop-shadow(0px 0px 6px rgba(238, 0, 255, 0.2));
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .cdt__num {
    font-size: 4.8828125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .cdt__num {
    font-size: 5.5803571429vw;
  }
}
@media screen and (max-width:480px) {
  .cdt__num {
    font-size: 10.4166666667vw;
  }
}

.ticker {
  position: relative;
  width: 85%;
  margin: auto;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  overflow: hidden;
  white-space: nowrap;
}
.ticker::before {
  content: ">> next event";
  opacity: 0.1;
  font-size: 1.4rem;
  font-family: vdl-yotag, sans-serif;
  left: 1rem;
}
.ticker__inner {
  display: inline-block;
  margin: 0;
  padding: 0;
  animation: hscroll 15s linear infinite;
  animation-play-state: running;
}
.ticker__inner:hover {
  animation-play-state: paused;
}
@keyframes hscroll {
  0% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(-130%);
  }
}
@media screen and (max-width: 896px) {
  .ticker {
    width: 100%;
  }
}

.language-switch {
  position: fixed;
  top: 3rem;
  right: 4rem;
  z-index: 9990;
}
.language-switch a {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 1.6rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .language-switch a {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .language-switch a {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .language-switch a {
    font-size: 3.3333333333vw;
  }
}
.language-switch a:hover {
  text-shadow: 0.06rem 0 0.06rem #00FFFF, -0.125rem 0 0.06rem #EE00FF;
  animation-duration: 1s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #00FFFF, -2px 0 0 #EE00FF;
  }
  to {
    text-shadow: 2px 0.5px 2px #00FFFF, -1px -0.5px 2px #EE00FF;
  }
}
@media screen and (max-width: 1024px) {
  .language-switch {
    position: static;
    text-align: center;
  }
}
@media screen and (max-width:1200px) {
  .language-switch {
    left: 4rem;
  }
}

.share-btn {
  position: absolute;
  top: 0;
  right: -80px;
  width: 50px;
  height: 100%;
}
.share-btn__title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-display: swap;
  writing-mode: tb;
  margin: auto;
  margin-right: 39%;
  line-height: 1;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .share-btn__title {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .share-btn__title {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .share-btn__title {
    font-size: 3.3333333333vw;
  }
}
.share-btn__title::after {
  position: relative;
  content: "";
  width: 1px;
  height: 2.5rem;
  background-color: #fff;
  display: inline-block;
  margin: 1rem auto;
  bottom: 0;
  right: 0;
  left: 0;
}
.share-btn__wrap {
  position: sticky;
  top: 4rem;
  left: 0;
  background-color: rgba(86, 77, 200, 0.2);
  background-blend-mode: exclusion;
  border-radius: 2px;
  padding: 1rem 0;
  margin-left: 1rem;
}
.share-btn__item {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.share-btn__item img {
  width: 25px;
  display: block;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.share-btn__item:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1300px) {
  .share-btn {
    position: relative;
    right: 0;
    left: 0;
    top: calc(100% - 2rem);
    margin: 5rem auto;
    height: auto;
    width: fit-content;
    width: -moz-fit-content;
  }
  .share-btn__title {
    position: relative;
    writing-mode: initial;
    margin: 0;
    margin-right: 4rem;
  }
  .share-btn__title::after {
    position: absolute;
    width: 2rem;
    height: 1px;
    left: calc(100% + 1rem);
    right: auto;
    top: 0;
    margin: auto;
  }
  .share-btn__wrap {
    position: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
  }
  .share-btn__inner {
    display: flex;
    align-items: center;
  }
  .share-btn__item img {
    padding: 0;
  }
  .share-btn__item:not(:last-child) img {
    margin-right: 1rem;
  }
}

#news {
  overflow: visible;
}

.bold {
  font-weight: bold;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.m0a {
  margin: 0 auto;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.red {
  color: red;
}

.blue {
  color: blue;
}

.link {
  color: #CE00FF;
  border-bottom: 1px solid #CE00FF;
}
@media screen and (max-width: 896px) {
  .link {
    border-bottom: 1px solid #CE00FF;
  }
}

.border {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.border--top {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.border--bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.border--right {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.border--left {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.tag {
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .tag {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .tag {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .tag {
    font-size: 3.3333333333vw;
  }
}

.font--digital {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .font--digital {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .font--digital {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .font--digital {
    font-size: 3.3333333333vw;
  }
}
.font--logo {
  font-family: "logo-font", sans-serif;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .font--logo {
    font-size: 1.46484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .font--logo {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .font--logo {
    font-size: 3.3333333333vw;
  }
}
.font-size--larger {
  font-size: 2rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .font-size--larger {
    font-size: 1.953125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .font-size--larger {
    font-size: 2.2321428571vw;
  }
}
@media screen and (max-width:480px) {
  .font-size--larger {
    font-size: 4.1666666667vw;
  }
}
.font-size--large {
  font-size: 1.8rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .font-size--large {
    font-size: 1.7578125vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .font-size--large {
    font-size: 2.0089285714vw;
  }
}
@media screen and (max-width:480px) {
  .font-size--large {
    font-size: 3.75vw;
  }
}
.font-size--small {
  font-size: 1.2rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .font-size--small {
    font-size: 1.171875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .font-size--small {
    font-size: 1.3392857143vw;
  }
}
@media screen and (max-width:480px) {
  .font-size--small {
    font-size: 2.5vw;
  }
}
.font-size--smaller {
  font-size: 1rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .font-size--smaller {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .font-size--smaller {
    font-size: 1.1160714286vw;
  }
}
@media screen and (max-width:480px) {
  .font-size--smaller {
    font-size: 2.0833333333vw;
  }
}

.date {
  display: block;
}
.date span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 80%;
  display: inline-block;
  border-radius: 2px;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  color: #302986;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .date span {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .date span {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .date span {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .date span {
    font-size: 75%;
    padding: 0.1rem 0.5rem;
  }
}
.date--type2 {
  line-height: 1.6;
  margin-top: 0.5rem;
}
.date--type2 span {
  /*font-family: vdl-yotag, sans-serif;*/
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 1.2rem;
  background-color: transparent;
  color: #000;
  border-radius: 0;
  padding: 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .date--type2 span {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .date--type2 span {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .date--type2 span {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .date--type2 span {
    font-size: 1.171875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .date--type2 span {
    font-size: 1.3392857143vw;
  }
}
@media screen and (max-width:480px) {
  .date--type2 span {
    font-size: 2.5vw;
  }
}

.kazari {
  margin: 1rem;
}
.kazari--small::before, .kazari--small::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-image: url(../img/kazari.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}
.kazari--small::before {
  top: -5px;
  right: -5px;
  transform: scale(1, -1);
}
.kazari--small::after {
  bottom: -5px;
  left: -5px;
  transform: scale(-1, 1);
}

.cb {
  clear: both;
}

.new-icon {
  color: red;
  display: block;
  border-bottom: 2px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .new-icon {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

.list-style--notes li {
  margin-left: 2rem;
  list-style-type: "※";
}
.list-style--notes li:last-child {
  margin-bottom: 2rem;
}
.list-style--disc li {
  margin-left: 2rem;
  list-style-type: disc;
}
.list-style--disc li:last-child {
  margin-bottom: 2rem;
}
.list-style--num li {
  margin-left: 2rem;
  list-style-type: decimal;
}
.list-style--num li:last-child {
  margin-bottom: 2rem;
}

.flow__unit {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
}
.flow__unit:last-child {
  border-bottom: none;
}
.flow--title {
  margin-right: 2rem;
}
.flow--title .tag {
  margin: 0;
}
@media screen and (max-width:480px) {
  .flow__unit {
    flex-direction: column;
  }
  .flow--content {
    padding: 1rem 0;
  }
}

.bg--nora {
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  background: #1b174b;
}
.bg--nora .header::before {
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  background-image: url(../img/artist/nora_p.jpg);
  filter: blur(15px);
}

.flex {
  display: flex;
  align-items: center;
}
.flex.jc-center {
  justify-content: center;
  gap: 1rem;
}
.flex.ai-start {
  align-items: flex-start;
}
.flex.gap1 {
  gap: 1rem;
}
.flex.gap2 {
  gap: 2rem;
}
.flex.gap3 {
  gap: 3rem;
}
.flex.gap4 {
  gap: 4rem;
}
.flex.gap5 {
  gap: 5rem;
}
@media screen and (max-width: 896px) {
  .flex.sp-flex--column {
    flex-direction: column;
  }
  .flex.sp-gap1 {
    gap: 1rem !important;
  }
  .flex.sp-gap2 {
    gap: 2rem !important;
  }
  .flex.sp-gap3 {
    gap: 3rem !important;
  }
  .flex.sp-gap4 {
    gap: 4rem !important;
  }
  .flex.sp-gap5 {
    gap: 5rem !important;
  }
}

.small {
  font-size: 1.4rem;
  display: inline-block;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .small {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .small {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width:480px) {
  .small {
    font-size: 2.9166666667vw;
  }
}

.dl--normal {
  display: flex;
  gap: 0.5rem;
}
.dl--normal dt {
  flex-shrink: 0;
}
.dl--normal dt::after {
  content: ":";
  margin-left: 0.5rem;
}

.en .textbox--copy {
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  font-display: swap;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .en .textbox--copy {
    font-size: 1.3671875vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .en .textbox--copy {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .en .textbox--copy {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .en .textbox--copy {
    font-size: 2.1484375vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .en .textbox--copy {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .en .textbox--copy {
    font-size: 3.3333333333vw;
  }
}
.en .textbox--copy span {
  display: inline-block;
}
.en .textbox--copy p {
  margin-bottom: 2rem;
  line-height: 1.25;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .en .textbox--bg p {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .en .textbox--bg p {
    font-size: 1.7857142857vw;
  }
}
@media screen and (max-width:480px) {
  .en .textbox--bg p {
    font-size: 3.3333333333vw;
  }
}

.sp-non {
  display: block;
}
@media screen and (max-width: 896px) {
  .sp-non {
    display: none;
  }
}

.tabpc-non {
  display: block;
}
@media screen and (min-width:897px) {
  .tabpc-non {
    display: none;
  }
}

.pc-non {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-non {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .iOS .main-visual::before, .iPad .main-visual::before {
    background-attachment: local;
  }
}/*# sourceMappingURL=style.css.map */

.slider {
	max-width:100%;
	margin:0 auto;
	margin-top: 0px;
	display: flex;
  	align-items: stretch;
}

.led, .stationery {
	width:90%;
	margin:0 auto;
	margin-bottom:15px;
}

.clearfix:after {
	clear: both
}

.thumbg, .thumbg img:nth-child(2){ position:relative;}
.thumbg img{ position:absolute;
  /* 淡出淡入效果2秒 */
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
 }
 .thumbg img:last-child:hover{
   /* 滑入時第一張透明度設0 */
    opacity:0;}

.nav__main li {
	background: linear-gradient(135deg, #feffff 0%,#f7f7f7 90%,#efefef 100%);
	margin-bottom:10px;
	border-left: #DDD 3px solid;
	border-bottom: #DDD 3px solid;
}

.product_all_btn {
	font-size:11px;
	border:#fda904 1px solid;
	padding:3px;
	margin-bottom: 10px;
	
}

a:hover .product_all_btn {
	background: #fda904;
	color:#FFF;
	border:#fda904 1px solid;
	padding:3px;
	margin-bottom: 10px;
	
}


#product_text {
	display: flex;
  flex-direction: column;
}

#product_text h3 {
	font-size:22px;
	font-weight: bold;
	color:#F00;
}

#product_text .p_num {
	font-size:12px
}

#product_text .p_price {
	font-size:14px
}

#product_text .p_text {
	margin-top:20px;
	font-size:16px
}

#product_text .p_detail {
	border-top: #fda904 1px solid;
	padding-top:5px;
	font-size:16px
}

@media (min-width: 897px) {
#product_text .p_num {
	order: 1;
}
	
	#product_text h3 {
	order: 2;
}
#product_text .p_price {
	order: 3;
}

#product_text .p_text {
	order: 4;
}
	
#product_text .xzoom-thumbs {
	order: 5;
}

#product_text .p_detail {
	order: 6;
}
.dot {
	position: absolute;
	bottom: -18;
	left: 32;
}
}

/* For smaller screens: c comes first */
@media (max-width: 896px) {
#product_text .p_num {
	order: 2;
}
	
	#product_text h3 {
	order: 3;
}
#product_text .p_price {
	order: 4;
}

#product_text .p_text {
	order: 5;
}
	
#product_text .xzoom-thumbs {
	order: 1;
}

#product_text .p_detail {
	order: 6;
}
	.dot {
	position: absolute;
	bottom: 60;
	left: 32;
}
}

.release {
	padding-bottom: 50px;
}



.index_product {
	width:85%;
	margin:0 auto;
	margin-top:25px;
}

.new_release h2, .store h2 {
	text-align: center;
	font-size: 4rem;
	font-weight: bold;
	margin:20px 0px;
}

.new_release h2:after, .store h2:after {
	content: '';
    width: 82px;
    height: 6px;
    display: block;
    margin: 0 auto;
	background: #ffd200;
}

.store_menu {
	width:85%;
	margin: 0 auto;
}

.store_notice {
	font-size:18px;
	color:#F00;
	text-align: center;
}

.stores {
	width:85%;
	margin:0 auto;
	margin-top: 40px;
	margin-bottom: 60px;
	text-align: center;
}

.stores .col-sm-3 {
	margin-bottom:18px;
}

.new_item {
	position:absolute;
	padding-top:5px;
	padding-left:5px;
	z-index:999;
	}
	
.new_item img {
	width:40px;
	height:40px;
	}

/*footer*/
.g-footer {
  background: #292929;
  padding-top: 0px;
}
.g-footer__top {
  max-width: 990px;
  margin: 0 auto 50px;
}
.g-footer__top .columnCommon {
  float: left;
}
.g-footer__top .columnCommon .leadTxt {
  margin-bottom: 11px;
}
.g-footer__top .columnCommon .leadTxt a {
  font-size: 18px;
  color: #FFF;
  transition: .4s;
}
.g-footer__top .columnCommon .leadTxt a:hover {
  opacity: 0.7;
}
.g-footer__top .columnCommon .leadTxt--addMb {
  margin-bottom: 48px;
}
.g-footer__top .columnCommon .linkTxt a {
  font-size: 14px;
  color: #FFF;
  transition: .4s;
}
.g-footer__top .columnCommon .linkTxt a:hover {
  opacity: 0.7;
}
.g-footer__top .columnCommon .list li {
  margin-bottom: 5px;
}
.g-footer__top .columnCommon .list li a {
  display: inline-block;
  font-size: 14px;
  color: #FFF;
  transition: .4s;
}
.g-footer__top .columnCommon .list li a:hover {
  opacity: .7;
}
.g-footer__top .columnCommon .list--addMb {
  margin-bottom: 25px;
}
.g-footer__top .column01 {
  width: 17.57%;
  margin-right: 9.6%;
}
.g-footer__top .column02 {
  width: 15.15%;
  margin-right: 12.12%;
}
.g-footer__top .column03 {
  width: 16.16%;
  margin-right: 11.01%;
}
.g-footer__top .column04 {
  width: 13.53%;
}
.g-footer__banner {
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.g-footer__banner li {
  width: 22.73%;
}
.g-footer__banner li a {
  display: block;
  transition: .4s;
}
.g-footer__banner li a:hover {
  opacity: 0.7;
}
.g-footer__banner li a img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.g-footer__foot {
  border-top: 1px solid #fff;
  padding-top: 25px;
  padding-bottom: 25px;
}
.g-footer__foot__caption {
  text-align: center;
  font-size: 10pt;
  color: #FFF;
  line-height: 1.3;
  margin-bottom: 12px;
}
.g-footer__foot .copyright {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #FFF;
  line-height: 1.3;
  font-family: '微軟正黑體','Avenir','Helvetica Neue','Helvetica','Arial';
}
.g-footer__foot .copyright .pc-none {
  display: none;
}

.footer_social {
    text-align: center;
    padding-bottom: 10px;
}

.footer_social img {
    width:35px;
}