@charset "utf-8";
/* ---------------------------------------
0.0 mixin
	0.1 colors
	0.2 typography
	0.3 spacer
	0.4 chevron
	0.5 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 pagenation
3.0 layout
	3.1 base
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 biography
	4.5 discograpy
	4.6 questionnaire

-------------------------------------------- */
/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html,
body {
  height: 100%;
  -webkit-text-size-adjust: none;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
img,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
i {
  font-style: normal;
}
img {
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
::selection {
  background: #000000;
  color: #fff;
}
::-moz-selection {
  background: #000000;
  color: #fff;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
.sp {
  display: none !important;
}
/* 2.1 button
------------------------------ */
.btn {
  text-align: center;
  margin: 1em 0;
}
.btn input {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn--main {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  border: none;
  position: relative;
  top: 0;
  background: #000000;
  color: #fff;
}
.btn--main:hover {
  background: #f2ff21;
  color: #000000;
}
.btn--sub {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  border: none;
  position: relative;
  top: 0;
  background: #fff;
  color: #000000;
}
.btn--sub:hover {
  color: #f2ff21;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
  font-weight: bold;
}
.form--post dd {
  margin: 0 0 1em;
}
.block--error {
  color: #c00;
  background: rgba(204, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #999999;
}
::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #999999;
}
:-moz-placeholder {
  color: #999999;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #dddddd;
  padding: 0.5em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
input[type="text"].form__error:focus,
input[type="tel"].form__error:focus,
input[type="email"].form__error:focus,
input[type="password"].form__error:focus,
input[type="number"].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.input--half {
  width: 50% !important;
}
.input--quarter {
  width: 25% !important;
}
/* textarea */
textarea {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #dddddd;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
/* select */
.form__selectbox,
.form__select {
  display: inline-block;
  position: relative;
}
.form__selectbox select,
.form__select select {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #dddddd;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__selectbox select:focus,
.form__select select:focus {
  border-color: inherit;
}
.form__selectbox select.form__error,
.form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__selectbox select.form__error:focus,
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__selectbox select[disabled],
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__selectbox::after,
.form__select::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #f33;
}
.form__checkbox label p {
  padding-left: 1.6em;
}
.form__checkbox label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__checkbox label p::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  left: 0.2em;
  top: 70%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #000000;
  border-color: #000000;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #f33;
}
.form__radio label p {
  padding-left: 1.6em;
}
.form__radio label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__radio :checked ~ p::before {
  border-color: #000000;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #f33;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
  content: '';
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #ddd;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  right: 0;
  top: 50%;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #000000;
  border-color: #000000;
}
.form__toggle :checked ~ p::after {
  right: 0;
}
/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}
.form--confirm {
  margin: 0 auto 2em;
  padding: 40px 0 0;
}
.form--confirm dt {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 12px;
}
.form--confirm dd {
  margin: 0 0 30px;
}
/* 2.3 list
------------------------------ */
.block--category {
  z-index: 2;
}
.block--category .cat7 a::before {
  background: #91D2E5;
}
.block--category .cat8 a::before {
  background: #F7767C;
}
.block--category .cat9 a::before {
  background: #8AC998;
}
.block--category .cat10 a::before {
  background: #8B87Eb;
}
.list--information .cat7 span,
.list--information .cat13 span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #91D2E5 0%) repeat scroll 0 0;
}
.list--information .cat8 span,
.list--information .cat14 span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #F7767C 0%) repeat scroll 0 0;
}
.list--information .cat9 span,
.list--information .cat15 span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #8AC998 0%) repeat scroll 0 0;
}
.list--information .cat10 span,
.list--information .cat16 span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #8B87Eb 0%) repeat scroll 0 0;
}
.no-data {
  padding: 50px 0;
  text-align: center;
  opacity: 0.5;
}
/*  information */
.list--information a {
  display: block;
  color: inherit;
  position: relative;
}
.list--information .tit {
  margin: 0 0 20px;
  font-weight: bold;
}
.list--information .text {
  margin: 0 0 20px;
}
.list--information .date {
  font-size: 18px;
  position: relative;
}
.list--information .date span {
  position: absolute;
  right: 0;
}
.list--information .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--information .category {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  vertical-align: top;
  padding: 0 3px;
}
.list--information li {
  position: relative;
}
.list--information li .text a {
  text-decoration: underline;
}
.list--information li .text a:hover {
  text-decoration: none;
}
.list--information li > a {
  display: block;
  padding: 10px 0;
  position: relative;
}
.list--information li > a p {
  position: relative;
  z-index: 1;
}
.list--information li > a::before {
  content: '';
  display: block;
  width: calc(100% + 20px);
  height: 100%;
  background: #000000;
  position: absolute;
  left: -10px;
  top: 0;
  transform: scaleX(0);
  z-index: 1;
  transition: 0.4s;
  transform-origin: left;
}
.list--information li a:hover .date,
.list--information li a:hover .tit,
.list--information li a:hover .category {
  color: #fff;
  transition: 0.3s;
}
.list--information li a:hover::before {
  transform: scaleX(1);
}
.list--information .nextlive {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  font-family: alternate-gothic-condensed-a;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5em;
}
.list--information .no-data {
  padding: 35px 5%;
}
.list--information .event-date {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: alternate-gothic-condensed-a;
  font-weight: bold;
}
.list--information .tit {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.list--information .slick-list {
  padding-left: 2px;
}
.list--information .thumb img {
  opacity: 0.8;
  transition: 0.3s;
}
.list--information .block--text {
  position: relative;
  padding: 20px 15px 15px;
}
.list--information .new .tit {
  position: relative;
}
.list--information .new .tit::after {
  content: 'NEW';
  font-family: alternate-gothic-condensed-a;
  font-size: 18px;
  vertical-align: -2px;
  z-index: 1;
  margin-left: 10px;
  line-height: 0;
}
.list--information .new .tit span {
  word-break: break-all;
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #f2ff21 0%) repeat scroll 0 0;
  padding-left: 5px;
}
.list--information .new a:hover .tit span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #555 0%) repeat scroll 0 0;
}
.block--category {
  display: inline-block;
  position: absolute;
}
.block--category li {
  display: inline-block;
  font-family: alternate-gothic-condensed-a, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-right: 10px;
}
.block--category li a {
  display: block;
  padding: 0 4px;
  position: relative;
}
.block--category li a span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.block--category li a::before {
  content: '';
  display: block;
  width: 110%;
  height: 12px;
  position: absolute;
  left: -5%;
  top: 8px;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.block--category li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.block--category .current a::before {
  transform: scaleX(1);
}
.block--category .current.all a::before {
  background: #f2ff21;
}
.list--contents,
.list--discography {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: end;
  justify-content: end;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  flex-wrap: wrap;
}
.list--contents li,
.list--discography li {
  width: 48%;
  margin-bottom: 80px;
}
.list--contents li a,
.list--discography li a {
  display: block;
  position: relative;
}
.list--contents li figure,
.list--discography li figure {
  margin-bottom: 10px;
}
.list--contents {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.page--home .list--sns {
  display: none !important;
}
.list--video li figure,
.page--info.category4 .list--contents li figure {
  position: relative;
}
.list--video li a figure::after,
.page--info.category4 .list--contents li a figure::after {
  content: 'PLAY';
  font-family: alternate-gothic-condensed-a, sans-serif;
  font-weight: 600;
  font-size: 90px;
  color: #fff;
  text-align: center;
  margin-left: -85px;
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
}
.list--video li a figure::before,
.page--info.category4 .list--contents li a figure::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.list--video li a:hover figure::before,
.page--info.category4 .list--contents li a:hover figure::before {
  transform: scaleX(1);
  transform-origin: left;
}
.list--video li a:hover figure::after,
.page--info.category4 .list--contents li a:hover figure::after {
  transition: 0.2s 0.2s;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.list--video li figure::after {
  line-height: 1;
  margin-top: -39px;
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #fff;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
a {
  color: #000000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap {
  background: #fff;
  position: relative;
  min-height: 100%;
  padding-bottom: 100px;
}
.date {
  font-family: alternate-gothic-condensed-a;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.category {
  font-family: alternate-gothic-condensed-a;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-align: center;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center;
}
/* 3.2 header
------------------------------ */
.g-nav {
  font-family: alternate-gothic-condensed-a, -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
}
.g-nav li div {
  position: relative;
  cursor: pointer;
}
.g-nav li div::after {
  content: '';
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  background: no-repeat center url(/static/blueencount/cmn/ico_plus.svg);
  background-size: 11px;
  vertical-align: 0px;
  margin-left: 3px;
}
.g-nav li a,
.g-nav li div {
  display: block;
  line-height: 1;
  letter-spacing: 0.08em;
  position: relative;
}
.g-nav li a::before,
.g-nav li div::before {
  content: '';
  display: block;
  width: 110%;
  height: 11px;
  background: #f2ff21;
  position: absolute;
  top: 50%;
  left: -5%;
  margin-top: -1.5px;
  transition: transform 0.3s;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.g-nav li a:hover::before,
.g-nav li div:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  height: 110px;
}
header .drawer__btn {
  display: none !important;
}
header .logo {
  position: absolute;
  left: 5%;
  top: 18px;
}
header .logo svg {
  width: 250px;
  height: 40px;
}
header .g-nav.fc {
  display: none;
}
header .g-navi {
  top: 20px;
}
header h1 a {
  display: block;
  text-indent: -9999em;
  width: 190px;
  height: 30px;
  background: no-repeat center url(/static/blueencount/cmn/logo.svg);
  background-size: contain;
  position: absolute;
  left: 3%;
  top: 40px;
}
header .g-nav__official,
header .g-nav__sns {
  text-align: right;
  padding-top: 34px;
  padding-right: 2%;
}
header .g-nav__sns {
  padding-top: 7px;
  margin-right: calc(1% - 10px);
}
header .g-nav__sns svg {
  width: 17px !important;
  height: 16px !important;
  vertical-align: -2px;
}
header .g-nav__sns .ico-tiktok svg {
  width: 18px !important;
  height: 18px !important;
}
header .g-nav__official li,
header .g-nav__sns li {
  display: inline-block;
  font-size: 19px;
  margin-right: 15px;
}
header .g-nav__sns li {
  margin-right: 10px;
}
header .g-nav__sns li.ico-twitter {
  margin-right: 9px;
}
header .g-nav__sns li.ico-youtube {
  margin-right: 9px;
}
header .g-nav__sns li.ico-line {
  margin-right: 12px;
}
.block--g-nav__fc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: alternate-gothic-condensed-a, -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  transition: 0.3s;
}
.block--g-nav__fc nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.block--g-nav__fc ul {
  width: 40%;
  min-width: 500px;
}
.block--g-nav__fc li {
  display: inline-block;
  width: 46%;
  margin-bottom: 20px;
  line-height: 1.3;
  transform: translate3d(60px, 0, 0);
  opacity: 0;
}
.block--g-nav__fc li.special a::before {
  height: 17px;
  margin-top: 3.5px;
}
.block--g-nav__fc li a {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.05em;
  position: relative;
}
.block--g-nav__fc li a::before {
  content: '';
  display: block;
  width: 110%;
  height: 14px;
  background: #009fe8;
  position: absolute;
  top: 50%;
  left: -5%;
  margin-top: -3.5px;
  transition: transform 0.3s;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.block--g-nav__fc li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.block--g-nav__fc li a span {
  display: block;
  font-size: 15px;
}
.block--g-nav__fc .g-nav-tit {
  width: 17vw;
  color: #fff;
  font-size: 5vw;
  letter-spacing: 0.05em;
  line-height: 1;
  word-break: break-all;
  margin: 10px 7% 15px 0;
  opacity: 0;
  transform: translate3d(60px, 0, 0) rotate(-10deg);
}
.block--g-nav__fc .g-nav-tit span {
  display: block;
  font-size: 2vw;
  letter-spacing: 0;
}
.drawer-visible .block--g-nav__fc {
  left: 0;
  pointer-events: auto;
}
.drawer-visible .block--g-nav__fc li {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0.7s;
  transition: all 0.3s ease-out 0.7s;
}
.drawer-visible .block--g-nav__fc .g-nav-tit {
  -webkit-transform: translate3d(0, 0, 0) rotate(-10deg);
  transform: translate3d(0, 0, 0) rotate(-10deg);
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0.4s;
  transition: all 0.3s ease-out 0.4s;
}
.drawer__btn {
  width: 56px;
  height: 45px;
  right: 4%;
  top: 5vh;
  position: absolute;
  z-index: 1100;
  cursor: pointer;
}
.drawer__btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: #fff;
  z-index: 20;
  transition: 0.3s;
}
.drawer__btn span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
  top: 0;
}
.drawer__btn span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.drawer__btn span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
  top: 40px;
}
/* 3.3 footer
------------------------------ */
footer {
  width: 100%;
  text-align: center;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-family: alternate-gothic-condensed-a, -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ";
  padding: 40px 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* 4.0 page
============================== */
.section--list,
.section--detail,
.page--questionnaire header + section {
  margin: 0 auto;
  padding: 230px 0 50px;
  width: 60%;
  max-width: 1200px;
  min-width: 800px;
  position: relative;
}
.section--detail,
.page--questionnaire header + section {
  width: 70%;
}
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 56px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 0.8em;
  font-family: alternate-gothic-condensed-a;
  letter-spacing: 0;
  text-align: center;
}
.section-tit,
.block--archive .block-tit {
  color: inherit;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 80px;
  font-family: alternate-gothic-condensed-a;
  text-indent: -9999px;
  background: no-repeat center;
  background-size: contain;
}
.menu-tit {
  color: inherit;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.txt--error {
  text-align: center;
  color: #c00;
  font-weight: bold;
}
[class^="txt"] a {
  color: #000000;
  text-decoration: underline;
}
[class^="txt"] a:hover {
  text-decoration: none;
}
.thumb,
.ph {
  position: relative;
  line-height: 0;
}
.dummy {
  position: absolute;
  width: 100%!important;
  height: 100%!important;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
/* 4.2 home
------------------------------ */
.page--home {
  /* HERO IMG */
  /* NEWS */
  /* MEDIA */
  /* LIVE */
  /* VIDEO */
  /* LATEST CONTENTS */
}
.page--home .wrap {
  overflow: hidden;
}
.page--home header {
  top: -150px;
  transition: 0.3s;
}
.page--home.headerFixed header {
  top: 0;
}
.page--home section {
  z-index: 1;
}
.page--home .block-tit {
  text-indent: -9999em;
  background: no-repeat center;
  background-size: contain;
  z-index: 11;
}
.page--home .inview {
  opacity: 0;
}
.page--home .section--hero {
  height: 75vw;
  position: relative;
  margin-bottom: 150px;
}
.page--home .section--hero .block--navigation {
  transform: rotate(90deg);
  position: absolute;
  left: 24%;
  height: 18vw;
  top: 5vw;
  transform-origin: top left;
  width: 70vw;
  max-width: 130vh;
}
.page--home .section--hero .block--navigation li {
  margin-bottom: 10px;
}
.page--home .section--hero .block--navigation li a,
.page--home .section--hero .block--navigation .pc div {
  line-height: 1;
  letter-spacing: 0.01em;
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 40%, #f2ff21 0%) repeat scroll 0 0;
}
.page--home .section--hero .block--navigation li a::before,
.page--home .section--hero .block--navigation .pc div::before {
  height: 1.2em;
  margin-top: -0.7em;
  background: #000;
}
.page--home .section--hero .block--navigation li a:hover,
.page--home .section--hero .block--navigation .pc div:hover {
  color: #fff;
  background: none;
}
.page--home .section--hero .block--navigation li a:hover::after,
.page--home .section--hero .block--navigation .pc div:hover::after {
  filter: invert(100);
}
.page--home .section--hero .block--navigation .g-nav__item--sns a {
  background: none;
  transition: 0.2s;
}
.page--home .section--hero .block--navigation .g-nav__item--sns a svg {
  transition: 0.2s;
}
.page--home .section--hero .block--navigation .g-nav__item--sns a:hover {
  color: #f2ff21;
}
.page--home .section--hero .block--navigation .g-nav__item--sns a:hover::before {
  display: none;
}
.page--home .section--hero .block--navigation .g-nav__item--sns a:hover svg {
  fill: #f2ff21;
}
.page--home .section--hero .block--navigation h1 {
  width: 70vw;
  max-width: 120vh;
}
.page--home .section--hero .block--bnr {
  width: 57vw;
  max-width: 120vh;
  position: absolute;
  right: 7%;
  top: 5vw;
}
.page--home .section--hero .block--bnr li a {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: right;
  position: relative;
}
.page--home .section--hero .block--bnr li figure {
  margin-bottom: 30px;
}
.page--home .section--hero .block--bnr li .bnr-tit {
  display: inline-block;
  font-size: 1.5rem;
  word-break: break-all;
  padding-left: 5px;
}
.page--home .section--hero .block--bnr li .bnr-tit span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #f2ff21 0%) repeat scroll 0 0;
}
.page--home .section--hero .block--bnr .slick-dots {
  display: block;
  position: absolute;
  z-index: 100;
  bottom: 5vw;
  left: 20px;
}
.page--home .section--hero .block--bnr .slick-dots li {
  display: inline-block;
  margin-right: 8px;
}
.page--home .section--hero .block--bnr .slick-dots li button {
  width: 30px;
  height: 3px;
  -webkit-appearance: none;
  background: #fff;
  border: none;
  text-indent: -9999em;
}
.page--home .section--hero .block--bnr .slick-dots li.slick-active button {
  background: #f2ff21;
}
.page--home .section--hero .block--navigation .g-nav ul {
  width: 610px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.page--home .section--hero .block--navigation li {
  display: inline-block;
  font-weight: 600;
  font-size: 32px;
  margin-right: 11px;
}
.page--home .section--hero .block--navigation li i {
  font-size: 22px;
  vertical-align: 3px;
}
.page--home .section--hero .block--navigation li i.fa-instagram {
  vertical-align: 2px;
}
.page--home .section--hero .block--navigation li.ico-twitter {
  margin-right: 7px;
}
.page--home .section {
  width: 60%;
  min-width: 700px;
  margin-bottom: 80px;
}
.page--home .section .tit {
  display: inline-block;
  width: 80%;
}
.page--home .section .date {
  display: inline-block;
  width: 80px;
  vertical-align: top;
  line-height: 1;
  margin-right: 10px;
  margin-top: 6px;
}
.page--home .section .category {
  width: 70px;
  display: inline-block;
  margin-right: 10px;
}
.page--home .section .list--information {
  margin-left: 30px;
  position: relative;
  top: -5.5vw;
}
.page--home .block--title {
  transform: rotate(90deg);
  transform-origin: top left;
  position: relative;
  z-index: 1;
}
.page--home .block--title .block-tit {
  display: inline-block;
}
.page--home .block--title .list__more {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.02em;
  transform: rotate(-90deg);
  top: 1.15vw;
  left: -1vw;
}
.page--home .area--information.inview {
  opacity: 1;
}
.page--home .section--news {
  min-height: 12vw;
  margin-left: 18.5%;
  z-index: 2;
}
.page--home .section--news .block-tit {
  width: 12vw;
  height: 4.5vw;
  min-width: 146px;
  min-height: 57px;
  background-image: url(/static/blueencount/cmn/home_news.svg);
}
.page--home .section--media {
  min-height: 12.5vw;
  margin-left: 30.5%;
  z-index: 3;
}
.page--home .section--media .tit {
  width: calc(100% - 180px);
}
.page--home .section--media .block-tit {
  width: 13vw;
  height: 4.5vw;
  min-width: 160px;
  min-height: 57px;
  background-image: url(/static/blueencount/cmn/home_media.svg);
}
.page--home .section--media .list__more {
  top: 1vw;
}
.page--home .section--live {
  width: 50%;
  margin-left: 43%;
  margin-bottom: 10vw;
  z-index: 4;
}
.page--home .section--live .block-tit {
  width: 8.5vw;
  height: 4.5vw;
  min-width: 108px;
  min-height: 57px;
  background-image: url(/static/blueencount/cmn/home_live.svg);
}
.page--home .section--live .tit {
  width: 86%;
}
.page--home .section--live .list__more {
  top: 1vw;
}
.page--home .section--video {
  background: #fff;
  position: relative;
  padding-top: 15vw;
  margin-bottom: 15vw;
  z-index: 5;
  overflow: hidden;
}
.page--home .section--video .block--video {
  position: relative;
  overflow: hidden;
  padding-bottom: 5vw;
}
.page--home .section--video .block--title {
  position: absolute;
  right: -22%;
  top: 0;
  z-index: 100;
}
.page--home .section--video .block--title .block-tit {
  width: 30vw;
  height: 10vw;
  background-image: url(/static/blueencount/cmn/home_video.svg);
}
.page--home .section--video .block--title .list__more {
  font-size: 1.7vw;
  top: 5.5vw;
}
.page--home .section--video .list--video {
  display: block;
  width: 100%;
  margin: 0 auto 0 -38%;
}
.page--home .section--video li {
  width: 600px;
  margin-right: 40px;
  filter: grayscale(100);
  opacity: 0.3;
  transition: 0.3s;
  pointer-events: none;
}
.page--home .section--video li figure {
  margin-bottom: 15px;
}
.page--home .section--video li .tit {
  font-weight: bold;
  font-size: 18px;
}
.page--home .section--video .slick-current {
  opacity: 1;
  pointer-events: auto;
}
.page--home .section--video .slick-slider {
  position: static;
  background: #fff;
}
.page--home .section--video .slick-list {
  overflow: visible;
  position: relative;
  left: -10px;
  top: -10px;
}
.page--home .section--video .slick-disabled {
  opacity: 0.3;
}
.page--home .section--video .slick-arrow {
  display: inline-block;
  height: 20px;
  position: absolute;
  top: 33vw;
  left: 11.5%;
  cursor: pointer;
}
.page--home .section--video .slick-arrow.arrow--next {
  margin-left: 145px;
}
.page--home .section--video .slick-arrow.arrow--next:hover::after {
  transform: translate3d(12px, 0, 0);
}
.page--home .section--video .slick-arrow.arrow--next::after {
  transition: 0.3s ease;
  left: 85px;
}
.page--home .section--video .slick-arrow.arrow--prev:hover::after {
  transform: translate3d(-12px, 0, 0);
}
.page--home .section--video .slick-arrow.arrow--prev::after {
  transition: 0.3s ease;
}
.page--home .section--video .slick-arrow::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: #000000;
  position: relative;
  top: 10px;
}
.page--home .section--video .slick-arrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 6px;
  position: absolute;
  top: 7px;
  left: 25px;
}
.page--home .section--video .slick-counter {
  width: 6vw;
  height: 6vw;
  position: absolute;
  font-family: alternate-gothic-condensed-a;
  font-weight: 600;
  color: #fff;
  mix-blend-mode: difference;
  top: 22.5vw;
  left: 53.8vw;
}
.page--home .section--video .slick-counter .current {
  position: absolute;
  font-size: 4vw;
  line-height: 0;
  top: 1vw;
  left: 0;
}
.page--home .section--video .slick-counter .current::after {
  content: '';
  display: block;
  width: 8vw;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 1.6vw;
  left: -0.5vw;
}
.page--home .section--video .slick-counter .total {
  display: block;
  position: absolute;
  bottom: 0.5vw;
  left: 3.2vw;
  font-size: 2.5vw;
  line-height: 1;
}
.page--home .section--latest {
  position: relative;
  padding-bottom: 15vw;
  background: #fff;
  z-index: 6;
}
.page--home .section--latest .block--title {
  position: relative;
  left: 25%;
  z-index: 10;
}
.page--home .section--latest .block--title .block-tit {
  width: 75vw;
  height: 10vw;
  background-image: url(/static/blueencount/cmn/home_latest.svg);
}
.page--home .section--latest .block--title .list__more {
  font-size: 20px;
  top: 4.5vw;
}
.page--home .section--latest .block--jacket {
  position: relative;
}
.page--home .section--latest .block--contents {
  width: 48%;
  position: relative;
  background: #fff;
  top: -30px;
  left: 37%;
}
.page--home .section--latest .block--contents .block--contents__title {
  background: #fff;
}
.page--home .section--latest .block--contents .block--contents__title .tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4.2vw;
  color: #000000;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.2;
  text-shadow: 2px -1px 0 #fff;
  word-break: break-all;
  position: relative;
  top: -40px;
  left: -6%;
  z-index: 10;
}
.page--home .section--latest .block--contents .block--contents__title .tit span {
  display: block;
  line-height: 1;
  font-size: 2vw;
  margin-bottom: 0;
  position: relative;
  left: 1px;
}
.page--home .section--latest .block--contents .block--contents__title .date {
  text-align: left;
  position: relative;
  left: -5.5%;
  font-size: 1.8vw;
  top: -3.3vw;
}
.page--home .section--latest .block--contents .block--contents__comment {
  width: 100%;
  position: relative;
  left: -6%;
  font-size: 13px;
  line-height: 1.8;
}
.page--home .section--latest .list__more {
  margin: 40px auto 0 0;
  left: -6%;
}
.page--home .section--bnr__footer {
  padding-bottom: 50px;
}
.page--home .section--bnr__footer .list--bnr {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.page--home .section--bnr__footer li {
  display: inline-block;
  width: calc((100% - 44px) / 4 );
}
.page--home .section--bnr__footer li:not(:last-child) {
  margin-right: 10px;
  margin-bottom: 25px;
}
.page--home .section--bnr__footer li a {
  display: block;
  line-height: 0;
  position: relative;
  border: 1px solid #ccc;
}
.page--home .section--bnr__footer li a p {
  display: none !important;
}
.page--home .section {
  position: relative;
}
.page--home .section.inview {
  transition: 0.5s cubic-bezier(0.18, 0.02, 0.36, 0.99);
  transform: translate3d(0, 120px, 0);
}
.page--home .section.view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.page--home .section--video .block--title.inview {
  transition: 0.6s cubic-bezier(0.18, 0.02, 0.36, 0.99);
  transform: translate3d(0, 120px, 0) rotate(90deg);
}
.page--home .section--video .block--title.view.inview,
.page--home .section--latest .block--title.inview.view {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(90deg);
}
.page--home .section--video .block--video.inview {
  transition: 0.8s cubic-bezier(0.18, 0.02, 0.36, 0.99) 0.3s;
  transform: translate3d(0, 200px, 0);
}
.page--home .section--latest .block--title.inview {
  transition: 0.6s cubic-bezier(0.18, 0.02, 0.36, 0.99);
  transform: translate3d(0, 120px, 0) rotate(90deg);
}
.page--home .section--latest .block--jacket.inview {
  transition: 0.8s cubic-bezier(0.18, 0.02, 0.36, 0.99) 0.4s;
  transform: translate3d(0, 200px, 0);
}
.page--home .block--contents__title.inview,
.page--home .block--contents__comment.inview {
  transition: 0.8s cubic-bezier(0.18, 0.02, 0.36, 0.99);
  transform: translate3d(0, 80px, 0);
}
.page--home .section--video .block--video.view.inview,
.page--home .section--latest .block--jacket.inview.view,
.page--home .block--contents__title.inview.view,
.page--home .block--contents__comment.inview.view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.list__more,
.detail__btn,
.loader {
  width: 4em;
  font-family: alternate-gothic-condensed-a;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  cursor: pointer;
}
.list__more::before,
.detail__btn::before,
.loader::before {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background: #000000;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  transform-origin: left;
  transition: 0.3s;
}
.list__more:hover::before,
.detail__btn:hover::before,
.loader:hover::before {
  transform: scaleX(1.5) skewX(-30deg);
}
#next {
  text-align: center;
}
#next .list__more {
  margin: 40px auto 0;
  transition: 0.1s;
}
.loader {
  width: 100%;
  opacity: 0;
}
.loader::before {
  width: 100%;
  transform: scaleX(0);
  z-index: 1;
  transition: transform 0.4s;
  transform-origin: right;
}
.nowload .list__more {
  opacity: 0;
}
.nowload .loader {
  opacity: 1;
}
.nowload .loader::before {
  transform: scaleX(1);
  transform-origin: left;
}
.detail__btn {
  font-size: 17px;
  width: 1.8em;
  margin: 80px auto 0;
}
.detail__btn a::after {
  content: 'BACK';
  font-family: alternate-gothic-condensed-a;
}
.detail__btn::before {
  width: 70%;
}
/*  4.3 information
------------------------------ */
.page--info .block--share {
  margin: 0 0 40px;
}
.page--info .block--share li {
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: middle;
  font-size: 18px;
  color: #999;
}
.page--info .block--share .lineIco {
  display: none;
}
.page--info .block--share .share {
  font-family: alternate-gothic-condensed-a;
  font-size: 15px;
  font-weight: 600;
  vertical-align: -2px;
}
.page--info .block--share .ico {
  font-size: 22px;
}
.page--info .block--share .ico svg {
  fill: #999;
}
.page--info .block--share a {
  color: #999;
}
.page--info .block--share a:hover {
  color: #000000;
}
.section--detail .tit,
.page--questionnaire header + section .tit {
  color: inherit;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 5px;
  font-weight: bold;
}
.section--detail .event-date span,
.page--questionnaire header + section .event-date span {
  display: inline-block;
  margin-left: 5px;
  vertical-align: 4px;
  width: 19px;
  height: 19px;
  line-height: 18px;
  font-size: 10px;
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}
.section--detail .date,
.page--questionnaire header + section .date {
  margin: 0 0 25px;
  font-size: 18px;
}
.section--detail .category,
.page--questionnaire header + section .category {
  font-size: 12px;
  font-family: alternate-gothic-condensed-a;
  font-weight: 600;
}
.section--detail .category a,
.page--questionnaire header + section .category a {
  color: #f2ff21;
}
.section--detail .category a:hover,
.page--questionnaire header + section .category a:hover {
  text-decoration: underline;
}
.section--detail .txt,
.page--questionnaire header + section .txt {
  margin: 0 0 20px;
  line-height: 2em;
}
.section--detail .txt a,
.page--questionnaire header + section .txt a {
  text-decoration: underline;
  color: #000000;
}
.section--detail .txt a:hover,
.page--questionnaire header + section .txt a:hover {
  opacity: 0.5;
}
.youtube {
  position: relative;
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%!important;
  height: 100%!important;
}
/*  biography
------------------------------ */
.biography .ph {
  margin: 0 0 20px;
}
.biography .band {
  margin: 0 0 20px;
  color: inherit;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  font-family: alternate-gothic-condensed-a;
}
.biography .band span {
  display: block;
  font-size: 14px;
}
.biography .band + .txt--basic {
  text-align: center;
  font-family: alternate-gothic-condensed-a;
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 0.5em;
}
/*  discograpy
------------------------------ */
.page--disco .block--category {
  top: 243px;
  left: 370px;
}
.page--disco .block--modal {
  display: none !important;
}
.block--category li a {
  text-transform: uppercase;
}
.block--category li a::before {
  background: #f2ff21;
}
.list--discography a {
  display: block;
  color: inherit;
  position: relative;
}
.list--discography .tit {
  margin: 0 0 20px;
  font-weight: bold;
}
.list--discography .text {
  margin: 0 0 20px;
}
.list--discography .date {
  font-size: 18px;
  position: relative;
}
.list--discography .date span {
  position: absolute;
  right: 0;
}
.list--discography .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--discography .category {
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  vertical-align: top;
  padding: 0 3px;
}
.list--discography::after {
  display: table;
  content: "";
  clear: both;
}
.list--discography li {
  width: calc(92% / 4);
  background: #fff;
  margin-bottom: 10px;
}
.list--discography li a {
  display: block;
  position: relative;
}
.list--discography li a::before {
  content: '';
  display: block;
  width: 100%;
  min-height: 100%;
  background: #000000;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}
.list--discography li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.list--discography li:not(:nth-of-type(4)) {
  margin-right: 2%;
}
.list--discography li .block--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 5%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 100;
  transform: translate3d(-20px, 0, 0);
}
.list--discography li:hover .block--text {
  opacity: 1;
  transition: 0.3s 0.2s;
  transform: translate3d(0, 0, 0);
}
.list--discography li .block--text .date,
.list--discography li .block--text .category,
.list--discography li .block--text .tit {
  display: block;
}
.list--discography li .block--text .tit {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.list--discography li .block--text .tit span {
  display: block;
  font-size: 0.6em;
  margin: 3px auto 2px;
}
.list--discography li .date::after {
  content: 'RELEASE';
  display: inline-block;
  font-weight: normal;
  padding-left: 5px;
}
.list--discography li .thumb img {
  background-position: center;
}
.list--discography li figure {
  margin-bottom: 0;
}
.page--disco .section--list {
  width: 70%;
}
.page--disco .section--detail .category {
  text-align: left;
  font-size: 16px;
}
.page--disco .section--detail .block--jacket {
  width: 45%;
  float: left;
}
.page--disco .section--detail .block--jacket li {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--jacket .thumb {
  line-height: 0;
  position: relative;
}
.page--disco .section--detail .block--jacket .thumb::after {
  content: '';
  display: block;
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page--disco .section--detail .block--jacket figcaption {
  font-size: 11px;
  margin-top: 15px;
}
.page--disco .section--detail .block--detail {
  padding-left: 50%;
}
.page--disco .section--detail .block--detail .tit {
  font-size: 32px;
  margin-bottom: 5PX;
}
.page--disco .section--detail .block--detail .tit span {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin: 8px 0 -4px;
}
.page--disco .section--detail .block--detail .date::after {
  content: 'RELEASE';
  display: inline-block;
  font-weight: normal;
  padding-left: 5px;
}
.page--disco .section--detail .block--detail .block--comment {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--detail .block--comment a {
  color: #000000;
}
.page--disco .section--detail .block--detail .block--comment a:hover {
  text-decoration: underline;
}
.block--track .title {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: bold;
  border: 1px solid;
  padding: 2px 8px;
  line-height: 1em;
}
.block--track .list--track {
  margin: 0 0 20px;
}
.block--track .list--track .num {
  margin-right: 5px;
}
.block--track .list--track li {
  list-style: none;
}
.block--track .list--track a {
  pointer-events: none;
  cursor: default;
}
/* 4.0 page
============================== */
/* 4.1 parts
------------------------------ */
.page--info.category1 .section-tit {
  width: 145px;
  background-image: url(/static/blueencount/cmn/tit_news.svg);
}
.page--info.category2 .section-tit {
  width: 110px;
  background-image: url(/static/blueencount/cmn/tit_live.svg);
}
.page--info.category3 .section-tit {
  width: 166px;
  background-image: url(/static/blueencount/cmn/tit_media.svg);
}
.page--info.category4 .section-tit {
  width: 143px;
  background-image: url(/static/blueencount/cmn/tit_video.svg);
}
.page--disco .section-tit {
  width: 351px;
  background-image: url(/static/blueencount/cmn/tit_discography.svg);
}
.page--bio .section-tit {
  width: 300px;
  background-image: url(/static/blueencount/cmn/tit_biography.svg);
}
.page--schedule .section-tit {
  background-image: url(/static/blueencount/cmn/tit_schedule.svg);
}
/* 4.2 inforamtion
------------------------------ */
.page--info .section--list .list--information {
  border-top: 0.5px solid #eee;
}
.page--info .section--list .list--information li {
  border-bottom: 0.5px solid #eee;
}
.page--info .section--list .list--information li .date {
  display: inline-block;
  width: 70px;
  font-size: 18px;
  vertical-align: top;
  margin-right: 20px;
  margin-top: 2px;
}
.page--info .section--list .list--information li .tit {
  display: inline-block;
  width: calc(100% - 95px);
  transition: 0.2s;
}
.page--info .section--list .list--information li.open .tit {
  font-size: 24px;
  margin-top: -8px;
}
.page--info .section--list .list--information li.open.new .tit::after {
  height: 10px;
  font-size: 23px;
  top: 3px;
}
.page--info .section--list .list--information li.open dt::before {
  display: none;
}
.page--info .section--list .list--information li.open dt .date,
.page--info .section--list .list--information li.open dt .tit,
.page--info .section--list .list--information li.open dt .category {
  color: inherit;
}
.page--info .section--list .list--information dt {
  padding-top: 25px;
  cursor: pointer;
  position: relative;
}
.page--info .section--list .list--information dt p {
  position: relative;
  z-index: 1;
}
.page--info .section--list .list--information dt::before {
  content: '';
  display: block;
  width: calc(100% + 20px);
  height: 100%;
  background: #000000;
  position: absolute;
  left: -10px;
  top: 0;
  transform: scaleX(0);
  z-index: 1;
  transition: 0.3s;
  transform-origin: left;
}
.page--info .section--list .list--information dt:hover .date,
.page--info .section--list .list--information dt:hover .tit,
.page--info .section--list .list--information dt:hover .category {
  color: #fff;
  transition: 0.3s;
}
.page--info .section--list .list--information dt:hover::before {
  transform: scaleX(1);
}
.page--info .section--list .list--information dt .tit {
  margin-bottom: 25px;
}
.page--info .section--list .list--information .new dt:hover .tit span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #555 0%) repeat scroll 0 0;
}
.page--info .section--list .list--information .new.open dt:hover .tit span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #f2ff21 0%) repeat scroll 0 0;
}
.page--info .section--list .list--information dd {
  display: none;
  padding-left: 92px;
  line-height: 1.8;
}
.page--info .section--list .list--information .category {
  margin-right: 20px;
  vertical-align: 2px;
}
/* MEDIA */
.page--info.category3 .block--category {
  top: 246px;
  left: 200px;
}
.page--info.category3 .section--list .list--information .tit {
  width: calc(100% - 190px);
}
.page--info.category3 .section--list .list--information dd {
  padding-left: 174px;
}
.page--info.category3 .section--list .list--information dd .text a {
  text-decoration: underline;
  transition: 0.3s;
}
.page--info.category3 .section--list .list--information dd .text a:hover {
  text-decoration: none;
}
.page--info.category3 .section--list .list--information .category {
  margin-right: 20px;
  vertical-align: 2px;
  width: 57px;
  vertical-align: top;
}
.block--archive {
  display: none;
  border-top: 2px solid #000;
  margin-top: 80px;
  padding-top: 80px;
}
.block--archive .block-tit {
  background-image: url(/static/blueencount/cmn/tit_archive.svg);
  width: 130px;
  height: 33px;
  margin-bottom: 40px;
}
/* LIVE */
.page--info.category2 .block--category {
  top: 246px;
  left: 126px;
}
.block--select {
  margin-left: 5px;
}
.block--select select {
  cursor: pointer;
  -webkit-appearance: none;
  display: inline-block;
  font-family: alternate-gothic-condensed-a, sans-serif;
  font-weight: 600;
  font-size: 20px;
  background: none;
  border: none;
  margin-right: 9px;
  position: relative;
}
.block--select select option {
  -webkit-appearance: none;
  line-height: 2;
  vertical-align: middle;
}
/* VIDEO */
.page--info.category4 .section--list {
  width: 70%;
}
/* 4.3 biography
------------------------------ */
.page--bio .section--detail {
  width: 60%;
}
.page--bio figure {
  margin-bottom: 30px;
}
.page--bio .band {
  font-size: 40px;
  letter-spacing: 0;
}
.page--bio .list--member {
  width: 170px;
  margin: 0 auto 40px;
}
.page--bio .list--member::after {
  display: table;
  content: "";
  clear: both;
}
.page--bio .list--member dt {
  width: 150px;
  float: left;
}
.page--bio .list--member dd {
  padding-left: 150px;
  padding-bottom: 10px;
  width: 250px;
}
.page--bio .list--member dd a {
  display: inline-block;
  margin-right: 15px;
  transition: color 0.3s;
  position: relative;
}
.page--bio .list--member dd a::before {
  content: '';
  display: block;
  width: 110%;
  height: 11px;
  background: #f2ff21;
  position: absolute;
  top: 50%;
  left: -5%;
  margin-top: -1.5px;
  transition: transform 0.3s;
  transform: scaleX(0);
  transform-origin: right;
}
.page--bio .list--member dd a i {
  display: block;
  position: relative;
  z-index: 1;
}
.page--bio .list--member dd a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
/* 4.4 questionnaire
------------------------------ */
.page--questionnaire header + section {
  width: 50%;
  max-width: 800px;
}
.page--questionnaire header + section .section-tit {
  text-indent: 0;
  font-size: 32px;
}
.page--questionnaire header + section .form--post {
  margin-bottom: 100px;
}
.icon--required {
  display: inline-block;
}
.icon--required::before {
  content: '必須';
  background: #f72a2a;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  line-height: 0;
  vertical-align: 2px;
  padding: 0px 6px 3px;
  margin-left: 5px;
}
/* 5.1 IE
------------------------------ */
_:-ms-lang(x)::-ms-backdrop,
.page--home .section--video .slick-counter .total {
  color: #000;
  text-shadow: 1px 1px 0 #fff;
  z-index: 2;
}
_:-ms-lang(x)::backdrop,
.page--home .section--video .slick-counter .total {
  color: #000;
  text-shadow: 1px 1px 0 #fff;
  z-index: 2;
}
_:-ms-lang(x)::-ms-backdrop,
.page--home .section--video .slick-counter .current::after {
  z-index: 1;
}
_:-ms-lang(x)::-ms-backdrop,
.page--home .section--video .slick-counter .current::after {
  box-shadow: 1px 1px 0 #000;
}
_:-ms-lang(x)::backdrop,
.page--home .section--video .slick-counter .current::after {
  box-shadow: 1px 1px 0 #000;
}
_:-ms-lang(x)::-ms-backdrop,
.block--g-nav__fc ul {
  width: 500px;
  margin-left: 40px;
}
_:-ms-lang(x)::-ms-backdrop,
.block--g-nav__fc .g-nav-tit {
  width: 200px;
}
