@charset "UTF-8";
/* ---------------------------------------
0.0 mixin
	0.1 colors
	0.2 typography
	0.3 spacer
	0.4 chevron
	0.5 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 pagenation
3.0 layout
	3.1 base
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 biography
	4.5 blog
	4.6 questionnaire
	4.7 faq
	4.8 support
	4.9 entry
-------------------------------------------- */
/* 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;
}

::-moz-selection {
  background: #000000;
  color: #fff;
}

::selection {
  background: #000000;
  color: #fff;
}

::-moz-selection {
  background: #000000;
  color: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

a {
  transition: 0.3s;
}

/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}

/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
.detail__btn,
.btn {
  text-align: center;
  margin: 1em 0;
  position: relative;
  transform: translate3d(0, 60px, 0);
  transition: transform 0.8s 0.1s, opacity 0.8s 0.1s;
  opacity: 0;
}
.detail__btn input,
.btn input {
  transition: 0.3s;
}

.loaded .detail__btn,
.loaded .btn {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.block--pager {
  position: relative;
}
.block--pager .list__more::before {
  display: none;
}
.block--pager.nowload .list__more {
  transition: 0.3s;
  opacity: 0;
}
.block--pager .loader {
  opacity: 0;
  position: relative;
}
.block--pager .loader::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 5em;
  height: 5em;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3.5em 0 0 -2.5em;
  text-indent: -9999em;
  border-top: 0.1em solid rgba(59, 64, 67, 0.15);
  border-right: 0.1em solid rgba(59, 64, 67, 0.15);
  border-bottom: 0.1em solid rgba(59, 64, 67, 0.15);
  border-left: 0.1em solid #000000;
  transform: translateZ(0);
  animation: loading 1.1s infinite linear;
}
.block--pager.nowload .loader {
  opacity: 1;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn--main {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 3.4;
  letter-spacing: 0.05em;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  padding: 0 1.5em;
  position: relative;
  top: 0;
  background: #000;
  color: #fff;
}
.btn--main:hover {
  background: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.list__more a,
.detail__btn a,
.btn--sub {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 3.4;
  letter-spacing: 0.05em;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 300px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  padding: 0 1.5em;
  position: relative;
  top: 0;
  color: #000000;
}

.list__more,
.detail__btn,
.page--error .btn--sub {
  text-align: center;
  margin-top: 80px;
}

.list__more a,
.detail__btn a,
.btn--sub {
  min-width: inherit;
  line-height: 1;
  color: #959EA7;
  border-radius: 0;
  padding: 4px 0 3px;
}
.list__more a:hover,
.detail__btn a:hover,
.btn--sub:hover {
  color: #000000;
}
.list__more a:hover::before,
.detail__btn a:hover::before,
.btn--sub:hover::before {
  background: #000000;
}
.list__more a::before,
.detail__btn a::before,
.btn--sub::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #959EA7;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.list__more a:hover::before,
.detail__btn a:hover::before,
.page--error .btn--sub:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.list__more a,
.detail__btn a::after {
  content: "BACK";
  font-family: "Francois One", sans-serif;
  font-weight: 400;
}

.list__more {
  position: relative;
  z-index: 10;
}

/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}

.block--error {
  color: #f00;
  background: rgba(204, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #9fa3a7;
}

::-moz-placeholder {
  color: #9fa3a7;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9fa3a7;
}

:-moz-placeholder {
  color: #9fa3a7;
}

/* 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],
button {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #959EA7;
  border-radius: 0.3em;
  padding: 0.5em;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
button:focus {
  border-color: inherit;
}
nav--fc input[type=text].form__error,
nav--fc input[type=tel].form__error,
nav--fc input[type=email].form__error,
nav--fc input[type=password].form__error,
nav--fc input[type=number].form__error,
nav--fc button.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,
button.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],
button[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

input[readonly=readonly],
input[readonly=readonly] {
  border: none;
  background: #eee;
}

.input--half {
  width: 50% !important;
}

.input--quarter {
  width: 25% !important;
}

button {
  border: none;
  line-height: 1;
}

/* textarea */
textarea {
  color: inherit;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #959EA7;
  border-radius: 0.3em;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
nav--fc 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: 16px;
  font-weight: inherit;
  line-height: 1.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #959EA7;
  border-radius: 0.3em;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus {
  border-color: inherit;
}
nav--fc .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;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: rotate(-45deg);
}

/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  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;
  top: 50%;
  left: 0;
}
.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;
  top: 70%;
  left: 0.2em;
  transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #000000;
  border-color: #000000;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}

/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  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;
  top: 50%;
  left: 0;
}
.form__radio :checked ~ p::before {
  border-color: #000000;
  border-width: 0.3em;
}

/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  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;
  top: 50%;
  right: 0;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  right: 20px;
}
.form__toggle :checked ~ p::before {
  background: #000000;
  border-color: #000000;
}
.form__toggle :checked ~ p::after {
  right: 0;
}

/* horizontal */
.form--horizontal li {
  display: inline-block;
}

.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}

.form--confirm {
  margin: 0 0 2em;
}

.form--confirm {
  border: 0.5px solid #d9dde0;
  border-radius: 6px;
  padding: 40px 30px 10px;
  margin-bottom: 40px;
}
.form--confirm dt {
  margin: 0 0 10px;
  opacity: 0.4;
}
.form--confirm dd {
  margin: 0 0 30px;
}

/* 2.3 list
------------------------------ */
.no-data {
  text-align: center;
  opacity: 0.5;
}

/*  information */
.list--information a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
}
.list--information .date {
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.list--information .tit {
  font-size: 20px;
}
.list--information .new .tit::after {
  content: "NEW";
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ff8881;
  margin-left: 10px;
}
.list--information .no-data {
  padding: 35px 5%;
}

.list--discography {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.list--discography li {
  width: 31.3%;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 1% 80px;
}
.list--discography li a {
  display: block;
  position: relative;
}
.list--discography li a figure {
  margin-bottom: 20px;
}
.list--discography li a figure .blur-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.list--discography li a figure .blur-wrap .blurBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(15px);
  background-size: cover;
  transform: scale(1.2);
}
.list--discography li a figure .shadow {
  background-size: cover;
}
.list--discography li a .category {
  font-family: "Francois One", sans-serif;
  font-weight: 400;
  font-size: 0.8em;
  display: inline-block;
  vertical-align: -1px;
  padding-right: 5px;
}
.list--discography li a .date {
  display: inline-block;
  position: relative;
}
.list--discography li a .date::after {
  content: "RELEASE";
  padding-left: 5px;
}
.list--discography li a .tit {
  font-size: 15px;
  line-height: 1.8;
}

.page--blog .section--list .block--pager {
  text-align: center;
  padding: 80px 80px 0;
}
.page--blog .section--list .block--pager li a, .page--blog .section--list .block--pager li span {
  font-size: 13px;
}
.page--blog .section--list .block--pager .pager__item--newer {
  float: left;
}
.page--blog .section--list .block--pager .pager__item--newer a, .page--blog .section--list .block--pager .pager__item--newer span {
  padding: 10px 0;
}
.page--blog .section--list .block--pager .pager__item--newer a::before, .page--blog .section--list .block--pager .pager__item--newer span::before {
  transform-origin: right;
  top: 2px;
}
.page--blog .section--list .block--pager .pager__item--newer span:hover::after {
  border-color: #959EA7;
}
.page--blog .section--list .block--pager .pager__item--newer span:hover::before {
  background: #959EA7 !important;
  transform: none !important;
}
.page--blog .section--list .block--pager .pager__item--newer a:hover::after {
  left: -6px;
}
.page--blog .section--list .block--pager .pager__item--older {
  float: right;
}
.page--blog .section--list .block--pager .pager__item--older a, .page--blog .section--list .block--pager .pager__item--older span {
  padding: 10px 0;
}
.page--blog .section--list .block--pager .pager__item--older a::before, .page--blog .section--list .block--pager .pager__item--older span::before {
  transform-origin: left;
  top: 2px;
}
.page--blog .section--list .block--pager .pager__item--older a::after, .page--blog .section--list .block--pager .pager__item--older span::after {
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.page--blog .section--list .block--pager .pager__item--older span:hover::after {
  border-color: #959EA7;
}
.page--blog .section--list .block--pager .pager__item--older span:hover::before {
  background: #959EA7 !important;
  transform: none !important;
}
.page--blog .section--list .block--pager .pager__item--older a:hover::after {
  right: -6px;
}
.page--blog .section--list .block--pager .pager__item--current {
  display: inline-block;
  font-family: "Francois One", sans-serif;
  position: relative;
  font-size: 13px;
  vertical-align: -1px;
  padding: 10px;
  top: -8px;
}
.page--blog .section--list .block--pager .pager__item--current::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
}
.page--blog .section--list .block--pager .pager__item--other {
  display: inline-block;
}
.page--blog .section--list .block--pager .pager__item--other a, .page--blog .section--list .block--pager .pager__item--other span {
  display: inline-block;
  position: relative;
  padding: 10px;
  top: -7px;
}
.page--blog .section--list .block--pager .pager__item--other a::before, .page--blog .section--list .block--pager .pager__item--other span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--blog .section--list .block--pager .pager__item--other a::after, .page--blog .section--list .block--pager .pager__item--other span::after {
  display: none !important;
}
.page--blog .section--list .block--pager .pager__item--other a:hover::before, .page--blog .section--list .block--pager .pager__item--other span:hover::before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}

/* contents */
.section--list .list--contents {
  display: flex;
  justify-content: space-between;
  align-items: top;
  flex-wrap: wrap;
}
.section--list .list--contents a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
}
.section--list .list--contents .date {
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.section--list .list--contents .tit {
  font-size: 20px;
}
.section--list .list--contents .new .tit::after {
  content: "NEW";
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ff8881;
  margin-left: 10px;
}
.section--list .list--contents .no-data {
  padding: 35px 5%;
}
.section--list .list--contents li {
  width: 47%;
}
.section--list .list--contents li .thumb {
  margin-bottom: 20px;
  background: #000;
}
.section--list .list--contents li .thumb img {
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
.section--list .list--contents li .thumb img.shadow {
  opacity: 0;
  filter: blur(20px);
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
}
.section--list .list--contents li a:hover .thumb img {
  opacity: 1;
}
.section--list .list--contents li a:hover .thumb .shadow {
  filter: blur(20px);
  opacity: 0.6;
}
.section--list .list--contents li .tit {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-break: break-word;
  margin-bottom: 10px;
}

/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
body {
  background-color: #fff;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
}

a {
  color: #000000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrap {
  position: relative;
  min-height: 100%;
  padding: 0 0 360px;
}

.sp {
  display: none !important;
}

/* 3.2 header
------------------------------ */
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  z-index: 999;
  transition: 0.3s;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}
.header .inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .headerColumn {
  position: relative;
}
.header .navMenu {
  display: flex;
  transition: 0.3s;
  padding: 0 20px 0 0;
  margin: 0 0 20px;
}
.header h1.logoOfficial {
  position: relative;
  z-index: 999;
  margin: 0 20px;
}
.header h1.logoOfficial a {
  display: block;
  width: 160px;
  height: 80px;
  background: url(/static/sbr/common/logo_sp.svg) center/contain no-repeat;
  text-indent: -9999em;
  position: relative;
}
.header h1.logoFc {
  position: relative;
  left: 45px;
  z-index: 999;
}
.header h1.logoFc a {
  display: block;
  width: 160px;
  height: 130px;
  background: url(/static/sbr/common/logo_fc_.png) center/contain no-repeat;
  text-indent: -9999em;
  position: relative;
}

.page--home.headerFixed .header {
  top: 0;
  transform: translateY(0);
}

.drawer {
  display: flex;
  align-items: center;
  transition: 0.3s;
  margin: 0 40px 0 0;
}
.drawer .g-nav {
  width: 100%;
  flex-wrap: wrap;
  transition: 0.3s;
}
.drawer .g-nav .g-nav__inner {
  text-align: right;
  position: relative;
  top: 0;
  transition: 0.3s;
}
.drawer .nav--official {
  display: flex;
  align-items: center;
  justify-content: end;
}
.drawer li {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin-right: 1.8em;
  vertical-align: top;
}
.drawer li.soon {
  opacity: 0.3;
  pointer-events: none;
}
.drawer li.jp .date {
  top: -15px;
  line-height: 1.4;
  font-weight: 400;
}
.drawer li a .date {
  min-width: 100%;
  font-family: "Overpass", sans-serif;
  font-size: 10px;
  display: block;
  line-height: 0.5;
  text-align: center;
  color: #FD5651;
  margin-top: 6px;
  margin-left: -0.1em;
  transform: scale(0.9);
  position: absolute;
  letter-spacing: 0;
  top: -12px;
  left: 0;
  left: 0;
}
.drawer li a, .drawer li label {
  position: relative;
  letter-spacing: 0;
}
.drawer li a::before,
.drawer li label::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.drawer li:last-child {
  margin-right: 0;
}
.drawer li a:hover::before,
.drawer li label:hover::before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}
.drawer li.nav__item--join a::before {
  display: none;
}
.drawer li.nav__item--join a:hover {
  background: #000000;
  color: #fff;
}
.drawer .fc li a::before {
  background: #EF3329;
}
.drawer .limitYear {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  line-height: 33px;
  vertical-align: 1px;
  margin-right: 15px;
  margin-left: -18px;
}
.drawer .limitYear a {
  display: block;
  background: #6a7279;
  color: #fff;
  padding: 0 10px;
}
.drawer .limitYear a:hover {
  background: #000;
}
.drawer .limitYear a i {
  display: inline-block;
  margin-left: 5px;
}
.drawer .limitYear a span {
  display: inline-block;
  margin-left: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 1;
  padding: 3px 7px;
}
.drawer .nav-box.official {
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}
.drawer .nav-box.official .nav--official li {
  line-height: 1.5;
}
.drawer .nav-box.fc {
  display: block;
  vertical-align: top;
  position: relative;
  padding-left: 1em;
  margin-left: 1em;
}
.drawer .nav-box.fc .nav--fc {
  padding-left: 5.5em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.drawer .nav-box.fc .nav--fc.en li {
  font-family: "Francois One", sans-serif;
  font-weight: 400;
}
.drawer .nav-box.fc .nav--fc.zh-tw li {
  font-family: "Francois One", sans-serif;
  font-weight: 400;
}
.drawer .nav-box.fc .nav__item--blog,
.drawer .nav-box.fc .nav__item--streaming {
  line-height: 1.9;
}
.drawer .nav-box.fc .nav__item--blog .date,
.drawer .nav-box.fc .nav__item--streaming .date {
  line-height: 1.4;
  font-weight: 400;
}
.drawer .nav-box.fc li a {
  color: #EF3329;
}
.drawer .nav-box.fc .nav__item--streaming {
  margin-right: 0;
}
.drawer .nav-box.fc.border::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #000000;
  position: absolute;
  top: 6px;
  left: 0;
}
.drawer .nav--support {
  display: none !important;
}

.nav-box.login {
  width: 100%;
  text-align: right;
  align-items: center;
  transition: 0.3s;
  display: flex;
  justify-content: flex-end;
  margin: 0 0 20px;
}
.nav-box.login li {
  display: inline-block;
  vertical-align: top;
}
.nav-box.login .nav--login {
  display: flex;
}
.nav-box.login .nav__item--login a {
  line-height: 1;
  background: #777777;
  color: #FFF;
  padding: 20px;
  display: block;
  font-size: 13px;
  width: 140px;
  letter-spacing: 0.1em;
  text-align: center;
}
.nav-box.login .nav__item--login a::before {
  display: none;
}
.nav-box.login .nav__item--login a:hover {
  background: #EE6860;
  color: #fff;
}
.nav-box.login .nav__item--course_change a {
  line-height: 1;
  background: #777;
  color: #FFF;
  padding: 20px;
  display: block;
  font-size: 13px;
  width: 140px;
  letter-spacing: 0.1em;
  text-align: center;
}
.nav-box.login .nav__item--course_change a::before {
  display: none;
}
.nav-box.login .nav__item--course_change a:hover {
  background: #EE6860;
  color: #fff;
}
.nav-box.login .nav__item--join a,
.nav-box.login .nav__item--mypage a {
  line-height: 1;
  background: #333333;
  color: #FFF;
  padding: 20px;
  display: block;
  font-size: 13px;
  width: 140px;
  text-align: center;
  letter-spacing: 0.1em;
}
.nav-box.login .nav__item--join a::before,
.nav-box.login .nav__item--mypage a::before {
  display: none;
}
.nav-box.login .nav__item--join a:hover,
.nav-box.login .nav__item--mypage a:hover {
  background: #EE6860;
  color: #fff;
}
.nav-box.login .nav--language {
  display: inline-block;
  padding-left: 0.1em;
  margin-right: 2.1em;
  position: relative;
  padding-top: 5px;
}
.nav-box.login .nav--language li:not(:last-of-type) {
  margin-right: 0.5em;
}
.nav-box.login .nav--language li button {
  font-size: 16;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.nav-box.login .nav--language li label {
  color: #959EA7;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}
.nav-box.login .nav--language li.current label {
  color: #000000;
}
.nav-box.login .nav--language li input {
  display: none;
}
.nav-box.login .nav--language li:hover label {
  color: #000000;
}

.nav--sns {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0 0 40px;
}
.nav--sns::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.nav--sns li:not(:last-of-type) {
  margin-right: 24px;
}
.nav--sns .nav__item--instagram {
  margin-right: 18px;
}
.nav--sns li:last-of-type {
  margin-right: 0;
}
.nav--sns a {
  display: block;
  transition: 2.6s;
  font-size: 26;
}
.nav--sns a::before {
  display: none;
}
.nav--sns a:hover {
  transform: rotateY(1260deg);
  -webkit-transform: rotateY(1260deg);
}
.nav--sns li.nav__item--apple a {
  display: block;
  align-items: center;
}
.nav--sns li.nav__item--apple a img {
  width: 13px;
}
.nav--sns li.nav__item--spotify a {
  display: block;
}
.nav--sns li.nav__item--spotify a img {
  width: 13px;
}
.nav--sns li.staff a {
  position: relative;
}
.nav--sns li.staff a:before {
  display: block;
  content: "STAFF";
  position: absolute;
  font-size: 8px;
  letter-spacing: 0;
  width: 280%;
  text-align: center;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  font-weight: 800;
  pointer-events: none;
}

.drawer__btn {
  display: none;
}

.err--page {
  padding: 240px 0 0;
}
.err--page .errTxt {
  text-align: center;
}

/* 3.3 footer
------------------------------ */
footer {
  width: 100%;
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  word-break: break-word;
  color: #959EA7;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 120px 5%;
}
footer .inner {
  position: relative;
}
footer .copyright {
  font-size: 14px;
  color: #000;
  letter-spacing: 0.06em;
  text-align: left;
  margin-top: 2.0833333333vw;
}
footer .footer--logo {
  display: none;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
footer .footer--logo li.official--logo {
  width: 118px;
}
footer .footer--logo li.fc--logo {
  width: 152px;
  margin-left: 50px;
}
footer .nav--support {
  text-align: left;
}
footer .nav--support .nav-tit {
  display: none;
}
footer .nav--support li {
  display: inline-block;
  line-height: 2.2em;
}
footer .nav--support li a {
  padding: 0 20px 0 0;
  color: #000;
  font-size: 14px;
}
footer .nav--support li a:hover {
  color: #737679;
}
footer .block--share .nav--sns {
  margin: 0 0 40px;
  padding: 0;
}
footer .block--share .nav--sns li {
  display: inline-block;
  margin: 0 25px 0 0 !important;
}
footer .block--share .nav--sns li a {
  display: block;
  color: #9fa3a7;
  font-size: 28px;
}
footer .block--share .nav--sns li a img {
  width: 23px;
}

/* 4.0 page
============================== */
/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 1.2em;
}

.section-tit {
  color: inherit;
  font-size: 50px;
  font-weight: inherit;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 0 0 60px;
  text-align: center;
  font-weight: 600;
}

.page--member .section-tit {
  color: #EE6860;
}

.category-1 .section-tit,
.category-18 .section-tit {
  color: #000000;
}

.txt--lead {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  margin: 0 0 1em;
}

.txt--basic {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  margin: 0 0 1em;
}

.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.txt--link {
  text-decoration: underline;
}

.ph, .thumb {
  line-height: 0;
  position: relative;
}

.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
.cover svg {
  width: 100%;
  height: 100%;
}

.svg-symbol {
  display: none !important;
}

/* 4.2 home
------------------------------ */
.page--home {
  /* section--photo */
  /* section--movie */
  /* block--share */
  /* footer support */
}
.page--home .wrap {
  background: transparent;
  padding: 0;
}
.page--home .wrap::after {
  display: none;
}
.page--home .header {
  transform: translateY(-100%);
}
.page--home .loading {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 9999;
}
.page--home .block--logo {
  display: none;
}
.page--home .section--photo {
  position: absolute;
}
.page--home .section--photo figure {
  width: 70%;
  margin: 0 auto;
}
.page--home .section--photo figure img {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
.page--home .section--photo .block--bnr {
  width: 250px;
  height: 250px;
  position: fixed;
  z-index: 10;
  right: 3%;
  bottom: 2vw;
}
.page--home .section--photo .block--bnr .slick-list {
  padding: 20px;
}
.page--home .section--photo .block--bnr.double li {
  display: inline-block;
  width: 13vw;
  min-width: 170px;
  margin-right: 1vw;
}
.page--home .section--photo .block--bnr.double li:last-child {
  margin-right: 0;
}
.page--home .section--photo .block--bnr li {
  width: 210px;
}
.page--home .section--photo .block--bnr li a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 25px 30px 16px -20px rgba(59, 64, 67, 0.2);
  line-height: 0;
}
.page--home .section--photo .block--bnr li a img {
  display: block;
  transform: rotate(0deg);
  transition: 0.8s linear;
}
.page--home .section--photo .block--bnr li a:hover img {
  transition: 12s linear;
  transform: rotate(1800deg);
}
.page--home .section--photo .block--photo .list--bnr {
  width: 70%;
  margin: 0 auto;
}
.page--home .section--photo .block--photo .list--bnr li {
  line-height: 0;
}
.page--home .section--photo .block--photo .list--bnr a {
  pointer-events: none;
  cursor: default;
}
.page--home .section--photo .block--photo .list--bnr img {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
.page--home .section--movie {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 70px;
}
.page--home .section--movie .block--thumbnail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page--home .section--movie .block--thumbnail figure {
  width: 47.5%;
  background: #000;
  line-height: 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.page--home .section--movie .block--thumbnail figure::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(/static/sbr/common/icon__arrow.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.page--home .section--movie .block--thumbnail figure img {
  filter: grayscale(100);
  position: relative;
  z-index: 2;
  transition: 0.3s;
  opacity: 0;
}
.page--home .section--movie .block--thumbnail figure img.thumb-visible {
  opacity: 0.4;
}
.page--home .section--movie .block--thumbnail figure img.thumb-visible.shadow {
  opacity: 0;
  filter: grayscale(0) blur(20px);
  position: absolute;
  top: 30px;
  left: 10px;
  z-index: 1;
}
.page--home .section--movie .block--thumbnail figure:hover .thumb-visible {
  filter: grayscale(0);
  opacity: 1;
}
.page--home .section--movie .block--thumbnail figure:hover .thumb-visible.shadow {
  filter: grayscale(0) blur(20px);
  opacity: 0.6;
}
.page--home .section--movie .block--video {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  pointer-events: none;
}
.page--home .section--movie .block--video .block--video__cover {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.page--home .section--movie .block--video .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}
.page--home .section--movie .block--video .block--video__item {
  width: 60vw;
  min-width: 600px;
  height: 40vw;
  min-height: 405px;
  position: absolute;
  z-index: 100;
  padding-top: 0;
  transition: 0.3s 0.1s;
  opacity: 0;
}
.page--home .section--movie .close {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -25px;
  right: -10%;
  z-index: 100;
  transition: 0.3s 0.1s;
  opacity: 0;
  cursor: pointer;
}
.page--home .section--movie .close:hover::after {
  background: #000;
  transform: scale(1.1) rotate(45deg);
}
.page--home .section--movie .close:hover::before {
  background: #000;
  transform: scale(1.1) rotate(-45deg);
}
.page--home .section--movie .close::after, .page--home .section--movie .close::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000000;
  position: absolute;
  top: 0;
  left: 50%;
  transition: 0.3s;
}
.page--home .section--movie .close::after {
  transform: rotate(45deg);
}
.page--home .section--movie .close::before {
  transform: rotate(-45deg);
}
.page--home .section--movie.single .block--thumbnail {
  justify-content: center;
}
.page--home .section--movie.single .block--thumbnail .block--thumbnail__item {
  width: 70%;
}
.page--home.movie--visible .section--movie .block--video {
  pointer-events: auto;
}
.page--home.movie--visible .section--movie .block--video .block--video__cover, .page--home.movie--visible .section--movie .block--video .close, .page--home.movie--visible .section--movie .block--video .visible {
  opacity: 1;
}
.page--home.movie--visible .section--movie .block--video .block--video__item:not(.visible) {
  display: none;
}
.page--home .block--share {
  display: block;
  text-align: left;
  padding: 0;
  margin-bottom: 0;
  background: #FFF;
}
.page--home .block--share::before {
  display: none;
}
.page--home .block--share .nav--sns::before {
  content: none;
}
.page--home .block--share .nav--sns li {
  line-height: 1;
  text-align: center;
  font-size: 32px;
  margin: 0 20px 0 0;
}
.page--home .block--share .nav--sns li.nav__item--facebook {
  margin-right: 20px;
}
.page--home .block--share .nav--sns li.nav__item--facebook i {
  font-size: 28px;
}
.page--home .block--share .nav--sns li:last-of-type {
  margin-right: 0;
}
.page--home .block--share .nav--sns li a {
  color: #000000;
}
.page--home .block--share .nav--sns li a:hover {
  color: #9fa3a7;
}
.page--home .block--share .nav--sns li a:hover svg {
  fill: #9fa3a7;
}
.page--home .block--share .nav--sns li a svg {
  width: 22px;
  height: 22px;
  fill: #000000;
  margin-top: 4px;
  transition: 0.3s;
}
.page--home .block--share .nav--sns li.staff a {
  position: relative;
}
.page--home .block--share .nav--sns li.staff a:before {
  display: block;
  content: "STAFF";
  position: absolute;
  font-size: 8px;
  letter-spacing: 0;
  width: 280%;
  text-align: center;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  font-weight: 800;
  pointer-events: none;
}
.page--home .nav--support {
  width: calc(100% - 340px);
}
.page--home footer {
  position: relative;
  bottom: 0;
  left: 0;
  background: #FFF;
}
.page--home footer .footer--logo {
  display: flex;
}
.page--home .whatsShubabu {
  display: flex;
  max-width: 980px;
  margin: 80px auto;
  padding: 0 3vw;
  padding-bottom: 0;
}
.page--home .whatsShubabu .fc--logo {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF0EF;
}
.page--home .whatsShubabu .fc--logo img {
  width: 75%;
}
.page--home .whatsShubabu .detail {
  width: 60%;
  background: #FFE0DE;
  padding: 45px;
}
.page--home .whatsShubabu .detail .lead {
  font-size: 14px;
  margin-bottom: 60px;
}
.page--home .whatsShubabu .detail .more {
  text-align: right;
}
.page--home .whatsShubabu .detail .more a {
  font-size: 12px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  line-height: 1em;
}
.page--home .whatsShubabu .detail .more a:after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 49%;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--home .whatsShubabu .detail .more a:hover:after {
  right: -5px;
}
.page--home .fixBg {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-position: left top;
  transition: 0.3s;
  box-sizing: border-box;
}
.page--home .fixBg.fix2 {
  opacity: 0;
}
.page--home .fixBg.fix3 {
  opacity: 0;
}
.page--home .fixBg .mainLogoClumn {
  position: absolute;
  top: 0;
  height: 100%;
  max-height: calc(100vh - 120px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.page--home .fixBg .mainLogoClumn .mainLogo {
  width: 31.25vw;
  height: 100%;
  max-height: 80%;
  display: flex;
  line-height: 0;
}
.page--home .fixBg .list--bnr {
  width: 100%;
  height: 100%;
}
.page--home .fixBg .list--bnr li {
  width: 100%;
  height: 100%;
}
.page--home .fixBg .list--bnr li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.page--home .fixBg .list--bnr li a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
}
.page--home .section--visual {
  background: transparent;
  height: 100vh;
}
.page--home .section--bnr--top {
  background: #FFF;
  padding-top: 90px;
  padding-bottom: 90px;
}
.page--home .section--bnr--top .list--bnr {
  width: 710px;
  margin: 0 auto;
}
.page--home .section--bnr--top .list--bnr li a {
  display: block;
  line-height: 0;
}
.page--home .section--bnr--top .list--bnr li a img {
  width: 100%;
}
.page--home .section--bnr--top .list--bnr li a:hover {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}
.page--home .section--bnr--top .list--bnr .slick-dots {
  bottom: auto;
  top: 100%;
}
.page--home .section--bnr--top .list--bnr .slick-dots button::before {
  font-size: 20px;
}
.page--home .section--bnr--top.on .list--bnr {
  opacity: 1;
  transform: translateY(0);
}
.page--home .officialAll {
  background: #FFF;
  padding: 0 0 200px;
  color: #FFF;
}
.page--home .officialAll .section--official--tit {
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s;
}
.page--home .officialAll .section--official--tit h2 {
  width: 50vw;
  margin: 0 auto 100px;
  position: relative;
}
.page--home .officialAll .section--official--tit.on {
  transform: translateY(0);
  opacity: 1;
}
.page--home .officialAll .contentInner {
  position: relative;
  width: 980px;
  margin: 0 auto 135px;
}
.page--home .officialAll .contentInner .topics-tit {
  position: relative;
  text-align: left;
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 0;
  line-height: 1em;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
}
.page--home .officialAll .contentInner .topics-tit:before {
  content: "TOPICS";
  position: absolute;
  top: 0;
  left: 7px;
  color: rgba(240, 126, 120, 0.1);
}
.page--home .officialAll .contentInner .more {
  text-align: right;
  line-height: 1em;
  padding-top: 10px;
}
.page--home .officialAll .contentInner .more .moreLink {
  font-size: 12px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  line-height: 1em;
}
.page--home .officialAll .contentInner .more .moreLink:after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 49%;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--home .officialAll .contentInner .more .moreLink:hover:after {
  right: -5px;
}
.page--home .officialAll .contentInner .anim {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.3s;
}
.page--home .officialAll .contentInner .anim.on {
  transform: translateY(0);
  opacity: 1;
}
.page--home .officialAll .contentInner .new .date:after {
  content: "NEW";
  font-weight: 800;
  font-size: 12px;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -applesystem, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .officialAll .contentInner .new .tit:after {
  content: none;
}
.page--home .officialAll .contentInner .slick-dots {
  bottom: auto;
  top: 100%;
}
.page--home .officialAll .contentInner .slick-dots button::before {
  font-size: 20px;
}
.page--home .officialAll .contentInner .section--info {
  margin-bottom: 110px;
  position: relative;
  color: #000;
}
.page--home .officialAll .contentInner .section--info .section-tit {
  text-align: left;
  line-height: 1em;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}
.page--home .officialAll .contentInner .section--info .list--information li {
  margin: 0 0 20px;
}
.page--home .officialAll .contentInner .section--info .list--information li a {
  padding: 0;
  display: inline-block;
}
.page--home .officialAll .contentInner .section--info .list--information li a .block--txt {
  z-index: 1;
}
.page--home .officialAll .contentInner .section--info .list--information li a .block--txt .date {
  margin: 0 0 10px;
  line-height: 1em;
  font-size: 14px;
}
.page--home .officialAll .contentInner .section--info .list--information li a .block--txt .tit {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
}
.page--home .officialAll .contentInner .section--info .list--information li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--home .officialAll .contentInner .section--info .list--information li a:hover:before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}
.page--home .officialAll .contentInner .section--info .list--information li:last-child {
  margin: 0;
}
.page--home .officialAll .contentInner .section--info .more {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 15px;
}
.page--home .officialAll .contentInner .section--live {
  width: 500px;
  margin-bottom: 80px;
  position: relative;
  color: #000;
}
.page--home .officialAll .contentInner .section--live .section--live--inner {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.page--home .officialAll .contentInner .section--live .section--live--inner:after {
  content: "";
  display: block;
  background: url(/static/sbr/fanclub/top/live_illust_2023_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 45%;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox {
  width: 100%;
  padding: 20px;
  border: 1px solid;
  background: url(/static/sbr/fanclub/top/live_illust_bg.jpg);
  position: relative;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information {
  z-index: 1;
  position: relative;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li {
  padding: 0 0 0 45%;
}
.page--home .officialAll .contentInner .section--live a {
  padding: 0;
}
.page--home .officialAll .contentInner .section--live a .block--tit {
  z-index: 1;
}
.page--home .officialAll .contentInner .section--live a .block--tit .date {
  font-size: 14px;
  margin: 0 0 5px;
  line-height: 1em;
  color: #000;
  transition: 0.3s;
  letter-spacing: 0.05em;
}
.page--home .officialAll .contentInner .section--live a .block--tit .date.event-end span {
  padding-left: 20px;
  position: relative;
  display: inline-block;
}
.page--home .officialAll .contentInner .section--live a .block--tit .date.event-end span:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 5px;
  top: 4px;
}
.page--home .officialAll .contentInner .section--live a .block--tit .evCat {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 5px;
}
.page--home .officialAll .contentInner .section--live a .block--tit .evCat .onsale {
  font-size: 10px;
  border: 1px solid;
  line-height: 1em;
  padding: 2px 4px;
  color: #B63B00;
  background: #FFF;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: 2px;
  margin: 0 0 0 10px;
}
.page--home .officialAll .contentInner .section--live a .block--tit .tit {
  border-bottom: 1px solid #000;
  padding: 0 0 12px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.3em;
}
.page--home .officialAll .contentInner .section--live a .nowonsale {
  position: absolute;
  width: 120px;
  right: -20px;
  top: -60px;
  animation: circleAnim 6s linear infinite;
  pointer-events: none;
}
.page--home .officialAll .contentInner .section--live a:hover {
  color: #ee6860;
}
.page--home .officialAll .contentInner .section--live a:hover .date {
  color: #ee6860;
}
.page--home .officialAll .contentInner .section--disco {
  width: 370px;
  position: absolute;
  top: 450px;
  right: 0;
}
.page--home .officialAll .contentInner .section--disco .section-tit {
  text-align: right;
}
.page--home .officialAll .contentInner .section--disco a {
  padding: 0;
  color: inherit;
}
.page--home .officialAll .contentInner .section--disco a .thumb {
  margin-bottom: 20px;
}
.page--home .officialAll .contentInner .section--disco a .thumb:after {
  background: transparent;
}
.page--home .officialAll .contentInner .section--disco a .block--tit {
  z-index: 1;
  width: calc(100% - 120px);
}
.page--home .officialAll .contentInner .section--disco a .block--tit .date {
  font-size: 14px;
  color: #959EA7;
  margin: 0 0 10px;
  line-height: 1em;
}
.page--home .officialAll .contentInner .section--disco a .block--tit .tit {
  color: #000;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
}
.page--home .officialAll .contentInner .section--disco .more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.page--home .officialAll .contentInner .section--disco .more .moreLink {
  display: block;
  background: #000;
  color: #FFF;
  width: 110px;
  padding: 10px;
  text-align: center;
  margin: 0 0 0 auto;
}
.page--home .officialAll .contentInner .section--disco .more .moreLink:after {
  right: 15px;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-top: 1px solid;
}
.page--home .officialAll .contentInner .section--disco .more .moreLink:hover {
  opacity: 0.7;
}
.page--home .officialAll .contentInner .section--disco .more .moreLink:hover:after {
  right: 10px;
}
.page--home .officialAll .contentInner .section--disco .new .thumb:before {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  content: "NEW";
  font-weight: 800;
  font-size: 12px;
  color: #ff8881;
  font-style: italic;
  margin-left: 10px;
  line-height: 1em;
}
.page--home .officialAll .contentInner .section--disco .moreLink {
  color: #000;
}
.page--home .officialAll .contentInner .section--video {
  width: 545px;
  margin-bottom: 105px;
  position: relative;
}
.page--home .officialAll .contentInner .section--video .list--video .slick-slide {
  position: relative;
}
.page--home .officialAll .contentInner .section--video .list--video figure {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  z-index: 100;
  cursor: pointer;
  transition: all 1s ease;
}
.page--home .officialAll .contentInner .section--video .list--video figure .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  z-index: 100;
  opacity: 0;
  text-align: center;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
}
.page--home .officialAll .contentInner .section--video .list--video figure .tit:after {
  content: none;
}
.page--home .officialAll .contentInner .section--video .list--video figure:hover .tit {
  opacity: 1;
}
.page--home .officialAll .contentInner .section--video .list--video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.page--home .officialAll .contentInner .section--video .list--video .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--home .officialAll .contentInner .section--video .new .tit:after {
  content: "NEW";
  font-weight: 800;
  font-size: 12px;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .officialAll .contentInner .section--video .more {
  padding-right: 5vw;
}
.page--home .officialAll .contentInner .section--video .slick-dots {
  bottom: auto;
  top: 103%;
  line-height: 0;
  text-align: left;
  width: calc(100% - 150px);
}
.page--home .officialAll .contentInner .section--video .slick-dots button::before {
  font-size: 20px;
}
.page--home .officialAll .contentInner .section--video .slick-arrow {
  z-index: 1;
  top: 103%;
  transform: none;
}
.page--home .officialAll .contentInner .section--video .slick-arrow:before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #C0C0C0;
  border-right: 2px solid #C0C0C0;
  transform: rotate(45deg);
  border-radius: 0;
  background: none;
  transition: 0.3s;
}
.page--home .officialAll .contentInner .section--video .slick-arrow:hover:before {
  border-top: 2px solid #404040;
  border-right: 2px solid #404040;
}
.page--home .officialAll .contentInner .section--video .slick-prev {
  left: auto;
  right: 100px;
}
.page--home .officialAll .contentInner .section--video .slick-prev:before {
  transform: rotate(-135deg);
  left: auto;
  right: -3px;
}
.page--home .officialAll .contentInner .section--video .slick-next {
  right: 20px;
}
.page--home .officialAll .contentInner .section--instagram {
  width: 370px;
  position: absolute;
  top: 970px;
  right: 0;
  text-align: right;
}
.page--home .officialAll .contentInner .section--instagram .section-tit-box {
  text-align: left;
  display: inline-block;
}
.page--home .officialAll .contentInner .section--instagram .section-tit-box .section-tit {
  text-align: left;
}
.page--home .officialAll .contentInner .section--instagram .section-tit-box .section-sub-tit {
  position: relative;
  text-align: right;
  color: #000;
  font-size: 12px;
  margin-bottom: 15px;
  padding: 0;
  line-height: 1em;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
}
.page--home .officialAll .contentInner .section--instagram a {
  display: block;
  padding: 0;
}
.page--home .officialAll .contentInner .section--instagram a .thumb img {
  height: 100%;
  max-height: 670px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page--home .officialAll .contentInner .section--app {
  width: 400px;
  position: relative;
}
.page--home .officialAll .contentInner .section--app a {
  display: block;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.page--home .officialAll .contentInner .section--app a img {
  transition: 0.3s;
}
.page--home .officialAll .contentInner .section--app a:hover img {
  transform: scale(1.1);
}
.page--home .officialAll .contentInner .section-tit {
  position: relative;
  text-align: left;
  color: #000;
  font-size: 22px;
  margin-bottom: 20px;
  padding: 0;
  line-height: 1em;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
}
.page--home .officialAll .contentInner .thumb {
  transition: 0.3s;
  overflow: hidden;
}
.page--home .officialAll .contentInner .thumb img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: 0.3s;
}
.page--home .officialAll .contentInner .thumb img.noimage {
  background-size: 40%;
  background-position-x: center;
  background-position-y: 40%;
  background-color: #aaa;
}
.page--home .officialAll .contentInner .thumb:hover {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}
.page--home .officialAll .contentInner .thumb:hover img {
  transform: scale(1.1);
}
.page--home .officialAll .contentInner .thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*
  background: rgba(0,0,0,10%);
  background: linear-gradient(0deg, rgba(0,0,0,0.19931722689075626) 0%, rgba(0,0,0,0.10127801120448177) 20%, rgba(0,0,0,0.10407913165266103) 50%, rgba(0,0,0,0.10407913165266103) 80%, rgba(0,0,0,0.19931722689075626) 100%);
  */
}
.page--home .fcAll .contentInner {
  background: #FFF;
  border: 3vw solid #EE6860;
  border-top: none;
  padding: 0 20px;
  padding-bottom: 100px;
  padding-top: 140px;
}
.page--home .fcAll .more a {
  font-size: 12px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  line-height: 1em;
}
.page--home .fcAll .more a:after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 49%;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--home .fcAll .more a:hover:after {
  right: -5px;
}
.page--home .fcAll .anim {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.3s;
}
.page--home .fcAll .anim.on {
  transform: translateY(0);
  opacity: 1;
}
.page--home .fcAll .new .date:after {
  content: "NEW";
  font-weight: 800;
  font-size: 12px;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -applesystem, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .fcAll .new .tit:after {
  content: none;
}
.page--home .fcAll .section-tit {
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
}
.page--home .fcAll .section--fc--tit {
  background: #EE6860;
  padding-bottom: 25px;
  padding-top: 25px;
}
.page--home .fcAll .section--fc--tit .cap {
  font-size: 12px;
  text-align: center;
  color: #FFF;
  margin-bottom: 15px;
}
.page--home .fcAll .section--fc--tit h2 {
  width: 400px;
  margin: 0 auto;
  position: relative;
}
.page--home .fcAll .section--fc--tit h2 .mascot {
  position: absolute;
  width: 4vw;
  left: 103%;
  top: 40%;
  line-height: 0;
  animation: mascotAnim 0.7s linear infinite alternate;
}
.page--home .fcAll .section--bnr--bot .list--bnr {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.page--home .fcAll .section--bnr--bot .list--bnr li a {
  display: block;
  line-height: 0;
}
.page--home .fcAll .section--bnr--bot .list--bnr li a img {
  width: 100%;
}
.page--home .fcAll .section--bnr--bot .list--bnr li:last-child {
  margin: 0 0 20px;
}
.page--home .fcAll .section--bnr--bot .list--bnr .slick-dots {
  bottom: auto;
  top: 100%;
}
.page--home .fcAll .section--bnr--bot .list--bnr .slick-dots button::before {
  font-size: 20px;
}
.page--home .fcAll .section--bnr--bot.on .list--bnr {
  opacity: 1;
  transform: translateY(0);
}
.page--home .fcAll a .thumb {
  overflow: hidden;
}
.page--home .fcAll a .thumb img {
  transition: 0.3s;
}
.page--home .fcAll a .thumb img.noimage {
  background-size: 60%;
  background-position: center center;
  background-color: #aaa;
}
.page--home .fcAll a .thumb.memonly img {
  filter: blur(1rem);
  transform: scale(1.1);
}
.page--home .fcAll a .thumb.memonly.loggedin img {
  filter: none;
}
.page--home .fcAll a:hover .thumb img {
  transform: scale(1.1);
}
.page--home .fcAll a:hover .thumb.memonly img {
  transform: scale(1.1);
}
.page--home .fcAll .section--info {
  width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
}
.page--home .fcAll .section--info .section-tit {
  text-align: left;
  line-height: 1em;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}
.page--home .fcAll .section--info .list--information li a {
  position: relative;
  padding: 0;
  display: inline-block;
}
.page--home .fcAll .section--info .list--information li a .date {
  line-height: 1em;
  font-size: 14px;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
}
.page--home .fcAll .section--info .list--information li a .tit {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3em;
}
.page--home .fcAll .section--info .list--information li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--home .fcAll .section--info .list--information li a:hover:before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}
.page--home .fcAll .section--info .more {
  display: inline-block;
  position: absolute;
  right: 35px;
  top: 15px;
}
.page--home .fcAll .section--info .more a {
  display: inline-block;
}
.page--home .fcAll .section--fcvideo {
  max-width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li {
  display: flex;
  padding-right: 0;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li a {
  display: block;
  width: 67vw;
  position: relative;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li a .btnPlay {
  border: 1px solid #FFF;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 52%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
}
.page--home .fcAll .section--fcvideo .list--fcvideo li a .btnPlay:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #FFF;
  transform: translate(-50%, -50%);
}
.page--home .fcAll .section--fcvideo .list--fcvideo li a:hover {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}
.page--home .fcAll .section--fcvideo .list--fcvideo li .block--txt {
  width: 33vw;
  padding: 0 0 0 80px;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li .block--txt .section-tit {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: left;
  line-height: 1em;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li .block--txt .tit {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 5px;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li .block--txt .date {
  font-size: 14px;
  margin-bottom: 35px;
  color: #959EA7;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li .block--txt .more a {
  display: inline-block;
  width: auto;
}
.page--home .fcAll .section--fcvideo .list--fcvideo li .block--txt .more a:hover {
  box-shadow: none;
}
.page--home .fcAll .section--fcblogAll {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.page--home .fcAll .section--fcblogAll .section--fcblog1 {
  width: 50%;
  padding-right: 35px;
}
.page--home .fcAll .section--fcblogAll .section--fcblog2 {
  width: 50%;
  padding-left: 35px;
  padding-top: 70px;
}
.page--home .fcAll .section--fcblogAll .list--fcblog li a .thumb {
  margin-bottom: 20px;
  transition: 0.3s;
}
.page--home .fcAll .section--fcblogAll .list--fcblog li a h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 25px;
  letter-spacing: 0;
  line-height: 1em;
  transition: 0.3s;
}
.page--home .fcAll .section--fcblogAll .list--fcblog li a .tit {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
  margin-bottom: 5px;
  transition: 0.3s;
}
.page--home .fcAll .section--fcblogAll .list--fcblog li a .date {
  font-size: 14px;
  transition: 0.3s;
  color: #959EA7;
}
.page--home .fcAll .section--fcblogAll .list--fcblog li a:hover .thumb {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}
.page--home .fcAll .section--fcblogAll .list--fcblog li a:hover h2, .page--home .fcAll .section--fcblogAll .list--fcblog li a:hover .tit, .page--home .fcAll .section--fcblogAll .list--fcblog li a:hover .date {
  color: #ee6860;
}
.page--home .fcAll .section--fcblogAll .more {
  width: 100%;
  text-align: right;
  margin-left: auto;
  margin-right: 15px;
  border-bottom: 1px solid;
  padding-top: 15px;
  padding-bottom: 20px;
  line-height: 1em;
}
.page--home .fcAll .section--fcblogAll .more a {
  display: inline-block;
}
.page--home .fcAll .section--magazine {
  display: flex;
  max-width: 980px;
  margin: 0 auto 80px;
  align-items: flex-start;
  position: relative;
}
.page--home .fcAll .section--magazine .section-tit {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}
.page--home .fcAll .section--magazine .block--txt {
  width: 45vw;
}
.page--home .fcAll .section--magazine .block--txt .tit {
  font-size: 14px;
  margin-bottom: 45px;
  font-weight: 400;
}
.page--home .fcAll .section--magazine .list--bnr {
  width: 55vw;
}
.page--home .fcAll .section--magazine .list--bnr li {
  line-height: 0;
}
.page--home .fcAll .section--magazine .list--bnr li a {
  overflow: hidden;
  display: block;
}
.page--home .fcAll .section--magazine .list--bnr li a img {
  transition: 0.3s;
}
.page--home .fcAll .section--magazine .list--bnr li a:hover {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.3);
}
.page--home .fcAll .section--magazine .list--bnr li a:hover img {
  transform: scale(1.1);
}
.page--home .fcAll .fcBottomLink {
  display: flex;
  justify-content: space-between;
  width: 560px;
  margin: 0 auto;
}
.page--home .fcAll .fcBottomLink li {
  width: 46%;
  text-align: center;
}
.page--home .fcAll .fcBottomLink li a {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  background: #EE6860;
  color: #FFF;
  padding: 15px 30px;
}
.page--home .fcAll .fcBottomLink li a:hover {
  opacity: 0.7;
}
.page--home .detail__btn {
  display: none;
}

@keyframes circleAnim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mascotAnim {
  0% {
    transform: rotate(-10deg);
    transform-origin: bottom left;
  }
  100% {
    transform: rotate(10deg);
    transform-origin: bottom right;
  }
}
@media screen and (max-width: 1290px) {
  .drawer .g-nav .g-nav__inner {
    top: -4px;
  }
  .headerFixed .drawer .g-nav .g-nav__inner {
    top: 0;
  }
  .drawer li {
    font-size: 0.75em;
    margin-right: 20px;
  }
  .drawer .nav-box.fc {
    padding-left: 0;
    margin-left: 1%;
  }
  .drawer .nav-box.fc .nav--fc::before {
    margin-right: 1%;
    width: 55px;
    height: 13px;
    left: 1em;
  }
  .drawer .nav-box.fc .nav--fc {
    padding-left: 5.5em;
  }
  .drawer .nav-box.login {
    margin-left: 1.5%;
  }
  .nav-box.login .nav__item--login a,
  .nav-box.login .nav__item--join a {
    padding: 15px;
    font-size: 0.75em;
  }
  .nav-box.login .nav--language li button {
    font-size: 14px;
  }
  .drawer .nav-box.fc .nav__item--blog,
  .drawer .nav-box.fc .nav__item--streaming {
    font-size: 0.75em;
  }
  .page--home .header h1 a {
    width: 10.5svw;
  }
  .headerFixed.page--home .header h1 a {
    width: 120px;
    height: 65px;
  }
  .drawer .nav-box.fc::before {
    top: 2px;
    left: 2px;
  }
  .page--home .section--bnr--top .list--bnr {
    width: 860px;
  }
  .page--home .officialAll .section--bnr--mid .list--bnr {
    width: 860px;
  }
  .page--home .fcAll .section--bnr--bot .list--bnr {
    width: 860px;
  }
}
/*  Photo Sub Move Area
------------------------------ */
.section--photo__sub {
  position: relative;
  margin-top: 3em;
}
.section--photo__sub .block--txt__image {
  display: flex;
  overflow: hidden;
  margin-bottom: -2em;
}
.section--photo__sub .block--txt__image .list--txt__image {
  display: flex;
  flex-wrap: nowrap;
  padding-left: 100%;
  animation: infinity-scroll_left 30s linear infinite;
}
.section--photo__sub .block--txt__image .list--txt__image li {
  width: 80vw;
}
.section--photo__sub .block--txt__image .list--txt__image li img {
  width: 100%;
  height: 100%;
}
.section--photo__sub .block--photo__wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 3em;
}
.section--photo__sub .block--photo__wrap .photo__groupe {
  display: flex;
  overflow: hidden;
}
.section--photo__sub .block--photo__wrap .photo__groupe:nth-of-type(1) .list--item__photo {
  animation: infinity-scroll_right 40s infinite linear 0.5s both;
}
.section--photo__sub .block--photo__wrap .photo__groupe:nth-of-type(2) .list--item__photo {
  animation: infinity-scroll_left 40s infinite linear 0.5s both;
}
.section--photo__sub .block--photo__wrap .list--item__photo {
  display: flex;
}
.section--photo__sub .block--photo__wrap .list--item__photo li {
  width: 11.1111111111vw;
}
.section--photo__sub .block--photo__wrap .list--item__photo li img {
  width: 100%;
  height: 100%;
}
.section--photo__sub .block--photo__wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0);
  mix-blend-mode: multiply;
}
@keyframes infinity-scroll_left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll_right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/*  4.3 information
------------------------------ */
.section--list {
  width: 70%;
  max-width: 900px;
  padding: 230px 0 60px;
  margin: 0 auto;
}
.section--list .list--information {
  transform: translate3d(0, 60px, 0);
  transition: 0.6s;
  opacity: 0;
}
.section--list + .detail__btn {
  display: none;
}

.section--detail {
  width: 80%;
  max-width: 800px;
  padding: 230px 0 0;
  margin: 0 auto;
  transform: translate3d(0, 60px, 0);
  transition: 0.6s;
  opacity: 0;
}

.loaded .section--list .list--information,
.loaded .section--detail {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.section--list .list--information {
  margin: 0 auto;
}
.section--list .list--information li {
  margin-bottom: 20px;
}
.section--list .list--information a {
  position: relative;
  left: 0;
  transition: 0.3s;
  display: flex;
  align-items: baseline;
}
.section--list .list--information a:hover {
  left: 0.5em;
}
.section--list .list--information .date {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 7px;
  position: relative;
}
.section--list .list--information .date.event-end span {
  padding-left: 0;
  position: relative;
  display: block;
  padding-top: 20px;
}
.section--list .list--information .date.event-end span::before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: #b1b9c1;
  position: absolute;
  left: 50%;
  top: 4px;
}
.section--list .list--information .category {
  display: inline-block;
  color: #000;
  font-size: 12px;
  font-family: "Francois One", Noto Sans JP, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1;
  margin: 7px 5px 0 0;
  width: 10%;
}
.section--list .list--information .tit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  width: calc(80% - 30px);
}

.block--share {
  display: none;
  line-height: 1;
  text-align: right;
  margin: 0 0 30px;
}
.block--share::before {
  content: "SHARE";
  display: inline-block;
  font-family: "Overpass", sans-serif;
  font-size: 10px;
  color: #9fa3a7;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: 3px;
}
.block--share .share {
  display: inline-block;
  position: relative;
}
.block--share .share::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #bec3c7;
  position: absolute;
  top: -7px;
  left: 3px;
  transform: rotate(30deg);
}
.block--share .nav--sns {
  margin: 0;
}
.block--share .nav--sns:after {
  content: none;
}
.block--share li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #9fa3a7;
  margin: 0 7px 0 0;
}
.block--share .lineIco {
  display: none;
}
.block--share .share {
  font-size: 12px;
  margin-right: 15px;
}
.block--share .ico {
  font-size: 20px;
}
.block--share a {
  color: #9fa3a7;
}
.block--share a:hover {
  color: #000;
}

.page--info .section--list {
  position: relative;
}
.page--info .section--list .list--information a {
  align-items: baseline;
}
.page--info .section--list .date, .page--info .section--list .category {
  width: 10%;
}
.page--info .section--list .date {
  margin-right: 10px;
}
.page--info .section--list .category {
  margin-right: 20px;
  text-align: center;
}
.page--info.category-5 .section--list .date {
  width: 16%;
}
.page--info.category-5 .section--list .tit {
  width: 74%;
}
.page--info.category-7 .section--list .date {
  width: 16%;
}
.page--info.category-7 .section--list .tit {
  width: 75%;
}
.page--info.category-18 .section--list .date {
  width: 16%;
}
.page--info.category-18 .section--list .tit {
  width: 74%;
}
.page--info .block--info-nav {
  font-family: "Francois One", Noto Sans JP, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 13px;
  position: absolute;
  top: 260px;
  right: 0;
}
.page--info .block--info-nav a {
  display: block;
}
.page--info .block--info-nav a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--info .block--info-nav a:hover::before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}
.page--info .section--detail .date {
  letter-spacing: 0.1em;
}
.page--info .section--detail .date.event-end {
  margin: 0;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}
.page--info .section--detail .date.event-end::after {
  display: none;
}
.page--info .section--detail .date.event-end span {
  display: inline-block;
  padding-left: 15px;
  position: relative;
}
.page--info .section--detail .date.event-end span::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #b1b9c1;
  position: absolute;
  left: 2px;
  top: 10px;
}

.section--detail .tit {
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 1em;
}
.section--detail.new .date::after {
  content: "NEW";
  font-weight: 800;
  font-style: italic;
  color: #ff8881;
  font-size: 13px;
  vertical-align: 0px;
  margin-left: 7px;
  line-height: 1;
}
.section--detail .date {
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  letter-spacing: 0.1em;
}
.section--detail .txt {
  margin: 0 0 20px;
  line-height: 2em;
}
.section--detail .txt a {
  text-decoration: underline;
  color: #000000;
}
.section--detail .txt a:hover {
  color: #000;
  text-decoration: none;
}
.section--detail .detail__btn {
  display: none;
}

.youtube, .block--video__item {
  width: 100%;
  margin: 20px 0;
  padding-top: 56.25%;
  position: relative;
}

.youtube iframe,
.block--video__item iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: -20px;
  right: 0;
}

/*  4.4 profile
------------------------------ */
.page--profile .section-tit {
  margin-bottom: 94px;
}
.page--profile .thumb {
  margin: 0 auto 90px;
}
.page--profile .name {
  font-family: "Noto Sans JP", sans-serif;
  color: inherit;
  font-size: 30px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  text-align: center;
  margin: 0 auto 70px;
}
.page--profile .name span {
  display: block;
  font-size: 14px;
}
.page--profile .block--comment {
  width: 70%;
  margin: 0 auto 60px;
}
.page--profile .block--comment .txt--basic {
  line-height: 2.5;
}
.page--profile.en .name, .page--profile.en .txt--basic {
  font-family: "Overpass", sans-serif;
}

/*  4.5 blog
------------------------------ */
.page--blog .section-tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 40px;
}
.page--blog .section--list * {
  white-space: normal !important;
  word-break: break-word;
}
.page--blog .section--detail {
  padding-top: 260px;
  max-width: 800px;
}
.page--blog .section--detail .tit {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
}
.page--blog .section--detail .ph {
  max-width: 60%;
  margin: 40px auto;
}
.page--blog .section--detail .txt {
  line-height: 1.8;
  margin-bottom: 60px;
}
.page--blog .section--detail .txt > span,
.page--blog .section--detail .txt > span *,
.page--blog .section--detail .txt > p,
.page--blog .section--detail .txt > p *,
.page--blog .section--detail .txt > font,
.page--blog .section--detail .txt > font *,
.page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div),
.page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) *,
.page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div),
.page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Roboto-Regular", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Arial", sans-serif !important;
  white-space: normal !important;
  word-break: break-word;
  font-size: inherit !important;
}
.page--blog .section--detail .txt > span a,
.page--blog .section--detail .txt > span * a,
.page--blog .section--detail .txt > p a,
.page--blog .section--detail .txt > p * a,
.page--blog .section--detail .txt > font a,
.page--blog .section--detail .txt > font * a,
.page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) a,
.page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) * a,
.page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) a,
.page--blog .section--detail .txt > div:not(.sns_movie_class) > div:not(.sns_movie_class) > :not(div) * a {
  color: #000000;
  text-decoration: underline;
}
.page--blog .section--detail .txt .sns_movie_class {
  position: relative;
  padding-top: 56.25%;
}
.page--blog .section--detail .txt .sns_movie_class .jstream-eqPlayer {
  top: 0;
}
.page--blog .section--detail .block--player {
  position: relative;
  aspect-ratio: 16/9;
  width: 55%;
  margin-bottom: 15px;
}
.page--blog .section--detail .block--player .video-js .vjs-control-bar *::before {
  font-family: VideoJS !important;
  font-weight: normal;
  font-style: normal;
}
.page--blog .section--detail .block--player .vjs-picture-in-picture-control.vjs-button:before {
  font-family: "Material Icons" !important;
}
.page--blog .section--detail .block--player .vjs-time-tooltip {
  width: 80px;
}
.page--blog .section--detail .note-video-clip {
  position: relative;
  aspect-ratio: 16/9;
  width: 55%;
  margin-bottom: 15px;
}
.page--blog .section--detail .ulizahtml5 .vjs-control.iconfont::before {
  font-family: "VideoJS";
}
.page--blog .block--pager {
  /*border-top: .5px solid #dde1e6;*/
  padding-top: 80px;
  margin-top: 80px;
}
.page--blog .block--pager li a, .page--blog .block--pager li span {
  display: block;
  font-family: "Francois One", sans-serif;
  font-size: 12px;
  color: #959EA7;
  letter-spacing: 0.01em;
  position: relative;
}
.page--blog .block--pager li a::before, .page--blog .block--pager li span::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
}
.page--blog .block--pager li a::after, .page--blog .block--pager li span::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.page--blog .block--pager li a:hover, .page--blog .block--pager li span:hover {
  color: #000000;
}
.page--blog .block--pager li a:hover::before, .page--blog .block--pager li span:hover::before {
  background: #000000;
  transform: scaleX(1.2);
}
.page--blog .block--pager li a:hover::after, .page--blog .block--pager li span:hover::after {
  border-color: #000000;
}
.page--blog .block--pager .pager-link--next {
  float: left;
}
.page--blog .block--pager .pager-link--next a {
  padding-left: 40px;
}
.page--blog .block--pager .pager-link--next a::before {
  left: -40px;
  transform-origin: right;
}
.page--blog .block--pager .pager-link--next a:hover::after {
  left: -6px;
}
.page--blog .block--pager .pager-link--prev {
  float: right;
}
.page--blog .block--pager .pager-link--prev a {
  padding-right: 40px;
}
.page--blog .block--pager .pager-link--prev a::after {
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.page--blog .block--pager .pager-link--prev a::before {
  right: -46px;
  left: inherit;
  transform-origin: left;
}
.page--blog .block--pager .pager-link--prev a:hover::after {
  right: -6px;
}
.page--blog .commentArea {
  margin: 80px 0 0 0;
}
.page--blog .commentArea .detail__btn input, .page--blog .commentArea .btn input {
  transition: 0.3s;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 11px;
  border: 1px solid;
  padding: 5px 10px 4px 12px;
  border-radius: 100px;
  margin: 10px 0 0;
  background: #414649;
  width: 300px;
  padding: 20px;
  font-size: 15px;
}
.page--blog .commentArea .detail__btn input:hover, .page--blog .commentArea .btn input:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.page--blog .commentArea textarea {
  width: 100% !important;
}
.page--blog .commentArea .table_box dt {
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 10px 0;
}
.page--blog .commentArea .commentListTit {
  margin: 40px 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid;
  font-size: 15px;
}
.page--blog .commentArea .commentList {
  margin: 0 0 50px 0;
}
.page--blog .commentArea .commentList li {
  border-bottom: 1px solid #ddd;
  padding: 0 0 40px 0;
  margin: 0 0 40px;
}
.page--blog .commentArea .commentList li .nick {
  font-size: 16px;
  font-weight: 600;
}
.page--blog .commentArea .commentList li .nick_user {
  color: #ff7871;
}
.page--blog .commentArea .commentList li .userBox {
  padding: 20px;
  border: 2px solid #ff7871;
}
.page--blog .commentArea .commentList li .time {
  font-size: 15px;
}
.page--blog .commentArea .commentList li .commet {
  font-size: 15px;
  margin: 0 0 20px 0;
}
.page--blog .commentArea .commentList li:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.page--blog .commentArea .commentList .btn.sub input {
  background: transparent;
  width: 200px;
  padding: 10px;
  font-size: 13px;
  border: 2px solid #000000;
  color: #000000;
  font-weight: bold;
}

.commentdelete {
  padding: 200px 0 0 0;
  width: 900px;
  margin: auto;
}
.commentdelete .pageTit {
  display: none;
}
.commentdelete .titArea .tit {
  text-align: center;
}
.commentdelete .btn a {
  background: #414649;
  display: block;
  width: 300px;
  margin: auto;
  color: #fff;
  border-radius: 100px;
  padding: 15px;
  font-size: 14px;
}
.commentdelete .btn a:hover {
  transition: 0.4s;
  opacity: 0.8;
}

/*  4.6 discography
------------------------------ */
.list--discography a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
}
.list--discography .date {
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.list--discography .tit {
  font-size: 20px;
}
.list--discography .new .tit::after {
  content: "NEW";
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #ff8881;
  margin-left: 10px;
}
.list--discography::after {
  display: table;
  content: "";
  clear: both;
}
.list--discography li a {
  display: block;
  padding: 0;
  background: none;
  position: relative;
}
.list--discography li figure {
  position: relative;
}
.list--discography li figure img {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: contain;
  position: relative;
  z-index: 2;
}
.list--discography li figure img.shadow {
  opacity: 0;
  filter: blur(20px);
  position: absolute;
  top: 30px;
  left: 10px;
  z-index: 1;
  transition: 0.3s;
}
.list--discography li figure:hover .shadow {
  filter: blur(20px);
  opacity: 0.6;
}

.block--category {
  text-align: center;
  margin: -30px 0 70px;
}
.block--category li {
  display: inline-block;
  font-family: "Francois One", sans-serif;
  padding-right: 10px;
}
.block--category li:last-child {
  padding-right: 0;
}
.block--category li a {
  display: block;
  height: 24px;
  position: relative;
}
.block--category li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.block--category li a:hover::before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}
.block--category li.current a::before {
  transform: scaleX(1);
}

.page--disco .list--discography {
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  transition: transform 0.8s, opacity 0.3s;
}
.page--disco.loaded .list--discography, .page--disco.loaded .section--detail .area--disco-detail {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.page--disco .section--detail {
  max-width: 1000px;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.page--disco .section--detail .area--disco-detail {
  transform: translate3d(0, 60px, 0);
  transition: 0.6s;
  opacity: 0;
}
.page--disco .section--detail .section-tit,
.page--disco .section--detail .block--category {
  display: none;
}
.page--disco .section--detail .category {
  font-family: "Francois One", sans-serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.1em;
  display: inline-block;
}
.page--disco .section--detail .block--jacket {
  width: 45%;
  float: left;
  position: relative;
  line-height: 0;
}
.page--disco .section--detail .block--jacket li {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--jacket .thumb {
  line-height: 0;
  position: relative;
}
.page--disco .section--detail .block--jacket .thumb::after {
  content: "";
  display: block;
  z-index: 99;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.page--disco .section--detail .block--jacket figcaption {
  font-size: 11px;
  margin-top: 15px;
}
.page--disco .section--detail .block--detail {
  padding-left: 52%;
}
.page--disco .section--detail .block--detail .tit {
  font-size: 30px;
  margin-bottom: 5PX;
  position: relative;
  top: -7px;
}
.page--disco .section--detail .block--detail .tit span {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin: 8px 0 -4px;
}
.page--disco .section--detail .block--detail .category {
  padding-right: 10px;
}
.page--disco .section--detail .block--detail .date {
  margin-bottom: 20px;
}
.page--disco .section--detail .block--detail .date::after {
  content: "RELEASE";
  display: inline-block;
  padding-left: 5px;
}
.page--disco .section--detail .block--detail .block--comment {
  margin: 0 0 40px;
}
.page--disco .section--detail .block--detail .block--comment a {
  color: #000000;
}
.page--disco .section--detail .block--detail .block--comment a:hover {
  text-decoration: underline;
}
.page--disco .block--comment .block--disc .block-tit {
  font-weight: bold;
}
.page--disco .block--comment .tax-code {
  font-size: 0.8em;
}
.page--disco .block--comment .block--track {
  margin: 20px auto 40px;
}
.page--disco .block--comment .block--track .list-tit {
  font-size: 0.8em;
  color: #959EA7;
}
.page--disco .block--comment .block--track .list--track li {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 2px;
}
.page--disco .block--comment .more .moreLink {
  display: block;
  background: #000;
  color: #FFF !important;
  width: 120px;
  padding: 10px;
  text-align: center;
  line-height: 1em;
  position: relative;
}
.page--disco .block--comment .more .moreLink:after {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-top: 1px solid;
  right: 15px;
  text-decoration: none;
}
.page--disco .block--comment .more .moreLink:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.page--disco .block--comment .more .moreLink:hover:after {
  right: 10px;
}

.block--track .title {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: bold;
  border: 1px solid;
  padding: 2px 8px;
  line-height: 1em;
}
.block--track .list--track {
  margin: 0 0 20px;
}
.block--track .list--track .num {
  margin-right: 5px;
}
.block--track .list--track li {
  list-style: none;
}
.block--track .list--track a {
  pointer-events: none;
  cursor: default;
}

/*  4.7 magazine
------------------------------ */
.page--magazine .section-tit + .txt--basic {
  text-align: center;
  margin: -30px 0 70px;
}
.page--magazine .txt--notice {
  font-size: 0.8em;
  color: #959EA7;
  letter-spacing: 0;
}
.page--magazine .list--contents li .tit {
  font-size: 0.9em;
}
.page--magazine .list--contents li .tit span {
  background: #000000;
  color: #fff;
  display: inline-block;
  padding: 4px 3px 4px 4px;
  line-height: 1;
  font-size: 0.9em;
  margin-right: 0.5em;
  border-radius: 1px;
  text-align: center;
}

/* MOVIE
------------------------------ */
.page--movie .clearfix::after {
  display: table;
  content: "";
  clear: both;
  width: 32%;
}
.page--movie .list--contents .thumb {
  margin-bottom: 20px;
  background: #000;
}
.page--movie .list--contents .thumb img {
  opacity: 0.4;
  filter: grayscale(100);
}
.page--movie .list--contents .thumb::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(/static/sbr/common/icon__arrow.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.page--movie .list--contents .thumb img.shadow {
  filter: none !important;
  top: 0 !important;
}
.page--movie .list--contents li {
  width: 32%;
}
.page--movie .pagingBox {
  border-top: 0.5px solid #dde1e6;
  padding-top: 80px;
  margin-top: 80px;
  width: 100%;
}
.page--movie .pagingBox ul {
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}
.page--movie .pagingBox li {
  font-family: "Francois One", sans-serif;
  display: inline-block;
  width: 3%;
  color: #959EA7;
}
.page--movie .pagingBox li a {
  padding: 0;
  margin: 0;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  position: relative;
  color: #959EA7;
}
.page--movie .pagingBox li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--movie .pagingBox li a:hover::before {
  content: "";
  transform: scaleX(1);
}
.page--movie .pagingBox .pager__item--older a {
  height: 50px;
  width: 50px;
}
.page--movie .pagingBox .pager__item--newer a {
  height: 50px;
  width: 50px;
}
.page--movie .pagingBox .pager__item--older a::before {
  content: "";
  display: none;
}
.page--movie .pagingBox .pager__item--newer a::before {
  content: "";
  display: none;
}
.page--movie .pagingBox .pager__item--current {
  display: inline-block;
  font-family: "Francois One", sans-serif;
  position: relative;
  vertical-align: -1px;
  padding: 0;
  top: 0;
  color: #000 !important;
}
.page--movie .pagingBox .pager__item--current::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
}
.page--movie .pagingBox .pager__item--newer {
  float: left;
  position: relative;
  height: 20px;
}
.page--movie .pagingBox .pager__item--newer:hover::before {
  background: #000000;
  transform: scaleX(1.2);
}
.page--movie .pagingBox .pager__item--newer:hover::after {
  left: -5px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}
.page--movie .pagingBox .pager__item--newer::before {
  transform-origin: right;
  top: 2px;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
}
.page--movie .pagingBox .pager__item--newer::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.page--movie .pagingBox .pager__item--older {
  float: right;
  position: relative;
  height: 20px;
}
.page--movie .pagingBox .pager__item--older:hover::before {
  background: #000000;
  transform: scaleX(1.2);
}
.page--movie .pagingBox .pager__item--older:hover::after {
  right: -7px;
  left: inherit;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}
.page--movie .pagingBox .pager__item--older::before {
  transform-origin: left;
  top: 2px;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
  float: right;
}
.page--movie .pagingBox .pager__item--older::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  position: absolute;
  top: 10px;
  transition: 0.3s;
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.page--movie .block--player {
  margin-bottom: 40px;
}
.page--movie .ulizahtml5 {
  width: auto !important;
  height: auto !important;
  background: none;
}
.page--movie .ulizahtml5 .vjs-tech {
  position: static !important;
}
.page--movie .ulizahtml5 .cover-layer {
  top: 0;
}
.page--movie .ulizahtml5 .vjs-center-menu {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--movie .list--player li a {
  background: transparent;
  border: 1px solid #000;
  display: block;
  border-radius: 100px;
  padding: 10px;
  text-align: center;
  margin: 10px auto 10px auto;
  width: 300px;
}
.page--movie .section--detail input[type=submit],
.page--movie .section--detail input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  background: #000000;
  width: 300px;
  display: block;
  margin: 0 auto 50px;
  color: #fff;
  padding: 15px;
  border-radius: 100px;
  font-size: 17px;
}
.page--movie .section--detail input[type=submit]::-webkit-search-decoration,
.page--movie .section--detail input[type=button]::-webkit-search-decoration {
  display: none;
}
.page--movie .section--detail input[type=submit]::focus,
.page--movie .section--detail input[type=button]::focus {
  outline-offset: -2px;
}
.page--movie .section--detail .tit {
  color: inherit;
  font-size: 30px;
  margin: 0 0 10px 0;
}
.page--movie .section--detail .date {
  border-bottom: 1px solid #ddd;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}
.page--movie .section--detail .txt--basic {
  border-bottom: 1px solid #ddd;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}
.page--movie .section--detail .inner_comments {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 45vw !important;
  border: 1px solid #959EA7;
  padding: 40px;
  position: relative;
}
.page--movie .section--detail .inner_comments li {
  border-bottom: 1px solid #ddd;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}
.page--movie .section--detail .inner_comments li .btn_box {
  display: none;
}
.page--movie .section--detail .inner_comments li .date {
  padding: 0;
  margin: 0;
  border: none;
}
.page--movie .section--detail .comments_post::after {
  content: "コメント一覧";
  font-size: 14px;
}
.page--movie .section--detail .comments_post {
  margin: 50px 0 0 0;
}
.page--movie .section--detail .comments_post::before {
  content: "コメントする";
  font-size: 14px;
}
.page--movie .section--detail .comment_body {
  line-height: 1.5;
}

/* new-movie
------------------------------ */
.page--movie.new-movie .wrap .block--category-list {
  margin-bottom: 50px;
  position: relative;
}
.page--movie.new-movie .wrap .block--category-list:last-child {
  margin-bottom: 0;
}
.page--movie.new-movie .wrap .block--category-list .category-tit {
  font-size: 1.1em;
  font-weight: bold;
}
.page--movie.new-movie .wrap .block--category-list .more {
  position: absolute;
  top: 0;
  right: 0;
}
.page--movie.new-movie .wrap .block--category-list .more a {
  font-size: 12px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  line-height: 1em;
}
.page--movie.new-movie .wrap .block--category-list .more a::after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 49%;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--movie.new-movie .wrap .block--category-list .more a:hover::after {
  right: -5px;
}
.page--movie.new-movie .wrap .block--category-list .list--contents .thumb::after {
  display: none;
}
.page--movie.new-movie .wrap .block--category-list .list--contents .thumb img {
  opacity: 1;
  filter: none;
}
.page--movie.new-movie .wrap .section--list .list--contents::after {
  content: "";
  width: 32%;
  height: 0;
}
.page--movie.new-movie .wrap .section--list .list--contents li .tit {
  margin-bottom: 0px;
}
.page--movie.new-movie .wrap .section--list .list--contents li .data {
  line-height: 1.5;
}
.page--movie.new-movie .wrap .section--list + .detail__btn {
  display: block;
}
.page--movie.new-movie .wrap .section--detail .subTxt {
  margin-bottom: 30px;
  font-size: 14px;
}
.page--movie.new-movie .wrap .section--detail .block--more_movies .tit {
  font-size: 20px;
  margin-bottom: 0;
}
.page--movie.new-movie .wrap .section--detail .block--more_movies .date {
  padding: 0;
  border: none;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li .thumb img {
  opacity: 1;
  filter: none;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li {
  border-bottom: none !important;
}
.page--movie.new-movie .wrap .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
  margin: 0;
  transform: translate(-50%, -50%);
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .list--contents .thumb::after {
  display: none;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li .list__txt {
  width: 75%;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li .tit {
  font-size: 16px;
}
.page--movie.new-movie .wrap .nav-box.login .nav--language li button {
  font-family: "Arial", Meiryo, "メイリオ", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

/* faq
------------------------------ */
.page--faq .section-tit {
  font-size: 30px;
}

.tit--category {
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  word-break: break-word;
  margin: 0 0 20px;
}

.searchBox {
  position: relative;
  width: 60%;
  margin: 80px auto;
}
.searchBox input[type=submit] {
  width: 40px;
  font-family: FontAwesome;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  color: #9fa3a7;
  background: transparent;
  border: none;
  border-radius: 30px;
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 2;
  cursor: pointer;
}

.list--faq {
  margin: 0 0 80px;
}
.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: 25px 0 27px 0;
}
.list--faq a:hover {
  padding-left: 1%;
}
.list--faq .tit {
  padding-left: 20px;
}
.list--faq .txt {
  margin: 0;
  padding-left: 20px;
  line-height: 1.4;
}
.list--faq .icon--q {
  float: left;
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  line-height: 2.2;
  color: #000000;
  margin-right: 5px;
}

.section--detail .list--faq .icon--q {
  line-height: 1.6;
}

.block--faq-detail {
  border: 1px solid #959EA7;
  padding: 25px;
  margin: 0 0 80px;
}
.block--faq-detail dt {
  font-size: 16px;
  border-bottom: 1px solid #959EA7;
  padding: 0 0 15px;
  margin: 0 0 20px;
}
.block--faq-detail dt .txt {
  padding-left: 40px;
  margin: 0;
}
.block--faq-detail dt .category {
  display: inline-block;
  font-size: 12px;
  background: #eee;
  color: #9fa3a7;
  border-radius: 20px;
  padding: 1px 8px 0;
  margin: 0 0 20px;
}
.block--faq-detail dd .txt {
  font-size: 16px;
  padding-left: 40px;
  margin: 0;
}
.block--faq-detail span[class^=icon--] {
  display: inline-block;
  float: left;
  width: 30px;
  height: 30px;
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  line-height: 33px;
  border-radius: 50px;
  padding-left: 2px;
}
.block--faq-detail span.icon--q {
  color: #fff;
  line-height: 34px;
  background: #000000;
}
.block--faq-detail span.icon--a {
  color: #000000;
  background: rgba(111, 138, 166, 0.2);
}

.page--faq .section--detail .block--contact {
  text-align: center;
  margin: 40px 0 0;
}
.page--faq .section--detail .block--contact a {
  color: #000000;
  text-decoration: none !important;
  position: relative;
}
.page--faq .section--detail .block--contact a::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: -0.8em;
  top: 50%;
  transform: rotate(-135deg);
  border-width: 1px;
  margin-top: -0.2em;
}
.page--faq .section--detail .block--contact a:hover {
  color: #000;
}
.page--faq .section--detail .block--contact .fa {
  display: none;
}

/*  4.8 questionnaire
------------------------------ */
.page--questionnaire .header + section {
  width: 50%;
  max-width: 800px;
  margin: 0 auto;
}
.page--questionnaire .header + section .section-tit {
  text-indent: 0;
  font-size: 32px;
}
.page--questionnaire .header + section .form--post {
  margin-bottom: 100px;
}
.page--questionnaire .header + section .center {
  text-align: center;
}

.form--post {
  margin: 0 0 40px;
}

.form--post + .txt--sub {
  text-align: center;
}

.icon--required {
  display: inline-block;
}
.icon--required::before {
  content: "必須";
  background: #f72a2a;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  line-height: 0;
  vertical-align: 2px;
  padding: 0px 6px 3px;
  margin-left: 5px;
}

/*  4.9 fan mail
------------------------------ */
.page--qa .section--list + .detail__btn {
  display: block;
}
.page--qa .txt {
  margin-bottom: 40px;
}
.page--qa .rule {
  color: #ef3030;
  background: #fff4f1;
  border-radius: 5px;
  padding: 20px;
}
.page--qa .center {
  text-align: center;
}

/*  schedule
------------------------------ */
.page--schedule .block--narrowing .checkbox {
  cursor: pointer;
  position: relative;
}
.page--schedule .block--narrowing .checkbox input {
  display: none;
}
.page--schedule .block--narrowing .checkbox input:checked + span {
  opacity: 1;
}
.page--schedule .block--narrowing .checkbox span {
  opacity: 0.5;
  transition: 0.3s;
}
.page--schedule .block--narrowing .checkbox:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3B4043;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--schedule .block--narrowing .checkbox:hover:before {
  -webkit-transform: scaleX(1);
  transform-origin: left;
}
.page--schedule .list--information li a .date-wrap {
  min-width: 130px;
  width: 16%;
  margin-right: 10px;
}
.page--schedule .list--information li a .date-wrap .date {
  display: block;
  margin: 0;
}
.page--schedule .list--information li a .date-wrap .date.event-end {
  padding-top: 20px;
}
.page--schedule .list--information li a .date-wrap .date.event-end:before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: #b1b9c1;
  position: absolute;
  left: 50%;
  top: 4px;
}
.page--schedule .list--information li a .date-wrap .date.event-end span {
  display: inline;
}
.page--schedule .list--information li a .date-wrap .date.event-end span:before {
  content: none;
}
.page--schedule .list--information li a .label {
  width: 10%;
  display: inline-block;
  color: #000;
  font-size: 12px;
  font-family: "Francois One", Noto Sans JP, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1;
  margin: 7px 20px 0 0;
  text-align: center;
}
.page--schedule .list--information li a .tit {
  width: 74%;
}
.page--schedule .monthArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 60px;
}
.page--schedule .monthArea .block--month .tit {
  font-size: 18px;
  font-weight: 600;
}
.page--schedule .monthArea .block--month .tit .month-year {
  margin: 0 10px 0 0;
}
.page--schedule .monthArea .month-pager {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}
.page--schedule .monthArea .month-pager li a {
  font-family: "Overpass", sans-serif;
  position: relative;
  padding: 0 30px;
  white-space: pre;
}
.page--schedule .monthArea .month-pager li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 44%;
  width: 0.4861111111vw;
  height: 0.4861111111vw;
  transition: 0.3s;
}
.page--schedule .monthArea .month-pager li.pager__item--newer a {
  color: #959EA7;
}
.page--schedule .monthArea .month-pager li.pager__item--newer a:after {
  left: 5px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(-135deg);
  transiton: 0.3s;
}
.page--schedule .monthArea .month-pager li.pager__item--newer a:hover {
  color: #000;
}
.page--schedule .monthArea .month-pager li.pager__item--newer a:hover:after {
  left: -5px;
}
.page--schedule .monthArea .month-pager li.pager__item--older a {
  color: #959EA7;
}
.page--schedule .monthArea .month-pager li.pager__item--older a:after {
  right: 5px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transiton: 0.3s;
}
.page--schedule .monthArea .month-pager li.pager__item--older a:hover {
  color: #000;
}
.page--schedule .monthArea .month-pager li.pager__item--older a:hover:after {
  right: -5px;
}

/*  contact
------------------------------ */
.page--contact .txt--sub {
  display: block;
}
.page--contact .txt--basic a {
  font-weight: 700;
  text-decoration: underline;
}
.page--contact .list--text dt {
  font-weight: bold;
}

/*  4.10 support
------------------------------ */
.support .txt {
  margin: 0 0 10px;
}
.support .section-tit {
  font-size: 30px;
}
.support .list--support {
  margin-top: 30px;
}
.support .list--support dt {
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  margin: 0;
}
.support .list--support dd {
  padding: 0 0 30px;
}
.support .list--support dd a {
  color: #000000;
}
.support .list--support dd .terms-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.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;
}
.support .block--attention {
  border: 0.5px solid #959ea7;
  padding: 30px;
  margin-bottom: 40px;
}
.support .block--attention .txt--basic {
  font-size: 13px;
  line-height: 1.8;
  text-align: justify;
  word-break: break-word;
  margin-bottom: 15px;
}
.support .block--attention .txt--basic:last-of-type {
  margin-bottom: 0;
}

.list--sub {
  font-size: 11px;
  padding-left: 1em;
  margin: 0 0 40px;
}
.list--sub li {
  margin: 0 0 5px;
  text-indent: -1em;
}

/*  4.9 entry
------------------------------ */
.section--detail.entry,
.section--detail.course-change {
  max-width: 800px;
}
.section--detail.entry [class^=block--],
.section--detail.course-change [class^=block--] {
  margin-bottom: 120px;
}
.section--detail.entry .block-tit,
.section--detail.course-change .block-tit {
  font-family: "Francois One", sans-serif;
  color: inherit;
  font-size: 50px;
  font-weight: inherit;
  line-height: 1.4;
  word-break: break-word;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 50px;
}
.section--detail.entry .block--contents dt,
.section--detail.course-change .block--contents dt {
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}
.section--detail.entry .block--contents dt span,
.section--detail.course-change .block--contents dt span {
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  display: inline-block;
  vertical-align: 2px;
  border: 0.5px solid;
  padding: 2px 5px 1px;
  margin-left: 7px;
}
.section--detail.entry .block--contents dd:not(:last-of-type),
.section--detail.course-change .block--contents dd:not(:last-of-type) {
  margin-bottom: 35px;
}
.section--detail.entry .block--course .block-tit, .section--detail.entry .block--device .block-tit, .section--detail.entry .block--fc-goods .block-tit,
.section--detail.course-change .block--course .block-tit,
.section--detail.course-change .block--device .block-tit,
.section--detail.course-change .block--fc-goods .block-tit {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1.5em;
}
.section--detail.entry .block--course .block--table, .section--detail.entry .block--device .block--table, .section--detail.entry .block--fc-goods .block--table,
.section--detail.course-change .block--course .block--table,
.section--detail.course-change .block--device .block--table,
.section--detail.course-change .block--fc-goods .block--table {
  border: 0.5px solid #959EA7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}
.section--detail.entry .block--course table, .section--detail.entry .block--device table, .section--detail.entry .block--fc-goods table,
.section--detail.course-change .block--course table,
.section--detail.course-change .block--device table,
.section--detail.course-change .block--fc-goods table {
  width: 100%;
}
.section--detail.entry .block--course table tr:last-of-type td, .section--detail.entry .block--course table tr:last-of-type th, .section--detail.entry .block--device table tr:last-of-type td, .section--detail.entry .block--device table tr:last-of-type th, .section--detail.entry .block--fc-goods table tr:last-of-type td, .section--detail.entry .block--fc-goods table tr:last-of-type th,
.section--detail.course-change .block--course table tr:last-of-type td,
.section--detail.course-change .block--course table tr:last-of-type th,
.section--detail.course-change .block--device table tr:last-of-type td,
.section--detail.course-change .block--device table tr:last-of-type th,
.section--detail.course-change .block--fc-goods table tr:last-of-type td,
.section--detail.course-change .block--fc-goods table tr:last-of-type th {
  border-bottom: none;
}
.section--detail.entry .block--course table th, .section--detail.entry .block--device table th, .section--detail.entry .block--fc-goods table th,
.section--detail.course-change .block--course table th,
.section--detail.course-change .block--device table th,
.section--detail.course-change .block--fc-goods table th {
  width: 14em;
  background: #d2dae2;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border-bottom: 0.5px solid #959EA7;
  padding: 20px 2em;
}
.section--detail.entry .block--course table th br, .section--detail.entry .block--device table th br, .section--detail.entry .block--fc-goods table th br,
.section--detail.course-change .block--course table th br,
.section--detail.course-change .block--device table th br,
.section--detail.course-change .block--fc-goods table th br {
  display: none;
}
.section--detail.entry .block--course table td, .section--detail.entry .block--device table td, .section--detail.entry .block--fc-goods table td,
.section--detail.course-change .block--course table td,
.section--detail.course-change .block--device table td,
.section--detail.course-change .block--fc-goods table td {
  word-break: break-word;
  border-bottom: 0.5px solid #959EA7;
  padding: 20px 2em;
}

.section--detail.entry .section-tit {
  width: 56%;
  height: 11vw;
  text-indent: -9999em;
  background: url(/static/sbr/common/logo_fc.png) center/contain no-repeat;
  margin: 20px auto 1.5em;
}
.section--detail.entry .block--top {
  position: relative;
}
.section--detail.entry .block--top .txt--basic {
  margin-bottom: 4em;
}
.section--detail.entry .block--top::before {
  content: "SHIBUTANI SUBARU OFFICIAL FAN CLUB";
  display: block;
  width: 100%;
  font-family: "Francois One", sans-serif;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #ef6e68;
  position: absolute;
  top: -35px;
  left: 6px;
}
.section--detail.entry .block--top .block--attention {
  border: 0.5px solid #959ea7;
  border-radius: 8px;
  padding: 45px;
  margin-bottom: 70px;
}
.section--detail.entry .block--top .block--attention .txt--basic {
  font-size: 13px;
  line-height: 1.8;
  text-align: justify;
  word-break: break-word;
  margin-bottom: 15px;
}
.section--detail.entry .block--top .block--attention .txt--basic:last-of-type {
  margin-bottom: 0;
}
.section--detail.entry .block--contents .block-tit {
  color: #000000;
}
.section--detail.entry .block--contents dl.list--contents {
  color: #423232;
  border: 0.5px solid #959EA7;
  border-radius: 8px;
  padding: 80px 40px 30px 160px;
  margin-bottom: 30px;
}
.section--detail.entry .block--contents dl.list--contents dt {
  color: #f75e5e;
  letter-spacing: 0.03em;
  position: relative;
}
.section--detail.entry .block--contents dl.list--contents dt::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: center/contain no-repeat;
  position: absolute;
  left: -85px;
  top: -12px;
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__ticket::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_ticket.png);
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__newsletter::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_book.png);
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__blog::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_blog.png);
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__idcard::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_card.png);
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__notebook::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_note.png);
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__greetingmail::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_greetingmail.png);
}
.section--detail.entry .block--contents dl.list--contents dt.list--contents__mail::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_mail.png);
}
.section--detail.entry .block--contents dl.list--contents dd {
  margin-bottom: 55px;
}
.section--detail.entry .block--fc-goods {
  background: #e6ebef;
  color: #423232;
  border-radius: 8px;
  padding: 30px 50px 20px;
  margin: 0 auto 100px;
}
.section--detail.entry .block--fc-goods .block-tit {
  font-size: 20px;
  margin-bottom: 0.5em;
}
.section--detail.entry .block--fc-goods .thumb {
  width: 38%;
  margin: 0 auto;
  position: relative;
}
.section--detail.entry .block--fc-goods .txt--sub {
  text-align: center;
  margin-top: 35px;
  position: relative;
}
.section--detail.entry .block--fc-goods.notebook {
  background: #fbb0b0;
  color: #fff;
  border-radius: 8px;
  padding: 40px 50px 40px;
  margin: 0 auto 100px;
}
.section--detail.entry .block--fc-goods.notebook .block-tit {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.section--detail.entry .block--fc-goods.notebook .thumb {
  width: 45%;
  margin: 0 auto;
  position: relative;
}
.section--detail.entry .block--fc-goods.notebook .thumb img {
  margin-bottom: 15px;
}
.section--detail.entry .block--fc-goods.notebook .thumb figcaption {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3em;
}
.section--detail.entry .block--fc-goods.notebook .txt--sub {
  text-align: center;
  margin-top: 35px;
  position: relative;
}
.section--detail.entry .block--fc-goods.notebook .block--flex {
  display: flex;
  width: 80%;
  justify-content: space-around;
  margin: 0 auto;
}
.section--detail.entry .block--fc-goods.notebook .block--flex + p {
  font-weight: 900;
  color: #fff462;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
}
.section--detail.entry .btn:last-of-type {
  margin-bottom: 3.5em;
}

.section--detail.course-change .center {
  text-align: center;
}
.section--detail.course-change .section-tit {
  font-size: 40px;
  margin-bottom: 90px;
}
.section--detail.course-change table {
  border: 1px solid #959EA7;
}
.section--detail.course-change .block--course .block {
  border: 0.5px solid;
  padding: 40px;
  margin-bottom: 40px;
}
.section--detail.course-change .block--course .block .block-tit {
  font-size: 24px;
}
.section--detail.course-change .block--course .block .block-tit + .txt--basic {
  text-align: center;
  margin-bottom: 40px;
}
.section--detail.course-change .block--course .block:last-child {
  margin-bottom: 0;
}
.section--detail.course-change .block--course .block .txt--basic:last-of-type {
  margin-bottom: 0;
}
.section--detail.course-change .block--course .block .btn--main {
  margin-top: 30px;
}
.section--detail.course-change .list--attention {
  color: #ff524a;
}
.section--detail.course-change .list--attention li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.section--detail.course-change .block .block--attention {
  background: #eaeaea;
  padding: 30px;
  margin-bottom: 20px;
}
.section--detail.course-change .block .block--attention .block-tit {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}
.section--detail.course-change .list--step li {
  text-indent: -1em;
  padding-left: 1em;
}
.section--detail.course-change .list--step li .txt--basic {
  margin-bottom: 0.5em;
}

/*  streaming
------------------------------ */
.section--detail.page--streaming {
  max-width: 1200px;
}
.section--detail.page--streaming .red {
  color: #FD5651;
}
.section--detail.page--streaming::after {
  clear: both;
  content: "";
  display: block;
}
.section--detail.page--streaming .block--movie-area::after {
  display: table;
  content: "";
  clear: both;
}
.section--detail.page--streaming .block--attention-comment {
  background: #eee;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}
.section--detail.page--streaming .block--movie {
  width: 65%;
  float: left;
}
.section--detail.page--streaming .block--movie .block--movie__inner {
  outline: none;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.section--detail.page--streaming .block--movie .block--movie__inner iframe, .section--detail.page--streaming .block--movie .block--movie__inner video, .section--detail.page--streaming .block--movie .block--movie__inner .jstream-eqPlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section--detail.page--streaming .block--comment {
  width: 35%;
  float: right;
  padding: 0 0 0 32px;
  margin: 0;
}
.section--detail.page--streaming .block--comment #comments {
  width: 100%;
  float: none;
  margin: 0 auto;
  padding-right: 0;
}
.section--detail.page--streaming .block--comment .form--post {
  margin-bottom: 0;
}
.section--detail.page--streaming .block--comment .form--post dd {
  margin-bottom: 0;
}
.section--detail.page--streaming .block--comment .form--post + .btn {
  width: 110px;
  min-width: inherit;
  margin: 0 0 0 auto;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.section--detail.page--streaming .block--comment .form--post + .btn .btn--main {
  min-width: inherit;
  margin: 0 0 0 auto;
  font-size: 13px;
  line-height: 3;
  padding: 0;
  transition: 0.3s;
}
.section--detail.page--streaming .block--comment .form--post + .btn .btn--main:hover {
  box-shadow: none;
  background: #555;
}
.section--detail.page--streaming .block--comment .comment_area {
  height: 5em;
}
.section--detail.page--streaming .block--comment .comments_post {
  margin-bottom: 20px;
}
.section--detail.page--streaming .block--comment .inner_comments {
  width: 100%;
  height: 290px !important;
  float: none;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.section--detail.page--streaming .block--comment .inner_comments li {
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #e6e6e6;
  padding: 0 10px 8px 0;
  margin-bottom: 8px;
  position: relative;
}
.section--detail.page--streaming .block--comment .inner_comments li.flag--delete .name {
  width: calc(100% - 108px);
}
.section--detail.page--streaming .block--comment .inner_comments li.flag--delete .date {
  width: 108px;
  padding-right: 30px;
}
.section--detail.page--streaming .block--comment .inner_comments li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.section--detail.page--streaming .block--comment .inner_comments li .btn.btn--delete {
  width: 2.2em;
  position: absolute;
  top: 3px;
  right: 4px;
  margin: 0;
  z-index: 100;
  line-height: 0;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.section--detail.page--streaming .block--comment .inner_comments li .btn.btn--delete button {
  font-size: 11px;
  padding: 2px 0;
  border: 1px solid;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.section--detail.page--streaming .block--comment .inner_comments li .btn.btn--delete button:hover {
  background: #000;
  color: #fff;
}
.section--detail.page--streaming .block--comment .inner_comments li .name {
  font-size: 0.8em;
  float: left;
  width: calc(100% - 100px);
  line-height: 1.4;
}
.section--detail.page--streaming .block--comment .inner_comments li .date {
  width: 100px;
  float: right;
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  text-align: right;
}
.section--detail.page--streaming .block--comment .inner_comments li .comment_body {
  font-size: 15px;
}
.section--detail.page--streaming .block--introdction_streaming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  position: relative;
  padding: 60px;
  clear: both;
  margin-top: 80px;
}
.section--detail.page--streaming .block--introdction_streaming .block-tit {
  width: 45%;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.section--detail.page--streaming .block--introdction_streaming .txt--basic {
  text-align: center;
}
.section--detail.page--streaming .block--introdction_streaming .stream-movie {
  width: 55%;
}
.section--detail.page--streaming .block--introdction_streaming .stream-movie .inner {
  width: 100%;
  padding-top: 50.25%;
  position: relative;
  margin: 0 auto;
}
.section--detail.page--streaming .block--introdction_streaming .stream-movie .inner iframe {
  top: 0;
}
.section--detail.page--streaming .block--introdction_streaming .stream-movie .jstream-eqPlayer {
  top: 0;
}
.section--detail.page--streaming .block--attention {
  position: relative;
  padding-top: 60px;
}
.section--detail.page--streaming .block--attention .block--text {
  width: 40%;
  padding-right: 50px;
}
.section--detail.page--streaming .block--attention .supportArea {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.section--detail.page--streaming .block--attention .supportArea dt {
  margin: 0 auto 15px;
}
.section--detail.page--streaming .block--attention .attentionList {
  margin: 0 0 50px;
}
.section--detail.page--streaming .block--attention .attentionList li {
  font-size: 11px;
  line-height: 1.4em;
  text-indent: -9px;
  margin: 0 0 0 18px;
  padding: 0 0 10px;
}
.section--detail.page--streaming .block--attention .attentionList li:last-child {
  padding: 0;
}
.section--detail.page--streaming .block--attention .supportCell {
  width: 60%;
  margin: 0 auto;
}
.section--detail.page--streaming .block--attention .supportCell th {
  border: 1px solid #ccc;
  width: 33%;
  padding: 7px;
  background: #eee;
  font-size: 11px;
}
.section--detail.page--streaming .block--attention .supportCell td {
  line-height: 1.3em;
  vertical-align: middle;
  border: 1px solid #ddd;
  padding: 7px;
  font-size: 11px;
  width: 60%;
}
.section--detail.page--streaming .block--attention .supportCell .blank {
  width: 10%;
}
.section--detail.page--streaming .block--attention .supportCell .os {
  width: 15%;
}
.section--detail.page--streaming .block--attention .supportCell .osVer {
  width: 40%;
}
.section--detail.page--streaming .block--attention .attentionList li:before {
  content: none;
}
.section--detail.page--streaming .block--attention .fa-warning:before, .section--detail.page--streaming .block--attention .fa-exclamation-triangle:before, .section--detail.page--streaming .block--attention .fa-check:before {
  padding: 0 5px 0 0;
}

/*  4.10 error
------------------------------ */
.page--error .detail__btn {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .drawer .nav-box.fc {
    width: 98%;
  }
  .drawer .nav-box.login {
    margin-left: 0;
  }
}
/*  comment
------------------------------ */
.section--detail.section--comment-list #inner_comments {
  height: 60vh !important;
  overflow: hidden;
  overflow-y: auto;
  border: 1px solid;
  padding: 20px;
}
.section--detail.section--comment-list #inner_comments li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.section--detail.section--comment-list #inner_comments li .comment_head .name {
  float: left;
  font-weight: bold;
}
.section--detail.section--comment-list #inner_comments li .comment_head .date {
  float: right;
}
.section--detail.section--comment-list #inner_comments li .comment_body {
  line-height: 1.5;
}

/*  blog
------------------------------ */
.page--blog .list--contents li {
  width: 100%;
}
.page--blog .list--contents .user {
  display: none;
}
.page--blog .list--contents .thumb {
  display: none;
}
.page--blog .list--contents .txt {
  display: none;
}
.page--blog .list--contents .date {
  display: inline-block;
  float: left;
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 7px;
}
.page--blog .list--contents .tit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  padding-left: 200px;
}
.page--blog .list--contents .pagingBox {
  border-top: 0.5px solid #dde1e6;
  padding-top: 80px;
  margin-top: 80px;
  width: 100%;
}
.page--blog .list--contents .pagingBox ul {
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}
.page--blog .list--contents .pagingBox li {
  font-family: "Francois One", sans-serif;
  display: inline-block;
  width: 3%;
  color: #959EA7;
}
.page--blog .list--contents .pagingBox li a {
  padding: 0;
  margin: 0;
}
.page--blog .list--contents .pagingBox li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--blog .list--contents .pagingBox li a:hover::before {
  content: "";
  transform: scaleX(1);
}
.page--blog .list--contents .pagingBox a.pagenation__next {
  height: 50px;
  width: 50px;
}
.page--blog .list--contents .pagingBox .pager__item--newer a {
  height: 50px;
  width: 50px;
}
.page--blog .list--contents .pagingBox a.pagenation__next::before {
  content: "";
  display: none;
}
.page--blog .list--contents .pagingBox .pager__item--newer a::before {
  content: "";
  display: none;
}
.page--blog .list--contents .pagingBox .current {
  display: inline-block;
  font-family: "Francois One", sans-serif;
  position: relative;
  vertical-align: -1px;
  padding: 0;
  top: 0;
  color: #000 !important;
}
.page--blog .list--contents .pagingBox .current::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
}
.page--blog .list--contents .pagingBox .pager__item--newer {
  float: left;
  position: relative;
  height: 20px;
}
.page--blog .list--contents .pagingBox .pager__item--newer:hover::before {
  background: #000000;
  transform: scaleX(1.2);
}
.page--blog .list--contents .pagingBox .pager__item--newer:hover::after {
  left: -5px;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}
.page--blog .list--contents .pagingBox .pager__item--newer::before {
  transform-origin: right;
  top: 2px;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
}
.page--blog .list--contents .pagingBox .pager__item--newer::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.page--blog .list--contents .pagingBox .pager__item--older {
  float: right;
  position: relative;
  height: 20px;
}
.page--blog .list--contents .pagingBox .pager__item--older:hover::before {
  background: #000000;
  transform: scaleX(1.2);
}
.page--blog .list--contents .pagingBox .pager__item--older:hover::after {
  right: -10px;
  left: inherit;
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}
.page--blog .list--contents .pagingBox .pager__item--older::before {
  transform-origin: left;
  top: 2px;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
  float: right;
}
.page--blog .list--contents .pagingBox .pager__item--older::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  position: absolute;
  top: 10px;
  transition: 0.3s;
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}

.page--blog .commentPager {
  border-top: none;
  padding-top: 0;
  margin: 0 auto 50px;
  font-size: 12px;
  text-align: center;
}
.page--blog .commentPager li {
  display: inline-block;
  width: 3%;
  display: inline-block;
  font-family: "Francois One", sans-serif;
  position: relative;
  vertical-align: -1px;
  padding: 0;
  top: 0;
  color: #000 !important;
}
.page--blog .commentPager a {
  height: 30px;
}
.page--blog .commentPager .pager__item--newer {
  float: left;
}
.page--blog .commentPager .pager__item--older {
  float: right;
}
.page--blog .commentPager li a::before, .page--blog .commentPager li span::before {
  width: auto;
}
.page--blog .commentPager li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.page--blog .commentPager li a::after {
  display: none;
}
.page--blog .commentPager li a:hover::before {
  content: "";
  transform: scaleX(1);
}
.page--blog .commentPager .pagenation__next::after {
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.page--blog .commentPager .pagenation__prev::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
  transform-origin: right;
  transform: scaleX(1);
}
.page--blog .commentPager .pagenation__prev::after {
  display: block;
}
.page--blog .commentPager .pagenation__next::before {
  content: "";
  display: block;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
  transform-origin: left;
  transform: scaleX(1);
}
.page--blog .commentPager .pagenation__next::after {
  display: block;
}
.page--blog .commentPager .pager__item--current::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
}
.page--blog .commentPager .pagenation__prev:hover::before {
  transform: scaleX(1.2);
}
.page--blog .commentPager .pagenation__prev:hover::after {
  left: -7px;
}
.page--blog .commentPager .pagenation__next:hover::before {
  transform: scaleX(1.2);
}
.page--blog .commentPager .pagenation__next:hover::after {
  right: -7px;
}
.page--blog .block--pager li span::after {
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.page--blog .block--pager li.pager__item--newer span::after {
  right: 19px;
  left: inherit;
  transform: rotate(-45deg);
}
.page--blog .section--detail .txt > p .block--video .iconfont,
.page--blog .section--detail .txt > p .block--video .vjs-play-progress {
  font-family: VideoJS !important;
}

.page--blog.category- .ph {
  max-width: 80%;
}
.page--blog.category- .ph .dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page--info.category-7 .list--info li a,
.page--info.category-5 .list--info li a {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-word;
  padding: 1.1em 0;
  position: relative;
  left: 0;
  transition: 0.3s;
}
.page--info.category-7 .list--info li a:hover,
.page--info.category-5 .list--info li a:hover {
  left: 15px;
}
.page--info.category-7 .list--info li .thumb,
.page--info.category-5 .list--info li .thumb {
  display: none;
}
.page--info.category-7 .list--info li .date,
.page--info.category-5 .list--info li .date {
  display: inline-block;
  float: left;
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 7px;
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  letter-spacing: 0.1em;
}
.page--info.category-7 .list--info li .tit,
.page--info.category-5 .list--info li .tit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  padding-left: 120px;
}

.commentconfirm {
  padding: 180px 0 0 0;
  width: 900px;
  margin: auto;
}
.commentconfirm .pageTit {
  display: none;
}
.commentconfirm .titArea .tit {
  text-align: center;
  color: #000000;
  font-size: 16px;
  border-bottom: 1px solid #000000;
  padding: 0 0 20px 0;
  margin: 0 0 40px 0;
}
.commentconfirm dl {
  color: #000000;
}
.commentconfirm dl dt {
  font-size: 12px;
  opacity: 0.9;
}
.commentconfirm dl dd {
  border-bottom: 1px solid #ddd;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
  font-size: 16px;
}
.commentconfirm dl dd:last-child {
  border-bottom: 1px solid #000000;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
  font-size: 16px;
}
.commentconfirm .detail__btn input, .commentconfirm .btn input {
  transition: 0.3s;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 11px;
  border: 1px solid;
  padding: 5px 10px 4px 12px;
  border-radius: 100px;
  margin: 10px 0 0;
  background: #414649;
  width: 300px;
  padding: 20px;
  font-size: 15px;
}
.commentconfirm .detail__btn input:hover, .commentconfirm .btn input:hover {
  opacity: 0.8;
  transition: 0.4s;
}

.commentcomplete {
  padding: 180px 0 0 0;
  width: 900px;
  margin: auto;
}
.commentcomplete .pageTit {
  display: none;
}
.commentcomplete .titArea .tit {
  text-align: center;
  color: #000000;
  font-size: 16px;
  margin: 0 0 40px 0;
}
.commentcomplete .btn a {
  transition: 0.3s;
  color: #fff;
  letter-spacing: 1px;
  border: 1px solid;
  padding: 5px 10px 4px 12px;
  border-radius: 100px;
  margin: 10px 0 0;
  background: #414649;
  width: 300px;
  padding: 20px;
  font-size: 15px;
  display: block;
  margin: auto;
  line-height: 1.5;
}
.commentcomplete .btn a:hover {
  transition: 0.4s;
  opacity: 0.8;
}

.page--movie.category-1 .section-tit {
  display: none;
}
.page--movie.category-1 .section-tit.ct1 {
  display: block;
  width: 200px;
  margin: auto;
}
.page--movie.category-1 .btnWeek a {
  display: none;
}
.page--movie.category-1 .btnWeek.ct1 a {
  display: block;
  width: 350px;
  margin: 10px auto 30px;
  border: 2px solid #000;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  transition: 0.4s;
}
.page--movie.category-1 .btnWeek.ct1 a:hover {
  opacity: 0.6;
}
.page--movie.category-1 .list--contents .thumb img {
  filter: none;
}
.page--movie.category-1 .list--contents .thumb::after {
  background: none;
}
.page--movie.category-1 .list--contents .thumb img {
  opacity: 1;
}

.page.page--movie.all .list--contents li {
  margin: 0 0 40px 0;
}
.page.page--movie.all .list--contents .thumb img {
  opacity: 1;
  filter: none;
}
.page.page--movie.all .list--contents .thumb::after {
  background: none;
}
.page.page--movie.all .list--contents .categoryTit {
  text-align: center;
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  background: #EF645D;
  padding: 2px;
  width: 65%;
}
.page.page--movie.all .list--contents .categoryTit.ct_a {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.page.page--movie.all .list--contents .categoryTit.ct_b {
  background: #8599d0;
}
.page.page--movie.all .list--contents .categoryTit.ct_d {
  background: #5fad7b;
}
.page.page--movie.all .list--contents::after {
  display: table;
  content: "";
  clear: both;
  width: 32%;
}
.page.page--movie.all .section-tit {
  display: block;
  width: 200px;
  margin: auto;
}
.page.page--movie.all .btnWeek a {
  display: block;
  width: 350px;
  margin: 10px auto 30px;
  border: 2px solid #000;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  transition: 0.4s;
}
.page.page--movie.all .btnWeek a:hover {
  opacity: 0.6;
}
.page.page--movie.all .categoryArea {
  background: #f7f7f7;
  padding: 20px;
  margin: 0 0 60px 0;
}
.page.page--movie.all .categoryArea .tit {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 20px 0;
}
.page.page--movie.all .categoryArea .btnList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.page.page--movie.all .categoryArea .btnList li {
  width: 32%;
}
.page.page--movie.all .categoryArea .btnList li .btn {
  margin: 0 auto;
}
.page.page--movie.all .categoryArea .btnList li a {
  width: 100%;
  background: #000000;
  display: block;
  border-radius: 999px;
  padding: 15px;
  line-height: 1;
  font-size: 15px;
  color: #fff;
  transition: 0.4s;
  border: 2px solid #000000;
}
.page.page--movie.all .categoryArea .btnList li a:hover {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.page.page--movie.all .categoryArea .btnList li .ct_b a {
  background: #8599d0;
  border: 2px solid #8599d0;
}
.page.page--movie.all .categoryArea .btnList li .ct_b a:hover {
  background: transparent;
  color: #8599d0;
  border: 2px solid #8599d0;
}
.page.page--movie.all .categoryArea .btnList li .ct_c a {
  background: #EF645D;
  border: 2px solid #EF645D;
}
.page.page--movie.all .categoryArea .btnList li .ct_c a:hover {
  background: transparent;
  color: #EF645D;
  border: 2px solid #EF645D;
}
.page.page--movie.all .categoryArea .btnList li .ct_d a {
  background: #5fad7b;
  border: 2px solid #5fad7b;
}
.page.page--movie.all .categoryArea .btnList li .ct_d a:hover {
  background: transparent;
  color: #5fad7b;
  border: 2px solid #5fad7b;
}

.page--movie .ico.new {
  color: #fd7874;
}

.page--movie.category-4 .section-tit.ct1,
.page--movie.category-5 .section-tit.ct1,
.page--movie.category-6 .section-tit.ct1 {
  display: none;
}
.page--movie.category-4 .btnWeek,
.page--movie.category-5 .btnWeek,
.page--movie.category-6 .btnWeek {
  display: none;
}
.page--movie.category-4 .list--contents .thumb img,
.page--movie.category-5 .list--contents .thumb img,
.page--movie.category-6 .list--contents .thumb img {
  opacity: 1;
  filter: none;
}
.page--movie.category-4 .list--contents .thumb::after,
.page--movie.category-5 .list--contents .thumb::after,
.page--movie.category-6 .list--contents .thumb::after {
  background: none;
}

/*  page--bbs
------------------------------ */
.page--bbs.wrapThread .threadAll {
  display: none;
}
.page--bbs.wrapThread .thread1 {
  display: block;
}

.page--bbs {
  /*****.block--parent***/
  /*****.block--post***/
}
.page--bbs .threadAll {
  display: block;
}
.page--bbs .thread1 {
  display: none;
}
.page--bbs .section--detail {
  width: 800px;
}
.page--bbs .attentionList li {
  font-size: 12px;
  text-indent: -1em;
  margin: 0 0 5px 1em;
}
.page--bbs .bgBox {
  width: 100%;
  height: 100%;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.6s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.page--bbs .bgBox .bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  opacity: 1;
}
.page--bbs .bgBox .bg01 {
  opacity: 1;
  background: url(/static/sbr/fanclub/feature/bbs/bg_main_v3Sd8Fay.jpg) no-repeat center center;
  background-position: top;
  background-size: cover;
}
.page--bbs .bgBox.type2 .bg01 {
  opacity: 1;
  background: url(/static/sbr/fanclub/feature/bbs/bg_main_02_v3Sd8Fay.jpg) no-repeat center center;
  background-position: top;
  background-size: cover;
}
.page--bbs .block--parent {
  margin: 0 auto 50px;
}
.page--bbs .block--parent .mainLogo {
  width: 400px;
  margin: 0 auto 20px;
}
.page--bbs .block--parent .mainTit {
  text-align: center;
  font-size: 39px;
  font-weight: bold;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.page--bbs .block--parent .mainTit span {
  display: block;
  padding: 15px;
  font-size: 17px;
  margin: 0 0 25px 0;
  text-align: center;
  border-bottom: 2px solid;
  box-shadow: 5px 5px #000;
  -webkit-box-shadow: 5px 5px #000;
  border: 2px solid;
}
.page--bbs .block--parent .leadArea {
  padding: 40px;
  background: rgba(0, 0, 0, 0.05);
}
.page--bbs .block--parent .lead {
  font-size: 15px;
  margin: 0 auto 20px;
  text-align: center;
}
.page--bbs .block--parent .date {
  font-size: 15px;
  color: #000;
  border: 2px solid;
  padding: 10px 10px 5px 10px;
  margin: 0 auto 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
.page--bbs .block--post {
  margin: 0 auto 100px;
  width: 80%;
}
.page--bbs .block--post .form--post {
  display: none;
  padding: 30px;
  margin: 0 auto;
  background: #333;
  color: #fff;
}
.page--bbs .block--post .form--post .btn--main {
  background: #fff;
  border-radius: 0;
  color: #000;
  font-weight: bold;
}
.page--bbs .block--post .form--post .btn--main:hover {
  opacity: 0.8;
}
.page--bbs .block--post .form--post .txt {
  margin: 0 auto 20px;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}
.page--bbs .block--post .form--post .label--image {
  font-size: 13px;
  margin: 10px auto;
  font-weight: bold;
}
.page--bbs .block--post .form--post dl {
  border-bottom: 1px solid;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}
.page--bbs .block--post .form--post dl dt {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.page--bbs .block--post .form--post dl dd {
  margin: 0;
}
.page--bbs .block--post .form-entry-tit {
  position: relative;
  padding: 15px 20px;
  margin: 0 auto;
  background: #333;
  color: #fff;
  text-align: center;
}
.page--bbs .block--post .form-entry-tit:after {
  position: absolute;
  top: 45%;
  right: 27px;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  z-index: 0;
  pointer-events: none;
}
.page--bbs .block--post .form-entry-tit.active:after {
  transform: translateY(0%) rotate(-45deg);
}
.page--bbs .list--comment {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto 50px;
}
.page--bbs .list--comment li {
  width: 32%;
  margin: 0 0 20px 0;
  position: relative;
}
.page--bbs .list--comment li .ph {
  margin: 0 auto 10px;
}
.page--bbs .list--comment li .ph img {
  width: auto;
  height: 365px;
  max-width: 100%;
  display: block;
  margin: auto;
  display: block;
  width: 256px;
  background: no-repeat center;
  background-size: cover;
}
.page--bbs .list--comment li .name {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px 0;
  display: block;
}
.page--bbs .list--comment li .txt {
  line-height: 1.5;
  font-size: 13px;
  margin: 0 0 5px 0;
}
.page--bbs .list--comment li .txt .link {
  color: #000 !important;
}
.page--bbs .list--comment li .txt .link:hover {
  text-decoration: underline !important;
  opacity: 0.7;
}
.page--bbs .list--comment li .block--user .name.shubabu {
  color: #EE6860;
}
.page--bbs .list--comment li .block--user .shubabu_icon {
  top: 0;
  position: absolute;
  width: 60%;
  transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  right: -10px;
}
.page--bbs ul.block--pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 100px;
  color: #999;
}
.page--bbs .ul.block--pager li p {
  padding: 10px 15px;
  line-height: 1;
}
.page--bbs ul.block--pager li a {
  display: inline-block;
  padding: 10px 15px;
  line-height: 1;
  color: #222;
}
.page--bbs ul.block--pager li a * {
  color: #222;
}
.page--bbs ul.block--pager .pager__item--current {
  padding: 10px 15px;
  line-height: 1;
}/*# sourceMappingURL=fanclub-pc-service.css.map */