@charset "utf-8";
/* ---------------------------------------
0.0 mixin
	0.1 colors
	0.2 typography
	0.3 spacer
	0.4 chevron
	0.5 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 pagenation
3.0 layout
	3.1 base
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 gallery
	4.5 movie
	4.6 questionnaire
	4.7 faq
	4.8 support
-------------------------------------------- */
/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html,
body {
  height: 100%;
  -webkit-text-size-adjust: none;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
img,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
i {
  font-style: normal;
}
img {
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
::selection {
  background: #FFF0F0;
  color: #ff7675;
}
::-moz-selection {
  background: #FFDFDF;
  color: #ff7675;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
.sp {
  display: none !important;
}
/* 2.1 button
------------------------------ */
.detail__btn,
.btn {
  text-align: center;
  margin: 1em 0;
}
.detail__btn input,
.btn input {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn--main {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  border: none;
  position: relative;
  top: 0;
  background: #333;
  color: #fff;
}
.btn--main:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  background: #000;
}
.detail__btn a,
.btn--sub {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 3.4;
  padding: 0 1.5em;
  cursor: pointer;
  border: none;
  position: relative;
  top: 0;
  background: #fff;
  color: #333;
  border: 1px solid;
}
.detail__btn a:hover,
.btn--sub:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.detail__btn {
  margin-top: 80px;
}
.detail__btn a::after {
  content: 'BACK';
  font-family: brandon-grotesque, sans-serif;
}
.more {
  margin: 25px 0 0;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  text-align: right;
}
.more a:hover {
  color: #ff7675;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
  font-weight: bold;
}
.form--post dd {
  margin: 0 0 1em;
}
.block--error {
  color: #c00;
  background: rgba(204, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #999;
}
::-moz-placeholder {
  color: #999;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #999;
}
:-moz-placeholder {
  color: #999;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ccc;
  padding: 0.5em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
input[type="text"].form__error:focus,
input[type="tel"].form__error:focus,
input[type="email"].form__error:focus,
input[type="password"].form__error:focus,
input[type="number"].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.input--half {
  width: 50% !important;
}
.input--quarter {
  width: 25% !important;
}
/* textarea */
textarea {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ccc;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
/* select */
.form__selectbox,
.form__select {
  display: inline-block;
  position: relative;
}
.form__selectbox select,
.form__select select {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #ccc;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__selectbox select:focus,
.form__select select:focus {
  border-color: inherit;
}
.form__selectbox select.form__error,
.form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__selectbox select.form__error:focus,
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__selectbox select[disabled],
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__selectbox::after,
.form__select::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #f33;
}
.form__checkbox label p {
  padding-left: 1.6em;
}
.form__checkbox label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__checkbox label p::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  left: 0.2em;
  top: 70%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #ff7675;
  border-color: #ff7675;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #f33;
}
.form__radio label p {
  padding-left: 1.6em;
}
.form__radio label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__radio :checked ~ p::before {
  border-color: #ff7675;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #f33;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
  content: '';
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #ddd;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  right: 0;
  top: 50%;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #333;
  border-color: #333;
}
.form__toggle :checked ~ p::after {
  right: 0;
}
/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}
.form--confirm {
  width: 85%;
  margin: 0 auto 2em;
  padding: 40px 0 0;
}
.form--confirm dt {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 12px;
}
.form--confirm dd {
  margin: 0 0 30px;
}
/* 2.3 list
------------------------------ */
.no-data {
  padding: 50px 0;
  text-align: center;
  opacity: 0.5;
}
/*  information */
.list--information a {
  display: block;
  color: inherit;
  position: relative;
}
.list--information .tit {
  font-weight: bold;
}
.list--information .date {
  margin: 0 0 10px;
}
.list--information .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--information .category {
  display: inline-block;
  font-size: 13px;
}
.list--information .new .tit::after {
  content: ' ';
  display: inline-block;
  width: 33px;
  height: 15px;
  margin-left: 10px;
  background: url(/static/abemao/fanclub/cmn/ico_new.png) no-repeat 50% 50%;
  background-size: contain;
  vertical-align: -2px;
}
.list--information .thumb {
  margin: 0 0 10px;
}
.list--information li {
  position: relative;
  margin: 0 0 10px;
  background: #eef1f3;
}
.list--information .nextlive {
  position: absolute;
  top: -24px;
  left: 0;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 2em;
}
.list--information .nextlive svg {
  width: 20px;
  height: 21px;
  margin-right: 5px;
  vertical-align: bottom;
}
.list--information a {
  padding: 1.5em 1.5em 1.5em 0.5em;
}
.list--information a:hover {
  color: #ff7675;
}
.list--information a::after {
  display: table;
  content: "";
  clear: both;
}
.list--information .no-data {
  padding: 35px 5%;
}
.list--information .date {
  width: 120px;
  margin: 0;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  font-weight: 500;
}
.list--information .eventStart {
  font-size: 24px;
}
.list--information .eventStart .day {
  font-family: brandon-grotesque, sans-serif;
  font-size: 10px;
  font-weight: 700;
}
.list--information .tit {
  display: table-cell;
  vertical-align: middle;
  padding-left: 10px;
}
.list--information .category {
  display: block;
  width: 86%;
  background: #fff;
  border-radius: 10px;
  font-size: 10px;
  margin: 5px auto 0;
  padding: 0 10px;
  font-weight: 700;
  font-family: brandon-grotesque, sans-serif;
}
.list--information .list__txt {
  padding-left: 25%;
}
.list--information .list__txt .date {
  margin: 5px 0 0;
}
/*  contents */
.list--contents::after {
  display: table;
  content: "";
  clear: both;
}
.list--contents li {
  position: relative;
  top: 0;
  float: left;
  width: calc(90% / 3);
  margin: 0 5% 50px 0;
}
.list--contents li a {
  display: block;
  position: relative;
}
.list--contents li a:hover {
  color: #ff7675;
}
.list--contents li a:hover .thumb {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.list--contents li.new .date::after {
  content: ' ';
  display: inline-block;
  width: 33px;
  height: 15px;
  margin-left: 10px;
  background: url(/static/abemao/fanclub/cmn/ico_new.png) no-repeat 50% 50%;
  background-size: contain;
  vertical-align: -2px;
}
.list--contents li .tit {
  margin: 0 0 5px;
  font-weight: bold;
}
.list--contents li .thumb {
  line-height: 0;
  margin: 0 auto 15px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.list--contents li .date {
  font-weight: 500;
}
.list--contents li .lead {
  font-size: 12px;
}
.list--contents li:nth-child(3n) {
  margin-right: 0;
}
.list--contents li:nth-child(3n+1) {
  clear: both;
}
.list--latest li {
  position: relative;
  top: 0;
  float: left;
  width: calc(100% / 3);
  margin: 0;
  padding: 0 0 15px;
}
.list--latest li:last-child {
  margin: 0;
}
.list--latest li a {
  display: block;
  position: relative;
  color: #fff;
}
.list--latest li a:hover {
  color: #ff7675;
}
.list--latest li .date {
  font-weight: 500;
}
.list--latest li.new .date::after {
  content: ' ';
  display: inline-block;
  width: 33px;
  height: 15px;
  margin-left: 10px;
  background: url(/static/abemao/fanclub/cmn/ico_new_bl.png) no-repeat 50% 50%;
  background-size: contain;
  vertical-align: -2px;
}
.list--latest li .tit {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 5px;
}
.list--latest li .thumb {
  line-height: 0;
  margin: 0 0 15px;
  background: url(/static/abemao/fanclub/cmn/contents_noimage.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.list--latest li .thumb img {
  background-size: 100%;
}
.list--latest li .thumb a:hover .thumb {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.list--latest li li:nth-child(3n) {
  margin-right: 0;
}
.list--latest .list--blog {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
}
.list--latest .list--blog li {
  position: relative;
  float: none;
  width: calc((100% / 3) - 20px);
  margin: 0;
}
.list--latest .list--blog li:nth-child(3n) {
  margin-right: 0;
}
/*  schedule */
.list--schedule li {
  position: relative;
  top: 0;
  float: left;
  width: calc(98% / 3);
  min-height: 180px;
  background: #eef1f3;
}
.list--schedule li:nth-child(2) {
  margin: 0 1%;
}
.list--schedule li.new .tit::after {
  content: ' ';
  display: inline-block;
  width: 33px;
  height: 15px;
  margin-left: 10px;
  background: url(/static/abemao/fanclub/cmn/ico_new.png) no-repeat 50% 50%;
  background-size: contain;
  vertical-align: -2px;
}
.list--schedule li .nextlive {
  position: absolute;
  top: -24px;
  left: 0;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 2em;
}
.list--schedule li .nextlive svg {
  width: 20px;
  height: 21px;
  margin-right: 5px;
  vertical-align: bottom;
}
.list--schedule li a {
  display: block;
  position: relative;
  padding: 1.5em;
}
.list--schedule li a:hover {
  color: #ff7675;
}
.list--schedule li .date {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 400;
}
.list--schedule li .date span {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  vertical-align: middle;
}
.list--schedule li .date .year {
  background: #fff;
  border-radius: 10px;
  font-size: 10px;
  padding: 0 20px;
  font-weight: 700;
  font-family: brandon-grotesque, sans-serif;
}
.list--schedule li .date .day {
  font-size: 10px;
  font-family: brandon-grotesque, sans-serif;
  margin: 0 10px;
}
.list--schedule li .tit {
  font-weight: bold;
}
.list--schedule li:nth-child(3n) {
  margin-right: 0;
}
/* 2.4 pagenation
------------------------------ */
.section--list .block--pager {
  width: 80%;
  max-width: 600px;
}
.block--pager {
  text-align: center;
  margin: 60px auto 0;
  letter-spacing: -0.5em;
}
.block--pager li {
  position: relative;
  display: inline-block;
  padding: 0.6em;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
  font-weight: bold;
}
.block--pager li a,
.block--pager li span {
  display: block;
  height: 2.4em;
  line-height: 2.3em;
}
.block--pager li.current,
.block--pager .pager__item--current {
  color: #fff;
  text-shadow: #333 1px 1px 0px, #333 -1px 1px 0px, #333 1px -1px 0px, #333 -1px -1px 0px;
}
.block--pager .block--pager--newer,
.block--pager .pager__item--newer {
  float: left;
  text-align: left;
  padding-left: 50px;
}
.block--pager .block--pager--newer a::before,
.block--pager .block--pager--newer span::before,
.block--pager .pager__item--newer a::before,
.block--pager .pager__item--newer span::before {
  display: block;
  width: 26px;
  height: 7px;
  left: -2px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: auto;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 2%;
}
.block--pager .block--pager--number {
  display: inline;
}
.block--pager .block--pager--older,
.block--pager .pager__item--older {
  float: right;
  text-align: right;
  padding-right: 50px;
}
.block--pager .block--pager--older a::after,
.block--pager .block--pager--older span::after,
.block--pager .pager__item--older a::after,
.block--pager .pager__item--older span::after {
  display: block;
  width: 26px;
  height: 7px;
  right: -2px;
  margin-top: -4px;
  line-height: 0;
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 6%;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.block--pager .block--pager--older span,
.block--pager .block--pager--newer span,
.block--pager .pager__item--newer span,
.block--pager .pager__item--older span {
  opacity: 0.2;
}
.block--pager li a:hover {
  color: #ff7675;
}
.block--pager .block--pager--newer a:hover::before,
.block--pager .block--pager--older a:hover::after,
.block--pager .pager__item--newer a:hover::before,
.block--pager .pager__item--older a:hover::after {
  border-color: #ff7675;
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Arial', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wrap {
  position: relative;
  min-height: 100%;
  padding-bottom: 192px;
}
.sp {
  display: none !important;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center;
}
/* 3.2 header
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: 1.2s cubic-bezier(0.4, 0, 0, 1) 0.3s all;
  transition: 1.2s cubic-bezier(0.4, 0, 0, 1) 0.3s all;
}
.header h1 {
  position: absolute;
  top: 40px;
  left: 4%;
  width: 304px;
}
.header .block--join {
  position: absolute;
  z-index: 99;
  top: 45px;
  right: 160px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.header .block--join li {
  display: inline-block;
}
.header .block--join li a {
  display: block;
  line-height: 36px;
  padding: 0 10px;
  font-size: 16px;
}
.header .block--join li a:hover {
  color: #ff7675;
}
.header .block--join .usagi svg {
  width: 16px;
  height: 16px;
  margin: 0 10px;
  fill: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.drawer .inner {
  height: 100%;
  padding: 50px;
  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;
}
.drawer .inner div {
  width: 80%;
  margin: 0 auto;
}
.drawer__btn {
  position: absolute;
  right: 3%;
  top: 30px;
  width: 75px;
  height: 75px;
  z-index: 999;
  text-align: center;
  background: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__btn:hover {
  background: #000;
  cursor: pointer;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.drawer__btn::after {
  position: absolute;
  top: 12px;
  left: 16px;
  display: block;
  width: 50px;
  content: 'MENU';
  font-size: 16px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 900;
  word-wrap: break-word;
  letter-spacing: 0.5em;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__btn span {
  position: absolute;
  display: block;
  height: 2px;
  background: #fff;
  width: 0;
  left: 50%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  transform: scale(0.5);
  opacity: 0;
}
.drawer__btn span.top {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
}
.drawer__btn span.bottom {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
}
.g-nav {
  position: relative;
  padding-left: 100px;
  width: 50%;
  float: left;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.g-nav::before {
  position: absolute;
  left: -30px;
  top: 54px;
  display: block;
  color: #fff;
  font-size: 30px;
  text-shadow: #333 1px 1px 0px, #333 -1px 1px 0px, #333 1px -1px 0px, #333 -1px -1px 0px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.g-nav.free::before {
  content: 'OFFICIAL';
}
.g-nav.members::before {
  content: 'FAN CLUB';
}
.g-nav a {
  font-size: 20px;
  display: block;
}
.g-nav a:hover {
  color: #ff7675;
}
.g-nav li {
  margin: 0 0 10px;
}
.g-nav .nav--sns {
  margin: 50px 0 0;
}
.g-nav .nav--sns li {
  display: inline-block;
  margin: 0 20px 0 0;
}
.g-nav .nav--sns a {
  font-size: 18px;
}
.g-nav .menu li svg {
  display: inline-block;
  width: 22px;
  height: 22px;
  padding-top: 0px;
  padding-right: 0px;
  margin-bottom: -1px;
  margin-left: -1px;
}
.menuopen .drawer__btn::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.menuopen .drawer__btn span {
  opacity: 1;
  width: 46px;
  margin-left: -23px;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.fcarea .header .block--join li a {
  color: #fff;
}
.fcarea .header .block--join .usagi svg {
  fill: #fff;
}
.fcarea .drawer__btn {
  background: #fff;
}
.fcarea .drawer__btn::after {
  color: #333;
}
.fcarea.menuopen .drawer__btn {
  background: #333;
}
.fcarea.menuopen .header .block--join li a {
  color: #333;
}
.fcarea.menuopen .header .block--join .usagi svg {
  fill: #333;
}
/* 3.3 footer
------------------------------ */
.footerarea .wrap .fanclub .blogFloatBtn a {
  opacity: 0;
  pointer-events: none;
}
footer {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #999;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
footer .inner {
  padding: 40px 8% 80px;
}
footer .nav--support {
  margin-bottom: 30px;
}
footer .nav--support li {
  display: inline-block;
  margin-right: 10px;
}
footer .nav--support li a {
  color: #999;
}
footer .nav--support li a:hover {
  opacity: 0.5;
}
/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 38px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
}
.section-tit {
  color: inherit;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.section-tit span {
  font-size: 0.8em;
  display: block;
}
.block-tit {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: brandon-grotesque, sans-serif;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-tit {
  color: inherit;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.txt--error {
  text-align: center;
  color: #c00;
  font-weight: bold;
}
.ph {
  position: relative;
}
.dummy {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
/* 4.2 home
------------------------------ */
.page--home .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
}
.page--home .wrap {
  padding-bottom: 0;
}
.page--home .header {
  top: -100%;
}
.page--home footer {
  margin-top: -170px;
  padding-top: 200px;
  position: static;
  background: #eef1f3;
}
.page--home section {
  position: relative;
  width: 80%;
  margin: 0 auto 100px;
  padding: 0 3%;
}
.page--home .official {
  margin-bottom: 230px;
}
.page--home .keyvisual {
  position: relative;
  height: 100vh;
  margin: 0 0 100px;
}
.page--home .keyvisual .ph {
  position: absolute;
  width: 70%;
  height: 76%;
  top: 14%;
  left: 15%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 2;
}
.page--home .keyvisual .ph.blur {
  z-index: 1;
  top: 19%;
  left: 17%;
  opacity: 0.5;
  -webkit-filter: blur(35px);
  filter: blur(35px);
}
.page--home .keyvisual .block--sns {
  position: absolute;
  right: 3%;
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  text-align: center;
  z-index: 2;
  -webkit-transition: 1.2s cubic-bezier(0.4, 0, 0, 1) 0.8s all;
  transition: 1.2s cubic-bezier(0.4, 0, 0, 1) 0.8s all;
}
.page--home .keyvisual .block--sns li {
  margin-bottom: 15px;
}
.page--home .keyvisual .block--sns a:hover {
  color: #ff7675;
}
.page--home .keyvisual .scroll {
  position: absolute;
  top: 45%;
  left: 0;
  opacity: 0;
  -webkit-transition: 1.2s cubic-bezier(0.4, 0, 0, 1) 0.8s all;
  transition: 1.2s cubic-bezier(0.4, 0, 0, 1) 0.8s all;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page--home .keyvisual .scroll .text {
  display: block;
  font-size: 12px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page--home .keyvisual .scroll .text::after {
  position: absolute;
  top: 45%;
  left: 60px;
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: #333;
}
.page--home .keyvisual .scroll .text::after {
  -webkit-animation: scroll 1.5s linear 0s infinite;
  -moz-animation: scroll 1.5s linear 0s infinite;
  animation: scroll 1.5s linear 0s infinite;
}
.page--home .section--banner .block-tit {
  top: 22px;
  left: -30px;
}
.page--home .section--banner .slick-slide img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.page--home .section--banner .slick-slide a:hover img {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.page--home .section--banner #arrows {
  position: absolute;
  width: 40px;
  top: -25px;
  right: 5%;
  z-index: 2;
}
.page--home .section--banner #arrows .slick-next {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: auto;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-indent: -100%;
}
.page--home .section--banner #arrows .slick-prev {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 6%;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.page--home .section--banner #arrows .slick-disabled {
  opacity: 0.2;
}
.page--home .section--info .block-tit {
  top: 10px;
  left: -18px;
}
.page--home .section--media .block-tit {
  top: 18px;
  left: -25px;
}
.page--home .section--live {
  margin-bottom: 180px;
}
.page--home .section--live .block-tit {
  top: 5px;
  left: -15px;
}
.page--home .section--disc::after {
  content: ' ';
  display: block;
  width: 85%;
  height: 550px;
  margin: 0 auto;
  background: #eef1f3;
}
.page--home .section--disc div[class^="block"] {
  position: absolute;
}
.page--home .section--disc div[class^="block"] a {
  display: block;
}
.page--home .section--disc div[class^="block"] a:hover {
  color: #ff7675;
}
.page--home .section--disc div[class^="block"] .block-tit {
  left: -95px;
  top: 52px;
}
.page--home .section--disc .block--disc {
  top: -10%;
  left: 40px;
  width: 38%;
}
.page--home .section--disc .block--disc .ph img {
  background-size: contain;
}
.page--home .section--disc .block--mv {
  top: 30%;
  right: -2%;
  width: 50%;
}
.page--home .section--disc .block--mv .ph::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  content: ' ';
  width: 65px;
  height: 65px;
  margin: -32px 0 0 -32px;
  background: url(/static/abemao/fanclub/cmn/ico_play.png) no-repeat 50% 50%;
  background-size: contain;
}
.page--home .section--disc .block--mv img {
  background-size: 120%;
}
.page--home .section--disc .date,
.page--home .section--disc .tit {
  position: relative;
  z-index: 2;
}
.page--home .section--disc .date {
  margin: 0 0 10px;
  font-weight: 700;
}
.page--home .section--disc .tit {
  font-weight: bold;
}
.page--home .section--disc .ph {
  margin: 0 0 15px;
}
.page--home .section--disc .ph img {
  position: relative;
  z-index: 2;
}
.page--home .section--disc .ph img.blur {
  position: absolute;
  top: 20px;
  right: -15px;
  z-index: 1;
  opacity: 0.5;
  -webkit-filter: blur(30px);
  filter: blur(30px);
}
.page--home .fanclub {
  position: relative;
  z-index: 2;
  margin: 0 0 0 8%;
  padding: 120px 0;
  background: #111;
  color: #fff;
}
.page--home .fanclub section {
  width: 83%;
  padding: 0 0 0 3%;
}
.page--home .fanclub .block--title {
  position: absolute;
  top: -93px;
  left: 50px;
}
.page--home .fanclub .block--title .usagi {
  width: 90px;
}
.page--home .fanclub .block--title .logo {
  width: 230px;
  position: relative;
  top: -25px;
  left: 20px;
}
.page--home .fanclub .block--title .block--join {
  position: absolute;
  top: 30px;
  left: 400px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 160px;
}
.page--home .fanclub .block--title .block--join li {
  float: left;
}
.page--home .fanclub .block--title .block--join a:hover {
  color: #ff7675;
}
.page--home .fanclub .block--title .block--join .join::after {
  content: '/';
  color: #ccc;
  margin: 0 10px;
  font-weight: 200;
}
.page--home .fanclub .block--title .block--status {
  position: absolute;
  top: 20px;
  left: 400px;
  width: 400px;
  color: #333;
  font-size: 12px;
}
.page--home .fanclub .block--title .block--status .name {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}
.page--home .fanclub .block--title .block--status .name .month,
.page--home .fanclub .block--title .block--status .name .year {
  margin-left: 5px;
  padding: 0 4px;
  font-size: 12px;
  border: 1px solid;
  vertical-align: 2px;
}
.page--home .fanclub .block--title .block--status .name a {
  display: block;
}
.page--home .fanclub .block--title .block--status .name a:hover {
  color: #ff7675;
}
.page--home .fanclub .block--title .block--status .number {
  font-weight: bold;
}
.page--home .fanclub .block--title .block--status .change {
  font-weight: bold;
}
.page--home .fanclub .block--title .block--status .change a:hover {
  color: #ff7675;
}
.page--home .fanclub .block--title .block--status .limitYear {
  font-weight: bold;
  color: #c00;
}
.page--home .fanclub .block--title .block--status .limitYear a {
  color: #c00;
  text-decoration: underline;
}
.page--home .fanclub .section--info .list--information li {
  background: #222;
}
.page--home .fanclub .section--info .list--information .new .tit::after {
  background-image: url(/static/abemao/fanclub/cmn/ico_new_bl.png);
}
.page--home .fanclub .section--info .block-tit {
  left: -35px;
  top: 24px;
}
.page--home .fanclub .section--info .more a {
  color: #fff;
}
.page--home .fanclub .section--info .more a:hover {
  color: #ff7675;
}
.page--home .fanclub .section--latest {
  margin-bottom: 0;
}
.page--home .fanclub .section--latest .block-tit {
  left: -48px;
  top: 36px;
}
.page--home .fanclub .blogFloatBtn {
  position: fixed;
  right: 3%;
  bottom: 30px;
  z-index: 10;
}
.page--home .fanclub .blogFloatBtn a {
  display: block;
  background: #FFF;
  padding: 20px;
  font-weight: 600;
  font-family: brandon-grotesque, sans-serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page--home .pagetop {
  position: absolute;
  bottom: 100px;
  left: -7%;
}
.page--home .pagetop:hover {
  cursor: pointer;
}
.page--home .pagetop .text {
  display: block;
  font-size: 12px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #333;
}
.page--home .pagetop .text::after {
  position: absolute;
  top: 45%;
  left: 70px;
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: #333;
}
.page--home .pagetop .text::after {
  -webkit-animation: pagetop 1.5s linear 0s infinite;
  -moz-animation: pagetop 1.5s linear 0s infinite;
  animation: pagetop 1.5s linear 0s infinite;
}
@-webkit-keyframes scroll {
  0% {
    width: 0px;
    left: 60px;
    right: auto;
  }
  46% {
    width: 80px;
    left: 60px;
    right: auto;
  }
  50% {
    width: 80px;
    right: -90px;
    left: 60px;
  }
  54% {
    width: 80px;
    right: -90px;
    left: auto;
  }
  100% {
    width: 0px;
    right: -90px;
    left: auto;
  }
}
@-moz-keyframes scroll {
  0% {
    width: 0px;
    left: 60px;
    right: auto;
  }
  46% {
    width: 80px;
    left: 60px;
    right: auto;
  }
  50% {
    width: 80px;
    right: -90px;
    left: 60px;
  }
  54% {
    width: 80px;
    right: -90px;
    left: auto;
  }
  100% {
    width: 0px;
    right: -90px;
    left: auto;
  }
}
@keyframes scroll {
  0% {
    width: 0px;
    left: 60px;
    right: auto;
  }
  46% {
    width: 80px;
    left: 60px;
    right: auto;
  }
  50% {
    width: 80px;
    right: -90px;
    left: 60px;
  }
  54% {
    width: 80px;
    right: -90px;
    left: auto;
  }
  100% {
    width: 0px;
    right: -90px;
    left: auto;
  }
}
@-webkit-keyframes pagetop {
  0% {
    width: 0px;
    left: 70px;
    right: auto;
  }
  46% {
    width: 80px;
    left: 70px;
    right: auto;
  }
  50% {
    width: 80px;
    right: -90px;
    left: 70px;
  }
  54% {
    width: 80px;
    right: -90px;
    left: auto;
  }
  100% {
    width: 0px;
    right: -90px;
    left: auto;
  }
}
@-moz-keyframes pagetop {
  0% {
    width: 0px;
    left: 70px;
    right: auto;
  }
  46% {
    width: 80px;
    left: 70px;
    right: auto;
  }
  50% {
    width: 80px;
    right: -90px;
    left: 70px;
  }
  54% {
    width: 80px;
    right: -90px;
    left: auto;
  }
  100% {
    width: 0px;
    right: -90px;
    left: auto;
  }
}
@keyframes pagetop {
  0% {
    width: 0px;
    left: 70px;
    right: auto;
  }
  46% {
    width: 80px;
    left: 70px;
    right: auto;
  }
  50% {
    width: 80px;
    right: -90px;
    left: 70px;
  }
  54% {
    width: 80px;
    right: -90px;
    left: auto;
  }
  100% {
    width: 0px;
    right: -90px;
    left: auto;
  }
}
.load-finish.page--home .header {
  top: 0;
}
.load-finish.page--home .block--sns {
  right: 5%;
  opacity: 1;
}
.load-finish.page--home .scroll {
  left: 3%;
  opacity: 1;
}
/*  4.3 information
------------------------------ */
.section--list {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 130px 0 80px;
}
.section--detail {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 150px 0 60px;
}
.page--info .section--list .list--information {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.page--info .section--detail {
  max-width: 600px;
}
.page--info .section--detail .txt {
  margin: 40px 0 0;
}
.page--info .section--detail .ph {
  margin: 40px auto;
  text-align: center;
}
.page--info .section--detail .ph img {
  width: auto;
  height: auto;
}
.block--share {
  margin: 20px 0 0;
}
.block--share li {
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: middle;
  font-size: 18px;
  color: #999;
}
.block--share .lineIco {
  display: none;
}
.block--share .share {
  font-size: 12px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.block--share .ico {
  font-size: 14px;
}
.block--share .ico svg {
  fill: #999;
}
.block--share a {
  color: #999;
}
.block--share a:hover {
  color: #ff7675;
}
.section--detail .tit {
  color: inherit;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 25px;
  font-weight: bold;
}
.section--detail .date {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: bold;
}
.section--detail .category {
  font-size: 12px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.section--detail .category a {
  color: #ff7675;
}
.section--detail .category a:hover {
  text-decoration: underline;
}
.section--detail .txt {
  margin: 0 0 20px;
  line-height: 2em;
}
.section--detail .txt a {
  text-decoration: underline;
  color: #ff7675;
}
.section--detail .txt a:hover {
  opacity: 0.5;
}
.youtube {
  position: relative;
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/*  blog
------------------------------ */
.page--blog .list--information {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.page--blog .section--detail {
  max-width: 600px;
}
.page--blog .section--detail .ph {
  margin: 20px 0;
  line-height: 0;
}
.page--blog .section--detail .ph img {
  max-width: 100%;
}
.page--blog .section--detail .txt a {
  color: #ff7675;
  text-decoration: underline;
}
.page--blog .section--detail .txt a:hover {
  text-decoration: none;
}
.page--blog .section--detail .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.page--blog .section--detail .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.page--blog .block--player,
page--blog-detail .block--player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
/*  wallpaper
------------------------------ */
.page--wallpaper .list--contents li {
  background: #eef1f3;
}
.page--wallpaper .list--contents .tit {
  padding: 0 15px;
  margin: 0;
}
.page--wallpaper .section--detail .thumb {
  position: relative;
  width: 50%;
  margin: 0 auto 20px;
}
.list--point {
  margin: 30px auto;
  padding: 30px 30px 25px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  border: 1px solid #ddd;
  width: 380px;
}
.list--point li {
  width: 50%;
  float: left;
  text-align: center;
  position: relative;
}
.list--point li > span {
  display: block;
  font-family: YakuHanJP, 'Source Sans Pro', sans-serif;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-size: 15px;
  line-height: 2em;
}
.list--point li > span > span {
  font-size: 30px;
  margin: 0 5px 0 0;
}
.list--point .necessary > span > span {
  color: #eb6972;
}
.list--point li:last-child:after {
  content: '';
  height: 1px;
  width: 40px;
  font-size: 20px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: rotate(-68deg);
  -webkit-transform: rotate(-68deg);
  background: #ddd;
  display: block;
}
.block--wp-size {
  padding: 15px;
}
.block--wp-size li {
  display: inline-block;
  width: auto;
  margin: 0 3px 4px 0;
  float: none;
}
.block--wp-size li a {
  display: block;
  font-weight: bold;
  background: #fff;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 5px;
}
.block--wp-size li a span {
  display: none;
}
.block--wp-size li a:hover {
  color: #ff7675;
}
/*  discograpy
------------------------------ */
.block--category {
  text-align: center;
  margin: 0 0 40px;
}
.block--category li {
  margin: 0 20px;
  position: relative;
  display: inline-block;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.block--category li span,
.block--category li a {
  display: block;
  padding: 5px 10px;
}
.block--category li a:hover {
  color: #ff7675;
}
.block--category li.current a,
.block--category li.current span,
.block--category li .current {
  display: block;
  padding: 5px 10px;
  text-shadow: #333 1px 1px 0px, #333 -1px 1px 0px, #333 1px -1px 0px, #333 -1px -1px 0px;
  color: #fff;
}
.block--category li.current a:hover {
  text-shadow: #ff7675 1px 1px 0px, #ff7675 -1px 1px 0px, #ff7675 1px -1px 0px, #ff7675 -1px -1px 0px;
}
.past.block--category {
  position: relative;
  font-weight: bold;
  width: 90%;
  margin: -20px auto 40px;
  padding-right: 10px;
  text-align: right;
  font-size: 14px;
}
.past.block--category li {
  margin: 0;
}
.past.block--category::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: auto;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.list--discography a {
  display: block;
  color: inherit;
  position: relative;
}
.list--discography .tit {
  font-weight: bold;
}
.list--discography .date {
  margin: 0 0 10px;
}
.list--discography .auth {
  font-size: 10px;
  margin-left: 20px;
  padding: 3px 4px;
  background: #eee;
  color: #999;
}
.list--discography .category {
  display: inline-block;
  font-size: 13px;
}
.list--discography .new .tit::after {
  content: ' ';
  display: inline-block;
  width: 33px;
  height: 15px;
  margin-left: 10px;
  background: url(/static/abemao/fanclub/cmn/ico_new.png) no-repeat 50% 50%;
  background-size: contain;
  vertical-align: -2px;
}
.list--discography .thumb {
  margin: 0 0 10px;
}
.list--discography::after {
  display: table;
  content: "";
  clear: both;
}
.list--discography li {
  float: left;
  width: calc(78% / 3);
  margin: 0 11% 50px 0;
}
.list--discography li a {
  padding: 0;
  position: relative;
  top: 0;
}
.list--discography li a:hover {
  color: #ff7675;
}
.list--discography li a:hover .thumb {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.list--discography li .date {
  display: none;
  font-size: 12px;
  font-weight: bold;
}
.list--discography li .date::after {
  content: ' Release';
}
.list--discography li .block--text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.list--discography li .tit {
  margin: 0 0 10px;
  font-size: 12px;
}
.list--discography li .thumb {
  margin: 0 auto 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.list--discography li .thumb img {
  background-size: contain;
  background-position: 50% 100%;
}
.list--discography li:nth-child(3n) {
  margin-right: 0;
}
.list--discography li:nth-child(3n+1) {
  clear: both;
}
.page--disco .section--detail {
  max-width: 1000px;
}
.page--disco .section--detail .date::after {
  content: ' Release';
}
.page--disco .section--detail .block--category {
  display: none;
}
.page--disco .section--detail .block--jacket {
  width: 35%;
  float: left;
}
.page--disco .section--detail .block--jacket li {
  margin: 0 0 20px;
}
.page--disco .section--detail .block--jacket .thumb {
  position: relative;
}
.page--disco .section--detail .block--jacket .thumb::after {
  content: '';
  display: block;
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page--disco .section--detail .block--jacket .thumb img {
  margin: 0 0 10px;
  border: 1px solid #ddd;
}
.page--disco .section--detail .block--jacket figcaption {
  font-size: 11px;
}
.page--disco .section--detail .block--detail {
  padding-left: 40%;
}
.page--disco .section--detail .block--detail .block--comment {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--detail .block--comment a {
  color: #ff7675;
}
.page--disco .section--detail .block--detail .block--comment a:hover {
  text-decoration: underline;
}
.page--disco .section--detail .block--track .title {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: bold;
  border: 1px solid;
  padding: 2px 8px;
  line-height: 1em;
}
.page--disco .section--detail .block--track .list--track {
  margin: 0 0 20px;
  list-style: none;
}
.page--disco .section--detail .block--track .list--track .num {
  margin-right: 5px;
}
/*  movie
------------------------------ */
.page--movie .section--list {
  position: relative;
}
.page--movie .section--list .block--sort-category {
  z-index: 2;
  position: absolute;
  top: 140px;
  right: 0;
}
.page--movie .section--list .block--sort-category .block--sort {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid;
  padding: 17px 20px 20px;
  transition: 0.3s ease;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li .category {
  position: relative;
  display: block;
  margin: 0 0 15px;
  cursor: pointer;
  border-bottom: 1px solid #33333320;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li .category input[type=radio] {
  display: none;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li .category label {
  cursor: pointer;
  display: block;
  padding: 0 40px 15px 5px;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li .category label::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #333;
  right: 5px;
  top: 5px;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li .category label::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  right: 8px;
  top: 8px;
  opacity: 0;
  transition: 0.3s;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li .category input[type=radio]:checked + label::after {
  opacity: 1;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li:nth-last-child(2) .category {
  margin: 0;
  border-bottom: none;
}
.page--movie .section--list .block--sort-category .block--sort .list--sort li:last-child {
  display: none;
}
.page--movie .section--list .block--sort-category .block--sort .btn--setting button {
  cursor: pointer;
  background: #333;
  border: none;
  color: #fff;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  -webkit-appearance: none;
}
.page--movie .section--list .block--sort-category .btn--sort {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  right: 0;
  width: 27px;
  height: 25px;
  cursor: pointer;
}
.page--movie .section--list .block--sort-category .btn--sort span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(/static/abemao/fanclub/cmn/icon_sort.svg) no-repeat center center;
  background-size: contain;
}
.page--movie .section--list .block--sort-category.is-open .block--sort {
  display: block;
}
.page--movie .section--detail .block--player {
  text-align: center;
  margin: 0 0 20px;
}
.page--movie .section--detail .block--player .ulizahtml5 {
  margin: 0 auto;
}
.page--movie.page--point .ph {
  width: 50%;
  margin: 0 auto;
}
/*  photo
------------------------------ */
.page--photo #cboxOverlay {
  background: rgba(0, 0, 0, 0.8);
}
.page--photo #cboxPrevious,
.page--photo #cboxNext,
.page--photo #cboxClose {
  background-image: url(controls.png);
}
/*  lyric search
------------------------------ */
.page--lyrics .section--list .list--tabs {
  margin: 0 0 20px;
  padding: 0 5%;
  text-align: right;
}
.page--lyrics .section--list .list--tabs li {
  margin: 0;
}
.page--lyrics .section--list .list--tabs::before {
  margin: 0 10px 0 0;
  content: 'SORT:';
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold;
  opacity: 0.5;
}
.page--lyrics .list--information {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  border-top: 1px solid #ddd;
}
.page--lyrics .list--information li {
  background: #fff;
  border-bottom: 1px solid #ddd;
  margin: 0;
}
.page--lyrics .list--information .tit {
  padding: 0;
}
.page--lyrics .list--information .comment {
  position: absolute;
  line-height: 0;
  top: 50%;
  right: 15px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold;
  font-size: 11px;
  opacity: 0.6;
}
.page--lyrics .list--information .comment span {
  font-size: 16px;
}
.page--lyrics .list--information .comment::before {
  content: '\f086';
  font-family: FontAwesome;
  display: inline-block;
  position: relative;
  top: 0.1em;
  font-size: 16px;
  margin-right: 5px;
}
.page--lyrics .list--information a {
  padding: 20px 120px 20px 0;
}
.page--lyrics .list--information a:hover {
  color: #ff7675;
}
.page--lyrics .block--search {
  margin: 0 auto 70px;
  width: 60%;
}
.page--lyrics .block--search .form__selectbox {
  float: left;
  width: 25%;
  margin-right: 3%;
}
.page--lyrics .block--search .form__selectbox select {
  width: 100%;
}
.page--lyrics .block--search input[type="text"] {
  float: left;
  margin-right: 3%;
  width: 49%;
}
.page--lyrics .block--search .btn {
  float: right;
  width: 20%;
  margin: 0;
}
.page--lyrics .block--search input[type="submit"] {
  width: 100%;
  min-width: unset;
  padding: 0;
  height: 45px;
  line-height: 45px;
  border-radius: 0;
  border: none;
}
.page--lyrics .section--detail .block--search {
  width: 80%;
}
.page--lyrics .list--error {
  color: #c00;
  font-weight: bold;
}
.page--lyrics .block--category li:hover {
  cursor: pointer;
}
.page--lyrics .list__more {
  display: none;
}
.page--lyrics .block--lyrics {
  width: 500px;
  margin: 0 auto 50px;
  position: relative;
}
.page--lyrics .block--lyrics .credit {
  margin: 0 0 20px;
  font-size: 12px;
}
.page--lyrics .block--lyrics-tit .credit {
  margin: 0 0 20px;
  font-size: 12px;
}
.page--lyrics .block--lyrics-tit + .list--information li {
  padding: 20px 0;
}
.page--lyrics .block--lyrics-tit + .list--information .tit {
  display: block;
  font-size: 14px;
  margin: 0 0 10px;
  padding: 0;
}
.page--lyrics .block--lyrics-tit + .list--information .name {
  margin: 0 0 10px;
  font-size: 12px;
}
.page--lyrics .block--lyrics-tit + .list--information .date {
  display: inline;
  font-weight: normal;
}
.page--lyrics .block--lyrics-tit + .list--information .txt {
  margin: 0;
  font-size: 13px;
  line-height: 1.6em;
}
.page--lyrics .list--information.comment {
  width: 100%;
}
/* faq
------------------------------ */
.page--faq .section-tit {
  font-size: 30px;
}
.tit--category {
  color: inherit;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: bold;
  margin: 0 0 20px;
}
.searchBox {
  position: relative;
  width: 60%;
  margin: 0 auto 40px;
}
.searchBox input[type="submit"] {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 40px;
  line-height: 40px;
  font-size: 20px;
  color: #999;
  background: transparent;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  z-index: 2;
  font-family: FontAwesome;
}
.txt--no-data {
  text-align: center;
  margin: 0 0 40px;
  opacity: 0.5;
}
.list--faq {
  margin: 0 0 40px;
}
.list--faq li {
  border-top: 1px solid #ccc;
}
.list--faq li:last-child {
  border-bottom: 1px solid #ccc;
}
.list--faq a {
  position: relative;
  display: block;
  padding: 20px 5% 22px 0;
}
.list--faq a:hover {
  padding-left: 1%;
  color: #ff7675;
}
.list--faq .tit {
  padding-left: 20px;
}
.list--faq .txt {
  margin: 0;
  padding-left: 20px;
  line-height: 1.4;
}
.list--faq .icon--q {
  margin-right: 5px;
  float: left;
  color: #333;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.block--faq-detail {
  margin: 0 0 40px;
  padding: 25px;
  border: 1px solid #333;
}
.block--faq-detail dt {
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: 1px solid #333;
  font-size: 16px;
  font-weight: bold;
}
.block--faq-detail dt .txt {
  margin: 0;
  padding-left: 40px;
}
.block--faq-detail dt .category {
  display: inline-block;
  margin: 0 0 20px;
  padding: 1px 8px 0;
  font-size: 12px;
  background: #eee;
  color: #999;
  border-radius: 20px;
}
.block--faq-detail dd .txt {
  margin: 0;
  padding-left: 40px;
  font-size: 16px;
}
.block--faq-detail span[class^="icon--"] {
  float: left;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}
.block--faq-detail .icon--q {
  color: #fff;
  background: #333;
}
.block--faq-detail .icon--a {
  color: #333;
  background: #fff;
  border: 1px solid;
}
.page--faq .section--detail .block--contact {
  margin: 40px 0 0;
  text-align: center;
}
/*  4.8 questionnaire
------------------------------ */
.page--questionnaire section {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 150px 0 60px;
}
.page--questionnaire .section-tit {
  font-size: 30px;
  text-align: left;
  text-transform: inherit;
}
.form--post {
  width: 85%;
  margin: 0 auto 40px;
}
.form--post + .txt--sub {
  text-align: center;
}
.icon--required:after {
  margin-left: 5px;
  content: '※必須';
  color: #c00;
  font-weight: bold;
}
/*  4.8 radio
------------------------------ */
/*  4.8 support
------------------------------ */
.support .txt {
  margin: 0 0 10px;
}
.support .kiyaku {
  margin: 0 0 20px;
}
.support .kiyaku dt {
  margin: 0 0 5px;
  font-weight: bold;
}
.support .kiyaku .l_decimal {
  padding-left: 1em;
}
.support .kiyaku .l_decimal li {
  text-indent: -1em;
}
.support .section-tit {
  font-size: 30px;
}
.support .list--support dt {
  color: inherit;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.support .list--support dd {
  padding: 0 0 30px;
}
.support .list--support dd a {
  color: #ff7675;
  text-decoration: underline;
}
.support .list--support dd a:hover {
  text-decoration: none;
}
.support .list--support .txt {
  margin: 0 0 10px;
}
.support .txt-list {
  padding-left: 1.5em;
}
.support .txt-list li {
  margin: 0 0 10px;
}
.support .terms-list li {
  margin: 0 0 10px;
}
.list--sub {
  font-size: 11px;
  padding-left: 1em;
  margin: 0 0 40px;
}
.list--sub li {
  margin: 0 0 5px;
  text-indent: -1em;
}
/*  error
------------------------------ */
/*  IE対応
------------------------------ */
.ie .blur {
  display: none !important;
}
/* topVideo
---------------- */
#popupMovie {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
#popupMovie .topMovie {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
#popupMovie .topMovie .close {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -59px;
  right: 50%;
  cursor: pointer;
  transition: 0.3s;
  right: 0%;
}
#popupMovie .topMovie .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  width: 750px;
}
#popupMovie .topMovie .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/* staff blog
---------------- */
body.staff_blog {
  background: #eef1f3;
}
body.staff_blog .list--information li {
  background: #fff;
}
body.staff_blog .btn.question {
  margin: 1em 0 3.2em;
}
/* abemadio
---------------- */
.page--movie .radio-lead {
  margin-bottom: 50px;
  text-align: center;
}
.page--movie .radio-lead .radio-lead_txt {
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 20px;
}
.page--movie .radio-lead .radio-lead_btn a {
  letter-spacing: 1px;
  background: #333;
  color: #fff;
  padding: 8px 40px;
  font-weight: bold;
  display: inline-block;
}
.page--movie .radio-lead .radio-lead_btn a:hover {
  background: #ff7675;
}
.page--movie.new-movie .wrap .section--list .list--contents {
  gap: 0;
}
.page--movie.new-movie .wrap .section--list .list--contents li {
  width: calc(30%);
}
.page--movie.new-movie .wrap .section--list .detail__btn {
  font-family: brandon-grotesque, sans-serif;
}
.page--movie.new-movie .wrap .section--list .detail__btn a:after {
  display: none;
}
.page--movie.new-movie .wrap .section--detail .block--tit {
  width: 100%;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a {
  margin: 0;
}
.page--movie.new-movie .wrap .section--detail .detail__btn {
  font-family: brandon-grotesque, sans-serif;
}
.page--movie.new-movie .wrap .section--detail .detail__btn a:after {
  display: none;
}
.page--notice .list--info li {
  border-bottom: solid 1px #00000030;
}
.page--notice .list--info li a {
  display: block;
  padding: 1em 0;
}
.page--notice .list--info li a .date {
  font-size: 0.8em;
  font-weight: bold;
  color: #aaa;
}
