@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 discography
	4.5 wallpapersupport
	4.6 movie
	4.7 qa
	4.8 bbs
	4.9 faq
	4.10 support
-------------------------------------------- */
.fa-facebook::before {
  content: "\f39e";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
.fa-youtube-play::before {
  content: "\f167";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
.fa-list-ul::before {
  content: "\f0ca";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
/* 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,
embed,
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 {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
::selection {
  background: #fff;
  color: #000;
}
::-moz-selection {
  background: #fff;
  color: #000;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
.btn {
  text-align: center;
  margin: 0.5em 0;
}
.btn--main {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  background: #fff;
  color: #000;
  border: 1px solid;
}
.btn--main:hover {
  color: #fff;
  background: #000;
}
.btn--sub {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 1px solid;
}
.btn--sub:hover {
  background: #fff;
  color: #000;
}
.detail__btn {
  clear: both;
  margin: 50px 0 0;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
}
.detail__btn svg {
  position: relative;
  left: 0;
  top: 2px;
  fill: #9e9e9e;
  width: 15px;
  height: 16px;
  margin-right: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.detail__btn a:hover {
  color: #fff;
}
.detail__btn a:hover svg {
  left: -10px;
  fill: #fff;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
/* 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;
  font-weight: 300;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  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;
  font-weight: 300;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  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__select {
  display: inline-block;
  position: relative;
}
.form__select select {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #999;
  padding: 0.5em;
  padding-right: 1.5em;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__select option {
  color: #000;
}
.form__select::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #999;
  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;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-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 #000;
  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: #fff;
  border-color: #fff;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-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: #fff;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-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: #fff;
  border-color: #fff;
}
.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;
}
/* 2.3 list
------------------------------ */
/*  information */
.list--information.vertical li {
  margin: 0 0 20px;
}
.list--information.vertical a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.list--information.vertical .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.list--information.vertical .date {
  position: relative;
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.list--information.vertical .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--information.vertical .category {
  display: inline-block;
  /*opacity: 0.5;*/
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.list--information.vertical .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--information.vertical .thumb img {
  width: 100%;
}
.list--information.vertical li {
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.list--information.vertical li.no-data {
  padding: 50px 0;
  text-align: center;
  border: none !important;
}
.list--information.vertical li a {
  display: flex;
  align-items: center;
  padding: 50px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.list--information.vertical li a::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  z-index: 2;
  content: '';
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  mix-blend-mode: difference;
}
.list--information.vertical li a:hover::before {
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: left;
}
.list--information.vertical li .date {
  width: 12%;
}
.list--information.vertical li .date .post {
  min-width: 115px;
  display: inline-block;
}
.list--information.vertical li .tit {
  line-height: 1;
  margin-left: 30px;
  font-weight: 500;
  line-height: 1.5;
}
.list--information.vertical li .category {
  min-width: 10%;
  color: #9c7451;
  font-size: 15px;
  font-weight: 600;
  margin-left: 20px;
}
.list--information.vertical li.new .tit::after {
  content: 'NEW';
  color: #e74b3d;
  font-size: 14px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  margin: 0 0 0 10px;
}
.list--information.vertical .new .date::after {
  position: absolute;
  left: -45px;
  top: 7px;
  margin: 0;
}
.charity .list--information.vertical .tit {
  padding-left: 140px;
}
.news .list--information.vertical .tit,
.media .list--information.vertical .tit {
  padding-left: 250px;
}
.list--information.horizontal li {
  margin: 0 0 20px;
}
.list--information.horizontal a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.list--information.horizontal .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.list--information.horizontal .date {
  position: relative;
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.list--information.horizontal .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--information.horizontal .category {
  display: inline-block;
  /*opacity: 0.5;*/
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.list--information.horizontal .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--information.horizontal .thumb img {
  width: 100%;
}
.list--information.horizontal li {
  position: relative;
  width: 32%;
  float: left;
  margin: 0 2% 20px 0;
  background: #151515;
  /*
		a:hover{
			color:#fff;
			.thumb{ opacity: 0.3}
			.date{ color:#fff;}
			.block--data{ opacity: 1;top:50%;}
		}
		&::before,
		&::after,
		a::before,
		a::after {
		  position: absolute;
		  z-index: 2;
		  content: '';
			background: #fff;
			-webkit-transition:all 0.1s;
			transition:all 0.1s;
		}
		&::before,
		&::after{
		width: 0%;
		  height: 3px;
		}
		a::before,
		a::after {
		width: 3px;
		  height: 0%;		
		}
		a::before {
		  top: 0px;
		  left: 0px;
			transition-delay:0.3s;
		}
		&::after {
		  bottom: 0px;
		  left: 0px;
			transition-delay:0.2s;
		}
		a::after {
		  bottom: 0px;
		  right: 0px;
			transition-delay:0.1s;
		}
		&::before {
		  top: 0px;
		  right: 0px;
			transition-delay:0s;
		}
		&:hover a::before{
			height: 100%;
			transition-delay:0s;
		}
		&:hover::after{
			width: 100%;
			transition-delay:0.1s;
		}
		&:hover a::after{
			height: 100%;
			transition-delay:0.2s;
		}
		&:hover::before{
			width: 100%;
			transition-delay:0.3s;
		}*/
}
.list--information.horizontal li .date {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--information.horizontal li a {
  min-height: 180px;
  padding: 25px;
}
.list--information.horizontal li:nth-child(3n) {
  margin-right: 0;
}
.list--information.horizontal li:nth-child(3n+1) {
  clear: left;
}
.list--information.horizontal .date {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: #5c5c5c;
}
.list--information.horizontal .category {
  position: absolute;
  bottom: 20px;
  right: 25px;
}
.list--contents li {
  margin: 0 0 20px;
}
.list--contents a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.list--contents .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.list--contents .date {
  position: relative;
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.list--contents .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.list--contents .category {
  display: inline-block;
  /*opacity: 0.5;*/
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.list--contents .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list--contents .thumb img {
  width: 100%;
}
.list--decimal {
  list-style-type: decimal;
  padding-left: 1.5em;
}
/* menu */
.list--menu {
  border: 0.5px solid rgba(150, 150, 150, 0.5);
  border-left: none;
  border-right: none;
  padding: 0 0 0 5%;
  margin: 0 -5.5% 30px -5.5%;
}
.list--menu li {
  padding-right: 5%;
  position: relative;
}
.list--menu li:not(:last-child) {
  border-bottom: 0.5px solid rgba(150, 150, 150, 0.5);
}
.list--menu span {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  padding: 1em 0;
  position: relative;
}
.list--menu a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  padding: 1em 0;
  position: relative;
  padding-right: 2em;
}
.list--menu a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #999;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.25em;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.list--menu label {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  padding: 1em 0;
  position: relative;
  padding-right: 50px;
}
.list--menu .menu__status {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  line-height: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 0.5;
}
.list__more {
  margin: 45px 0 0;
  text-align: center;
}
.list__more a {
  color: #000;
  border-bottom: #000 solid 1px;
  padding-bottom: 2px;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  /*svg{ 
			position: relative;
			right: 0;
			fill:#9e9e9e;
			width: 15px;
			height: 16px;
			margin: 0 0 0 10px;
			-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
			-webkit-transition: all 0.3s ease;
			transition: all 0.3s ease;
		}*/
}
.list__more a:hover {
  color: #aaa;
}
.list__more a:hover svg {
  right: -10px;
  fill: #fff;
}
.titleSetlist {
  position: relative;
  margin: 40px 0 20px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}
.titleSetlist::after {
  position: absolute;
  content: '\f078';
  font-family: 'FontAwesome';
  right: 15px;
  top: 50%;
  line-height: 0;
}
.setlistBox {
  display: none;
}
.buttonClose {
  margin: 40px 0 0;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
}
.buttonClose:hover {
  color: #fff;
}
.buttonClose::after {
  content: '\f077';
  margin-left: 10px;
  font-family: 'FontAwesome';
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  position: relative;
  padding: 30px 0 0;
  text-align: center;
}
.block--pager li {
  display: inline-block;
  min-width: 25px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  line-height: 30px;
}
.block--pager li a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  opacity: 1;
}
.block--pager li a:hover {
  color: #9c7451;
}
.block--pager .pager__item--current {
  font-weight: 700;
  color: #9c7451;
}
.block--pager .pager__item--current a {
  opacity: 1;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  /*display: none;*/
  position: absolute;
  top: 50%;
}
.block--pager .pager__item--newer svg,
.block--pager .pager__item--older svg {
  fill: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--older a {
  display: block;
  width: 20px;
  height: 8px;
  background: url(/static/bucktick/fanclub/arrow_right.png) no-repeat 50% 50%;
  background-size: contain;
  opacity: 1;
}
.block--pager .pager__item--newer a:hover svg,
.block--pager .pager__item--older a:hover svg {
  fill: #fff;
}
.block--pager .pager__item--newer a {
  background-image: url(/static/bucktick/fanclub/arrow_left.png);
}
.block--pager .pager__item--newer {
  left: 5%;
}
.block--pager .pager__item--newer svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.block--pager .pager__item--older {
  right: 5%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
@font-face {
  font-family: 'higuchi-no-hi';
  src: url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.eot?") format('eot'), url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.woff2") format('woff2'), url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.woff") format('woff'), url("/static/original/common/css/higuchi-webfont/higuchi-no-hi.ttf") format('truetype');
  unicode-range: U+6A0B;
}
@font-face {
  font-family: 'shoku';
  src: url("/static/original/common/css/shoku-webfont/shoku.eot?") format('eot'), url("/static/original/common/css/shoku-webfont/shoku.woff2") format('woff2'), url("/static/original/common/css/shoku-webfont/shoku.woff") format('woff'), url("/static/original/common/css/shoku-webfont/shoku.ttf") format('truetype');
  unicode-range: U+8755;
}
body {
  background-color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'higuchi-no-hi', 'shoku', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
a {
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a,
a::before,
a::after,
input {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
hr {
  margin: 20px 0;
  height: 1px;
  border: none;
  border-top: 1px #999 solid;
}
/* 3.2 共通レイアウト
------------------------------ */
#wrapper {
  position: relative;
  min-height: 100%;
  /*min-width: 1000px;*/
  padding-bottom: 147px;
}
section {
  padding: 150px 0 60px;
}
section .inner {
  width: 80%;
  max-width: 1020px;
  margin: 0 auto;
}
.page--home section {
  position: relative;
  padding: 70px 0;
}
.nav--language {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 13px;
}
.nav--language input {
  display: none;
}
.nav--language li {
  display: inline-block;
}
.nav--language label {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav--language li.current label {
  color: #fff;
  opacity: 1;
}
.nav--language li:first-child::after {
  content: '|';
  margin: 0 5px;
}
.nav--language label:hover {
  color: #fff;
  opacity: 1;
}
/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1em;
  position: relative;
  margin: 0 0 30px;
}
.section-tit {
  font-size: 30px;
  margin: 100px 0 60px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.menu-tit {
  color: inherit;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
}
.center {
  text-align: center;
}
.ph {
  position: relative;
}
.ph img {
  width: 100%;
}
.ph .dummy {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
}
.red {
  color: #c00;
}
/* header
------------------------------ */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  width: 100%;
  height: 120px;
  padding: 30px 40px;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.6s ease;
  transition-delay: 0s;
}
#header .logo {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 390px;
  float: left;
  width: 30%;
  /*&:after{
			content: "";
			max-width: 170px;
			width: 55%;
			padding-top: 52.2988%;
			background-image: url(/static/bucktick/common/logo_35th.png);
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
		}*/
}
#header .logo a {
  display: block;
  line-height: 0;
  max-width: 188px;
  margin-right: 20px;
  width: 55%;
}
#header .g-nav {
  width: 84%;
  display: flex;
  justify-content: right;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  letter-spacing: 0.13em;
  transform: translateY(18px);
  line-height: 1;
  font-size: min(1vw, 16px);
  padding-bottom: 10px;
}
#header .g-nav li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
#header .g-nav li a {
  color: #fff;
}
#header .g-nav li a::after {
  opacity: 0;
  position: absolute;
  bottom: -12px;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
#header .g-nav li a:hover::after {
  opacity: 1;
  bottom: -8px;
}
#header .g-nav li:last-child {
  margin-right: 0;
}
#header .nav--sns {
  position: absolute;
  z-index: 998;
  top: 24px;
  right: 110px;
}
#header .nav--sns li {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}
#header .nav--sns svg {
  fill: #fff;
  width: 16px;
  height: 16px;
  vertical-align: -1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .nav--sns a {
  color: #fff;
}
#header .nav--sns a:hover {
  color: #fff;
}
#header .nav--sns a:hover svg {
  fill: #fff;
}
/*.page--home.header-transparent #header{
	//background: rgba(13, 13, 13, 0.5);
	padding: 50px 40px;
	-webkit-transition-delay:0.6s;
	transition-delay:0.6s;
}*/
.page--home #header .nav__home a::after,
.page--info.news #header .nav__news a::after,
.category-1 #header .nav__news a::after,
#schedule #header .nav__schedule a::after,
.category-3 #header .nav__media a::after,
.category-8 #header .nav__live a::after,
.page--info.media #header .nav__media a::after,
.page--info.live #header .nav__live a::after,
.page--disco #header .nav__disco a::after {
  opacity: 1;
  bottom: -8px;
}
.block-lang {
  position: absolute;
  z-index: 998;
  top: 30px;
  right: 40px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.page--home #header {
  top: -120px;
}
/* footer
------------------------------ */
#footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #000;
}
#footer a:hover {
  color: #fff;
}
#footer .inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 35px 0;
}
#footer .block--sub-banner {
  padding: 60px 0;
  overflow: hidden;
}
#footer .block--sub-banner .bnr--list {
  display: flex;
  justify-content: center;
}
#footer .block--sub-banner .bnr--list .tit,
#footer .block--sub-banner .bnr--list .txt {
  display: none;
}
#footer .block--sub-banner .bnr--list li {
  position: relative;
  margin-right: 20px;
}
#footer .block--sub-banner .bnr--list li:last-child {
  margin-right: 0;
}
#footer .block--sub-banner .bnr--list li a {
  display: block;
}
#footer .block--sub-banner .bnr--list li a img {
  height: 75px;
  transition: all 0.3s;
}
#footer .block--sub-banner a:hover img {
  opacity: 0.6;
}
#footer .block--sub-banner .slick-next {
  right: 4%;
}
#footer .block--sub-banner .slick-prev {
  left: 4%;
}
#footer .block--sub-banner .not-slide {
  padding: 0 5%;
}
#footer .block--sub-banner .not-slide li {
  width: 22%;
  margin-right: 4%;
  float: left;
}
#footer .block--sub-banner .not-slide li:last-child {
  margin: 0;
}
#footer .block--sub-banner .slick-slide img {
  width: 94%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .nav--support {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 13px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
#footer .nav--support li {
  display: inline-block;
  margin: 0 5px 0 0;
}
#footer .nav--support li a::after {
  content: '/';
  margin: 0 0 0 5px;
  -webkit-transition: none;
  transition: none;
  color: #fff;
}
#footer .nav--support li:last-child a::after {
  display: none;
}
#footer .nav--support a {
  color: #fff;
}
#footer .nav--support a:hover {
  color: #fff;
}
#footer .footer_lang {
  display: inline-block;
  margin: 0 0 0 25px;
}
#footer .nav--sns {
  display: inline-block;
  margin: 0 0 0 25px;
}
#footer .nav--sns li {
  display: inline-block;
  font-size: 18px;
  margin: 0 0 0 10px;
}
#footer .nav--sns svg {
  fill: #fff;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .nav--sns a:hover svg {
  fill: #fff;
}
#footer .charity {
  position: absolute;
  right: 0;
  top: 37px;
  font-size: 13px;
}
#footer .charity svg {
  fill: #9e9e9e;
  width: 9px;
  height: 10px;
  margin: 0 0 0 5px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#footer .copyright {
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.page--home #footer {
  position: static;
}
.page--home #footer .block--sub-banner {
  padding: 60px 0 90px;
}
.page--home #footer .block--sub-banner .bnr--list li:first-child::after {
  content: "Google Chromeではご覧いただけません。\A Chrome以外のブラウザでご覧ください。";
  white-space: pre-wrap;
  display: block;
  position: absolute;
  font-size: 10px;
  text-align: center;
  line-height: 1.6;
  top: 100%;
  width: 100%;
}
/* 4.2 home
------------------------------ */
.page--home section {
  position: relative;
}
.page--home .section-tit {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  transform: rotate(90deg);
  transform-origin: left bottom;
  position: absolute;
  left: 30px;
  top: -50px;
  z-index: 1;
}
.page--home #wrapper {
  padding-top: 120px;
  padding-bottom: 0;
}
.page--home #contents {
  background: #000;
}
.page--home .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999;
  overflow: hidden;
}
.page--home .loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
  opacity: 0.5;
}
.page--home .keyvisual {
  position: relative;
  height: calc(100vh - 120px);
  background-size: contain;
  background-position: center center !important;
  background-repeat: no-repeat;
  /* background-attachment: fixed; 
		width: calc(100vw - 80px);*/
  /*padding-top: 64.403%;*/
  margin-inline: auto;
  margin-bottom: 40px;
  overflow: hidden;
}
.page--home .keyvisual .scroll {
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: -60px;
  left: 0;
  padding: 20px 0;
  text-align: center;
  transition: all 0.6s ease;
  transition-delay: 0.6s;
  opacity: 0;
}
.page--home .keyvisual .scroll .arrow {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 0px;
  margin-left: -40px;
}
.page--home .keyvisual .scroll .arrow svg {
  fill: #fff;
  width: 15px;
  height: 17px;
  -webkit-animation: scroll 2s ease-out 0s infinite;
  animation: scroll 2s ease-out 0s infinite;
  margin-left: -7px;
  margin-top: 14px;
}
.page--home .keyvisual .scroll .arrow::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 25px;
  left: 0;
  background: #0d0d0d;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.page--home #keyvisual-carousel {
  padding: 0;
}
.page--home #keyvisual-carousel .block--keyvisual-carousel .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.page--home #keyvisual-carousel .block--keyvisual-carousel .swiper-slide {
  width: 100%;
  height: calc(100vh - 120px);
  padding: 0 40px;
}
.page--home #keyvisual-carousel .block--keyvisual-carousel .swiper-slide a img {
  width: 100%;
  height: calc(100vh - 120px);
  background: no-repeat center;
  background-size: contain;
}
.page--home #keyvisual-carousel .block--keyvisual-carousel .swiper-slide a.disabled {
  pointer-events: none;
}
.page--home .section--banner {
  /*padding: 60px 0 25px;*/
  overflow: hidden;
}
.page--home .section--banner .bnr--list {
  display: flex;
  flex-wrap: wrap;
  border-top: #333 solid 1px;
}
.page--home .section--banner .bnr--list li {
  width: calc(100% / 3);
  border-bottom: #333 solid 1px;
}
.page--home .section--banner .bnr--list li a {
  display: block;
  height: 100%;
  padding: 40px 50px;
  color: #fff;
  border-right: #333 solid 1px;
  margin-bottom: -1px;
}
.page--home .section--banner .bnr--list li a img {
  margin-bottom: 10px;
}
.page--home .section--banner .bnr--list li a .tit {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.page--home .section--banner .bnr--list li a .txt {
  font-size: 14px;
}
.page--home .section--banner .bnr--list li:nth-child(3n) a {
  border-right: none;
}
.page--home .section--banner .bnr--list li:nth-child(n+7) {
  display: none;
}
.page--home .section--announce {
  padding: 25px 0;
}
.page--home .section--announce .inner {
  width: 100%;
  max-width: none;
  display: flex;
  gap: 2em;
  padding: 0 50px;
}
.page--home .section--announce .inner a {
  display: inline-block;
  transition: 0.2s;
}
.page--home .section--announce .inner a:hover {
  opacity: 0.7;
}
.page--home .section--news {
  background: #fff;
  color: #000;
}
.page--home .section--news .section-tit {
  color: #000;
}
.page--home .section--media {
  background: #f9f9f9;
  color: #000;
}
.page--home .section--media .section-tit {
  color: #000;
}
.page--home .section--live {
  color: #fff;
}
.page--home .section--live li {
  border-bottom-color: #333;
}
.page--home .section--live li .tit {
  margin: 0 0 15px 0;
}
.page--home .section--live li .date {
  width: auto;
}
.page--home .section--live li .date span {
  margin-right: 20px;
}
.page--home .section--live .list__more a {
  color: #fff;
  border-color: #fff;
}
.page--home .section--video {
  background: #570009;
  padding-bottom: 100px;
  overflow: hidden;
}
.page--home .section--video .list--video.slick-slider {
  margin-top: 50px;
  min-height: 500px;
}
.page--home .section--video .list--video.slick-slider .slick-list {
  padding: 0 calc(50vw - 400px) !important;
}
.page--home .section--video .list--video.slick-slider li {
  width: 800px;
  margin: 0 35px;
  padding-top: 30px;
  transition: all 0.3s;
}
.page--home .section--video .list--video.slick-slider li a {
  display: block;
  overflow: hidden;
}
.page--home .section--video .list--video.slick-slider li a .cover {
  width: 100%;
  height: 360px;
  background-color: #000;
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.page--home .section--video .list--video.slick-slider li a:hover .cover {
  transform: scale(1.1);
}
.page--home .section--video .list--video.slick-slider li a .tit {
  color: #fff;
  padding: 20px 0;
  background: #570009;
  position: relative;
  z-index: 2;
}
.page--home .section--video .list--video.slick-slider li.slick-center {
  padding-top: 0;
}
.page--home .section--video .list--video.slick-slider li.slick-center a .cover {
  height: 450px;
}
.page--home .section--video .list__more a {
  color: #fff;
  border-color: #fff;
}
.page--home .section--fcnews {
  color: #fff;
}
.page--home .section--fcnews .section-tit {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  font-size: 18px;
  text-align: center;
}
.page--home .section--fcnews .section-tit img {
  display: block;
  width: 448px;
  margin-inline: auto;
}
.page--home .section--fcnews li {
  border-bottom-color: #333;
}
.page--home .section--fcnews li .date {
  width: auto;
}
.page--home .section--fcnews li .date span {
  margin-right: 20px;
}
.page--home .section--fcnews .list__more a {
  color: #fff;
  border-color: #fff;
}
.page--home .section--fansite {
  background: #fff;
  color: #000;
}
.page--home .section--fansite .section-tit {
  color: #000;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  font-size: 18px;
  text-align: center;
}
.page--home .section--fansite .section-tit img {
  display: block;
  width: 448px;
  margin-inline: auto;
  margin-top: 20px;
}
.page--home .section--fansite .section-tit span {
  display: block;
  color: #9c7451;
  font-weight: 600;
  margin-top: 20px;
}
.page--home .section--fansite .block--menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.page--home .section--fansite .block--menu ul li {
  width: calc(25% - 12px);
  margin-bottom: 16px;
}
.page--home .section--fansite .block--menu ul li + li {
  margin-left: 16px;
}
.page--home .section--fansite .block--menu ul li:nth-of-type(4n+1) {
  margin-left: 0;
}
.page--home .section--fansite .block--menu ul li a {
  display: block;
  text-align: center;
  padding: 18px 0;
  border: #9c7451 solid 1px;
  color: #000;
  text-decoration: none;
  line-height: 1;
}
.page--home .section--fansite .block--menu ul li a .tit {
  font-size: 18px;
  color: #9c7451;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.page--home .section--fansite .block--menu ul li a .txt {
  font-size: 14px;
}
.page--home .section--fansite .block--txt {
  margin-bottom: 50px;
}
.page--home .section--fansite .block--txt .tit--contents {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}
.page--home .section--fansite .block--txt .list--fansite {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page--home .section--fansite .block--txt .list--fansite li {
  display: block;
  width: calc(50% - 30px);
  border-bottom: #ccc solid 1px;
}
.page--home .section--fansite .block--txt .list--fansite li a {
  display: flex;
  padding: 28px 0;
  position: relative;
}
.page--home .section--fansite .block--txt .list--fansite li a .thumb {
  background: #000;
  margin-right: 20px;
}
.page--home .section--fansite .block--txt .list--fansite li a .thumb img {
  display: block;
  width: 120px;
  height: 100px;
  background-size: contain;
}
.page--home .section--fansite .block--txt .list--fansite li a .detail {
  color: #000;
}
.page--home .section--fansite .block--txt .list--fansite li a .detail .date {
  margin-bottom: 10px;
}
.page--home .section--fansite .block--txt .list--fansite li a .detail .date .category {
  color: #9c7451;
  margin-left: 10px;
}
.page--home .section--fansite .block--txt .list--fansite li a .detail .tit {
  font-weight: 500;
}
.page--home .section--fansite .block--txt .list--fansite li a::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  z-index: 2;
  content: '';
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  mix-blend-mode: difference;
}
.page--home .section--fansite .block--txt .list--fansite li a:hover::before {
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: left;
}
.page--home .section--app {
  background: #f9f9f9;
}
.page--home .section--app .block--txt {
  display: flex;
  justify-content: space-between;
  padding: 36px 46px;
  border: #000 solid 1px;
}
.page--home .section--app .block--txt .txt {
  color: #000;
  text-align: center;
  max-width: 500px;
  width: calc(100% - 400px);
}
.page--home .section--app .block--txt .txt .tit {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: "neue-haas-grotesk-display", sans-serif;
  line-height: 1;
  letter-spacing: 0.06em;
  padding-top: 50px;
}
.page--home .section--app .block--txt .txt p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.page--home .section--app .block--txt .txt .btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
}
.page--home .section--app .block--txt .txt .btn a {
  width: calc(50% - 15px);
}
.page--home .section--app .block--txt .txt .btn img {
  width: 100%;
}
.page--home .section--app .block--txt .block--mock {
  display: flex;
  justify-content: space-between;
  width: 364px;
}
.page--home .section--app .block--txt .block--mock img {
  width: 164px;
}
@-webkit-keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 15px;
    opacity: 1;
  }
  100% {
    top: 15px;
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 15px;
    opacity: 1;
  }
  100% {
    top: 15px;
    opacity: 0;
  }
}
/* slick */
.slick-arrow {
  color: #fff;
  font-size: 0;
}
.slick-next {
  width: 160px;
  top: 40%;
  right: 50%;
  z-index: 99;
  transform: translateX(calc(50% + 520px));
  transition: all 0.3s;
}
.slick-next:hover {
  color: #fff;
  opacity: 0.6;
}
.slick-next:focus {
  color: #fff;
}
.slick-next::before {
  content: 'NEXT';
  display: block;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  border-bottom: #fff solid 1px;
  padding-bottom: 5px;
}
.slick-prev {
  width: 160px;
  top: 40%;
  left: 50%;
  z-index: 99;
  transform: translateX(calc(-50% - 520px));
  transition: all 0.3s;
}
.slick-prev:hover {
  color: #fff;
  opacity: 0.6;
}
.slick-prev:focus {
  color: #fff;
}
.slick-prev::before {
  content: 'PREV';
  display: block;
  font-weight: 600;
  font-size: 18px;
  text-align: right;
  border-bottom: #fff solid 1px;
  padding-bottom: 5px;
}
.slick-dots {
  bottom: -25px;
  left: 25%;
  text-align: left;
}
.slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px 0 0;
}
.slick-dots li.slick-active button::before {
  opacity: 1;
}
.slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
}
.slick-dots li button::before {
  content: '';
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.loaded.page--home #header {
  top: 0;
}
.loaded.page--home .keyvisual .scroll {
  bottom: 0;
}
/*  4.3 information
------------------------------ */
.page--info .list--information.vertical {
  border-top: #333 solid 1px;
}
.page--info .list--information.vertical li {
  color: #fff;
  border-bottom-color: #333;
}
.page--info .list--information.vertical li .inner {
  display: flex;
  align-items: center;
  max-width: 1020px;
  margin-inline: auto;
  position: relative;
}
.page--info .list--information.vertical li .inner .tit {
  line-height: 1.8;
  padding-left: 0;
  padding-right: 40px;
}
.page--info .list--information.vertical li.new .inner {
  padding-right: 35px;
}
.page--info .list--information.video {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  border-left: #333 solid 1px;
  border-top: #333 solid 1px;
}
.page--info .list--information.video li {
  background: none;
  width: calc(100% / 3);
  float: none;
  margin-right: 0;
  margin-bottom: 0;
  transition: all 0.3s;
  border-bottom: #333 solid 1px;
}
.page--info .list--information.video li:hover {
  background: #570009;
}
.page--info .list--information.video li a {
  height: 100%;
  min-height: 300px;
  padding: 0;
  display: block;
  border-right: #333 solid 1px;
}
.page--info .list--information.video li a .cover {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page--info .list--information.video li a .tit {
  padding: 20px;
}
.page--info .section--detail {
  padding-top: 260px;
}
.page--info .section--detail .inner {
  width: 60%;
}
.page--info .section--detail .txt {
  margin: 0 0 50px;
  line-height: 2em;
}
.section--detail .tit {
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 50px;
  color: #fff;
}
.section--detail .date {
  margin: 0 0 30px;
  width: 50%;
  opacity: 0.5;
  font-size: 14.5px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: bold;
}
.section--detail .event-date {
  display: block;
  margin: 0 0 10px;
  font-size: 0.8em;
}
.section--detail .txt {
  word-wrap: break-word;
}
.section--detail .txt a {
  text-decoration: underline;
}
.section--detail .txt a:hover {
  text-decoration: none;
  color: #fff;
}
.section--detail .block--share {
  float: right;
  margin: -8px 0 0;
  z-index: 2;
}
.section--detail .block--share li {
  display: inline-block;
  margin: 0 1em 0 0;
  transition: none;
  -webkit-transition: none;
  font-size: 12px;
  color: #626262;
}
.section--detail .block--share li a {
  display: block;
  font-size: 22px;
  color: #fff;
}
.section--detail .block--share li a * {
  -webkit-transition: none;
  transition: none;
}
.section--detail .block--share li svg {
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #fff;
  vertical-align: -1px;
}
.section--detail .block--share li a:hover {
  color: #fff;
  opacity: 1;
}
.section--detail .block--share li a:hover svg {
  fill: #fff;
}
.block--category {
  position: relative;
  margin-bottom: 60px;
}
.block--category .form__select,
.block--category ul {
  text-align: center;
}
.block--category li {
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.block--category li a,
.block--category li p {
  display: block;
  position: relative;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 8px 10px;
}
.block--category li a:hover,
.block--category li label:hover,
.block--category li.current a,
.block--category li.current label {
  display: inline-block;
  background: #9c7451;
  color: #fff;
}
.block--category .form__select {
  top: -20px;
  width: 150px;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.page--info.live .block--category {
  text-align: right;
  padding-right: 5%;
}
/*  4.4 discography
------------------------------ */
.page--disco .list--discography {
  padding: 0 5%;
  /*li::before,
		li::after,
		a::before,
		a::after {
		  position: absolute;
		  z-index: 2;
		  content: '';
			background: #fff;
			-webkit-transition:all 0.1s;
			transition:all 0.1s;
		}
		li::before,
		li::after{
		width: 0%;
		  height: 3px;
		}
		a::before,
		a::after {
		width: 3px;
		  height: 0%;		
		}
		a::before {
		  top: 0px;
		  left: 0px;
			transition-delay:0.3s;
		}
		li::after {
		  bottom: 0px;
		  left: 0px;
			transition-delay:0.2s;
		}
		a::after {
		  bottom: 0px;
		  right: 0px;
			transition-delay:0.1s;
		}
		li::before {
		  top: 0px;
		  right: 0px;
			transition-delay:0s;
		}
		li:hover a::before{
			height: 100%;
			transition-delay:0s;
		}
		li:hover::after{
			width: 100%;
			transition-delay:0.1s;
		}
		li:hover a::after{
			height: 100%;
			transition-delay:0.2s;
		}
		li:hover::before{
			width: 100%;
			transition-delay:0.3s;
		}*/
}
.page--disco .list--discography li {
  margin: 0 0 20px;
}
.page--disco .list--discography a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.page--disco .list--discography .tit {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.page--disco .list--discography .date {
  position: relative;
  display: inline-block;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.page--disco .list--discography .date--event {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.page--disco .list--discography .category {
  display: inline-block;
  /*opacity: 0.5;*/
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.page--disco .list--discography .thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page--disco .list--discography .thumb img {
  width: 100%;
}
.page--disco .list--discography li {
  position: relative;
  float: left;
  width: calc(92% / 5);
  margin: 0 2% 50px 0;
}
.page--disco .list--discography li:nth-child(5n) {
  margin-right: 0;
}
.page--disco .list--discography a {
  line-height: 0;
}
.page--disco .list--discography .block--data {
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 5%;
  z-index: 2;
  /*text-align: center;*/
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  line-height: 1.4em;
}
.page--disco .list--discography .category {
  opacity: 1;
  color: #9c7451;
  font-size: 12px;
  margin: 0 0 5px;
}
.page--disco .list--discography .tit {
  margin: 0 0 5px;
  line-height: 1.4em;
  font-size: 14px;
}
.page--disco .list--discography .date {
  font-size: 12px;
}
.page--disco .list--discography .thumb {
  overflow: hidden;
  position: relative;
}
.page--disco .list--discography .thumb img {
  background-size: contain;
}
.page--disco .list--discography .thumb .blur {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.page--disco .list--discography .thumb .blur img {
  background-size: cover;
}
.page--disco .list--discography a:hover .thumb {
  opacity: 0.3;
}
.page--disco .list--discography a:hover .block--data {
  opacity: 1;
}
.page--disco .section--detail .jacket {
  width: 35%;
  float: left;
}
.page--disco .section--detail .jacket .list--jacket {
  width: 70%;
  margin: 0 auto;
}
.page--disco .section--detail .jacket .list--jacket li {
  margin: 0 0 25px;
}
.page--disco .section--detail .jacket .list--jacket li .dummy {
  border: 1px solid #222;
}
.page--disco .section--detail .jacket .ph.one {
  width: 70%;
  margin: 0 auto;
}
.page--disco .section--detail .jacket .ph {
  line-height: 0;
  margin: 0 0 10px;
}
.page--disco .section--detail .block--disc-detail {
  padding-left: 40%;
}
.page--disco .section--detail .block--disc-detail .tit {
  margin: 0 0 25px;
}
.page--disco .section--detail .block--disc-detail .category {
  margin-right: 10px;
}
.page--disco .section--detail .block--disc-detail .text {
  margin: 0 0 50px;
  line-height: 2em;
}
.page--disco .section--detail .block--disc-detail .text strong {
  margin-top: 20px;
  display: inline-block;
}
.page--disco .section--detail .block--disc-detail .text a {
  text-decoration: underline;
}
.page--disco .section--detail .block--disc-detail .text a:hover {
  color: #fff;
}
.page--disco .section--detail .block--disc-detail .disc-list li {
  margin: 0 0 25px;
}
.page--disco .section--detail .block--disc-detail .disc-list h2 {
  font-weight: bold;
  margin: 0 0 10px;
}
.page--disco .section--detail .block--disc-detail .disc-list .track-list li {
  margin: 0 0 2px;
}
.page--disco .section--detail .block--disc-detail .disc-list .track-list .num {
  margin-right: 5px;
}
.page--disco .section--detail .block--disc-detail .disc-list .track-list .txt--sub {
  padding-left: 1em;
}
.edge.page--disco .list--discography .thumb .blur,
.ie.page--disco .list--discography .thumb .blur {
  opacity: 0.2;
}
/*  4.5 profile
------------------------------ */
.page--profile .ph.memberAll {
  position: sticky;
  width: 45%;
  left: 8%;
  top: 275px;
  float: left;
  margin: 0 0 20px;
}
.page--profile .block--txt {
  padding-left: 48%;
}
.page--profile .block--txt .lead {
  font-weight: bold;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 2em;
}
.page--profile .block--txt .txt {
  margin: 0 0 15px;
  line-height: 2em;
}
.page--profile .member-profile {
  padding: 40px 0 0 ;
}
.page--profile .member-profile li {
  margin: 0 0 20px;
  background: #151515;
}
.page--profile .member-profile .ph {
  float: left;
  width: 180px;
  margin: 0 20px 0 0;
  line-height: 0;
}
.page--profile .member-profile .name {
  font-weight: bold;
  padding: 20px;
  font-size: 16px;
}
.page--profile .member-profile .txt {
  padding: 0 20px;
  font-size: 13px;
}
.ie .page--profile .ph.memberAll,
.edge .page--profile .ph.memberAll {
  position: fixed;
}
/*  4.10 support
------------------------------ */
.page--support .inner {
  width: 60%;
}
.page--support .txt {
  margin: 0 0 30px;
}
.page--support .list--support dt {
  margin: 0 0 15px;
  padding: 0 0 5px;
  font-weight: bold;
  border-bottom: 1px solid #666;
}
.page--support .list--support dd {
  margin: 0 0 30px;
}
.page--support .list--support dd .txt {
  margin: 0 0 15px;
}
.page--support .list--support dd a {
  text-decoration: underline;
}
.page--support .list--support dd a:hover {
  color: #fff;
}
.page--support .list--support li {
  padding: 15px 0;
  border-bottom: 1px solid #666;
}
.page--support .list--support li:first-child {
  border-top: 1px solid #666;
}
.page--support .list--support li a {
  display: block;
  font-weight: bold;
  font-size: 16px;
}
.page--support .list--support li a:hover {
  color: #fff;
}
.page--support .list--support .list--txt.decimal {
  padding: 10px 0 10px 1em;
}
.page--support .list--support .list--txt.decimal li {
  border: none;
  margin: 0 0 5px;
  padding: 0;
  list-style: decimal;
}
#schedule {
  color: #fff;
}
#schedule .block--category .btn {
  position: absolute;
  right: 0;
  top: 0;
}
#schedule .form__checkbox label input[type="checkbox"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
#schedule .form__checkbox label p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.03em;
  /*color: #636363;*/
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /*padding: 0;*/
}
#schedule .form__checkbox label p::after,
#schedule .form__checkbox label p::before {
  content: none;
}
#schedule .form__checkbox :checked + p,
#schedule .form__checkbox label p:hover {
  background: #9c7451;
  color: #fff;
}
#schedule .calendarHeader {
  display: flex;
  display: webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  margin: 0 0 30px;
}
#schedule .calendarHeader li {
  width: calc((100% / 3) - 0.1%);
}
#schedule .calendarHeader li a {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  top: 9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
}
#schedule .calendarHeader li a svg {
  width: 18px;
  height: 11px;
  padding-left: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  fill: #fff;
}
#schedule .calendarHeader li:nth-child(1) {
  text-align: left;
}
#schedule .calendarHeader li:nth-child(1) svg {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  right: 0;
  left: inherit;
}
#schedule .calendarHeader li:nth-child(1) a {
  right: 0;
  left: inherit;
}
#schedule .calendarHeader li:nth-child(1) a:hover {
  right: 10px;
}
#schedule .calendarHeader li:nth-child(1) a:hover svg {
  right: 5px;
}
#schedule .calendarHeader li:nth-child(2) {
  text-align: center;
}
#schedule .calendarHeader li:nth-child(2) .year {
  display: inlnie-block;
  padding-right: 5px;
}
#schedule .calendarHeader li:nth-child(2) .month {
  font-size: 45px;
  font-weight: 600;
}
#schedule .calendarHeader li:nth-child(2) .month_en {
  display: inlnie-block;
  padding-left: 5px;
}
#schedule .calendarHeader li:nth-child(3) {
  text-align: right;
}
#schedule .calendarHeader li:nth-child(3) a:hover {
  left: 10px;
}
#schedule .calendarHeader li:nth-child(3) a:hover svg {
  left: 5px;
}
#schedule .calendar .weekHeader {
  display: flex;
  display: webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#schedule .calendar .weekHeader div {
  width: calc(100% / 7);
  text-align: center;
  border-bottom: 0.5px solid #fff;
  padding: 0 0 10px;
}
#schedule .calendar .weekHeader div:nth-child(6) {
  color: #3d6fe7;
}
#schedule .calendar .weekHeader div:nth-child(7) {
  color: #e74b3d;
}
#schedule .calendar .calendarBody {
  display: flex;
  display: webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#schedule .calendar .calendarBody .cell {
  min-height: 100px;
  text-align: left;
  padding: 0 5px 5px;
}
#schedule .calendar .calendarBody .week > div:nth-child(1) {
  border-left: 0.5px solid #fff;
}
#schedule .calendar .calendarBody > div {
  width: 100%;
  display: flex;
  display: webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}
#schedule .calendar .calendarBody div > div {
  width: calc(100% / 7);
  text-align: center;
  border-right: 0.5px solid #fff;
  border-bottom: 0.5px solid #fff;
}
#schedule .calendar .calendarBody .cell > div {
  width: 100%;
  border: none;
}
#schedule .calendar .calendarBody .cell > div a {
  display: block;
  text-align: left;
  text-decoration: none;
  font-size: 8px;
  line-height: 140%;
  word-break: break-all;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#schedule .calendar .calendarBody .cell > div a span.cat {
  display: inline-block;
  font-size: 8px;
  padding: 3px 4px 2px;
  line-height: 1;
  margin-bottom: 4px;
  border: solid 1px;
}
#schedule .calendar .calendarBody .cell > div a span.tit {
  font-size: 12px;
  line-height: 140%;
  word-break: break-all;
}
#schedule .list--information.vertical li {
  background: none;
  width: 100%;
  margin: 0;
}
#schedule .list--information.vertical li a {
  display: flex;
  min-height: auto;
  padding: 70px 0;
}
#schedule .list--information.vertical li a .date {
  width: auto;
  margin: 0;
  font-size: 18px;
  opacity: 1;
  text-align: center;
}
#schedule .list--information.vertical li a .date .post .day {
  font-size: 33px;
  font-weight: 600;
}
#schedule .list--information.vertical li a .tit {
  margin: 0;
}
#schedule .list--information.vertical li a .tit .cat {
  border: solid 1px;
  padding: 5px 10pxW;
  line-height: 1;
  margin: 0 0 10px;
  display: inline-block;
  font-size: 70%;
  font-weight: normal;
}
.section--banner_top {
  max-width: 820px;
  width: 100%;
  margin: 40px auto;
}
