/* ---------------------------------------
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: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
  cursor: pointer;
  cursor: default;
  cursor: url(/static/longman/official/cmn/cursor.png), default;
  cursor: url(/static/longman/official/cmn/cursor.png), auto;
  cursor: -webkit-image-set(url(/static/longman/official/cmn/cursor.png) 1x, url(/static/longman/official/cmn/cursor@2x.png) 2x), auto;
}
body a,
body button,
body input,
body label {
  cursor: pointer;
  cursor: default;
  cursor: url(/static/longman/official/cmn/cursor.png), default;
  cursor: url(/static/longman/official/cmn/cursor.png), auto;
  cursor: -webkit-image-set(url(/static/longman/official/cmn/cursor.png) 1x, url(/static/longman/official/cmn/cursor@2x.png) 2x), auto;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
.svg-symbol,
.sp {
  display: none !important;
}
a {
  color: #151513;
}
/* 2.1 button
------------------------------ */
.detail__btn {
  display: block;
  position: relative;
  font-family: '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: 18px;
  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: 18px;
  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: inline-block;
  position: relative;
}
.form__select select {
  color: inherit;
  font-size: 18px;
  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;
  padding-right: 1.5em;
}
.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: 0.5em;
  height: 0.5em;
  border: 2px solid #F2EFE1;
  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.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: 18px;
  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: 18px;
  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;
  left: 0;
  width: 100%;
  height: 100%;
}
#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;
}
#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);
}
#popup .close:hover span {
  background: #FF7600;
}
.page--information #popup {
  display: none;
  overflow: scroll;
}
.page--information #popup .popupIn {
  overflow: scroll;
  max-width: 1200px;
  padding: 60px 100px;
  margin: 200px auto 200px;
  position: relative;
  background: #FF7600;
}
.page--information #popup .popupIn .close {
  z-index: 1000;
  top: 54px;
  right: 100px;
}
.page--information #popup .popupIn .close span {
  background: #151513;
}
.page--information #popup .popupIn .close:hover span {
  background: #F2EFE1;
}
.page--information #popup .inner {
  padding: 0;
}
.page--information #popup .inner .tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 34px;
  margin: 0 0 50px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.page--information #popup .inner .date .end-time {
  display: inline-block;
  padding-top: 0;
  padding-left: 20px;
}
.page--information #popup .inner .date .end-time:before {
  font-size: 70px;
  top: 50%;
  left: -22px;
  margin-top: -5px;
}
.page--information #popup .inner .text {
  font-weight: bold;
  margin: 0 0 50px;
}
.page--information #popup .inner .text a {
  word-break: break-word;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
  display: inline;
  color: #F2EFE1;
}
.page--information #popup .inner .text a:hover {
  text-decoration: none;
}
.page--information #popup .inner .text .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page--information #popup .inner .text .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--information #popup .inner .text .ph {
  position: relative;
  line-height: 0;
}
.page--information #popup .inner .text .ph .dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--information #popup .inner .btn {
  position: relative;
}
.page--home #popup .popupIn {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 70vw;
  -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: 4px solid #151513;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.page--home #popup .inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.page--home #popup.close {
  display: none;
}
.open #popup {
  display: block;
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  text-align: center;
  margin: 80px auto 0;
  padding: 0 60px;
  letter-spacing: -0.5em;
}
.block--pager li {
  display: inline-block;
  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: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.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 a:hover {
  color: #F2EFE1;
}
.block--pager span {
  opacity: 0.1;
}
.block--pager span svg {
  fill: transparent;
  stroke: #151513;
}
.block--pager .pager__item--top,
.block--pager .pager__item--number {
  text-align: center;
  color: #888;
}
.block--pager .pager__item--newer {
  float: left;
  padding-left: 0;
  margin-left: 0;
}
.block--pager .pager__item--older.pager__item--older {
  float: right;
  padding-right: 0;
  margin-right: 0;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
}
.block--pager .pager__item--current {
  position: relative;
  opacity: 0.1;
}
.block--pager li svg {
  width: 42px;
  height: 32px;
  fill: #151513;
}
.block--pager li:hover svg {
  fill: #F2EFE1;
}
/* cmn
------------------------------ */
.wrap {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.header {
  background: #F2EFE1;
  border-top: solid 4px #151513;
  border-bottom: solid 4px #151513;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.header .logo {
  width: calc(100% - 156.91px);
  line-height: 0;
  padding: 12px 10px;
}
.header .logo a {
  display: inline-block;
  line-height: 0;
}
.header .logo a svg {
  width: 624px;
  height: 136px;
}
.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: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.header .drawer .g-nav li {
  margin: 0 0 20px;
}
.header .drawer .g-nav li a {
  text-decoration: none;
  display: block;
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 4vw;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1;
}
.header .drawer .g-nav li a:hover {
  color: #FF7600;
}
.header .drawer .g-nav li:last-child {
  margin-right: 0;
}
.header .drawer__btn {
  width: 156.91px;
  padding: 12px 10px;
}
.header .drawer__btn .btn-inner {
  width: 98px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 2%;
  margin-top: -20px;
}
.header .drawer__btn .btn-inner span {
  display: block;
  width: 100%;
  height: 10px;
  background: #151513;
  position: absolute;
  left: 0;
}
.header .drawer__btn .btn-inner span:first-of-type {
  top: 0;
}
.header .drawer__btn .btn-inner span:last-of-type {
  bottom: 0;
}
.header .drawer__btn:hover {
  background: #151513;
}
.header .drawer__btn:hover span {
  background: #F2EFE1;
}
.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: 30px;
}
.menu-open .header .drawer__btn:hover {
  background: #F2EFE1;
}
.menu-open .header .drawer__btn:hover span {
  background: #FF7600;
}
body:not(.page--home).menu-open .header .drawer__btn .btn-inner,
.header-fixed.menu-open .header .drawer__btn .btn-inner {
  margin-top: 10px;
}
.container {
  padding-top: 167px;
}
.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: 100px;
  font-weight: bold;
  letter-spacing: -0.02em;
}
.loading .load-icon {
  position: fixed;
  bottom: 0;
  right: -140px;
  z-index: 300;
}
.loading .load-icon span {
  display: inline-block;
}
.loading .load-icon .baloon {
  width: 219px;
  position: absolute;
  left: -100px;
  top: -105px;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}
.loading .load-icon .baloon.go {
  display: none;
}
.loading .load-icon .tsukemonokun {
  width: 343px;
  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 0.3s forwards;
  -webkit-animation: bound 0.5s ease 0.3s 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: 50vh;
}
#loading .bar span {
  display: block;
  width: 0;
  height: 4px;
  background: #151513;
  position: absolute;
  top: 0;
}
.load-finish .loading {
  height: 0;
  top: -200px;
}
.load-finish #loading .bar {
  display: none;
}
.page-link {
  position: fixed;
  bottom: 0;
  right: -140px;
  z-index: 300;
  -webkit-transform: translate(150px, 200px) rotate(40deg);
  transform: translate(180px, -60px) rotate(40deg);
}
.page-link span {
  display: inline-block;
}
.page-link .baloon {
  display: none;
  width: 219px;
  position: absolute;
  left: -100px;
  top: -105px;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}
.page-link .tsukemonokun {
  width: 343px;
}
.page-link a {
  display: block;
}
.load-finish .page-link {
  animation: jackInTheBox 0.5s ease 1s forwards;
  -webkit-animation: jackInTheBox 0.5s ease 1s forwards;
}
@keyframes jackInTheBox {
  from {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  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: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  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(150px, 200px) rotate(40deg);
    transform: translate(180px, -60px) rotate(40deg);
  }
}
@keyframes bound {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translateY(10%);
  }
  70% {
    transform: translateY(-60%);
  }
  90% {
    transform: translateY(-20%);
  }
  100% {
    transform: translate(-200%, -90%);
  }
}
@-webkit-keyframes bound {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translateY(10%);
  }
  70% {
    transform: translateY(-60%);
  }
  90% {
    transform: translateY(-20%);
  }
  100% {
    transform: translate(-200%, -90%);
  }
}
@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 .baloon.go-top {
  display: block;
}
.menu-open .page-link .baloon.menu {
  display: block;
  z-index: 100;
}
.menu-open .page-link a {
  pointer-events: none!important;
}
/* 下層共通
------------------------------ */
body:not(.page--home) .header .logo svg,
.page--home.header-fixed .header .logo svg {
  width: 350px;
  height: 76px;
}
body:not(.page--home).menu-open .header .drawer__btn,
.page--home.header-fixed.menu-open .header .drawer__btn {
  margin-top: 10px;
}
body:not(.page--home) .container {
  padding-top: 108px;
}
body:not(.page--home) .container .inner {
  position: relative;
}
.page--list .inner {
  padding: 180px 0 225px;
}
.page--list.page--media .inner,
.page--list.page--live .inner {
  padding-top: 109px;
}
.page--detail .inner {
  padding: 80px 0 225px;
}
.section--list .section-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 200px;
  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;
}
.section--list .list--category {
  padding: 15px 60px;
  text-align: right;
  border-bottom: 4px solid #151513;
}
.section--list .list--category li {
  display: inline-block;
  margin: 0 20px 0 0;
}
.section--list .list--category li a {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.02em;
  text-decoration: none;
  position: relative;
  line-height: 1;
}
.section--list .list--category li a.current {
  color: #F2EFE1;
  pointer-events: none;
}
.section--list .list--category li a:hover {
  color: #F2EFE1;
}
.section--list .list--category li:last-child {
  margin-right: 0;
}
.section--list .not-info {
  text-align: center;
  padding-top: 70px;
  width: 100%;
}
.section--list.topics .not-info {
  margin: 0 0 20px;
}
.section--detail {
  max-width: 1000px;
  margin: 0 auto;
}
.section--detail .section-tit {
  color: #151513;
  font-size: 34px;
  margin: 0 0 25px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.section--detail .block--share {
  margin: 0 0 60px;
  text-align: right;
  float: right;
  position: relative;
  z-index: 10;
}
.section--detail .block--share li {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #151513;
  border-radius: 50%;
  text-align: center;
  margin: 0 5px 0 0;
  vertical-align: middle;
  font-size: 20px;
  line-height: 40px;
}
.section--detail .block--share li a {
  color: #FF7600;
  text-decoration: none;
  display: block;
}
.section--detail .block--share li a:hover {
  color: #F2EFE1;
}
.section--detail .block--share li svg {
  width: 18px;
  height: 18px;
  position: relative;
  top: 1px;
}
.section--detail .block--share li:first-child {
  font-family: 'Maven Pro', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
  width: auto;
  border: none;
  border-radius: 0;
  margin-right: 10px;
  background-color: transparent;
  color: #151513;
}
.section--detail .block--share li.twitter {
  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: 0.01em;
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  line-height: 25px;
  margin: 0 0 10px;
}
.section--detail .date .category {
  margin: 0 0 0 15px;
}
.section--detail .date .end-time {
  padding: 0 0 0 20px;
  position: relative;
}
.section--detail .date .end-time:before {
  content: "~";
  position: absolute;
  left: -1px;
  top: 50%;
  margin-top: -15px;
  font-size: 30px;
}
.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 .text {
  font-weight: bold;
  word-break: break-all;
}
.section--detail .text a {
  color: #F2EFE1;
}
.section--detail .text a:hover {
  text-decoration: none;
}
.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: 40px;
  position: relative;
}
.page--home .slider {
  width: 100%;
  margin: 0 auto;
}
.page--home .slider .list .slick-slide {
  margin-bottom: 0;
}
.page--home .slick-track {
  height: 100%;
}
.page--home .slick-list {
  height: 21vw;
  border-bottom: 4px solid #151513;
}
.page--home .slick-slide {
  width: 100%;
}
.page--home .slick-arrow * {
  transition: none;
}
.page--home .slick-arrow {
  width: 100px;
  height: 100px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #151513;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  margin-top: -80px;
  z-index: 10;
}
.page--home .slick-arrow svg {
  position: absolute;
  width: 40px;
  height: 32px;
  top: 50%;
  margin-top: -16px;
  fill: #F2EFE1;
}
.page--home .slick-arrow:hover {
  background-color: #F2EFE1;
}
.page--home .slick-arrow:hover svg {
  fill: #151513;
}
.page--home .slick-prev {
  left: 2%;
}
.page--home .slick-prev svg {
  left: 30px;
}
.page--home .slick-next {
  right: 2%;
}
.page--home .slick-next svg {
  right: 30px;
}
.page--home .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 105;
}
.page--home .slick-dots button {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 4px solid #151513;
  border-radius: 10px;
  background: #151513;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
}
.page--home .slick-dots li {
  display: inline-block;
  margin: 0 20px 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;
  position: relative;
  height: 100%;
}
.page--home .section--banner .list--bnr li a img {
  border-top: none;
  border-right: none;
  height: 100%;
  width: 100%;
}
.page--home .section--banner .list--bnr li a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 19, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--home .section--banner .list--bnr li a:hover:before {
  background: rgba(21, 21, 19, 0);
}
.page--home .section--banner .list--bnr li.slick-center a:before {
  background: rgba(21, 21, 19, 0);
}
.page--home .section--banner.single {
  margin: 0 0 30px;
}
.page--home .section--banner.single .list--bnr li {
  width: 700px;
  margin: 0 auto;
}
.page--home .section--banner.single .list--bnr li a img {
  border-right: 4px solid #151513;
}
.page--home .section--banner.single .list--bnr li a:before {
  content: none;
}
.page--home .section--banner {
  height: 24vw;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
}
.page--home .section--banner .list--bnr {
  width: calc(100% - 390px);
}
.page--home .section--banner .block--comic {
  width: 390px;
  height: 21vw;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  border-bottom: 4px solid #151513;
  position: relative;
  /*
            .ph{
                width: 100%;
                line-height: 0;
                height: 100%;
                border-left: 4px solid @text-color;
                overflow: hidden;
                position: relative;
                img{
                    height: 100%;
                    display: block;
                    max-width: inherit;
                    width: 100%;
                    background-size: cover;
                    background-repeat: no-repeat;
                }
            }
            */
}
.page--home .section--banner .block--comic.new:before {
  content: "New!";
  font-family: 'Caveat', cursive;
  color: #FF7600;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 0;
  position: absolute;
  top: 25px;
  right: 4%;
  z-index: 1;
}
.page--home .section--banner .block--comic.new:after {
  width: 20%;
  height: 50px;
  content: '';
  background: #151513;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.page--home .section--banner .block--comic a {
  width: 100%;
  height: 100%;
  display: block;
}
.page--home .section--banner .block--comic .comic {
  border-left: 4px solid #151513;
  transform: translateY(-30px);
  position: relative;
}
.page--home .section--banner .block--comic .comic img {
  pointer-events: none;
}
.page--home .section--banner .block--comic .comic .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.page--home .section--topics {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 4px solid #151513;
}
.page--home .section--topics .marquee {
  width: calc(100% - 156.91px);
  background: #F4D607;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #151513;
}
.page--home .section--topics .marquee p {
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  position: relative;
  top: 4px;
}
.page--home .section--topics .list--sns li {
  width: 78px;
  display: inline-block;
}
.page--home .section--topics .list--sns li a {
  display: block;
  background: #F2EFE1;
  color: #151513;
  font-size: 34.6px;
  padding: 20px;
  line-height: 1;
}
.page--home .section--topics .list--sns li a:hover {
  color: #F2EFE1;
  background: #151513;
}
.page--home .section--topics .list--sns li:nth-child(even) {
  border-left: 4px solid #151513;
  border-right: 4px solid #151513;
}
.page--home .section--topics .list--sns li:last-child {
  border-right: none;
}
.page--home .section--topics .list--sns li.icon-line {
  position: relative;
  top: 1px;
}
.page--home .section--topics .list--sns li.icon-line svg {
  width: 30px;
  height: 30px;
  position: relative;
  top: 3px;
}
.page--home .section--topics .list--sns li.icon-line a:hover svg {
  fill: #F2EFE1;
}
.page--home .section--topics .list--sns li.icon-ticktock {
  position: relative;
  top: 1px;
  border-right: 4px solid #151513;
}
.page--home .section--topics .list--sns li.icon-ticktock svg {
  width: 30px;
  height: 30px;
  position: relative;
  top: 3px;
}
.page--home .section--topics .list--sns li.icon-ticktock a:hover svg {
  fill: #F2EFE1;
}
.page--home [class^="section--"] [class^="block--"] .more {
  text-align: right;
  padding: 15px 60px;
}
.page--home [class^="section--"] [class^="block--"] .more a {
  text-decoration: none;
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page--home [class^="section--"] [class^="block--"] .more a:hover {
  color: #F2EFE1;
}
.page--home .section--info [class^="block--"] {
  position: relative;
}
.page--home .section--info [class^="block--"] .block-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 200px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: -110px;
  left: 0;
  z-index: 10;
}
.page--home .section--info .block--live .list--live,
.page--home .section--info .block--media .list--media {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  max-width: 1246px;
  margin: 0 auto;
  padding: 60px 0 0;
  position: relative;
  z-index: 10;
}
.page--home .section--info .block--live .list--live li,
.page--home .section--info .block--media .list--media li {
  width: 30.6%;
  margin-right: 4%;
  position: relative;
}
.page--home .section--info .block--live .list--live li:nth-child(3n),
.page--home .section--info .block--media .list--media li:nth-child(3n) {
  margin-right: 0;
}
.page--home .section--info .block--live .list--live li .date,
.page--home .section--info .block--media .list--media li .date {
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
}
.page--home .section--info .block--live .list--live li .date .week,
.page--home .section--info .block--media .list--media li .date .week {
  font-size: 24px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -12px;
  left: -12px;
  width: 2.5em;
  text-align: center;
}
.page--home .section--info .block--live .list--live li .date .end-time,
.page--home .section--info .block--media .list--media li .date .end-time {
  display: block;
  position: relative;
}
.page--home .section--info .block--live .list--live li .date .end-time:before,
.page--home .section--info .block--media .list--media li .date .end-time:before {
  content: "~";
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 0;
}
.page--home .section--info .block--live .list--live li .date .end-time,
.page--home .section--info .block--media .list--media li .date .end-time {
  padding-top: 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: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 116px;
}
.page--home .section--info .block--live .list--live li .category,
.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: 0.01em;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 150px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.page--home .section--info .block--live .list--live li .btn,
.page--home .section--info .block--media .list--media li .btn {
  position: absolute;
  left: 0;
  bottom: 0;
}
.page--home .section--info .block--live .list--live li .btn .close,
.page--home .section--info .block--media .list--media li .btn .close {
  display: none;
}
.page--home .section--info .block--live .list--live li.not-info,
.page--home .section--info .block--media .list--media li.not-info {
  width: 100%;
  padding-top: 30px;
}
.page--home .section--info .block--live .list--live li > .text,
.page--home .section--info .block--media .list--media li > .text {
  display: none;
}
.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: 36px 130px 36px 60px;
  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: 0.01em;
  color: inherit;
  font-size: 18px;
  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: 26px;
  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: 42px;
  height: 32px;
  right: 60px;
  margin-top: -16px;
  fill: #151513;
}
.page--home .section--info .block--news li a:hover,
.page--home .section--info .block--news li dl:hover {
  background: #151513;
  color: #F2EFE1;
}
.page--home .section--info .block--news li a:hover svg,
.page--home .section--info .block--news li dl:hover svg {
  fill: #F2EFE1;
}
.page--home .section--info .block--news li dl {
  padding: 0;
}
.page--home .section--info .block--news li dl dt {
  padding: 36px 60px 36px 60px;
  position: relative;
}
.page--home .section--info .block--news li dl dt .close {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
}
.page--home .section--info .block--news li dl dt .close span {
  height: 4px;
  position: absolute;
  background: #151513;
  top: 20px;
  width: 40px;
}
.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 dt .close:hover span {
  background: #FF7600;
}
.page--home .section--info .block--news li dl dd {
  padding: 0 60px 36px 60px;
  display: none;
}
.page--home .section--info .block--news li dl dd .text {
  font-weight: bold;
  margin: 0 auto 20px;
  max-width: 1000px;
}
.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 a:hover {
  text-decoration: none;
  background: transparent;
  color: #151513;
}
.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: 40px;
  font-weight: bold;
  letter-spacing: -0.02em;
  padding-left: 10px;
  line-height: 0;
  position: relative;
  top: 3px;
}
.page--home .section--info .block--news li.open dl:hover {
  background: #F2EFE1;
  color: #151513;
}
.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: 34px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.page--home .section--info .block--live .block-tit {
  top: 40px;
}
.page--home .section--info .block--live .more {
  padding-top: 80px;
  border-bottom: 4px solid #151513;
}
.page--home .section--info .block--media .block-tit {
  top: 40px;
}
.page--home .section--info .block--media .more {
  padding-top: 80px;
  border-bottom: 4px solid #151513;
}
.page--home .section--comic .block-tit,
.page--home .section--comic .more {
  display: none;
}
.page--home .section--video {
  padding: 0 0 186px;
  border-bottom: 4px solid #151513;
}
.page--home .section--video .block--video {
  position: relative;
}
.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: 200px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: 86px;
  left: 0;
  z-index: 101;
}
.page--home .section--video .block--video .more {
  padding-top: 190px;
  border-bottom: 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;
}
.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: 70px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.page--home .section--video .block--video .youtube .tit .name {
  line-height: 1;
  max-width: 1000px;
  word-break: break-word;
  z-index: 10;
  position: relative;
  line-height: 1.2;
  overflow: hidden;
}
.page--home .section--video .block--video .youtube .tit .name .ico-play {
  display: block;
  line-height: 1;
  width: 195px;
  height: 195px;
  margin: 0 auto 55px;
  padding: 63px 73px;
  border-radius: 50%;
  border: 4px solid #F2EFE1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
}
.page--home .section--video .block--video .youtube .tit .name .ico-play svg {
  width: 60px;
  height: 70px;
  fill: #F2EFE1;
}
.page--home .section--video .block--video .youtube .tit .name .movie-tit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
}
.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 .tit:hover:before {
  background: rgba(21, 21, 19, 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 .block--release {
  position: relative;
  top: -50px;
  z-index: 101;
}
.page--home .section--release .block--release .block-tit {
  font-family: 'Monoton', cursive;
  font-size: 100px;
  line-height: 1;
  max-width: 1246px;
  margin: 0 auto;
}
.page--home .section--release .block--release .release {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.page--home .section--release .block--release .disc-info {
  width: 50%;
  text-align: right;
  padding: 104px 72px;
}
.page--home .section--release .block--release .disc-info .tit {
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 20px;
  position: relative;
}
.page--home .section--release .block--release .disc-info .tit span {
  font-size: 26px;
  display: block;
  line-height: 1;
  margin: 0 0 5px;
}
.page--home .section--release .block--release .disc-info .tit:before {
  content: "";
  width: 230px;
  border-top: 3px dotted #F2EFE1;
  position: absolute;
  top: 63%;
  right: -250px;
  z-index: 100;
}
.page--home .section--release .block--release .disc-info .date {
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}
.page--home .section--release .block--release .disc-info .btn {
  display: inline-block;
}
.page--home .section--release .block--release .jacket {
  position: relative;
  top: -120px;
  right: 0;
  padding-right: 8vw;
}
.page--home .section--release .block--release .jacket .thumb {
  display: block;
  width: 494px;
  position: relative;
  z-index: 10;
  top: 10px;
}
.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: 744px;
  position: absolute;
  top: -280px;
  right: -60px;
}
.page--home .section--about .ph {
  height: 907px;
  background-size: cover;
  background-position: center center;
  border-top: 4px solid #151513;
  border-bottom: 4px solid #151513;
}
.page--home .section--about .artist-name {
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 140px;
  font-weight: 900;
  letter-spacing: 0.01em;
  max-width: 1246px;
  margin: -145px auto 60px;
  line-height: 1;
}
.page--home .section--about .artist-name img {
  max-width: 708px;
}
.page--home .section--about .artist-name span {
  background: #151513;
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: bold;
  letter-spacing: -0.02em;
  width: 292px;
  display: block;
  text-align: center;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: relative;
  right: 90px;
}
.page--home .section--about .text {
  max-width: 1000px;
  margin: 0 auto 230px;
  font-weight: bold;
}
.page--home .section--about .text p {
  font-size: 50px;
  line-height: 1.4;
  margin: 0 0 55px;
  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: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  line-height: 1;
}
.page--home .section--about .text .list--member li:last-child {
  margin-bottom: 0;
}
.page--home .section--contact {
  max-width: 1246px;
  margin: 0 auto -40px;
  position: relative;
  z-index: 10;
}
.page--home .section--contact .btn .btn--sub {
  margin: 0 auto 0 0;
  padding: 20px 0;
}
.page--home .section--contact .btn .btn--sub .contact {
  position: relative;
  bottom: 3px;
}
.page--home .section--contact .btn .btn--sub .contact svg {
  width: 34px;
  height: 24px;
  position: relative;
  top: 3px;
  fill: #151513;
}
.page--home .section--contact .btn .btn--sub .contact span {
  padding-left: 15px;
}
.page--home .section--contact .btn .btn--sub:hover svg {
  fill: #F2EFE1;
}
.btn > a,
.btn > span {
  width: 380px;
  height: 80px;
  display: block;
  padding: 20px 0;
  text-decoration: none;
  margin: 0 auto;
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn .btn--main {
  background: #151513;
  color: #F2EFE1;
}
.btn .btn--main:hover {
  background: #F2EFE1;
  color: #151513;
}
.btn .btn--sub {
  background: #F2EFE1;
  color: #151513;
  border: 4px solid #151513;
  padding: 16px 0;
}
.btn .btn--sub:hover {
  background: #151513;
  color: #F2EFE1;
}
.btn.back {
  margin-top: 80px;
}
footer {
  background: #151513;
  padding: 70px 0 50px;
}
footer .copyright {
  max-width: 1246px;
  margin: 0 auto;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
body:not(.page--home) footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-top: 50px;
}
@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: 36px 130px 36px 60px;
  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: 0.01em;
  color: inherit;
  font-size: 18px;
  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: 26px;
  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: 42px;
  height: 32px;
  right: 60px;
  margin-top: -16px;
  fill: #151513;
}
.page--information .list--news li a:hover,
.page--information .list--news li dl:hover {
  background: #151513;
  color: #F2EFE1;
}
.page--information .list--news li a:hover svg,
.page--information .list--news li dl:hover svg {
  fill: #F2EFE1;
}
.page--information .list--news li dl {
  padding: 0;
}
.page--information .list--news li dl dt {
  padding: 36px 60px 36px 60px;
  position: relative;
}
.page--information .list--news li dl dt .close {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
}
.page--information .list--news li dl dt .close span {
  height: 4px;
  position: absolute;
  background: #151513;
  top: 20px;
  width: 40px;
}
.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 dt .close:hover span {
  background: #FF7600;
}
.page--information .list--news li dl dd {
  padding: 0 60px 36px 60px;
  display: none;
}
.page--information .list--news li dl dd .text {
  font-weight: bold;
  margin: 0 auto 20px;
  max-width: 1000px;
}
.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 a:hover {
  text-decoration: none;
  background: transparent;
  color: #151513;
}
.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: 40px;
  font-weight: bold;
  letter-spacing: -0.02em;
  padding-left: 10px;
  line-height: 0;
  position: relative;
  top: 3px;
}
.page--information .list--news li.open dl:hover {
  background: #F2EFE1;
  color: #151513;
}
.page--information .list--news li.open dl dt .close {
  display: block;
}
.page--information .list--news li.open dl dt .tit {
  font-size: 34px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.01em;
  word-break: break-all;
}
.page--information .list--information {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  max-width: 1246px;
  margin: 0 auto;
  padding: 60px 0 0;
  position: relative;
  z-index: 10;
}
.page--information .list--information li {
  width: 30.6%;
  margin-right: 4%;
  position: relative;
}
.page--information .list--information li:nth-child(3n) {
  margin-right: 0;
}
.page--information .list--information li .date {
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
}
.page--information .list--information li .date .week {
  font-size: 24px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -12px;
  left: -12px;
  width: 2.5em;
  text-align: center;
}
.page--information .list--information li .date .end-time {
  display: block;
  position: relative;
}
.page--information .list--information li .date .end-time:before {
  content: "~";
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 0;
}
.page--information .list--information li .date .end-time {
  padding-top: 10px;
}
.page--information .list--information li .tit {
  color: inherit;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 116px;
}
.page--information .list--information li .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 150px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.page--information .list--information li .btn {
  position: absolute;
  left: 0;
  bottom: 0;
}
.page--information .list--information li .btn .close {
  display: none;
}
.page--information .list--information li.not-info {
  width: 100%;
  padding-top: 30px;
}
.page--information .list--information li > .text {
  display: none;
}
.page--information .list--information li {
  margin-bottom: 110px;
}
.page--information .list--movie {
  max-width: 1246px;
  margin: 0 auto;
  padding: 60px 0 0;
  position: relative;
  z-index: 10;
}
.page--information .list--movie li {
  width: 30.6%;
  float: left;
  margin: 0 4.1% 60px 0;
}
.page--information .list--movie li:nth-child(3n) {
  margin-right: 0;
}
.page--information .list--movie li:nth-child(3n+1) {
  clear: both;
}
.page--information .list--movie li a {
  display: block;
  position: relative;
  overflow: hidden;
}
.page--information .list--movie li a .thumb {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  position: relative;
  line-height: 0;
}
.page--information .list--movie li a .thumb img {
  width: 100%;
  height: 100%;
}
.page--information .list--movie li a .thumb .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: 24px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.page--information .list--movie li a .thumb .tit .name {
  line-height: 1;
  word-break: break-word;
  z-index: 10;
  position: relative;
  line-height: 1.2;
  max-width: 314px;
  overflow: hidden;
}
.page--information .list--movie li a .thumb .tit .name .ico-play {
  display: block;
  line-height: 1;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  padding: 22px 25px;
  border-radius: 50%;
  border: 4px solid #F2EFE1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transform: rotateZ(0deg);
  -webkit-transform: rotateZ(0deg);
}
.page--information .list--movie li a .thumb .tit .name .ico-play svg {
  width: 30px;
  height: 30px;
  fill: #F2EFE1;
}
.page--information .list--movie li a .thumb .tit .name .movie-tit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: center;
}
.page--information .list--movie li a .thumb .tit:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 19, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.page--information .list--movie li a .thumb .tit:hover:before {
  background: #151513;
}
.page--information .list--comics {
  max-width: 1246px;
  margin: 0 auto;
  padding: 60px 0 0;
  position: relative;
  z-index: 10;
}
.page--information .list--comics li {
  width: 30.6%;
  float: left;
  margin: 0 4.1% 60px 0;
}
.page--information .list--comics li:nth-child(3n) {
  margin-right: 0;
}
.page--information .list--comics li:nth-child(3n+1) {
  clear: both;
}
.page--information .list--comics li {
  color: #F2EFE1;
  border: 4px solid #151513;
  overflow: hidden;
  height: 20vw;
}
.page--information .list--comics li a {
  text-decoration: none;
  display: block;
  position: relative;
  height: 100%;
}
.page--information .list--comics li a:hover .ph:after,
.page--information .list--comics li a:hover .block--text {
  opacity: 1;
}
.page--information .list--comics li .ph {
  line-height: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.page--information .list--comics li .ph img.dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.page--information .list--comics li .ph img:not(.dummy) {
  transform: translateY(-60px);
}
.page--information .list--comics li .ph img {
  width: 100%;
}
.page--information .list--comics li .ph:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #151513;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
}
.page--information .list--comics li .block--text {
  opacity: 0;
  width: 90%;
  min-width: 250px;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.page--information .list--comics li .block--text .tit {
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  line-height: 1.4;
}
.page--information .list--comics li .block--text .tit span {
  display: block;
  line-height: 1;
  font-size: 18px;
  margin: 0 0 3px;
}
.page--information .list--comics li .block--text .date {
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
}
.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: 32px;
  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: 20%;
  height: 45px;
  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;
  line-height: 30px;
}
.page--video .section--list {
  border-top: 4px solid #151513;
}
.page--video .list--movie li a .thumb {
  position: relative;
  border: 4px solid #151513;
}
.page--video .list--movie li a .thumb .tit {
  z-index: 20;
}
.page--video .list--movie li a .thumb:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #151513;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
}
.page--video .list--movie li a:hover .thumb:after {
  opacity: 1;
}
.page--video .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--video .section--detail .video {
  border: 4px solid #151513;
}
.page--media .section--list {
  margin: 0 0 100px;
}
.page--media .section--list.topics {
  margin-bottom: 0;
  position: relative;
  border-top: 4px solid #151513;
  z-index: 1;
}
.page--media .section--list.topics .section-tit {
  top: -100px;
  font-size: 140px;
}
.page--media .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--media .section--detail .date {
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
}
.page--media .section--detail .date .week {
  font-size: 24px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -12px;
  left: -12px;
  width: 2.5em;
  text-align: center;
}
.page--media .section--detail .date .end-time {
  display: block;
  position: relative;
}
.page--media .section--detail .date .end-time:before {
  content: "~";
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 0;
}
.page--media .section--detail .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 150px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.page--media .section--detail .date .end-time {
  display: inline-block;
}
.page--media .section--detail .date .end-time:before {
  font-size: 70px;
  top: 50%;
  left: -22px;
  margin-top: -5px;
}
.page--live .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--live .section--detail .date {
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
}
.page--live .section--detail .date .week {
  font-size: 24px;
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -12px;
  left: -12px;
  width: 2.5em;
  text-align: center;
}
.page--live .section--detail .date .end-time {
  display: block;
  position: relative;
}
.page--live .section--detail .date .end-time:before {
  content: "~";
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 0;
}
.page--live .section--detail .category {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  width: 150px;
  border-bottom: 4px solid #F2EFE1;
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.page--live .section--detail .date .end-time {
  display: inline-block;
}
.page--live .section--detail .date .end-time:before {
  font-size: 70px;
  top: 50%;
  left: -22px;
  margin-top: -5px;
}
.page--comics .section--list {
  border-top: 4px solid #151513;
}
.page--comics .section--detail .section-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}
.page--comics .section--detail .date {
  float: left;
  line-height: 30px;
}
.page--comics .section--detail .thumb {
  width: 40%;
  margin: 0 auto;
  line-height: 0;
  position: relative;
  border: 4px solid #151513;
}
.page--comics .section--detail .thumb img {
  width: 100%!important;
}
.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: 34px;
  font-weight: bold;
  letter-spacing: -0.02em;
}
.page--comics .section--detail .block--pager a:hover,
.page--comics .section--detail .block--pager span:hover {
  color: #F2EFE1;
}
/* discography
------------------------------ */
.page--discography .section-tit {
  top: 40px;
  z-index: 50;
}
.page--discography .jacket {
  position: relative;
  line-height: 0;
}
.page--discography .list--discography {
  max-width: 1246px;
  margin: 0 auto;
  padding: 60px 0 0;
  position: relative;
  z-index: 10;
}
.page--discography .list--discography li {
  width: 30.6%;
  float: left;
  margin: 0 4.1% 60px 0;
}
.page--discography .list--discography li:nth-child(3n) {
  margin-right: 0;
}
.page--discography .list--discography li:nth-child(3n+1) {
  clear: both;
}
.page--discography .list--discography li {
  line-height: 1.8;
  margin-bottom: 60px;
  position: relative;
}
.page--discography .list--discography li .jacket {
  border: 4px solid #151513;
  position: relative;
  overflow: hidden;
}
.page--discography .list--discography li .jacket img {
  display: block;
  width: 100%;
  background: no-repeat center;
  background-size: cover;
}
.page--discography .list--discography li .jacket:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #151513;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
}
.page--discography .list--discography li .block--text {
  opacity: 0;
  width: 90%;
  min-width: 250px;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.page--discography .list--discography li .block--text .tit {
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  line-height: 1.4;
}
.page--discography .list--discography li .block--text .tit span {
  display: block;
  line-height: 1;
  font-size: 18px;
  margin: 0 0 3px;
}
.page--discography .list--discography li .block--text .date {
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page--discography .list--discography li .block--text .category {
  position: relative;
  font-family: 'Maven Pro', sans-serif;
  color: #F4D607;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid;
  padding: 0 10px;
  margin: 0 0 10px;
}
.page--discography .list--discography li a:hover .block--text {
  opacity: 1;
}
.page--discography .list--discography li a:hover .jacket:after {
  opacity: 1;
}
.page--discography .list--discography .not-info {
  width: 100%;
  float: none;
  margin: 0;
  padding: 10px 0 0;
}
.page--discography .section--detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.page--discography .section--detail .block--jacket {
  width: 40%;
}
.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 li {
  margin: 0 0 30px;
}
.page--discography .section--detail .block--jacket .list--jacket li .jacket {
  margin: 0 0 5px;
}
.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 {
  width: 55%;
}
.page--discography .section--detail .block--detail .tit {
  font-family: 'Maven Pro', sans-serif;
  color: #F2EFE1;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.page--discography .section--detail .block--detail .tit span {
  display: block;
  font-size: 26px;
  line-height: 1;
}
.page--discography .section--detail .block--detail .date {
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}
.page--discography .section--detail .block--detail .category {
  position: relative;
  margin: 0;
  font-family: 'Maven Pro', sans-serif;
  color: #F4D607;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  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 30px;
}
.page--discography .section--detail .block--detail .review {
  margin: 0 0 30px;
}
.page--discography .section--detail .block--detail .disc-info .list--track li {
  margin: 0 0 10px;
  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: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.page--discography .section--detail .block--detail .disc-info .list--track .tieup {
  font-size: 12px;
  opacity: 0.6;
  text-indent: 1.5em;
  color: #F2EFE1;
}
.page--discography .section--detail .block--detail .disc-info .disc-name {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.page--discography .section--detail .block--detail .disc-info > li {
  margin: 0 0 20px;
}
/* biography
------------------------------ */
.page--bio .section--detail {
  padding-top: 60px;
  border-top: 4px solid #151513;
  max-width: 100%;
}
.page--bio .section--detail .section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page--bio .section--detail .section-tit {
  font-family: 'Caveat', cursive;
  color: #151513;
  font-size: 200px;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 10;
}
.page--bio .section--detail .ph {
  height: 675px;
  background-size: cover;
  background-position: center center;
  border: 4px solid #151513;
}
.page--bio .section--detail .artist-name {
  margin: -130px auto 40px;
  line-height: 1;
}
.page--bio .section--detail .artist-name img {
  max-width: 708px;
  position: relative;
  z-index: 10;
}
.page--bio .section--detail .artist-name span {
  background: #151513;
  font-family: 'Caveat', cursive;
  color: #F2EFE1;
  font-size: 70px;
  font-weight: bold;
  letter-spacing: -0.02em;
  width: 292px;
  display: block;
  text-align: center;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  position: relative;
  right: 90px;
  top: -15px;
}
.page--bio .section--detail .name {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}
.page--bio .section--detail .member {
  margin: 0 0 10px;
}
.page--bio .section--detail .member dt {
  font-family: 'Maven Pro', sans-serif;
  color: #151513;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  width: 380px;
  float: left;
}
.page--bio .section--detail .member dt:last-child {
  margin-bottom: 0;
}
.page--bio .section--detail .member dd span {
  display: inline-block;
}
.page--bio .section--detail .member dd span i {
  font-size: 26px;
}
.page--bio .section--detail .member dd span a {
  display: block;
  line-height: 0;
}
.page--bio .section--detail .member dd span a svg {
  width: 21px;
  height: 21px;
  fill: #151513;
}
.page--bio .section--detail .member dd span a:hover i {
  color: #F2EFE1;
}
.page--bio .section--detail .member dd span a:hover svg {
  fill: #F2EFE1;
}
.page--bio .section--detail .member dd span.twitter {
  margin-right: 10px;
}
.page--bio .section--detail .member:last-of-type {
  margin: 0 0 50px;
}
.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: 50px;
  letter-spacing: 0.01em;
}
.page--exception .section--detail .text {
  margin: 0 0 40px;
}
/* Edgeのみ適用 */
@supports (-ms-ime-align: auto) {
  .page--information #popup .popupIn {
    overflow: visible;
  }
  .page--information .list--news li dl dd .text,
  .page--information #popup .inner .text {
    word-break: break-all;
  }
  body {
    cursor: url(/static/longman/official/cmn/cursor.cur), default;
    cursor: url(/static/longman/official/cmn/cursor.cur), auto;
  }
  body a,
  body button,
  body input,
  body label {
    cursor: url(/static/longman/official/cmn/cursor.cur), default;
    cursor: url(/static/longman/official/cmn/cursor.cur), auto;
  }
}
/* IEのみ適用 */
@media all and (-ms-high-contrast: none) {
  .page--home .section--topics {
    position: relative;
    display: block;
  }
  .page--home .section--topics .marquee {
    width: 100%;
    line-height: 73px;
  }
  .page--home .section--topics .marquee p {
    top: 0;
  }
  .page--home .section--topics .list--sns {
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
  }
  .page--home .section--video .block--video.youtube .tit .name {
    margin: 0 auto;
  }
  .page--information #popup .popupIn {
    overflow: visible;
  }
  .page--information .list--news li dl dd .text,
  .page--information #popup .inner .text {
    word-break: break-all;
  }
  .page--information .list--movie li a .thumb .tit .name {
    margin: 0 auto;
  }
  body {
    cursor: url(/static/longman/official/cmn/cursor.cur), default;
    cursor: url(/static/longman/official/cmn/cursor.cur), auto;
  }
  body a,
  body button,
  body input,
  body label {
    cursor: url(/static/longman/official/cmn/cursor.cur), default;
    cursor: url(/static/longman/official/cmn/cursor.cur), auto;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .page--home .section--topics {
    position: relative;
    display: block;
  }
  .page--home .section--topics .marquee {
    width: 100%;
    line-height: 75px;
  }
  .page--home .section--topics .marquee p {
    top: 0;
  }
  .page--home .section--topics .list--sns {
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* PCレスポンシブ 対応
------------------------------ */
@media screen and (min-width: 900px) and (max-width: 1246px) {
  .btn > a,
  .btn > span {
    width: 26vw;
  }
  .page--home .section--info .block--live .list--live,
  .page--home .section--info .block--media .list--media,
  .page--information .list--information,
  .page--information .list--movie {
    padding: 60px 60px 0;
  }
  .page--home .section--release .block--release .jacket .thumb {
    width: 38vw;
  }
  .page--home .section--release .block--release .jacket .bg-jacket {
    width: 58vw;
  }
  .page--home .section--release .block--release .disc-info .tit {
    font-size: 5vw;
  }
  .page--home .section--about .ph {
    height: 684px;
  }
  .page--home .section--about .artist-name {
    padding: 0 2%;
  }
  .page--home #popup .inner iframe {
    height: 30vh;
  }
  .page--home .section--contact {
    padding: 0 2%;
  }
  footer {
    padding: 70px 2% 50px;
  }
  .header .drawer .g-nav li a {
    font-size: 7vw;
  }
  .page--information #popup .popupIn {
    max-width: 100%;
    padding: 60px 60px;
    margin: 200px 5% 200px;
  }
  .page--information #popup .popupIn .close {
    right: 60px;
  }
  .page--bio .section--detail .section-inner {
    max-width: 800px;
  }
  .page--bio .section--detail .ph {
    height: 525px;
  }
  .page--discography .list--discography {
    max-width: 100%;
    padding: 60px 60px 0;
  }
  .page--detail .inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .page--home .section--info .block--live .list--live li .date,
  .page--home .section--info .block--media .list--media li .date,
  .page--information .list--information li .date {
    font-size: 66px;
  }
  .page--home .section--about .text p {
    font-size: 46px;
  }
}
/* iPad Pro 対応
------------------------------ */
@media screen and (min-width: 900px) and (max-width: 1024px) {
  .page--home .section--release .block--release .disc-info {
    padding-top: 54px;
  }
  .page--home .section--release .block--release .jacket .bg-jacket {
    top: -240px;
  }
  .page--home .section--about .text {
    max-width: 800px;
  }
}
