/* ---------------------------------------
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 wallpaper
	4.6 movie
	4.7 qa
	4.8 bbs
	4.9 faq
	4.10 support
-------------------------------------------- */
/* 1.1 normalize
------------------------------ */
html,
body {
  -webkit-text-size-adjust: none;
  background: #FF7600;
}
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-size: cover;
  background-position: 50% 50%;
}
::selection {
  background: #151513;
  color: #FF7600;
}
::-moz-selection {
  background: #151513;
  color: #FF7600;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body {
  color: #151513;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
.svg-symbol,
.pc {
  display: none !important;
}
a {
  color: #151513;
}
/* 2.1 button
------------------------------ */
.detail__btn {
  display: block;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
  margin-top: 40px;
  text-align: center;
}
.detail__btn p {
  display: inline-block;
  text-align: right;
}
.detail__btn a {
  display: inline-block;
  width: 80px;
  line-height: 60px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  left: 0;
}
.detail__btn a::before {
  position: absolute;
  left: -30px;
  top: 50%;
  content: '';
  display: inline-block;
  width: 35px;
  height: 1px;
  margin: 0 10px 0 0;
  background: #151513;
  vertical-align: middle;
}
.detail__btn a:hover {
  left: -10px;
}
.detail__btn a:hover:before {
  width: 40px;
  left: -35px;
}
/* 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 #FF7600 inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #F2EFE1;
  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: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #F2EFE1;
  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: none;
  position: relative;
  margin: 0 0 20px;
}
.form__select select {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #F2EFE1;
  padding: 0.5em;
  border-top: 4px solid #151513;
  border-bottom: 4px solid #151513;
  background: #F2EFE1;
  padding: 17px 5%;
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
}
.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::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 4px solid #151513;
  border-top: none;
  border-right: none;
  margin: -7px 0 0;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  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 #FF7600;
  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: #F4D607;
  border-color: #F4D607;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  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: #F4D607;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.02em;
  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: #FF7600;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #F4D607;
  border-color: #F4D607;
}
.form__toggle :checked ~ p::after {
  right: 0;
}
/* 2.3 list
------------------------------ */
#popup,
#popup .closeBg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
#popup {
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
#popup .popupIn {
  z-index: 1100;
}
#popup .close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -50px;
  right: 0;
  cursor: pointer;
}
#popup .close span {
  height: 4px;
  position: absolute;
  background: #F2EFE1;
  top: 20px;
  width: 40px;
}
#popup .close .top {
  position: absolute;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#popup .close .bottom {
  position: absolute;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page--home #popup .popupIn {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page--home #popup .inner {
  padding: 0;
  text-align: center;
  line-height: 0;
  background: 0 0;
}
.page--home #popup .inner .video {
  border-top: 4px solid #151513;
  border-bottom: 4px solid #151513;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.page--home #popup .inner .video iframe {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 110vw;
  overflow: hidden;
}
.page--home #popup.close {
  display: none;
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  text-align: center;
  margin: 25px auto 24px;
  letter-spacing: -0.5em;
  padding: 0 3%;
  width: 100%;
}
.block--pager li {
  display: inline-block !important;
  padding: 0.6em;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
  position: relative;
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0em;
}
.block--pager a,
.block--pager span {
  display: block;
  position: relative;
  height: 20px;
  line-height: 20px;
  color: #151513;
}
.block--pager a {
  text-decoration: none;
}
.block--pager span {
  opacity: 0.1;
}
.block--pager span svg {
  fill: transparent;
  stroke: #151513;
}
.block--pager .pager__item--newer {
  float: left;
  margin-left: 0;
  padding-left: 0;
}
.block--pager .pager__item--older {
  float: right;
  margin-right: 0;
  padding-right: 0;
}
.block--pager .pager__item--current {
  position: relative;
}
.block--pager li svg {
  width: 18px;
  height: 18px;
  fill: #151513;
}
.block--pager .pager__item--top,
.block--pager .pager__item--number {
  text-align: center;
  display: inline-block;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
  display: inline-block;
}
.block--pager .pager__item--current.pc,
.block--pager .pager__item--other.pc {
  display: none!important;
}
/* cmn
------------------------------ */
.wrap {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.header {
  background: #F2EFE1;
  padding: 12px 10px;
  border-top: solid 4px #151513;
  border-bottom: solid 4px #151513;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
}
.header .logo {
  width: 624px;
  line-height: 0;
}
.header .logo a {
  display: inline-block;
  line-height: 0;
}
.header .logo svg {
  width: 274px;
  height: 60px;
}
.header .drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2EFE1;
  border-top: 4px solid #151513;
  border-bottom: 4px solid #151513;
}
.header .drawer .g-nav {
  position: absolute;
  top: 45%;
  left: 40%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.header .drawer .g-nav li {
  margin: 0 0 15px;
}
.header .drawer .g-nav li a {
  text-decoration: none;
  display: inline-block;
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 9vw;
  font-weight: 900;
  letter-spacing: 0em;
  text-align: center;
  line-height: 1;
}
.header .drawer .g-nav li:last-child {
  margin-right: 0;
}
.header .drawer .drawer-icon {
  position: fixed;
  bottom: 0;
  right: -73px;
  z-index: 100;
}
.header .drawer .drawer-icon span {
  display: inline-block;
}
.header .drawer .drawer-icon .baloon {
  width: 123px;
  width: 32.5vw;
  position: absolute;
  left: -60px;
  top: -48px;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}
.header .drawer .drawer-icon .tsukemonokun {
  width: 189px;
  width: 50vw;
}
.header .drawer__btn {
  width: 40px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 3%;
  margin-top: -10px;
}
.header .drawer__btn span {
  display: block;
  width: 100%;
  height: 5px;
  background: #151513;
  position: absolute;
  left: 0;
}
.header .drawer__btn span:first-of-type {
  top: 0;
}
.header .drawer__btn span:last-of-type {
  bottom: 0;
}
.menu-open .header .drawer__btn {
  z-index: 101;
}
.menu-open .header .drawer__btn span:first-of-type {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.menu-open .header .drawer__btn span:last-of-type {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  bottom: 15px;
}
.container {
  padding-top: 88px;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF7600;
  z-index: 1200;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.loading .load-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: -0.02em;
}
.loading .load-icon {
  position: fixed;
  bottom: 60px;
  right: -73px;
  z-index: 100;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.loading .load-icon span {
  display: inline-block;
}
.loading .load-icon .baloon {
  width: 123px;
  position: absolute;
  left: -60px;
  top: -48px;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}
.loading .load-icon .baloon.go {
  display: none;
}
.loading .load-icon .tsukemonokun {
  width: 189px;
  animation: trembling 0.1s infinite;
  -webkit-animation: trembling 0.1s infinite;
}
.loading .load-icon.finish .baloon.go {
  display: block;
  z-index: 20;
}
.loading .load-icon.finish {
  animation: bound 0.5s ease forwards;
  -webkit-animation: bound 0.5s ease forwards;
  position: absolute;
}
.loading .load-icon.finish .tsukemonokun {
  animation: none;
  -webkit-animation: none;
}
#loading {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
}
#loading .bar {
  display: block;
  width: 100%;
  height: 4px;
  background: #F2EFE1;
  position: absolute;
  top: 46vh;
}
#loading .bar span {
  display: block;
  width: 0;
  height: 4px;
  background: #151513;
  position: absolute;
  top: 0;
}
.load-finish .loading {
  height: 0;
  top: -100px;
}
.load-finish #loading .bar {
  display: none;
}
.page-link {
  position: fixed;
  bottom: 60px;
  right: -73px;
  z-index: 109;
  -webkit-transform: translate(150px, 200px) rotate(40deg);
  transform: translate(100px, -30px) rotate(40deg);
}
.page-link span {
  display: inline-block;
}
.page-link .baloon {
  display: none;
  width: 123px;
  position: absolute;
  left: -60px;
  top: -48px;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}
.page-link .tsukemonokun {
  width: 189px;
}
.page-link a {
  display: block;
}
.load-finish .page-link {
  animation: jackInTheBox 0.5s ease 1s forwards;
  -webkit-animation: jackInTheBox 0.5s ease 1s forwardsd;
}
.load-finish .page-link.hide {
  animation: hide-jackInTheBox 0.5s ease 0s forwards;
  -webkit-animation: hide-jackInTheBox 0.5s ease 0s forwards;
}
@keyframes jackInTheBox {
  from {
    -webkit-transform: translate(60%, -30px) rotate(40deg);
    transform: translate(60%, -30px) rotate(40deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes jackInTheBox {
  from {
    -webkit-transform: translate(60%, -30px) rotate(40deg);
    transform: translate(60%, -30px) rotate(40deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes hide-jackInTheBox {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  70% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  to {
    -webkit-transform: translate(60%, -30px) rotate(40deg);
    transform: translate(60%, -30px) rotate(40deg);
  }
}
@keyframes bound {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translateY(10%);
  }
  70% {
    transform: translateY(-60%);
  }
  90% {
    transform: translateY(-20%);
  }
  100% {
    transform: translate(-80%, -150px);
  }
}
@-webkit-keyframes bound {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translateY(10%);
  }
  70% {
    transform: translateY(-60%);
  }
  90% {
    transform: translateY(-20%);
  }
  100% {
    transform: translate(-80%, -150px);
  }
}
@keyframes trembling {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
@-webkit-keyframes trembling {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
.page-link.visible {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
.page-link.visible .baloon.go-top {
  display: none;
}
.page-link.visible .baloon.go-top.visible {
  display: block;
}
/* 下層共通
------------------------------ */
body:not(.page--home) .header,
.page--home.header-fixed .header {
  padding: 5px 10px;
}
body:not(.page--home) .header .logo svg,
.page--home.header-fixed .header .logo svg {
  width: 205px;
  height: 48px;
}
body:not(.page--home).menu-open .header .drawer__btn,
.page--home.header-fixed.menu-open .header .drawer__btn {
  margin-top: 3px;
}
body:not(.page--home) .container {
  padding-top: 66px;
}
body:not(.page--home) .container .inner {
  position: relative;
  padding-bottom: 120px;
}
.page--list .inner {
  padding: 90px 0 85px;
}
.page--detail .inner {
  padding: 30px 0 85px;
}
.section--list .section-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  letter-spacing: -0.03em;
}
.section--list .list--category {
  padding: 40px 5% 0;
  margin: -30px 0 40px;
  text-align: right;
}
.section--list .list--category li {
  display: inline-block;
  margin: 0 10px 0 0;
}
.section--list .list--category li a {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}
.section--list .list--category li a.current {
  color: #F2EFE1;
  pointer-events: none;
}
.section--list .list--category li:last-child {
  margin-right: 0;
}
.section--list .not-info {
  text-align: center;
}
.section--detail {
  padding: 0 5%;
}
.section--detail .section-tit {
  color: #151513;
  font-size: 22px;
  margin: 0 0 15px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.section--detail .block--share {
  margin: 0 0 40px;
  text-align: right;
  float: right;
  position: relative;
  z-index: 10;
}
.section--detail .block--share li {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: #151513;
  border-radius: 50%;
  margin: 0 3px 0 0;
  vertical-align: middle;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
.section--detail .block--share li a {
  color: #FF7600;
  text-decoration: none;
  display: block;
}
.section--detail .block--share li svg {
  width: 14px;
  height: 14px;
  position: relative;
  top: 1px;
  fill: #FF7600;
}
.section--detail .block--share li:first-child {
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #151513;
}
.section--detail .block--share li:last-child {
  margin-right: 0;
}
.section--detail .block--share li.twitter i {
  position: relative;
  left: 1px;
}
.section--detail .date {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 5px;
  line-height: 25px;
}
.section--detail .date .end-time {
  padding: 0 0 0 15px;
  position: relative;
}
.section--detail .date .end-time:before {
  content: "~";
  position: absolute;
  left: -1px;
  font-size: 24px;
  top: 50%;
  margin-top: -14px;
}
.section--detail .ph {
  position: relative;
  line-height: 0;
}
.section--detail .ph img.dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.section--detail .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0em;
}
.section--detail .text {
  font-weight: bold;
}
.section--detail .text a {
  word-break: break-word;
  font-weight: bold;
  color: #F2EFE1;
}
.section--detail .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.section--detail .video iframe,
.section--detail .video object,
.section--detail .video embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* home
------------------------------ */
.page--home .slick * {
  -webkit-transition: none;
  transition: none;
}
.page--home .slick-slider {
  padding-bottom: 28px;
  position: relative;
  margin: 0 0 20px;
}
.page--home .slider {
  width: 100%;
  margin: 0 auto;
}
.page--home .slider .list .slick-slide {
  margin-bottom: 0;
}
.page--home .slick-arrow * {
  transition: none;
}
.page--home .slick-arrow {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #151513;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  z-index: 10;
}
.page--home .slick-arrow svg {
  position: absolute;
  width: 16px;
  height: 14px;
  top: 50%;
  margin-top: -7px;
  fill: #F2EFE1;
}
.page--home .slick-prev {
  left: 1%;
}
.page--home .slick-prev svg {
  left: 10px;
}
.page--home .slick-next {
  right: 1%;
}
.page--home .slick-next svg {
  right: 10px;
}
.page--home .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}
.page--home .slick-dots button {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border: 3px solid #151513;
  border-radius: 10px;
  background: #151513;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
  cursor: pointer;
}
.page--home .slick-dots li {
  display: inline-block;
  margin: 0 10px 0 0 !important;
}
.page--home .slick-dots li:last-child {
  margin-right: 0!important;
}
.page--home .slick-dots .slick-active button,
.page--home .slick-dots button:hover {
  background: #F2EFE1;
}
.page--home .section--banner .list--bnr li a {
  display: block;
}
.page--home .section--banner .list--bnr li a img {
  border-bottom: 4px solid #151513;
}
.page--home .section--banner.single {
  margin: 0 0 90px;
}
.page--home .section--topics {
  border-top: 4px solid #151513;
  position: relative;
  border-bottom: 4px solid #151513;
}
.page--home .section--topics .marquee {
  line-height: 37px;
  background: #F4D607;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #151513;
}
.page--home .section--topics .marquee p {
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 9s;
  animation-iteration-count: infinite;
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  position: relative;
  top: -1px;
}
.page--home .section--topics .list--sns {
  display: inline-block;
  position: absolute;
  top: 0;
  right: -4px;
}
.page--home .section--topics .list--sns li {
  display: inline-block;
  height: 37px;
  background: #F2EFE1;
  border-right: 4px solid #151513;
}
.page--home .section--topics .list--sns li a {
  display: block;
  color: #151513;
  font-size: 17px;
  padding: 11px 10px;
  line-height: 1;
}
.page--home .section--topics .list--sns li span {
  display: block;
  padding: 10px;
  line-height: 1;
}
.page--home .section--topics .list--sns li:first-child {
  border-left: 4px solid #151513;
}
.page--home .section--topics .list--sns li:last-child {
  border-right: none;
}
.page--home .section--topics .list--sns li svg {
  width: 15px;
  height: 15px;
}
.page--home .section--topics .list--sns li.icon-line svg {
  width: 16px;
  height: 14px;
  position: relative;
  top: 1px;
}
.page--home .section--topics .list--sns li.sns svg {
  width: 16px;
  height: 15px;
}
.page--home .section--topics .list--sns [class^="icon-"] {
  display: none;
}
.page--home .section--topics .list--sns.open {
  right: 0;
}
.page--home .section--topics .list--sns.open [class^="icon-"] {
  display: inline-block;
}
.page--home .section--info [class^="block--"] {
  position: relative;
}
.page--home .section--info [class^="block--"] .block-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: -90px;
  left: 0;
  z-index: 10;
  width: 200px;
}
.page--home .section--info [class^="block--"] .more {
  text-align: right;
  padding: 15px 3%;
}
.page--home .section--info [class^="block--"] .more a {
  text-decoration: none;
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page--home .section--info [class^="block--"] [class^="list--"] li .date .week {
  font-size: 16px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -7px;
  left: -10px;
  width: 2.5em;
  text-align: center;
}
.page--home .section--info [class^="block--"] [class^="list--"] li .date .end-time {
  display: inline-block;
  padding-left: 5px;
  position: relative;
}
.page--home .section--info [class^="block--"] [class^="list--"] li .date .end-time:before {
  content: "~";
  position: absolute;
  top: 46%;
  left: -20px;
  line-height: 0;
}
.page--home .section--info [class^="block--"] .more {
  background: #F2EFE1;
  border-bottom: 4px solid #151513;
  position: relative;
}
.page--home .section--info [class^="block--"] .more svg {
  width: 20px;
  height: 16px;
  margin-left: 10px;
}
.page--home .section--info .block--live .list--live,
.page--home .section--info .block--media .list--media {
  padding: 0 5%;
  position: relative;
  z-index: 10;
}
.page--home .section--info .block--live .list--live li,
.page--home .section--info .block--media .list--media li {
  margin: 0 0 46px;
}
.page--home .section--info .block--live .list--live li .date,
.page--home .section--info .block--media .list--media li .date {
  line-height: 1.1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0em;
  margin: 0 0 10px;
}
.page--home .section--info .block--live .list--live li .tit,
.page--home .section--info .block--media .list--media li .tit {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
.page--home .section--info .block--news {
  margin: 0 0 80px;
}
.page--home .section--info .block--news li {
  border-bottom: 4px solid #151513;
}
.page--home .section--info .block--news li a,
.page--home .section--info .block--news li dl {
  background: #F2EFE1;
  display: block;
  text-decoration: none;
  padding: 15px 40px 15px 3%;
  color: #151513;
  position: relative;
}
.page--home .section--info .block--news li a .date,
.page--home .section--info .block--news li dl .date {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.page--home .section--info .block--news li a .tit,
.page--home .section--info .block--news li dl .tit {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.page--home .section--info .block--news li a svg,
.page--home .section--info .block--news li dl svg {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 16px;
  right: 3%;
  margin-top: -8px;
  fill: #151513;
}
.page--home .section--info .block--news li dl {
  padding: 0;
}
.page--home .section--info .block--news li dl dt {
  padding: 15px 3% 15px 3%;
}
.page--home .section--info .block--news li dl dt .close {
  display: none;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 10px;
  right: 3%;
}
.page--home .section--info .block--news li dl dt .close span {
  height: 4px;
  position: absolute;
  background: #151513;
  top: 10px;
  width: 25px;
}
.page--home .section--info .block--news li dl dt .close .top {
  position: absolute;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.page--home .section--info .block--news li dl dt .close .bottom {
  position: absolute;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page--home .section--info .block--news li dl dd {
  padding: 15px 3% 15px 3%;
  display: none;
}
.page--home .section--info .block--news li dl dd .text {
  font-weight: bold;
}
.page--home .section--info .block--news li dl dd .text a {
  word-break: break-word;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
  display: inline;
}
.page--home .section--info .block--news li dl dd .text .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page--home .section--info .block--news li dl dd .text .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--home .section--info .block--news li dl dd .text .ph {
  position: relative;
  line-height: 0;
}
.page--home .section--info .block--news li dl dd .text .ph .dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--home .section--info .block--news li:first-child {
  border-top: 4px solid #151513;
}
.page--home .section--info .block--news li.new .tit:after {
  content: "New!";
  font-family: 'Caveat', cursive;
  color: #FF7600;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  padding-left: 10px;
  line-height: 0;
  position: relative;
  top: 1px;
}
.page--home .section--info .block--news li.open dl dt .close {
  display: block;
}
.page--home .section--info .block--news li.open dl dt .tit {
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1.5;
}
.page--home .section--info .block--live {
  margin: 0 0 130px;
  padding-top: 50px;
  border-top: 4px solid #151513;
}
.page--home .section--info .block--live .block-tit {
  top: -60px;
}
.page--home .section--info .block--live .more {
  border-bottom: 4px solid #151513;
  border-top: 4px solid #151513;
}
.page--home .section--info .block--media {
  margin: 0 0 100px;
  padding-top: 50px;
  border-top: 4px solid #151513;
}
.page--home .section--info .block--media .block-tit {
  top: -70px;
}
.page--home .section--info .block--media .more {
  border-bottom: 4px solid #151513;
  border-top: 4px solid #151513;
}
.page--home .section--info .block--media .list--media li .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 110px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.page--home .section--comic {
  margin: 0 0 110px;
}
.page--home .section--comic [class^="block--"] {
  position: relative;
}
.page--home .section--comic [class^="block--"] .block-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 10;
  width: 200px;
}
.page--home .section--comic [class^="block--"] .more {
  text-align: right;
  padding: 15px 3%;
  border-bottom: 4px solid #151513;
  position: relative;
}
.page--home .section--comic [class^="block--"] .more a {
  text-decoration: none;
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page--home .section--comic [class^="block--"] .comic {
  border-bottom: 4px solid #151513;
  margin-bottom: 40px;
  position: relative;
}
.page--home .section--comic [class^="block--"] .comic.new:after {
  content: "New!";
  font-family: 'Caveat', cursive;
  color: #FF7600;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 0;
  position: absolute;
  top: 20px;
  right: 4%;
  transform: rotate(-10deg);
}
.page--home .section--comic [class^="block--"] .ph {
  line-height: 0;
  overflow: hidden;
  height: 65vw;
}
.page--home .section--comic [class^="block--"] .ph img {
  width: 100%!important;
}
.page--home .section--video {
  margin: 0 0 90px;
}
.page--home .section--video .block--video {
  position: relative;
}
.page--home .section--video .block--video .slick-slider {
  margin-bottom: 0;
}
.page--home .section--video .block--video .slick-list {
  border-bottom: 4px solid #151513;
}
.page--home .section--video .block--video .block-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: -65px;
  left: 0;
  z-index: 101;
  width: 200px;
}
.page--home .section--video .block--video .more {
  text-align: right;
}
.page--home .section--video .block--video .more a {
  text-decoration: none;
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 0 5% 0 0;
}
.page--home .section--video .block--video .list--video {
  border-top: 4px solid #151513;
}
.page--home .section--video .block--video .youtube {
  position: relative;
  overflow: hidden;
}
.page--home .section--video .block--video .youtube figure {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  z-index: 100;
  cursor: pointer;
}
.page--home .section--video .block--video .youtube .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 100;
  padding: 8%;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0em;
}
.page--home .section--video .block--video .youtube .tit .name {
  line-height: 1;
  word-break: break-word;
  z-index: 10;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page--home .section--video .block--video .youtube .tit .name .ico-play {
  display: block;
  line-height: 1;
  width: 77px;
  height: 77px;
  margin: 0 auto 20px;
  padding: 23px 26px;
  border-radius: 50%;
  border: 4px solid #F2EFE1;
}
.page--home .section--video .block--video .youtube .tit .name .ico-play svg {
  width: 24px;
  height: 24px;
  fill: #F2EFE1;
}
.page--home .section--video .block--video .youtube .tit:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 19, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.page--home .section--video .block--video .youtube .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page--home .section--video .block--video .youtube .video iframe,
.page--home .section--video .block--video .youtube .video object,
.page--home .section--video .block--video .youtube .video embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--home .section--video.single .block--video .youtube figure {
  border-bottom: 4px solid #151513;
}
.page--home .section--release {
  padding: 58px 0 0;
  border-top: 4px solid #151513;
}
.page--home .section--release .block--release {
  position: relative;
  top: -50px;
  z-index: 101;
}
.page--home .section--release .block--release .block-tit {
  font-family: 'Monoton', cursive;
  font-size: 50px;
  line-height: 1;
  margin: -34px 0 30px;
}
.page--home .section--release .block--release .disc-info {
  text-align: center;
}
.page--home .section--release .block--release .disc-info .tit {
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.page--home .section--release .block--release .disc-info .tit span {
  font-size: 16px;
  display: block;
  line-height: 1;
  margin: 0 0 5px;
}
.page--home .section--release .block--release .disc-info .date {
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 30px;
}
.page--home .section--release .block--release .disc-info .btn {
  padding: 0 5%;
}
.page--home .section--release .block--release .jacket {
  position: relative;
  margin: 0 0 55px;
}
.page--home .section--release .block--release .jacket .thumb {
  display: block;
  width: 211px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.page--home .section--release .block--release .jacket .thumb .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.page--home .section--release .block--release .jacket .bg-jacket {
  width: 340px;
  position: absolute;
  top: -150px;
  right: -5px;
}
.page--home .section--about .ph {
  height: 250px;
  background-size: cover;
  background-position: center center;
  border-top: 4px solid #151513;
  border-bottom: 4px solid #151513;
}
.page--home .section--about .artist-name {
  margin: -52px auto 20px;
  padding: 0 5%;
  line-height: 1;
}
.page--home .section--about .artist-name img {
  max-width: 296px;
}
.page--home .section--about .artist-name span {
  background: #151513;
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.02em;
  width: 117px;
  display: block;
  text-align: center;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: relative;
  right: 36px;
  top: -10px;
}
.page--home .section--about .text {
  margin: 0 0 195px;
  padding: 0 5%;
  font-weight: bold;
}
.page--home .section--about .text p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 26px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--home .section--about .text .list--member li {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0em;
  margin: 0 0 10px;
  line-height: 1;
}
.page--home .section--about .text .list--member li:last-child {
  margin-bottom: 0;
}
.page--home .section--contact {
  margin: 0 auto -30px;
  position: relative;
  z-index: 10;
}
.page--home .section--contact .btn .btn--sub {
  width: 168px;
  padding: 12px;
  margin: 0 auto 0 5%;
}
.page--home .section--contact .btn .btn--sub .contact {
  position: relative;
}
.page--home .section--contact .btn .btn--sub .contact svg {
  width: 24px;
  height: 17px;
  position: relative;
  top: 3px;
  fill: #151513;
}
.page--home .section--contact .btn .btn--sub .contact span {
  padding-left: 10px;
}
.btn > a,
.btn > span {
  width: 100%;
  display: block;
  text-decoration: none;
  margin: 0 auto;
  padding: 16px;
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0em;
  text-align: center;
}
.btn .btn--main {
  background: #151513;
  color: #F2EFE1;
}
.btn .btn--sub {
  background: #F2EFE1;
  color: #151513;
  border: 4px solid #151513;
}
.btn.back {
  margin: 40px 0;
}
footer {
  background: #151513;
  padding: 40px 5% 20px;
}
footer .copyright {
  max-width: 1246px;
  margin: 0 auto;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0em;
}
body:not(.page--home) footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 20px;
}
@keyframes marquee {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-100%);
  }
}
/* information
------------------------------ */
.page--information .list--news li {
  border-bottom: 4px solid #151513;
}
.page--information .list--news li a,
.page--information .list--news li dl {
  background: #F2EFE1;
  display: block;
  text-decoration: none;
  padding: 15px 40px 15px 3%;
  color: #151513;
  position: relative;
}
.page--information .list--news li a .date,
.page--information .list--news li dl .date {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.page--information .list--news li a .tit,
.page--information .list--news li dl .tit {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.page--information .list--news li a svg,
.page--information .list--news li dl svg {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 16px;
  right: 3%;
  margin-top: -8px;
  fill: #151513;
}
.page--information .list--news li dl {
  padding: 0;
}
.page--information .list--news li dl dt {
  padding: 15px 3% 15px 3%;
}
.page--information .list--news li dl dt .close {
  display: none;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 10px;
  right: 3%;
}
.page--information .list--news li dl dt .close span {
  height: 4px;
  position: absolute;
  background: #151513;
  top: 10px;
  width: 25px;
}
.page--information .list--news li dl dt .close .top {
  position: absolute;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.page--information .list--news li dl dt .close .bottom {
  position: absolute;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page--information .list--news li dl dd {
  padding: 15px 3% 15px 3%;
  display: none;
}
.page--information .list--news li dl dd .text {
  font-weight: bold;
}
.page--information .list--news li dl dd .text a {
  word-break: break-word;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
  display: inline;
}
.page--information .list--news li dl dd .text .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page--information .list--news li dl dd .text .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--information .list--news li dl dd .text .ph {
  position: relative;
  line-height: 0;
}
.page--information .list--news li dl dd .text .ph .dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--information .list--news li:first-child {
  border-top: 4px solid #151513;
}
.page--information .list--news li.new .tit:after {
  content: "New!";
  font-family: 'Caveat', cursive;
  color: #FF7600;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  padding-left: 10px;
  line-height: 0;
  position: relative;
  top: 1px;
}
.page--information .list--news li.open dl dt .close {
  display: block;
}
.page--information .list--news li.open dl dt .tit {
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1.5;
}
.page--information .list--information {
  padding: 0 5%;
  position: relative;
  z-index: 10;
}
.page--information .list--information li {
  margin: 0 0 46px;
}
.page--information .list--information li .date {
  line-height: 1.1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0em;
  margin: 0 0 10px;
}
.page--information .list--information li .date .week {
  font-size: 16px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -7px;
  left: -10px;
  width: 2.5em;
  text-align: center;
}
.page--information .list--information li .date .end-time {
  display: inline-block;
  position: relative;
}
.page--information .list--information li .date .end-time:before {
  content: "~";
  position: absolute;
  top: 46%;
  left: -22px;
  line-height: 0;
}
.page--information .list--information li .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 110px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.page--information .list--information li .tit {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
.page--information .list--information li .text {
  display: none;
  font-weight: bold;
  margin: 0 0 30px;
}
.page--information .list--information li .text a {
  word-break: break-word;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
  display: inline;
  color: #F2EFE1;
}
.page--information .list--information li .text .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page--information .list--information li .text .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--information .list--information li .text .ph {
  position: relative;
  line-height: 0;
}
.page--information .list--information li .text .ph .dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--information .list--information li .btn .close {
  display: none;
}
.page--information .list--information li.open .tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.page--information .list--information li.open .btn .more {
  display: none;
}
.page--information .list--information li.open .btn .close {
  display: block;
}
.page--information .list--information li.open .btn .btn--main {
  background: #F2EFE1;
  color: #151513;
  border: 4px solid #151513;
  margin: 0 auto 80px;
}
.page--information .list--movie {
  padding: 0 5%;
}
.page--information .list--movie li {
  margin: 0 0 40px;
}
.page--information .list--movie li a {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.page--information .list--movie li a .thumb {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  line-height: 0;
  margin: 0 0 10px;
  position: relative;
}
.page--information .list--movie li a .thumb img {
  width: 100%;
  height: 100%;
}
.page--information .list--movie li a .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 100;
  padding: 8%;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0em;
}
.page--information .list--movie li a .tit .name {
  line-height: 1;
  max-width: 100%;
  word-break: break-word;
  z-index: 10;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page--information .list--movie li a .tit .name .ico-play {
  display: block;
  line-height: 1;
  width: 77px;
  height: 77px;
  margin: 0 auto 20px;
  padding: 22px 25px;
  border-radius: 50%;
  border: 4px solid #F2EFE1;
}
.page--information .list--movie li a .tit .name .ico-play svg {
  width: 24px;
  height: 24px;
  fill: #F2EFE1;
}
.page--information .list--movie li a .tit:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 19, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.page--information .list--comics {
  padding: 0 5%;
}
.page--information .list--comics li {
  margin: 0 0 4%;
  width: 48%;
  float: left;
}
.page--information .list--comics li:nth-child(odd) {
  margin-right: 4%;
}
.page--information .list--comics li {
  width: 100%;
  margin: 0 0 40px 0;
}
.page--information .list--comics li a {
  display: block;
  text-decoration: none;
  position: relative;
}
.page--information .list--comics li a .ph {
  width: 100%;
  height: 90vw;
  line-height: 0;
  position: relative;
  overflow: hidden;
  border: 4px solid #151513;
}
.page--information .list--comics li a .ph img.dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--information .list--comics li a .ph img:not(.dummy) {
  transform: translateY(-30px);
}
.page--information .list--comics li a .ph img {
  width: 100%;
}
.page--information .list--comics li a .tit,
.page--information .list--comics li a .date {
  display: none;
}
.page--information .list--comics li.new {
  position: relative;
}
.page--information .list--comics li.new:before {
  content: "New!";
  font-family: 'Caveat', cursive;
  color: #FF7600;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 0;
  position: absolute;
  top: 20px;
  right: 4%;
  z-index: 1;
}
.page--information .list--comics li.new:after {
  width: 16vw;
  height: 42px;
  content: '';
  background: #151513;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.page--news .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--news .section--detail .date {
  float: left;
}
.page--video .section--list {
  padding-top: 40px;
}
.page--video .list--movie li .thumb {
  border: 4px solid #151513;
}
.page--video .section--detail {
  padding: 0;
}
.page--video .section--detail .video {
  border-top: 4px solid #151513;
  border-bottom: 4px solid #151513;
}
.page--comics .section--list {
  padding-top: 40px;
}
.page--comics .section--detail .date {
  float: left;
}
.page--comics .section--detail .thumb {
  border: 4px solid #151513;
  line-height: 0;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.page--comics .section--detail .thumb img.dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--comics .section--detail .block--pager {
  padding: 0;
}
.page--comics .section--detail .block--pager a,
.page--comics .section--detail .block--pager span {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -0.02em;
}
.page--video .section--detail .date,
.page--video .section--detail .section-tit,
.page--video .section--detail .block-sub,
.page--video .section--detail .btn.back {
  padding: 0 5%;
}
.page--media .section--list {
  margin: 0 0 50px;
}
.page--media .section--list.topics {
  margin-bottom: 0;
  position: relative;
  border-top: 4px solid #151513;
}
.page--media .section--list.topics .section-tit {
  top: -45px;
  font-size: 65px;
}
.page--media .section--list.topics .list--information {
  padding-top: 30px;
}
.page--media .section--list.topics .list--information .not-info {
  margin: 0 0 50px;
}
.page--media .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--media .section--detail .date {
  line-height: 1.1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0em;
  margin: 0 0 10px;
}
.page--media .section--detail .date .week {
  font-size: 16px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -7px;
  left: -10px;
  width: 2.5em;
  text-align: center;
}
.page--media .section--detail .date .end-time {
  display: inline-block;
  position: relative;
}
.page--media .section--detail .date .end-time:before {
  content: "~";
  position: absolute;
  top: 46%;
  left: -22px;
  line-height: 0;
}
.page--media .section--detail .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 110px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.page--media .section--detail .date .end-time:before {
  font-size: 38px;
  left: -13px;
  margin-top: 0;
}
.page--live .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--live .section--detail .date {
  line-height: 1.1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0em;
  margin: 0 0 10px;
}
.page--live .section--detail .date .week {
  font-size: 16px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -7px;
  left: -10px;
  width: 2.5em;
  text-align: center;
}
.page--live .section--detail .date .end-time {
  display: inline-block;
  position: relative;
}
.page--live .section--detail .date .end-time:before {
  content: "~";
  position: absolute;
  top: 46%;
  left: -22px;
  line-height: 0;
}
.page--live .section--detail .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0em;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 110px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.page--live .section--detail .date .end-time:before {
  font-size: 38px;
  left: -13px;
  margin-top: 0;
}
/* discography
------------------------------ */
.page--discography .section-tit {
  font-size: 75px;
  top: 12px;
}
.page--discography .jacket {
  position: relative;
  line-height: 0;
}
.page--discography .list--discography {
  padding: 0 5%;
}
.page--discography .list--discography li {
  margin: 0 0 4%;
  width: 48%;
  float: left;
}
.page--discography .list--discography li:nth-child(odd) {
  margin-right: 4%;
}
.page--discography .list--discography li .jacket {
  border: 4px solid #151513;
}
.page--discography .list--discography li .jacket img {
  display: block;
  width: 100%;
  background: no-repeat center;
  background-size: cover;
}
.page--discography .list--discography li .block--text {
  display: none;
}
.page--discography .list--discography .not-info {
  width: 100%;
}
.page--discography .section--detail {
  padding: 0;
}
.page--discography .section--detail .block--jacket img.dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--discography .section--detail .block--jacket img:not(.dummy) {
  border: 4px solid #151513;
}
.page--discography .section--detail .block--jacket .list--jacket {
  margin: 0 0 20px;
}
.page--discography .section--detail .block--jacket .list--jacket li .jacket {
  margin: 0 auto 5px;
  width: 95%;
  text-align: center;
}
.page--discography .section--detail .block--jacket .list--jacket li .disc-tit {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.page--discography .section--detail .block--detail {
  padding: 0 5%;
}
.page--discography .section--detail .block--detail .tit {
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.page--discography .section--detail .block--detail .tit span {
  display: block;
  line-height: 1;
  font-size: 16px;
}
.page--discography .section--detail .block--detail .date {
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 30px;
  text-align: center;
}
.page--discography .section--detail .block--detail .category {
  font-size: 12px;
  color: #F4D607;
  text-align: center;
  text-transform: uppercase;
}
.page--discography .section--detail .block--detail .category span {
  display: inline-block;
  border: 2px solid;
  padding: 0 10px;
  margin: 0 0 10px;
}
.page--discography .section--detail .block--detail .text {
  margin: 0 0 20px;
}
.page--discography .section--detail .block--detail .review {
  margin: 0 0 20px;
}
.page--discography .section--detail .block--detail .disc-info .list--track li {
  margin: 0 0 3px;
  line-height: 1.5;
}
.page--discography .section--detail .block--detail .disc-info .list--track li span {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0em;
}
.page--discography .section--detail .block--detail .disc-info .list--track .tieup {
  font-size: 12px;
  opacity: 0.6;
  text-indent: 1em;
  color: #F2EFE1;
}
.page--discography .section--detail .block--detail .disc-info .disc-name {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0em;
}
.page--discography .section--detail .block--detail .disc-info > li {
  margin: 0 0 20px;
}
.page--discography .btn.back {
  padding: 0 5%;
}
/* biography
------------------------------ */
.page--bio .section--detail {
  padding: 0;
  border-top: 4px solid #151513;
}
.page--bio .section--detail .text-area {
  padding: 0 5%;
}
.page--bio .section--detail .section-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 75px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 10;
}
.page--bio .section--detail .ph {
  height: 250px;
  background-size: cover;
  background-position: center center;
  border-bottom: 4px solid #151513;
}
.page--bio .section--detail .artist-name {
  margin: -52px auto 20px;
  line-height: 1;
}
.page--bio .section--detail .artist-name img {
  max-width: 296px;
  position: relative;
  z-index: 10;
}
.page--bio .section--detail .artist-name span {
  background: #151513;
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.02em;
  width: 117px;
  display: block;
  text-align: center;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: relative;
  right: 36px;
  top: -10px;
}
.page--bio .section--detail .name {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0em;
  margin: 0 0 10px;
}
.page--bio .section--detail .member dt {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 1;
  width: 230px;
  float: left;
}
.page--bio .section--detail .member dt:last-child {
  margin-bottom: 0;
}
.page--bio .section--detail .member dd span {
  display: inline-block;
  position: relative;
  bottom: 2px;
}
.page--bio .section--detail .member dd span i {
  font-size: 16px;
}
.page--bio .section--detail .member dd span a {
  display: block;
  line-height: 0;
}
.page--bio .section--detail .member dd span a svg {
  width: 14px;
  height: 14px;
  fill: #151513;
}
.page--bio .section--detail .member dd span.twitter {
  margin-right: 8px;
}
.page--bio .section--detail .member:last-of-type {
  margin: 0 0 30px;
}
.page--bio .section--detail .text span {
  color: #F4D607;
  font-weight: bold;
}
/* exception
------------------------------ */
.page--exception .section--detail {
  text-align: center;
}
.page--exception .section--detail .section-tit {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.page--exception .section--detail .text {
  margin: 0 0 30px;
}
@media screen and (min-width: 415px) and (max-width: 900px) {
  .page--home .section--release .block--release .jacket {
    margin-bottom: 14%;
  }
  .page--home .section--release .block--release .jacket .thumb {
    width: 60%;
  }
  .page--home .section--release .block--release .jacket .bg-jacket {
    width: 90%;
    top: -59%;
  }
  .btn > a,
  .btn > span {
    width: 50%;
  }
  .page--home .section--about .ph {
    height: 50vh;
  }
  .page--home .section--release .block--release .block-tit {
    font-size: 8vw;
    position: relative;
    bottom: 4px;
  }
  .page--home .section--release .block--release .disc-info {
    padding: 0 5%;
  }
  .header .drawer .drawer-icon .tsukemonokun,
  .page-link .tsukemonokun,
  .loading .load-icon .tsukemonokun {
    width: 35vw;
  }
  .header .drawer .drawer-icon .baloon,
  .page-link .baloon,
  .loading .load-icon .baloon {
    top: -48%;
    width: 22vw;
  }
  .page-link,
  .loading .load-icon,
  .header .drawer .drawer-icon {
    right: -14%;
  }
  .page--bio .section--detail .ph {
    height: 67vw;
  }
  .page--information .list--comics li.new:before {
    font-size: 28px;
    top: 30px;
    right: 3%;
  }
  .page--information .list--comics li.new:after {
    width: 11vw;
    height: 60px;
  }
}
