@charset "UTF-8";
/* ---------------------------------------
0.0 mixin
	0.1 colorsdrawer
	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
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.4 blog
	4.6 faq
	4.7 support
	4.8 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;
}

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

/* 2.0 component
============================== */
/* 2.1 button
------------------------------ */
.btn,
.detail__btn,
.list__more {
  text-align: center;
  margin: 1em 0;
}

.btn--main {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 3.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 90%;
  text-align: center;
  text-decoration: none;
  padding: 0 1.5em;
  border-radius: 2em;
  border: none;
  background: #141b1f;
  color: #fff;
}

.detail__btn a,
.btn--sub {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 3.8;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 90%;
  text-align: center;
  text-decoration: none;
  padding: 0 1.5em;
  border-radius: 2em;
  border: none;
  color: #000000;
}

.btn--sub {
  border: 0.5px solid #000000;
}

.detail__btn,
.list__more {
  width: 100%;
  text-align: left;
  margin: 0;
  padding-left: 0;
  position: absolute;
  bottom: 45px;
  z-index: 20;
}
.detail__btn a,
.list__more a {
  display: inline-block;
  min-width: inherit;
  font-size: 14px;
  line-height: 1;
  color: #959EA7;
  padding: 40px 1em 30px 8%;
}
.detail__btn::before,
.list__more::before {
  content: "";
  display: block;
  width: 88%;
  height: 0.5px;
  background: #e5e7ea;
  position: absolute;
  top: -20px;
  left: 6%;
}

.list__more {
  width: 100%;
  font-family: "Francois One", sans-serif;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.list__more a {
  display: block;
  padding: 20px 0;
}

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

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

/* 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: 18px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #959EA7;
  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;
}
input[type=text].form__error,
input[type=tel].form__error,
input[type=email].form__error,
input[type=password].form__error,
input[type=number].form__error,
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--half {
  width: 50% !important;
}

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

/* textarea */
textarea {
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #959EA7;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* select */
.form__select,
.block--info-nav {
  display: inline-block;
  position: relative;
}
.form__select select,
.block--info-nav select {
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0.3em;
  border: 1px solid #959EA7;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus,
.block--info-nav select:focus {
  border-color: inherit;
}
.form__select select.form__error,
.block--info-nav select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__select select.form__error:focus,
.block--info-nav select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled],
.block--info-nav select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__select::after,
.block--info-nav::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: 400;
  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;
  position: absolute;
  opacity: 0;
}
.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: 400;
  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;
  position: absolute;
  opacity: 0;
}
.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: 1px solid #ddd;
  border-radius: 50%;
  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: 400;
  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;
  position: absolute;
  opacity: 0;
}
.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;
  border: 1px solid #ddd;
  margin: -15px 0 0;
  position: absolute;
}
.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;
}

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

.form--confirm {
  padding: 20px 0 0;
}
.form--confirm dt {
  opacity: 0.5;
  margin: 0 0 5px;
}
.form--confirm dd {
  margin: 0 0 1em;
}

/* 2.3 list
------------------------------ */
/*  information */
.list--information a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
  padding: 1.5em 1em 1.5em 0;
  position: relative;
}
.list--information .tit {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}
.list--information .date {
  color: #959EA7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.list--information .new .date::after {
  content: "NEW";
  color: #FD5651;
  font-weight: 900;
  margin-left: 10px;
}
.list--information li {
  position: relative;
  margin: 0 0 40px;
}
.list--information .new .date::after {
  content: none;
}
.list--information .category {
  position: relative;
}
.list--information .new .category::after {
  content: "NEW";
  display: inline-block;
  width: auto;
  height: 9px;
  color: #FD5651;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0 0 0 8px;
}
.list--information a {
  padding: 0;
}
.list--information a::before {
  display: none;
}
.list--information .no-data {
  border: none !important;
  padding: 35px 7%;
}
.list--information .category {
  background: none;
  display: inline-block;
  color: #000;
  font-size: 11px;
  font-family: "Francois One", Noto Sans JP, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.list--information .date.event-end span {
  padding-left: 20px;
  position: relative;
  display: inline-block;
}
.list--information .date.event-end span::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #b1b9c1;
  position: absolute;
  left: 4px;
  top: 4px;
}

.list--discography li {
  margin-bottom: 50px;
}
.list--discography li a {
  display: block;
  position: relative;
}
.list--discography li a figure {
  margin-bottom: 10px;
  width: 35%;
  float: left;
  padding: 0 15px 0 0;
}
.list--discography li a figure .blur-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.list--discography li a figure .blur-wrap img {
  background-size: contain;
  z-index: 20;
  position: relative;
}
.list--discography li a figure .blur-wrap .blurBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(5px);
  background-size: cover;
  transform: scale(1.2);
}
.list--discography li a .category {
  font-family: "Francois One", sans-serif;
  font-weight: 400;
  font-size: 12px;
  display: block;
  vertical-align: 0;
  padding-right: 5px;
}
.list--discography li a .date {
  display: inline-block;
  position: relative;
  font-family: "Overpass", sans-serif;
  color: #959EA7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0;
}
.list--discography li a .date::after {
  content: "RELEASE";
  display: inline-block;
  padding-left: 5px;
}
.list--discography li a .tit {
  font-size: 13px;
}

/*  contents */
.section--list .list--contents a {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
  padding: 1.5em 1em 1.5em 0;
  position: relative;
}
.section--list .list--contents .tit {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}
.section--list .list--contents .date {
  color: #959EA7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}
.section--list .list--contents .new .date::after {
  content: "NEW";
  color: #FD5651;
  font-weight: 900;
  margin-left: 10px;
}
.section--list .list--contents .no-data {
  padding: 35px 5%;
}
.section--list .list--contents li {
  margin-bottom: 40px;
}
.section--list .list--contents li .thumb {
  margin-bottom: 10px;
  background: #000;
}
.section--list .list--contents li .thumb img {
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
.section--list .list--contents li a {
  padding: 0;
}
.section--list .list--contents li a:hover .thumb img {
  opacity: 1;
}
.section--list .list--contents li .tit {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  word-break: break-word;
  margin-bottom: 10px;
}

.no-data {
  text-align: center;
  opacity: 0.5;
}

/* 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: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}

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

.pc {
  display: none !important;
}

/* 3.2 header
------------------------------ */
.header {
  width: 100%;
  height: 18.6666666667vw;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2.6666666667vw;
  padding-right: 6.6666666667vw;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.header .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.header .inner h1 {
  position: relative !important;
  top: auto !important;
}
.header .inner h1.logoOfficial a {
  display: block;
  width: 32vw;
  height: 13.3333333333vw;
  position: relative;
  background: url(/static/sbr/common/logo_sp.svg) center/contain no-repeat;
  text-indent: -9999em;
}
.header .inner h1.logoFc a {
  display: block;
  width: 15.3333333333vw;
  height: 13.3333333333vw;
  margin-left: 5.3333333333vw;
  position: relative;
  background: url(/static/sbr/common/logo_fc_.png) center/contain no-repeat;
  text-indent: -9999em;
}

.drawer {
  width: 100%;
  height: 100%;
  background: #FFF;
  color: #fff;
  padding: 10vh 8%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  transition: 0.2s;
  opacity: 0;
}
.drawer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background: url(/static/sbr/artist_photo/bg_drawer.jpg) center no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}
.drawer .g-nav {
  height: 100%;
  font-size: 18px;
  position: relative;
  z-index: 10;
}
.drawer .g-nav .g-nav__inner {
  height: 100%;
  padding-bottom: 46vw;
  position: relative;
}
.drawer .g-nav li {
  margin: 0 0 0.5vh;
  line-height: 1.4em;
  overflow: hidden;
}
.drawer .g-nav li.soon {
  opacity: 0.3;
  pointer-events: none;
}
.drawer .g-nav li.jp {
  font-weight: 900;
}
.drawer .g-nav li.jp a {
  font-size: 15px;
  letter-spacing: 0.1em;
}
.drawer .g-nav li.jp a .date {
  font-weight: normal;
  line-height: 1.2;
}
.drawer .g-nav li.nav__item--course_change a {
  font-size: 14px;
}
.drawer .g-nav li a {
  display: inline-block;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.05em;
  padding-right: 1em;
  transform: translate3d(0, 2.5em, 0);
}
.drawer .g-nav li a .date {
  font-family: "Overpass", sans-serif;
  font-size: 10px;
  line-height: 0.5;
  color: #FD5651;
  display: block;
  margin-left: -0.1em;
}
.drawer .g-nav li.nav__item--streaming {
  margin: 0 0 15px;
}
.drawer .g-nav li.nav__item--mypage {
  margin: 0 0 1vh;
  width: 100%;
}
.drawer .g-nav li.nav__item--mypage a {
  width: 120px;
  background: #333;
  color: #FFF;
  padding: 5px 0 !important;
  text-align: center;
  font-size: 14px !important;
}
.drawer .g-nav li.nav__item--course_change {
  margin: 0;
  width: 100%;
}
.drawer .g-nav li.nav__item--course_change a {
  width: 120px;
  background: #777;
  color: #FFF;
  padding: 5px 0 !important;
  text-align: center;
  font-size: 14px !important;
}
.drawer .g-nav li.nav__item--join {
  margin: 0;
  width: 100%;
}
.drawer .g-nav li.nav__item--join a {
  width: 120px;
  background: #333333;
  color: #FFF;
  padding: 5px 0 !important;
  text-align: center;
  font-size: 14px !important;
}
.drawer .g-nav li.nav__item--login {
  margin: 0 0 1vh;
  width: 100%;
}
.drawer .g-nav li.nav__item--login a {
  width: 120px;
  background: #777777;
  color: #FFF;
  padding: 5px 0 !important;
  text-align: center;
  font-size: 14px !important;
}
.drawer .nav-box.fc {
  text-align: right;
  padding-bottom: 40px;
}
.drawer .nav-box.fc li a {
  padding-right: 1em;
}
.drawer .nav-box.official {
  display: block !important;
  padding-bottom: 1vh;
  margin-bottom: 3vh;
  position: relative;
}
.drawer .nav-box.official::before {
  content: "";
  display: block;
  width: 100px;
  height: 30px;
  background: url(/static/sbr/common/logo_sp.svg) center/contain no-repeat;
  margin: 0 0 3vh;
  opacity: 0;
}
.drawer .nav-box.official::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(228, 227, 221, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.drawer .nav-box.official a .date {
  text-align: left;
}
.drawer .nav-box.fc::before {
  content: "";
  display: block;
  width: 80px;
  height: 45px;
  background: url(/static/sbr/common/logo_fc_.png) center/contain no-repeat;
  margin: 0 0 4vh auto;
  opacity: 0;
}
.drawer .nav-box.login {
  display: none;
}
.drawer .nav-box.support {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Arial", sans-serif;
  padding-top: 40px;
  position: absolute;
  bottom: -10vw;
}
.drawer .nav-box.support .nav--support {
  line-height: 1.5;
}
.drawer .nav-box.support li {
  display: inline-block;
  margin-right: 4%;
  margin-bottom: 0;
}
.drawer .nav-box.support a {
  font-size: 12px;
  font-weight: 400;
  padding-right: 0;
}
.drawer .nav--sns li {
  display: inline-block;
  margin-right: 15px;
  padding: 0 2px 10px;
}
.drawer .nav--sns li.nav__item--instagram {
  margin-right: 20px;
}
.drawer .nav--sns li a {
  font-size: 20px;
  padding-right: 0;
}
.drawer .nav--sns li a i {
  font-size: 24px;
}
.drawer .nav--sns li.nav__item--apple a {
  display: block;
  align-items: center;
}
.drawer .nav--sns li.nav__item--apple a img {
  width: 18px;
}
.drawer .nav--sns li.nav__item--spotify a {
  display: block;
}
.drawer .nav--sns li.nav__item--spotify a img {
  width: 18px;
}
.drawer .nav--sns li.staff a {
  position: relative;
}
.drawer .nav--sns li.staff a:before {
  display: block;
  content: "STAFF";
  position: absolute;
  font-size: 8px;
  letter-spacing: 0;
  width: 280%;
  text-align: center;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  font-weight: 800;
  pointer-events: none;
}

.nav-box.login {
  display: none;
}

.nav--language {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: 26px;
  right: 22%;
  z-index: 999;
}
.nav--language li {
  display: inline-block;
}
.nav--language li button {
  font-size: 1em;
  border: none;
  padding: 0;
  font-weight: 600;
}
.nav--language li:not(:last-child) {
  margin-right: 14px;
}
.nav--language li label {
  color: #959EA7;
  font-size: 14px;
}
.nav--language li.current label {
  color: #000;
}
.nav--language li input {
  display: none;
}

.drawer.drawer--bg-img {
  padding: 80px 8% 60px;
}
.drawer.drawer--bg-img .g-nav li a {
  font-size: 14px;
  font-weight: 600;
}
.drawer.drawer--bg-img .g-nav li a .date {
  display: inline-block;
  margin-left: 0;
  padding-left: 6px;
}
.drawer.drawer--bg-img .nav-box.fc {
  text-align: left;
}
.drawer.drawer--bg-img .nav-box.fc::before {
  margin: 0 0 3vh;
}
.drawer.drawer--bg-img .nav-box.fc .nav--fc {
  display: flex;
  flex-wrap: wrap;
}
.drawer.drawer--bg-img .nav-box.official .nav--official {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
}
.drawer.drawer--bg-img::before {
  background-image: none;
}

.drawer__btn {
  position: relative !important;
  display: block;
  width: 30px;
  height: 20px;
  z-index: 10;
}
.drawer__btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.drawer__btn.update::after {
  content: "UP";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  background: #c00;
  border-radius: 23px;
  right: -18px;
  top: -18px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 27px;
  transform: scale(0.55);
}
.drawer__btn .top {
  top: 5px;
}
.drawer__btn .bottom {
  bottom: 5px;
}

.drawer-visible .header {
  transform: none !important;
}
.drawer-visible .drawer {
  z-index: 10;
  pointer-events: auto;
  left: 0;
  opacity: 1;
}
.drawer-visible .drawer .nav-box.official::after {
  transition: 0.35s 0.1s;
  transform: scaleX(1);
}
.drawer-visible .drawer .nav-box.official::before {
  opacity: 1;
  transition: 0.3s 0.6s;
}
.drawer-visible .drawer .g-nav li a {
  transform: translate3d(0, 0, 0);
  transition: 0.3s 0.6s;
}
.drawer-visible .drawer .nav-box.fc::before {
  opacity: 1;
  transition: 0.3s 0.6s;
}
.drawer-visible .nav--language {
  opacity: 1;
  pointer-events: auto;
}
.drawer-visible .drawer__btn span {
  background: #000;
}
.drawer-visible .drawer__btn span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
  top: -12px;
}
.drawer-visible .drawer__btn span:nth-of-type(2) {
  transform: translateY(-20px) rotate(45deg);
  top: 28px;
}

.limitYear {
  font-size: 13px;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
  padding: 20px 4%;
  margin-bottom: 23px;
}
.limitYear a {
  display: block;
  color: #fff;
}
.limitYear i {
  display: block;
  letter-spacing: 0.05em;
}
.limitYear span {
  display: block;
  font-size: 16px;
  border: 0.5px solid #fff;
  border-radius: 70px;
  line-height: 50px;
  margin-top: 13px;
}

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

/* 3.3 footer
------------------------------ */
footer {
  background: #FFF;
  width: 100%;
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  word-break: break-word;
  text-align: right;
  padding: 20px 8% 30px;
  position: absolute;
  bottom: 48px;
  left: 0;
  transform: translate3d(0, 40px, 0);
  transition: 0.4s;
  opacity: 0;
}
footer .nav--support {
  display: none;
}
footer .copyright {
  font-family: "Overpass", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #000;
  text-align: right;
  margin-top: -10px;
}
footer .nav--sns li {
  display: inline-block;
  margin: 0 10px 15px 0;
}
footer .nav--sns li a {
  padding: 5px;
  font-size: 20px;
  color: #959EA7;
}
footer .block--share {
  display: none;
}

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

/* 4.0 page
============================== */
.wrap {
  min-height: 100%;
  background: #fff;
  padding-bottom: 150px;
  position: relative;
}

/*  4.1 parts
------------------------------ */
/* typography */
.page-tit {
  color: inherit;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  word-break: break-word;
  margin: 0 0 1em;
}

.section-tit {
  color: inherit;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  word-break: break-word;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 0 60px;
}

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

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

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

.txt--basic {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
  word-break: break-word;
  margin: 0 0 1em;
}

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

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

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

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

/* 4.2 home
------------------------------ */
.cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.logo a {
  display: block;
  width: 20%;
  height: 10vw;
  background: no-repeat center url(/static/sbr/common/logo.png);
  background-size: 63% auto;
  text-indent: -9999em;
  padding: 65px 27% 0 10%;
  position: relative;
  top: 10px;
  left: 0;
}

/* 4.2 home
------------------------------ */
.page--home {
  /* section--photo */
  /* section--movie */
  /* block--share */
  /* footer support */
}
.page--home .wrap {
  padding-bottom: 0;
  background: transparent;
}
.page--home .wrap::after {
  display: none;
}
.page--home .loading {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 9999;
}
.page--home .header {
  transform: translateY(-100%);
}
.page--home .header h1 {
  position: relative;
  transition: 0.4s;
}
.page--home .block--logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vw;
}
.page--home .block--logo .logo {
  width: 64%;
  height: 40vw;
  text-indent: -9999em;
  background: no-repeat center url(/static/sbr/common/logo.png);
  background-size: contain;
  margin-top: 25vw;
  margin-left: -2%;
  position: relative;
}
.page--home .block--logo .logo::after {
  content: "";
  display: block;
  width: 36vw;
  height: 29vw;
  background: center/contain no-repeat;
  position: absolute;
  left: -13vw;
  bottom: -11vw;
  transform: scale(0) translate3d(0, 5px, 0);
  transition: transform 0.25s cubic-bezier(0, 0.4, 0, 2.4), opacity 0.3s ease 0.9s;
  transform-origin: top right;
}
.page--home.ja.greeting .block--logo .logo::after {
  background-image: url(/static/sbr/fanclub/top/m_ja_sp.png);
  transform: scale(1) translate3d(0, 0, 0);
  opacity: 0;
}
.page--home.en.greeting .block--logo .logo::after {
  background-image: url(/static/sbr/fanclub/top/m_en_sp.png);
  transform: scale(1) translate3d(0, 0, 0);
  opacity: 0;
}
.page--home.zh-tw.greeting .block--logo .logo::after {
  background-image: url(/static/sbr/fanclub/top/m_zh_sp.png);
  transform: scale(1) translate3d(0, 0, 0);
  opacity: 0;
}
.page--home.headerFixed .header {
  transform: none;
}
.page--home .section--photo {
  padding-top: 0;
  margin: 0;
  position: absolute;
}
.page--home .section--photo figure {
  margin: 0 auto;
}
.page--home .section--photo .block--bnr {
  width: 32vw;
  height: 40vw;
  position: fixed;
  z-index: 2;
  right: 5%;
  bottom: 10px;
  animation: bnrup 0.8s;
}
.page--home .section--photo .block--bnr .slick-list {
  padding: 3vw;
}
.page--home .section--photo .block--bnr ul {
  text-align: right;
  padding-right: 0;
}
.page--home .section--photo .block--bnr li {
  width: 100%;
  margin: 0 10px 0 auto;
  display: inline-block;
}
.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;
}
.page--home .section--photo .block--photo .list--bnr {
  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;
  line-height: 0;
}
.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: 80%;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
.page--home .section--movie .block--thumbnail figure {
  line-height: 0;
  background: #000;
  margin-bottom: 30px;
  position: relative;
}
.page--home .section--movie .block--thumbnail figure::after {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  background: no-repeat center url(/static/sbr/common/icon__arrow.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.page--home .section--movie .block--thumbnail figure img {
  opacity: 0;
}
.page--home .section--movie .block--thumbnail figure img.thumb-visible {
  opacity: 0.3;
}
.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.95);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
  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: 90%;
  display: none;
  z-index: 100;
  top: 8vh;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}
.page--home .section--movie .block--video .block--video__item iframe {
  z-index: 999;
  margin-top: -15vw;
}
.page--home .section--movie .close {
  position: absolute;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  z-index: 100;
  top: calc(50% - 63vw);
  left: 95%;
  transform: translateX(-50%);
  opacity: 0;
}
.page--home .section--movie .close:hover::after, .page--home .section--movie .close:hover::before {
  background: #000;
}
.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.movie--visible .section--movie .block--video {
  pointer-events: auto;
}
.page--home.movie--visible .section--movie .block--video__cover,
.page--home.movie--visible .section--movie .close,
.page--home.movie--visible .section--movie .visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.page--home.movie--visible .section--movie .block--video__item:not(.visible) {
  display: none;
}
.page--home .block--share {
  text-align: center;
  padding-top: 17.3333333333vw;
  padding-bottom: 12vw;
  display: none;
}
.page--home .block--share::before {
  display: none;
}
.page--home .block--share .nav--sns::before {
  display: none;
  content: "SHARE";
  font-family: "Francois One", sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000000;
  text-align: center;
  padding-left: 3.5px;
  margin-bottom: 10px;
}
.page--home .block--share .nav--sns li {
  line-height: 1;
  text-align: center;
  margin-right: 8vw;
  margin-left: 0;
  font-size: 8vw;
}
.page--home .block--share .nav--sns li:last-of-type {
  margin-right: 0;
}
.page--home .block--share .nav--sns li a {
  color: #000000;
  position: relative;
}
.page--home .block--share .nav--sns li a svg {
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  fill: #000000;
  margin-top: 4px;
}
.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: -5px;
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  font-weight: 800;
  pointer-events: none;
}
.page--home .detail__btn {
  display: none;
}
.page--home footer {
  padding: 20px 8% 50px;
  position: relative;
  bottom: 0;
  z-index: 5;
}
.page--home footer .copyright {
  font-family: "Overpass", sans-serif;
  font-size: 10px;
  color: #000;
  text-align: center;
  margin-top: 0;
}
.page--home footer .block--share {
  display: block;
  padding-top: 14.6666666667vw;
  padding-bottom: 0;
}
.page--home footer .block--share .nav--sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
}
.page--home footer .block--share .nav--sns li {
  margin: 0;
  width: 30%;
  margin: 0 0 20px;
}
.page--home footer .block--share .nav--sns li:last-child {
  margin: 0;
}
.page--home footer .block--share .nav--sns li a {
  display: block;
  font-size: 24px;
}
.page--home footer .block--share .nav--sns li a img {
  width: 18px;
}
.page--home footer.open .nav-tit::before {
  transform: rotate(135deg) !important;
}
.page--home footer.open .nav-tit::after {
  transform: rotate(45deg) !important;
}
.page--home footer.open .nav--support {
  margin-bottom: 90px;
}
.page--home footer .nav--support {
  display: block;
  text-align: center;
  padding-top: 6.6666666667vw;
  margin-bottom: 60px;
}
.page--home footer .nav--support .nav-tit {
  display: none;
  font-family: "Francois One", sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}
.page--home footer .nav--support .nav-tit::before, .page--home footer .nav--support .nav-tit::after {
  content: " ";
  display: block;
  background: #6b7073;
  width: 8px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: -11px;
  transition: 0.3s;
  margin-top: -1px;
}
.page--home footer .nav--support .nav-tit::before {
  transform: rotate(90deg);
}
.page--home footer .nav--support ul {
  background: #fff;
  border-radius: 12px;
  margin: 0 0 40px;
}
.page--home footer .nav--support li {
  display: block;
  margin-bottom: 4vw;
}
.page--home footer .nav--support a {
  display: block;
  position: relative;
  font-size: 2.9333333333vw;
}
.page--home .footer--logo {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.page--home .footer--logo li.official--logo {
  width: 30%;
  margin: 0;
}
.page--home .footer--logo li.fc--logo {
  width: 36%;
  margin: 0;
}
.page--home .whatsShubabu {
  padding: 3vw;
  padding-bottom: 0;
}
.page--home .whatsShubabu .fc--logo {
  background: #FFF0EF;
  padding: 14.6666666667vw;
}
.page--home .whatsShubabu .detail {
  background: #FFE0DE;
  padding-top: 8vw;
  padding-bottom: 6.6666666667vw;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}
.page--home .whatsShubabu .detail .lead {
  font-size: 2.9333333333vw;
  margin-bottom: 5.3333333333vw;
}
.page--home .whatsShubabu .detail .more {
  text-align: right;
}
.page--home .whatsShubabu .detail .more a {
  font-size: 2.9333333333vw;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-right: 4.6666666667vw;
  line-height: 1em;
}
.page--home .whatsShubabu .detail .more a:after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 45%;
  width: 2vw;
  height: 2vw;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--home .fixBg {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-position: left top;
}
.page--home .fixBg .mainLogoClumn {
  position: absolute;
  top: 0;
  height: 100%;
  max-height: calc(100vh - 17vw);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.page--home .fixBg .mainLogoClumn .mainLogo {
  width: 69.3333333333vw;
  height: 100%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.page--home .fixBg .mainLogoClumn .mainLogo img {
  max-width: 100%;
  max-height: 100%;
}
.page--home .fixBg .list--bnr li a {
  display: block;
  line-height: 0;
}
.page--home .heroView {
  width: 100%;
}
.page--home .section--bnr--top {
  background: #FFF;
  padding-top: 14.6666666667vw;
  padding-bottom: 12vw;
}
.page--home .section--bnr--top .list--bnr {
  padding-left: 7.3333333333vw;
  padding-right: 7.3333333333vw;
}
.page--home .section--bnr--top .list--bnr li {
  line-height: 0;
}
.page--home .section--bnr--top .list--bnr li a {
  display: block;
}
.page--home .section--bnr--top .list--bnr .slick-dots {
  left: 0;
  top: 100%;
}
.page--home .section--bnr--top .list--bnr .slick-dots li {
  margin: 0;
}
.page--home .section--bnr--top .list--bnr .slick-dots button::before {
  font-size: 20px;
}
.page--home .officialAll {
  background: #FFF;
  color: #FFF;
}
.page--home .officialAll .section--official--tit {
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s;
}
.page--home .officialAll .section--official--tit h2 {
  width: 70vw;
  margin: 0 auto 0;
  margin-bottom: 13.3333333333vw;
  position: relative;
}
.page--home .officialAll .section--official--tit.on {
  transform: translateY(0);
  opacity: 1;
}
.page--home .officialAll .contentInner {
  padding-left: 7.3333333333vw;
  padding-right: 7.3333333333vw;
  margin-bottom: 16.6666666667vw;
  overflow: hidden;
}
.page--home .officialAll .contentInner .topics-tit {
  display: none;
  width: 90vw;
  left: -7.3333333333vw;
  font-size: 13.3333333333vw;
  margin-bottom: 5.3333333333vw;
  font-weight: 700;
  line-height: 1em;
  color: rgba(23, 66, 174, 0.1);
  position: relative;
}
.page--home .officialAll .contentInner .topics-tit:before {
  content: "TOPICS";
  position: absolute;
  top: 0;
  left: 5px;
  color: rgba(240, 126, 120, 0.1);
}
.page--home .officialAll .contentInner .more {
  text-align: right;
  line-height: 1em;
  padding-top: 4vw;
}
.page--home .officialAll .contentInner .more .moreLink {
  font-size: 2.9333333333vw;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-right: 4.6666666667vw;
  line-height: 1em;
}
.page--home .officialAll .contentInner .more .moreLink:after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 45%;
  width: 2vw;
  height: 2vw;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.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 .thumb img.noimage {
  background-size: 40%;
  background-position-x: center;
  background-position-y: 40%;
  background-color: #aaa;
}
.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 .officialAll .contentInner .slick-dots {
  left: 0;
  top: 100%;
}
.page--home .officialAll .contentInner .slick-dots li {
  margin: 0;
}
.page--home .officialAll .contentInner .slick-dots button::before {
  font-size: 20px;
}
.page--home .officialAll .contentInner .list--information .new .date:after {
  content: "NEW";
  font-weight: 800;
  font-size: 3.2vw;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .officialAll .contentInner .section-tit {
  position: relative;
  color: #000;
  font-size: 4.8vw;
  margin-bottom: 4vw;
  padding: 0;
  line-height: 1em;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  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--info {
  position: relative;
  margin-bottom: 31.3333333333vw;
  color: #000;
}
.page--home .officialAll .contentInner .section--info .list--information li {
  margin-bottom: 0;
}
.page--home .officialAll .contentInner .section--info .list--information li a {
  position: relative;
}
.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 {
  font-size: 2.9333333333vw;
  margin-bottom: 1.3333333333vw;
  font-weight: 600;
}
.page--home .officialAll .contentInner .section--info .list--information li a .block--txt .tit {
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 15px;
}
.page--home .officialAll .contentInner .section--live {
  position: relative;
  margin-bottom: 13.3333333333vw;
}
.page--home .officialAll .contentInner .section--live .section--live--inner {
  position: relative;
  background: url(/static/sbr/fanclub/top/live_illust_bg.jpg);
  padding: 20px;
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.page--home .officialAll .contentInner .section--live .section--live--inner:after {
  content: "";
  display: block;
  background: url(/static/sbr/fanclub/top/live_illust_sp_2023_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: -20px;
  top: -36.6666666667vw;
  height: 50.6666666667vw;
  width: 33.3333333333vw;
  z-index: 0;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox {
  width: 100%;
  z-index: 1;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li {
  margin-bottom: 0;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a {
  position: relative;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .block--tit {
  z-index: 1;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .block--tit .date {
  font-size: 2.9333333333vw;
  margin-bottom: 2vw;
  font-weight: 600;
  color: #000;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .block--tit .date.event-end span:before {
  background: #000;
  top: 5px;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .block--tit .evCat {
  color: #000;
  font-weight: 600;
  font-size: 3.2vw;
  margin-bottom: 0.6666666667vw;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .block--tit .evCat .onsale {
  font-size: 10px;
  border: 1px solid;
  line-height: 1em;
  padding: 1px 4px;
  color: #B63B00;
  background: #FFF;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: 2px;
  margin: 0 0 0 5px;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .block--tit .tit {
  font-size: 4vw;
  line-height: 1.5em;
  color: #000;
  border-bottom: 1px solid;
  padding: 0 0 10px;
  margin: 0 0 10px;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li a .nowonsale {
  position: absolute;
  width: 24vw;
  right: -4vw;
  top: -12vw;
  animation: circleAnim 6s linear infinite;
  pointer-events: none;
}
.page--home .officialAll .contentInner .section--live .section--live--inner .informationBox .list--information li:last-child .block--tit .tit {
  margin: 0;
}
.page--home .officialAll .contentInner .section--disco {
  position: relative;
  margin-bottom: 13.3333333333vw;
}
.page--home .officialAll .contentInner .section--disco .section-tit {
  position: relative;
  color: #000;
  font-size: 4.8vw;
  margin-bottom: 4vw;
  padding: 0;
  line-height: 1em;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  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--disco .thumb {
  margin: 0 auto;
  margin-bottom: 4vw;
}
.page--home .officialAll .contentInner .section--disco .new .thumb:after {
  display: none;
  position: absolute;
  top: 5.3333333333vw;
  right: 5.3333333333vw;
  content: "NEW";
  font-weight: 800;
  font-size: 3.2vw;
  color: #ff8881;
  font-style: italic;
  margin-left: 10px;
  line-height: 1em;
  background: transparent;
  width: auto;
  height: auto;
}
.page--home .officialAll .contentInner .section--disco .new .date:after {
  content: "NEW";
  color: #ff8881;
  font-size: 3.2vw;
  margin-left: 15px;
  font-style: italic;
}
.page--home .officialAll .contentInner .section--disco .moreLink {
  display: block;
  background: #000;
  color: #FFF;
  width: 40%;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
}
.page--home .officialAll .contentInner .section--disco .moreLink:after {
  right: 15px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-top: 1px solid;
}
.page--home .officialAll .contentInner .section--disco a {
  position: relative;
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
  padding: 0;
}
.page--home .officialAll .contentInner .section--disco a .block--tit {
  z-index: 1;
  color: #000;
}
.page--home .officialAll .contentInner .section--disco a .block--tit .date {
  font-size: 2.9333333333vw;
  margin-bottom: 1.3333333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #959EA7;
}
.page--home .officialAll .contentInner .section--disco a .block--tit .tit {
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1.5em;
}
.page--home .officialAll .contentInner .section--video {
  position: relative;
  margin-bottom: 13.3333333333vw;
}
.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 {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  font-size: 10px;
  line-height: 1.3;
  z-index: 100;
  opacity: 1;
  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 !important;
}
.page--home .officialAll .contentInner .section--video .list--video figure .tit span {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page--home .officialAll .contentInner .section--video .list--video .video {
  position: relative;
  padding-bottom: 60.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 .list--video a {
  position: relative;
  display: block;
}
.page--home .officialAll .contentInner .section--video .list--video a .tit {
  position: absolute;
  bottom: 4vw;
  left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1.5em;
  z-index: 1;
  color: #FFF;
}
.page--home .officialAll .contentInner .section--video .list--video a .btnPlay {
  border: 1px solid #FFF;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 52%;
  width: 12vw;
  height: 12vw;
  transform: translate(-50%, -50%);
}
.page--home .officialAll .contentInner .section--video .list--video a .btnPlay:after {
  position: absolute;
  top: 50%;
  left: 53%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #FFF;
  transform: translate(-50%, -50%);
}
.page--home .officialAll .contentInner .section--video .list--video .new .tit:after {
  content: "NEW";
  font-weight: 800;
  font-size: 3.2vw;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .officialAll .contentInner .section--video .list--video .slick-dots {
  bottom: auto;
  top: 103%;
  line-height: 0;
  text-align: left;
  width: calc(100% - 150px);
}
.page--home .officialAll .contentInner .section--video .list--video .slick-dots button::before {
  font-size: 20px;
}
.page--home .officialAll .contentInner .section--video .list--video .slick-arrow {
  z-index: 1;
  top: 103%;
  transform: none;
}
.page--home .officialAll .contentInner .section--video .list--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 .list--video .slick-arrow:hover:before {
  border-top: 2px solid #404040;
  border-right: 2px solid #404040;
}
.page--home .officialAll .contentInner .section--video .list--video .slick-prev {
  left: auto;
  right: 50px;
}
.page--home .officialAll .contentInner .section--video .list--video .slick-prev:before {
  transform: rotate(-135deg);
  left: auto;
  right: -3px;
}
.page--home .officialAll .contentInner .section--video .list--video .slick-next {
  right: 0;
}
.page--home .officialAll .contentInner .section--instagram {
  position: relative;
  margin-bottom: 13.3333333333vw;
}
.page--home .officialAll .contentInner .section--instagram .section-sub-tit {
  position: relative;
  color: #000;
  font-size: 3.7333333333vw;
  margin-bottom: 3.3333333333vw;
  padding: 0;
  line-height: 1em;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  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;
}
.page--home .officialAll .contentInner .section--instagram a .thumb {
  background: #DDD;
}
.page--home .officialAll .contentInner .section--app {
  position: relative;
}
.page--home .officialAll .contentInner .section--app .list--bnr a {
  display: block;
  line-height: 0;
}
.page--home .officialAll .contentInner .section--app .list--bnr a .thumb {
  background: #DDD;
}
.page--home .officialAll .section--bnr--mid {
  background: #FFF;
  padding-top: 14.6666666667vw;
  padding-bottom: 14.6666666667vw;
}
.page--home .officialAll .section--bnr--mid .list--bnr {
  padding-left: 7.3333333333vw;
  padding-right: 7.3333333333vw;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.3s 0.1s;
}
.page--home .officialAll .section--bnr--mid .list--bnr li {
  line-height: 0;
  margin: 0 0 20px;
}
.page--home .officialAll .section--bnr--mid .list--bnr li a {
  display: block;
}
.page--home .officialAll .section--bnr--mid .list--bnr li:last-child {
  margin: 0;
}
.page--home .officialAll .section--bnr--mid.on .list--bnr {
  opacity: 1;
  transform: translateY(0);
}
.page--home .fcAll {
  background: #EE6860;
  border: 3vw solid #EE6860;
}
.page--home .fcAll .section--fc--tit {
  background: #EE6860;
  padding-bottom: 6vw;
  padding-top: 6vw;
}
.page--home .fcAll .section--fc--tit .cap {
  font-size: 2.9333333333vw;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFF;
  margin-bottom: 2.6666666667vw;
}
.page--home .fcAll .section--fc--tit h2 {
  width: 60vw;
  margin: 0 auto;
  position: relative;
}
.page--home .fcAll .section--fc--tit h2 .mascot {
  position: absolute;
  width: 6vw;
  transform: rotate(-40deg);
  left: 102%;
  top: 65%;
  animation: mascotAnim 0.7s linear infinite alternate;
}
.page--home .fcAll .contentInner {
  background: #FFF;
  padding-top: 12vw;
  padding-bottom: 12vw;
}
.page--home .fcAll .contentInner .more {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  padding-top: 6.6666666667vw;
}
.page--home .fcAll .contentInner .more a {
  font-size: 2.9333333333vw;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-right: 4.6666666667vw;
  line-height: 1em;
}
.page--home .fcAll .contentInner .more a:after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 45%;
  width: 2vw;
  height: 2vw;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--home .fcAll .contentInner .anim {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.3s;
}
.page--home .fcAll .contentInner .anim.on {
  transform: translateY(0);
  opacity: 1;
}
.page--home .fcAll .contentInner .thumb {
  overflow: hidden;
}
.page--home .fcAll .contentInner .thumb img.noimage {
  background-size: 60%;
  background-position: center center;
  background-color: #aaa;
}
.page--home .fcAll .contentInner .thumb.memonly img {
  filter: blur(1rem);
  transform: scale(1.05);
}
.page--home .fcAll .contentInner .thumb.memonly.loggedin img {
  filter: none;
}
.page--home .fcAll .contentInner .list--information .new .date:after {
  content: "NEW";
  font-weight: 800;
  font-size: 3.2vw;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .fcAll .contentInner .section--bnr--bot {
  padding-left: 4.6666666667vw;
  padding-right: 4.6666666667vw;
  margin-bottom: 16vw;
}
.page--home .fcAll .contentInner .section--bnr--bot .list--bnr {
  transition: 0.3s 0.1s;
}
.page--home .fcAll .contentInner .section--bnr--bot .list--bnr li {
  line-height: 0;
}
.page--home .fcAll .contentInner .section--bnr--bot .list--bnr li a {
  display: block;
}
.page--home .fcAll .contentInner .section--bnr--bot .list--bnr li:last-child {
  margin: 0;
}
.page--home .fcAll .contentInner .section--bnr--bot .list--bnr .slick-dots {
  left: 0;
  top: 100%;
}
.page--home .fcAll .contentInner .section--bnr--bot .list--bnr .slick-dots button::before {
  font-size: 20px;
}
.page--home .fcAll .contentInner .section--bnr--bot.on .list--bnr {
  opacity: 1;
  transform: translateY(0);
}
.page--home .fcAll .contentInner .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 .contentInner .section--info {
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
  margin-bottom: 12vw;
}
.page--home .fcAll .contentInner .section--info .section-tit {
  line-height: 1em;
  font-size: 4.8vw;
  text-align: center;
  font-weight: 700;
  margin-bottom: 4vw;
}
.page--home .fcAll .contentInner .section--info .list--information li {
  margin-bottom: 0;
}
.page--home .fcAll .contentInner .section--info .list--information li a .date {
  line-height: 1em;
  font-size: 2.9333333333vw;
  margin-bottom: 1.3333333333vw;
  font-weight: 600;
}
.page--home .fcAll .contentInner .section--info .list--information li a .tit {
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1.5em;
}
.page--home .fcAll .contentInner .section--fcvideo {
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
  margin-bottom: 13.3333333333vw;
}
.page--home .fcAll .contentInner .section--fcvideo .movie-tit {
  display: inline-block;
  font-size: 13.3333333333vw;
  margin-bottom: 4vw;
  width: 100%;
  font-weight: 700;
  line-height: 1em;
  color: rgba(23, 66, 174, 0.1);
  text-align: left;
  position: relative;
}
.page--home .fcAll .contentInner .section--fcvideo .movie-tit:after {
  content: "MOVIE";
  position: absolute;
  top: 0;
  left: 7px;
  color: rgba(240, 126, 120, 0.1);
  width: 100%;
}
.page--home .fcAll .contentInner .section--fcvideo .list--fcvideo li a {
  display: block;
  position: relative;
  margin-bottom: 6.6666666667vw;
}
.page--home .fcAll .contentInner .section--fcvideo .list--fcvideo li a .btnPlay {
  border: 1px solid #FFF;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 52%;
  width: 12vw;
  height: 12vw;
  transform: translate(-50%, -50%);
}
.page--home .fcAll .contentInner .section--fcvideo .list--fcvideo li a .btnPlay:after {
  position: absolute;
  top: 50%;
  left: 53%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #FFF;
  transform: translate(-50%, -50%);
}
.page--home .fcAll .contentInner .section--fcvideo .list--fcvideo li > a:before {
  display: block;
  content: "すばる動画";
  font-size: 4.8vw;
  text-align: center;
  font-weight: 700;
  margin-bottom: 4vw;
  line-height: 1em;
}
.page--home .fcAll .contentInner .section--fcvideo .list--fcvideo li.new .tit:after {
  content: "NEW";
  font-weight: 800;
  font-size: 3.2vw;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .fcAll .contentInner .section--fcvideo .block--txt {
  position: relative;
}
.page--home .fcAll .contentInner .section--fcvideo .block--txt .section-tit {
  display: none;
}
.page--home .fcAll .contentInner .section--fcvideo .block--txt .tit {
  font-size: 3.2vw;
  margin-bottom: 1.3333333333vw;
  font-weight: 600;
  line-height: 1.5em;
}
.page--home .fcAll .contentInner .section--fcvideo .block--txt .date {
  font-size: 2.9333333333vw;
  font-weight: 600;
  color: #959EA7;
}
.page--home .fcAll .contentInner .section--fcblogAll {
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
}
.page--home .fcAll .contentInner .section--fcblogAll .section-tit {
  text-align: center;
  font-weight: 700;
  font-size: 4.8vw;
  margin-bottom: 4vw;
  line-height: 1em;
}
.page--home .fcAll .contentInner .section--fcblogAll .tit {
  font-size: 3.2vw;
  margin-bottom: 1.3333333333vw;
  font-weight: 600;
  line-height: 1.5em;
}
.page--home .fcAll .contentInner .section--fcblogAll .date {
  font-size: 2.9333333333vw;
  font-weight: 600;
  color: #959EA7;
}
.page--home .fcAll .contentInner .section--fcblogAll .list--fcblog a {
  display: block;
}
.page--home .fcAll .contentInner .section--fcblogAll .list--fcblog a .thumb {
  margin-bottom: 6.6666666667vw;
}
.page--home .fcAll .contentInner .section--fcblogAll .list--fcblog .new .date:after {
  content: "NEW";
  font-weight: 800;
  font-size: 3.2vw;
  color: #ff8881;
  font-style: italic;
  margin-left: 15px;
  line-height: 1em;
}
.page--home .fcAll .contentInner .section--fcblogAll .section--fcblog1 {
  margin-bottom: 13.3333333333vw;
}
.page--home .fcAll .contentInner .section--fcblogAll .section--fcblog2 {
  margin-bottom: 13.3333333333vw;
}
.page--home .fcAll .contentInner .section--magazine {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
  margin-bottom: 13.3333333333vw;
}
.page--home .fcAll .contentInner .section--magazine .section-tit {
  display: none;
}
.page--home .fcAll .contentInner .section--magazine .section-tit:after {
  content: "Shubabu\aMAGAZINE";
  position: absolute;
  top: 0;
  left: 3px;
  color: rgba(240, 126, 120, 0.1);
  width: 100%;
}
.page--home .fcAll .contentInner .section--magazine .list--bnr {
  order: 2;
}
.page--home .fcAll .contentInner .section--magazine .list--bnr a {
  display: block;
  line-height: 0;
  margin-bottom: 4vw;
}
.page--home .fcAll .contentInner .section--magazine .block--txt {
  display: block;
  order: 3;
  width: 100%;
  order: 3;
}
.page--home .fcAll .contentInner .section--magazine .block--txt .tit {
  font-size: 3.2vw;
  line-height: 1.5em;
  font-weight: 600;
}
.page--home .fcAll .contentInner .section--magazine .list--bnr:before {
  display: block;
  content: "Shubabu MAGAZINE";
  font-size: 4.8vw;
  text-align: center;
  font-weight: 700;
  margin-bottom: 4vw;
  line-height: 1em;
}
.page--home .fcAll .contentInner .fcBottomLink {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 0 auto;
}
.page--home .fcAll .contentInner .fcBottomLink li {
  width: 46%;
  text-align: center;
}
.page--home .fcAll .contentInner .fcBottomLink li a {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  background: #EE6860;
  color: #FFF;
  padding: 15px;
  box-sizing: border-box;
}

@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;
  }
}
@keyframes bnrup {
  0% {
    transform: translate3d(0, 40vw, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.sf-toolbar {
  display: none !important;
}

/*  Photo Sub Move Area
------------------------------ */
.section--photo__sub {
  position: relative;
  margin-top: 2em;
}
.section--photo__sub .block--txt__image {
  display: flex;
  overflow: hidden;
  margin-bottom: -0.8em;
}
.section--photo__sub .block--txt__image .list--txt__image {
  display: flex;
  flex-wrap: nowrap;
  padding-left: 100%;
  animation: infinity-scroll_left 20s 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 0;
}
.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: 16.6666666667vw;
}
.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,
.section--detail,
.page--questionnaire .header + section {
  padding: 35% 8% 0;
}

.section--detail,
.page--questionnaire .header + section {
  padding-top: 130px;
  padding-bottom: 60px;
}

.section--list .list--information,
.section--detail,
.page--questionnaire .header + section {
  position: relative;
  transform: translate3d(0, 40px, 0);
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0;
}

.block--pager,
.detail__btn {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

.loaded .section--list .list--information,
.loaded .section--detail,
.loaded .block--pager,
.loaded .detail__btn,
.loaded.page--questionnaire .header + section {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.block--pager {
  padding-top: 50px;
  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: -98px 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);
  }
}
.page--blog .section--list .block--pager {
  text-align: center;
  padding: 20px 0 40px;
}
.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;
}

.block--share {
  text-align: right;
  background: #FFF;
}
.block--share::before {
  content: none;
  display: inline-block;
  font-family: "Overpass", sans-serif;
  font-size: 10px;
  color: #959EA7;
  vertical-align: middle;
  letter-spacing: 0.05em;
  margin-top: -2px;
}
.block--share .share {
  display: inline-block;
  margin: 0 -10px 0 10px;
  position: relative;
}
.block--share .share::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #bec2c7;
  position: absolute;
  top: -10px;
  left: -3.5px;
  transform: rotate(30deg);
}
.block--share li {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
  color: #959EA7;
  margin: 0 0 0 16px;
}
.block--share li.facebook {
  font-size: 19px;
}
.block--share li svg {
  width: 19px;
  height: 19px;
}
.block--share .share {
  margin-top: -2px;
}
.block--share .lineIco {
  font-size: 20px;
}
.block--share .lineIco svg {
  fill: #959EA7;
}
.block--share a {
  color: #959EA7;
}
.block--share a:hover {
  opacity: 0.5;
}

.section--list .tit {
  font-weight: 400;
}

.section--detail .tit {
  color: inherit;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  word-break: break-word;
  margin: 0 0 20px;
}
.section--detail .date {
  font-size: 12px;
  font-family: "Overpass", sans-serif;
  color: #959EA7;
  letter-spacing: 0.05em;
  margin: 0 0 2.5em;
}
.section--detail .txt a {
  text-decoration: underline;
  color: #000000;
  word-break: break-word;
}
.section--detail .txt a:hover {
  opacity: 0.5;
}
.section--detail .detail__btn {
  display: none;
}

.page--info .txt {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-top: 10px;
}
.page--info .block--info-nav {
  position: absolute;
  right: 8%;
  margin-bottom: 30px;
  top: 180px;
}
.page--info .block--info-nav a {
  border: none;
  font-family: "Francois One", sans-serif;
  border-bottom: 2px solid;
  border-radius: 0;
  font-size: 14px;
  padding-right: 0;
  padding-bottom: 0.1em;
}
.page--info .block--info-nav::after {
  display: none;
}
.page--info .section--list .date,
.page--info .section--list .category {
  display: inline-block;
}
.page--info .section--list .date {
  margin-right: 5px;
}
.page--info .section--detail {
  padding-bottom: 40px;
}
.page--info .section--detail.new .date::after {
  content: "NEW";
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  color: #FD5651;
  font-size: 13px;
  vertical-align: 0px;
  margin-left: 7px;
  line-height: 1;
}
.page--info .section--detail .date {
  width: 50%;
  font-size: 12px;
  color: #959EA7;
  margin: 0 0 10px;
  position: relative;
  top: 0;
  pointer-events: none;
}
.page--info .section--detail .date.event-end {
  width: 100%;
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
}
.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;
}
.page--info .block--share + .date {
  top: -20px;
}

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

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

/*  4.4 profile
------------------------------ */
.page--profile .thumb {
  margin: 0 auto 40px;
}
.page--profile .name {
  font-family: "Noto Sans JP", sans-serif;
  color: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
  text-align: center;
  margin: 0 auto 30px;
}
.page--profile .name span {
  display: block;
  font-size: 14px;
}
.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: 26px;
}
.page--blog .section--detail .section-tit {
  margin-bottom: 14vw;
}
.page--blog .section--detail .tit {
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid;
  margin: 0 0 30px 0;
  padding: 0 0 20px 0;
}
.page--blog .section--detail .ph {
  margin: 20px 0;
}
.page--blog .section--detail .txt {
  line-height: 1.3;
  margin-bottom: 50px;
}
.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;
  letter-spacing: 0.01em;
  font-size: 14px !important;
  line-height: 1.3 !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: #6f8aa6;
}
.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: 100%;
  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 .block--player .vjs-remaining-time .vjs-remaining-time-display {
  line-height: 2.8 !important;
}
.page--blog .section--detail .note-video-clip {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.page--blog .section--detail .txt > div:not(.sns_movie_class) > :not(div) * {
  font-size: 2.5vw !important;
}
.page--blog .section--detail .ulizahtml5 .vjs-control.iconfont::before {
  font-family: "VideoJS";
}
.page--blog .block--pager {
  padding-top: 60px;
}
.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: 25px;
  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 .pager-link--next {
  float: left;
}
.page--blog .block--pager .pager-link--next a {
  padding-left: 30px;
}
.page--blog .block--pager .pager-link--next a::before {
  left: -30px;
  transform-origin: right;
}
.page--blog .block--pager .pager-link--prev {
  float: right;
}
.page--blog .block--pager .pager-link--prev a {
  padding-right: 35px;
}
.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 .section--detail .txt > p .block--video .iconfont,
.page--blog .section--detail .txt > p .block--video .vjs-play-progress {
  font-family: VideoJS !important;
}

/*  4.6 faq
------------------------------ */
.page--faq .section-tit {
  margin-bottom: 50px;
}

.tit--category {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  margin: 0 0 10px -3%;
}

.list--faq {
  margin: 0 -6.5% 40px;
}
.list--faq li {
  border-top: 1px solid #ddd;
}
.list--faq li:last-child {
  border-bottom: 1px solid #ddd;
}
.list--faq a {
  display: block;
  padding: 15px 3%;
  position: relative;
}
.list--faq .tit {
  padding-left: 20px;
}
.list--faq .txt {
  line-height: 1.4;
  margin: 0;
  padding-left: 20px;
}
.list--faq .icon--q {
  float: left;
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  margin-right: 5px;
}

.block--faq-detail {
  margin: 0 0 60px;
}
.block--faq-detail dt {
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px;
  margin: 0 0 20px;
}
.block--faq-detail dt .txt {
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
  padding-left: 40px;
  margin: 0;
}
.block--faq-detail dt .category {
  display: inline-block;
  font-size: 12px;
  background: #eee;
  color: #666;
  border-radius: 20px;
  padding: 1px 8px 0;
  margin: 0 0 20px;
}
.block--faq-detail dd .txt {
  margin: 0;
  padding-left: 40px;
}
.block--faq-detail dd .txt a {
  color: #000000;
}
.block--faq-detail span[class^=icon--] {
  float: left;
  display: inline-block;
  width: 30px;
  height: 30px;
  font-family: "Francois One", sans-serif;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
}
.block--faq-detail .icon--q {
  color: #fff;
  background: #000000;
}
.block--faq-detail .icon--a {
  color: #000000;
  border: 1px solid;
}

.page--faq .section-tit {
  font-size: 22px;
}
.page--faq .section--detail .tit--category {
  color: #959EA7;
  margin-bottom: 25px;
}
.page--faq .section--detail .block--contact {
  padding-top: 40px;
}
.page--faq .section--detail .block--contact a {
  color: #000000;
}
.page--faq .section--detail .block--contact .fa {
  color: #000000;
}

.searchBox {
  position: relative;
  margin: 0 0 40px;
}
.searchBox input[type=submit] {
  width: 40px;
  line-height: 40px;
  font-family: FontAwesome;
  font-size: 20px;
  color: #959EA7;
  background: transparent;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  position: absolute;
  right: 0;
  top: 3px;
  z-index: 2;
}

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

/*  4.7 support
------------------------------ */
.support .section-tit {
  font-size: 22px;
}
.support .txt {
  margin: 0 0 10px;
}
.support .list--support {
  margin-top: 30px;
}
.support .list--support dt {
  color: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
  word-break: break-word;
  margin: 0 0 4px;
}
.support .list--support dd {
  padding: 0 0 30px;
}
.support .list--support dd a {
  text-decoration: underline;
}
.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: 1em;
  text-indent: -1em;
}
.support .txt-list li {
  margin: 0 0 5px;
}
.support .terms-list li {
  margin: 0 0 5px;
}
.support .block--attention {
  border: 0.5px solid #959ea7;
  padding: 15px;
  margin-bottom: 30px;
}
.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;
}

/*  4.8 discography
------------------------------ */
.page--disco .form__select {
  position: absolute;
  right: 8%;
  margin-bottom: 30px;
  top: 190px;
}
.page--disco .form__select select {
  border: none;
  font-family: "Francois One", sans-serif;
  border-bottom: 2px solid;
  border-radius: 0;
  font-size: 14px;
  padding-bottom: 0.3em;
}
.page--disco .form__select::after {
  right: 0.15em;
}
.page--disco .list--discography {
  padding-top: 15px;
}
.page--disco .section--detail .section-tit {
  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 {
  position: relative;
  line-height: 0;
}
.page--disco .section--detail .block--jacket li {
  margin: 0 0 20px;
}
.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 .tit {
  font-size: 24px;
  margin-bottom: 5px;
}
.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;
  font-size: 12px;
  font-family: "Overpass", sans-serif;
  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 .section--detail .block--detail .block--comment .more .moreLink {
  display: block;
  background: #000;
  color: #FFF !important;
  width: 40%;
  padding: 10px;
  text-align: center;
  line-height: 1em;
  position: relative;
  font-size: 2.9333333333vw;
}
.page--disco .section--detail .block--detail .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 .section--detail .block--comment .block--disc .block-tit {
  font-weight: bold;
}
.page--disco .section--detail .block--comment .tax-code {
  font-size: 0.8em;
}
.page--disco .section--detail .block--comment .block--track {
  margin: 20px auto 40px;
}
.page--disco .section--detail .block--comment .block--track .list-tit {
  font-size: 0.8em;
  color: #959EA7;
}
.page--disco .section--detail .block--comment .block--track .list--track li {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 2px;
}
.page--disco .section--detail .block--track .list--track {
  margin: 0 0 20px;
}
.page--disco .section--detail .block--track .list--track .num {
  margin-right: 5px;
}
.page--disco .section--detail .block--track .list--track li {
  list-style: none;
}
.page--disco .section--detail .block--track .list--track a {
  pointer-events: none;
  cursor: default;
}

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

/*  movie
------------------------------ */
.page--movie .clearfix::after {
  display: table;
  content: "";
  clear: both;
  width: 48%;
}
.page--movie .list--contents {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.page--movie .list--contents li {
  width: 48%;
}
.page--movie .list--contents .thumb img {
  opacity: 0.4;
  filter: grayscale(100);
}
.page--movie .list--contents .thumb::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  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 a:hover .thumb img {
  filter: grayscale(0);
  opacity: 1;
}
.page--movie .block--player {
  margin-bottom: 10px;
}
.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 .section--detail .list--step {
  margin-top: 30px;
}
.page--movie .section--detail .list--step li .ph {
  display: none;
}
.page--movie .section--detail .list--step li:not(:last-child) {
  margin-bottom: 50px;
}
.page--movie .section--detail .list--step .tit {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}
.page--movie .section--detail .section-tit {
  font-size: 20px;
}
.page--movie .pagingBox ul {
  text-align: center;
  padding: 20px 0 40px;
}
.page--movie .pagingBox ul li {
  width: 10%;
  display: inline-block;
  position: relative;
}
.page--movie .pagingBox ul li a {
  color: #959EA7;
}
.page--movie .pagingBox ul .pager__item--older a {
  height: 30px;
  width: 30px;
  display: block;
}
.page--movie .pagingBox ul .pager__item--newer a {
  height: 30px;
  width: 30px;
  display: block;
}
.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;
}
.page--movie .pagingBox .pager__item--newer a {
  padding: 10px 0;
}
.page--movie .pagingBox .pager__item--older {
  float: right;
}
.page--movie .pagingBox .pager__item--older a {
  padding: 10px 0;
}
.page--movie .pagingBox .pager__item--newer::before {
  transform-origin: right;
  top: 12px;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #959EA7;
  position: relative;
  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::before {
  transform-origin: left;
  top: 12px;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #959EA7;
  position: relative;
  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;
  left: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
  right: 0;
  left: inherit;
  float: right;
  transform: rotate(135deg);
}
.page--movie .pagingBox .aop--pager .pager-link--prev a {
  padding-left: 30px;
  display: block;
  font-family: "Francois One", sans-serif;
  font-size: 12px;
  color: #959EA7;
  letter-spacing: 0.01em;
  position: relative;
  padding-right: 4px;
}
.page--movie .pagingBox .page--blog .section--detail .aop--pager .pager-link--prev a::before {
  left: 46px;
  transform-origin: right;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
  float: right;
  right: 0;
  left: 4px;
}
.page--movie .pagingBox .aop--pager .pager-link--prev a::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;
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.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: 100%;
  display: block;
  margin: 0 auto 40px;
  color: #fff;
  padding: 15px;
  border-radius: 100px;
  font-size: 16px;
}
.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: 17px;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.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 .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;
}
.page--movie .section--detail .inner_comments {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 400px !important;
  border: 1px solid #959EA7;
  padding: 20px;
}
.page--movie .section--detail .inner_comments li {
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
}
.page--movie .section--detail .inner_comments li .btn_box {
  display: none;
}
.page--movie .section--detail .inner_comments li .date {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.page--movie .section--detail .comments_post {
  margin: 40px 0 0 0;
}
.page--movie .section--detail .comments_post::before {
  content: "コメントする";
  font-size: 14px;
}
.page--movie .section--detail .comments_post::after {
  content: "コメント一覧";
  font-size: 14px;
}
.page--movie .section--detail .comment_body {
  line-height: 1.5;
}
.page--movie .block--player video {
  background: #000;
  width: 100%;
}

/* new-movie
------------------------------ */
.page--movie.new-movie .wrap .block--category-list {
  margin-bottom: 20px;
  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.05em;
  font-weight: bold;
  margin-bottom: 1em;
}
.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: 2.9333333333vw;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-right: 4.6666666667vw;
  line-height: 1em;
}
.page--movie.new-movie .wrap .block--category-list .more a::after {
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  top: 45%;
  width: 2vw;
  height: 2vw;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.page--movie.new-movie .wrap .list--contents .thumb img {
  opacity: 1;
  filter: none;
}
.page--movie.new-movie .wrap .list--contents .thumb::after {
  display: none;
}
.page--movie.new-movie .wrap .section--list .list--contents li {
  margin-bottom: 30px;
}
.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 .section-tit {
  font-size: 23px;
  margin: 0 0 30px 0;
}
.page--movie.new-movie .wrap .section--list .section-tit.ct1 {
  margin: 0 auto 10px;
}
.page--movie.new-movie .wrap .section--detail {
  padding: 35% 8% 0;
  padding-top: 130px;
  padding-bottom: 60px;
}
.page--movie.new-movie .wrap .section--detail .block--player {
  position: relative;
  top: 0;
  margin-bottom: 10px;
}
.page--movie.new-movie .wrap .section--detail .tit {
  margin-bottom: 2px;
}
.page--movie.new-movie .wrap .section--detail .subTxt {
  margin-bottom: 30px;
  font-size: 13px;
}
.page--movie.new-movie .wrap .section--detail .area--movie .video-js .vjs-play-control {
  left: 50%;
  transform: translateX(-50%);
  top: -17vw;
}
.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 .block--more_movies .date {
  padding: 0;
  border: none;
}
.page--movie.new-movie .wrap .section--detail .area--more-info .block--tab__main .list--contents .thumb::after {
  display: none;
}
.page--movie.new-movie .wrap .detail__btn {
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
  padding-left: 0;
  position: absolute;
  bottom: 45px;
  z-index: 20;
}

/* 4.9 questionnaire
------------------------------ */
.page--questionnaire header + section .section-tit {
  text-indent: 0;
  font-size: 24px;
}
.page--questionnaire header + section .form--post {
  margin-bottom: 60px;
}
.page--questionnaire header + section .center {
  text-align: center;
}
.page--questionnaire .input--quarter {
  width: 50% !important;
}
.page--questionnaire .input--half {
  width: 80% !important;
}
.page--questionnaire.complete .btn--sub {
  font-size: 16px;
  font-weight: 900;
  font-family: "Francois One", sans-serif;
}

.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.5 fan mail
------------------------------ */
.page--qa .txt {
  margin-bottom: 40px;
}
.page--qa .rule {
  color: #ef3030;
  background: #fff4f1;
  border-radius: 5px;
  padding: 15px;
}
.page--qa .center {
  text-align: center;
}
.page--qa .form--confirm {
  margin-bottom: 50px;
}

/*  schedule
------------------------------ */
.page--schedule .block--narrowing .list--sort {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.page--schedule .block--narrowing .list--sort li {
  display: inline-block;
  line-height: 1em;
  margin: 0 10px 10px 0;
}
.page--schedule .block--narrowing .list--sort li .checkbox {
  cursor: pointer;
  position: relative;
}
.page--schedule .block--narrowing .list--sort li .checkbox input {
  display: none;
}
.page--schedule .block--narrowing .list--sort li .checkbox input:checked + span {
  background: #000;
  color: #FFF;
}
.page--schedule .block--narrowing .list--sort li .checkbox span {
  font-family: "Francois One", sans-serif;
  border: 1px solid;
  line-height: 1em;
  padding: 5px 15px;
  display: block;
  font-size: 13px;
  border-radius: 100px;
  transition: 0.3s;
}
.page--schedule .block--narrowing .list--sort li .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 .monthArea {
  margin-bottom: 30px;
}
.page--schedule .monthArea .block--month {
  margin: 0 0 15px;
}
.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 .block--pager {
  padding-top: 0;
}
.page--schedule .monthArea .block--pager .month-pager {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
  border-bottom: 1px solid #E5E7EA;
  padding: 0 0 30px;
}
.page--schedule .monthArea .block--pager .month-pager li a {
  font-family: "Overpass", sans-serif;
  position: relative;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: pre;
}
.page--schedule .monthArea .block--pager .month-pager li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 44%;
  width: 5px;
  height: 5px;
  transition: 0.3s;
}
.page--schedule .monthArea .block--pager .month-pager li.pager__item--newer a:after {
  left: 5px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(-135deg);
}
.page--schedule .monthArea .block--pager .month-pager li.pager__item--older a:after {
  right: 5px;
  border-right: 2px solid;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}
.page--schedule .list--information li a .date-wrap {
  display: inline-block;
  margin-right: 5px;
}
.page--schedule .list--information li a .date-wrap .date {
  display: inline-block;
  font-family: "Overpass", sans-serif;
  font-size: 12px;
}
.page--schedule .list--information li a .date-wrap .event-end {
  position: relative;
  padding: 0 0 0 20px;
}
.page--schedule .list--information li a .date-wrap .event-end span {
  padding-left: 0;
}
.page--schedule .list--information li a .date-wrap .event-end span:before {
  content: none;
}
.page--schedule .list--information li a .date-wrap .event-end:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #b1b9c1;
  position: absolute;
  left: 4px;
  top: 4px;
}
.page--schedule .list--information li a .label {
  font-family: "Francois One", Noto Sans JP, "Arial", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 11px;
}
.page--schedule .list--information li a .tit {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

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

/*  4.8 entry
------------------------------ */
.section--detail.entry [class^=block--],
.section--detail.course-change [class^=block--] {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.section--detail.entry .block-tit,
.section--detail.course-change .block-tit {
  font-family: "Francois One", sans-serif;
  color: inherit;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.section--detail.entry .block--contents dl,
.section--detail.course-change .block--contents dl {
  border-radius: 8px;
}
.section--detail.entry .block--contents dt,
.section--detail.course-change .block--contents dt {
  font-size: 16px;
  font-weight: 900;
}
.section--detail.entry .block--contents dt span,
.section--detail.course-change .block--contents dt span {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  display: inline-block;
  vertical-align: 2.5px;
  border: 0.5px solid;
  padding: 1px 5px 0;
  margin-left: 7px;
}
.section--detail.entry .block--fc-goods .block-tit,
.section--detail.entry .block--course .block-tit,
.section--detail.entry .block--device .block-tit,
.section--detail.course-change .block--fc-goods .block-tit,
.section--detail.course-change .block--course .block-tit,
.section--detail.course-change .block--device .block-tit {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 15px;
}
.section--detail.entry .block--fc-goods .block--table,
.section--detail.entry .block--course .block--table,
.section--detail.entry .block--device .block--table,
.section--detail.course-change .block--fc-goods .block--table,
.section--detail.course-change .block--course .block--table,
.section--detail.course-change .block--device .block--table {
  border: 1px solid #959EA7;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 0;
}
.section--detail.entry .block--fc-goods table,
.section--detail.entry .block--course table,
.section--detail.entry .block--device table,
.section--detail.course-change .block--fc-goods table,
.section--detail.course-change .block--course table,
.section--detail.course-change .block--device table {
  width: 100%;
}
.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.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.course-change .block--fc-goods table tr:last-of-type td,
.section--detail.course-change .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 {
  border-bottom: none;
}
.section--detail.entry .block--fc-goods table th,
.section--detail.entry .block--course table th,
.section--detail.entry .block--device table th,
.section--detail.course-change .block--fc-goods table th,
.section--detail.course-change .block--course table th,
.section--detail.course-change .block--device table th {
  width: 7.2em;
  background: #d2dae2;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #b6c0ca;
  padding: 10px 2px;
}
.section--detail.entry .block--fc-goods table td,
.section--detail.entry .block--course table td,
.section--detail.entry .block--device table td,
.section--detail.course-change .block--fc-goods table td,
.section--detail.course-change .block--course table td,
.section--detail.course-change .block--device table td {
  font-size: 13px;
  word-break: break-word;
  letter-spacing: 0;
  line-height: 1.6;
  border-bottom: 1px solid #b6c0ca;
  padding: 15px 4%;
}
.section--detail.entry .block--fc-goods table td dl:not(:last-of-type),
.section--detail.entry .block--course table td dl:not(:last-of-type),
.section--detail.entry .block--device table td dl:not(:last-of-type),
.section--detail.course-change .block--fc-goods table td dl:not(:last-of-type),
.section--detail.course-change .block--course table td dl:not(:last-of-type),
.section--detail.course-change .block--device table td dl:not(:last-of-type) {
  margin-bottom: 1em;
}

.section--detail.entry .section-tit {
  width: 80%;
  height: 19vw;
  text-indent: -9999em;
  background: url(/static/sbr/common/logo_fc.png) center/contain no-repeat;
  margin: 0.5em auto 1.2em;
}
.section--detail.entry .block--top {
  position: relative;
}
.section--detail.entry .block--top .txt--basic {
  line-height: 1.8;
}
.section--detail.entry .block--top::before {
  content: "SHIBUTANI SUBARU OFFICIAL FAN CLUB";
  display: block;
  width: 100%;
  font-family: "Francois One", sans-serif;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #ef6e68;
  position: absolute;
  top: -25px;
  left: 0;
}
.section--detail.entry .block--top .block--attention {
  border: 1px solid #959ea7;
  border-radius: 8px;
  padding: 15px 5%;
  margin: 20px auto 10px;
}
.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 {
  font-size: 10vw;
  text-align: center;
  color: #000000;
}
.section--detail.entry .block--contents dl {
  color: #423232;
  border: 0.5px solid #959EA7;
  padding: 20px 5% 20px 18%;
  margin-bottom: 20px;
}
.section--detail.entry .block--contents dl dt {
  color: #f75e5e;
  letter-spacing: 0.03em;
  position: relative;
}
.section--detail.entry .block--contents dl dt::before {
  content: "";
  display: block;
  width: 10vw;
  height: 10vw;
  background: center/contain no-repeat;
  position: absolute;
  left: -12vw;
  top: 1vw;
}
.section--detail.entry .block--contents dl dt.list--contents__ticket::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_ticket.png);
}
.section--detail.entry .block--contents dl dt.list--contents__newsletter::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_book.png);
}
.section--detail.entry .block--contents dl dt.list--contents__blog::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_blog.png);
}
.section--detail.entry .block--contents dl dt.list--contents__idcard::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_card.png);
}
.section--detail.entry .block--contents dl dt.list--contents__notebook::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_note.png);
}
.section--detail.entry .block--contents dl dt.list--contents__greetingmail::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_greetingmail.png);
}
.section--detail.entry .block--contents dl dt.list--contents__mail::before {
  background-image: url(/static/sbr/fanclub/feature/entry/icon_mail.png);
}
.section--detail.entry .block--contents dl dd {
  font-size: 14px;
  line-height: 1.4;
}
.section--detail.entry .block--contents dl dd:not(:last-of-type) {
  margin-bottom: 20px;
}
.section--detail.entry .block--contents dl dd .txt--sub {
  margin-top: 5px;
}
.section--detail.entry .block--fc-goods {
  background: #e6ebef;
  color: #423232;
  border-radius: 8px;
  padding: 16px 5% 20px;
  margin: 15px auto 40px;
}
.section--detail.entry .block--fc-goods .block-tit {
  font-size: 14px;
  color: #423232;
  text-align: center;
  margin-bottom: 0.5em;
}
.section--detail.entry .block--fc-goods .block-tit br {
  display: none;
}
.section--detail.entry .block--fc-goods .thumb {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section--detail.entry .block--fc-goods .thumb img:first-child {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.section--detail.entry .block--fc-goods .thumb figcaption {
  font-weight: 900;
  font-size: 18px;
  color: #f87171;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  left: 0;
  bottom: -15px;
}
.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: 25px 5%;
  margin: 30px auto;
}
.section--detail.entry .block--fc-goods.notebook .block-tit {
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  font-weight: normal;
}
.section--detail.entry .block--fc-goods.notebook .block-tit br {
  display: none;
}
.section--detail.entry .block--fc-goods.notebook .thumb {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section--detail.entry .block--fc-goods.notebook .thumb img:first-child {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.section--detail.entry .block--fc-goods.notebook .thumb figcaption {
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3em;
  position: relative;
  left: 0;
  bottom: -15px;
}
.section--detail.entry .block--fc-goods.notebook .block--flex {
  width: 60%;
  margin: 0 auto;
}
.section--detail.entry .block--fc-goods.notebook .block--flex + p {
  font-weight: 600;
  font-size: 15px;
  color: #fff462;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0;
}

.section--detail.course-change .txt--basic {
  line-height: 1.6;
}
.section--detail.course-change .center {
  text-align: center;
}
.section--detail.course-change .section-tit {
  font-size: 26px;
  font-weight: 400;
}
.section--detail.course-change table {
  border: 1px solid #959EA7;
}
.section--detail.course-change .block-tit {
  font-weight: 900;
  line-height: 1.6;
}
.section--detail.course-change .block--course .block {
  border: 0.1px solid #959EA7;
  padding: 20px 5%;
  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--attention {
  background: #eaeaea;
  padding: 15px;
}
.section--detail.course-change .block--attention .block-tit {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 0px;
}
.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 .list--step {
  margin-bottom: 0.5em;
}
.section--detail.course-change .list--step li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 1em;
}

/*  streaming
------------------------------ */
.section--detail.page--streaming {
  overflow: hidden;
  padding-bottom: 40px;
}
.section--detail.page--streaming .red {
  color: #FD5651;
}
.section--detail.page--streaming::after {
  clear: both;
  content: "";
  display: block;
}
.section--detail.page--streaming .section-tit {
  font-size: 20px;
  margin-bottom: 40px;
}
.section--detail.page--streaming .block--attention-comment {
  background: #eee;
  padding: 15px 3%;
  margin-bottom: 0px;
  margin: 0 -7% 15px;
  line-height: 1.4;
  font-size: 13px;
}
.section--detail.page--streaming .block--movie {
  margin: 0 -7% 30px;
}
.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 {
  padding: 0;
  margin: 0;
}
.section--detail.page--streaming .block--comment .comments_title {
  font-family: "Overpass", sans-serif;
  text-align: center;
  font-size: 14px;
  margin: 0.5em auto;
}
.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;
}
.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;
}
.section--detail.page--streaming .block--comment .comment_area {
  font-size: 13px;
  height: 5em;
}
.section--detail.page--streaming .block--comment .comments_post {
  margin-bottom: 30px;
}
.section--detail.page--streaming .block--comment .inner_comments {
  width: 100%;
  max-height: 400px !important;
  overflow-y: scroll;
  float: none;
  margin: 0 auto;
  -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 5px 10px 0;
  margin-bottom: 10px;
  position: relative;
}
.section--detail.page--streaming .block--comment .inner_comments li.flag--delete .name {
  width: 60%;
}
.section--detail.page--streaming .block--comment .inner_comments li.flag--delete .date {
  width: 40%;
  float: right;
  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: 0;
  right: 0;
  margin: 0;
  z-index: 100;
  line-height: 0;
}
.section--detail.page--streaming .block--comment .inner_comments li .btn.btn--delete button {
  font-size: 11px;
  padding: 1px 0;
  background: #fff;
}
.section--detail.page--streaming .block--comment .inner_comments li .name {
  font-size: 0.8em;
  float: left;
  width: 70%;
  line-height: 1.4;
}
.section--detail.page--streaming .block--comment .inner_comments li .date {
  width: 25%;
  float: right;
  font-family: "Overpass", sans-serif;
  font-size: 0.8em;
  color: #959EA7;
  text-align: right;
  margin-bottom: 0;
}
.section--detail.page--streaming .block--comment .inner_comments li .comment_body {
  font-size: 15px;
}
.section--detail.page--streaming .block--introdction_streaming {
  position: relative;
  padding: 40px 7% 50px;
  clear: both;
  margin-top: 50px;
  background: #f5f5f5;
  width: 120%;
  left: -10%;
}
.section--detail.page--streaming .block--introdction_streaming .block-tit {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.section--detail.page--streaming .block--introdction_streaming .txt--basic {
  text-align: center;
}
.section--detail.page--streaming .block--introdction_streaming .stream-movie .inner {
  width: 100%;
  padding-top: 56.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: 40px 0 0;
}
.section--detail.page--streaming .block--attention .attentionList {
  margin: 0 0 20px;
}
.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: 100%;
  background: #fff;
}
.section--detail.page--streaming .block--attention .supportCell th {
  border: 1px solid #ccc;
  width: 33%;
  padding: 7px;
  background: #eee;
  font-size: 14px;
}
.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: 25%;
}
.section--detail.page--streaming .block--attention .supportCell .osVer {
  width: 30%;
}
.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;
}

/*  comment
------------------------------ */
.section--detail.section--comment-list #inner_comments {
  height: 100% !important;
}
.section--detail.section--comment-list #inner_comments li {
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.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;
  margin-bottom: 0;
}
.section--detail.section--comment-list #inner_comments li .comment_body {
  font-size: 18px;
  line-height: 1.5;
}

/*  5.1 tablet
------------------------------ */
@media screen and (min-width: 756px) and (max-width: 981px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding-bottom: 260px;
  }
  .txt--basic {
    font-size: 16px;
  }
  .logo::after {
    width: 25vw;
    height: 19vw;
    bottom: -3vw;
  }
  .logo a {
    height: 12vw;
    background-size: 50% auto;
    padding: 65px 13% 0 21%;
    top: 32px;
    transition: 0.3s;
  }
  .drawer__btn {
    transition: 0.3s;
  }
  .drawer__btn .top {
    top: 0;
  }
  .nav--language {
    top: 60px;
    right: 17%;
    transition: 0.3s;
  }
  .nav--language li:not(:last-child) {
    margin-right: 1em;
  }
  .nav--language li label {
    font-size: 20px;
  }
  .headerFixed .nav--language {
    top: 32px;
  }
  .headerFixed .logo a {
    top: 4px;
  }
  .drawer {
    padding: 14vh 10%;
  }
  .drawer .g-nav li a {
    font-size: 4vw;
  }
  .drawer .g-nav li a .date {
    font-size: 13px;
  }
  .drawer .nav-box.fc::before {
    width: 70px;
    height: 20px;
    margin-bottom: 2em;
  }
  .drawer .nav-box.official a .date {
    top: -10px;
  }
  .drawer .g-nav li.nav__item--blog a,
  .drawer .g-nav li.nav__item--streaming a {
    font-size: 3.2vw;
  }
  .drawer .g-nav li.nav__item--course_change a {
    font-size: 2.6vw;
  }
  .drawer .nav-box.support a {
    font-size: 14px;
  }
  .drawer-visible .drawer__btn span:nth-of-type(1) {
    top: -13px;
  }
  .drawer-visible .drawer__btn span:nth-of-type(2) {
    top: 27px;
  }
  footer {
    bottom: 40px;
  }
  footer .copyright {
    margin-top: -43px;
  }
  .detail__btn::before,
  .list__more::before {
    top: -40px;
  }
  .list__more a {
    font-size: 18px;
    padding: 60px 0 10px;
  }
  .block--pager .loader::before {
    margin-top: -91px;
  }
  .page--disco .form__select,
  .page--info .block--info-nav {
    top: calc(18vh + 14vw);
  }
  .page--home .header h1 {
    top: -160px;
  }
  .page--home .block--logo {
    height: 60vw;
  }
  .page--home .block--logo .logo {
    width: 46%;
    height: 47vw;
    margin-top: 20vw;
  }
  .page--home .section--photo {
    padding: 12vw 0 12vw;
  }
  .page--home .section--photo figure {
    width: 80%;
  }
  .page--home .section--movie {
    padding-bottom: 0;
  }
  .page--home .section--movie .block--thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page--home .section--movie .block--thumbnail figure {
    width: 70%;
  }
  .page--home .section--movie .block--thumbnail figure::after {
    width: 50px;
    height: 50px;
  }
  .page--home .section--movie .block--video .block--video__item iframe {
    margin-top: -6vw;
  }
  .page--home .section--movie .close {
    width: 60px;
    height: 60px;
    top: calc(50% - 47vw);
    left: 96%;
  }
  .page--home .block--share {
    padding: 120px 0 104px;
  }
  .page--home .block--share .nav--sns::before {
    font-size: 18px;
  }
  .page--home footer .nav--support {
    margin-bottom: 90px;
  }
  .section--list,
  .section--detail {
    padding-top: 18vh;
  }
  .section-tit {
    font-size: 7vw;
    margin: 0 0 11vh;
  }
  .list--information li {
    margin-bottom: 40px;
  }
  .list--information .date {
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .list--information .tit {
    font-size: 16px;
    margin: 0 0 25px;
  }
  .section--detail .date {
    font-size: 13px;
  }
  .section--detail .tit {
    font-size: 4vw;
    line-height: 1.6;
  }
  .page--info .section--detail .date {
    font-size: 13px;
  }
  .page--info .section--detail .tit {
    font-size: 4vw;
    line-height: 1.6;
  }
  .page--info .txt {
    font-size: 16px;
    line-height: 2.4;
    letter-spacing: 0.01em;
    padding-top: 20px;
  }
  .page--info .block--share {
    margin-right: 2%;
  }
  .detail__btn a {
    font-size: 18px;
    padding: 60px 1em 50px 6%;
  }
  .page--profile .thumb {
    margin: 0 auto 70px;
  }
  .page--profile .name {
    font-size: 32px;
    margin: 0 auto 50px;
  }
  .page--blog .section-tit {
    width: 54vw;
    height: 33vw;
    margin-top: 4vh;
  }
  .page--blog .block--pager li a {
    font-size: 16px;
  }
  .page--blog .block--pager li a::before {
    width: 46px;
    top: 14px;
  }
  .page--blog .block--pager li a::after {
    top: 12px;
  }
  .page--blog .block--pager .pager-link--prev a {
    padding-right: 60px;
  }
  .page--blog .block--pager .pager-link--prev a::before {
    right: -62px;
  }
  .page--blog .block--pager .pager-link--next a {
    padding-left: 60px;
  }
  .page--blog .block--pager .pager-link--next a::before {
    left: -60px;
  }
  .page--blog .section--detail .ph {
    max-width: 60%;
    margin: 20px auto;
  }
  .support .section-tit {
    font-size: 30px;
  }
  .support .list--support dt {
    font-size: 16px;
  }
  .support .list--support dd {
    margin-bottom: 30px;
  }
  .section--detail.entry .section-tit {
    width: 60%;
    height: 8vw;
  }
  .section--detail.entry .block--top .block--attention {
    padding: 30px 5%;
  }
  .section--detail.entry .btn {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .section--detail.entry .block--contents .block-tit {
    font-size: 8vw;
  }
  .section--detail.entry .block--contents dl {
    padding: 60px 5% 60px 16%;
  }
  .section--detail.entry .block--contents dl dt::before {
    width: 7vw;
    height: 7vw;
    top: 0;
    left: -9vw;
  }
  .section--detail.entry .block--contents dl dd:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .section--detail.entry .block--fc-goods .thumb figcaption {
    font-size: 22px;
  }
  .section--detail.entry .block--fc-goods .thumb img:first-child {
    width: 32%;
  }
  .section--detail.section--comment-list #inner_comments li .comment_head .name {
    font-size: 16px;
  }
  .section--detail.section--comment-list #inner_comments li .comment_body {
    font-size: 20px;
  }
  .section--detail.section--comment-list #inner_comments li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.page--blog .block--pager {
  padding: 60px 0 50px;
}
.page--blog .section--list .user {
  display: none;
}
.page--blog .section--list .thumb {
  display: none;
}
.page--blog .section--list .txt {
  display: none;
}
.page--blog .section--list .list--information li {
  position: relative;
  margin: 0 0 40px;
}
.page--blog .section--list .pagingBox ul {
  text-align: center;
  padding: 20px 0 40px;
}
.page--blog .section--list .pagingBox ul li {
  width: 10%;
  display: inline-block;
  position: relative;
}
.page--blog .section--list .pagingBox ul li a {
  color: #959EA7;
}
.page--blog .section--list .pagingBox ul .current::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 40px;
  left: 0;
}
.page--blog .section--list .pagingBox ul .pager__item--newer {
  float: left;
}
.page--blog .section--list .pagingBox ul .pager__item--newer a {
  padding: 10px 0;
}
.page--blog .section--list .pagingBox ul .pager__item--older {
  float: right;
}
.page--blog .section--list .pagingBox ul .pager__item--older a {
  padding: 10px 0;
}
.page--blog .section--list .pagingBox ul .pager__item--newer::before {
  transform-origin: right;
  top: 12px;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #959EA7;
  position: relative;
  transition: 0.3s;
}
.page--blog .section--list .pagingBox ul .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 .section--list .pagingBox ul .pager__item--older::before {
  transform-origin: left;
  top: 12px;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #959EA7;
  position: relative;
  transition: 0.3s;
  float: right;
}
.page--blog .section--list .pagingBox ul .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;
  left: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
  right: 0;
  left: inherit;
  float: right;
  transform: rotate(135deg);
}
.page--blog .section--detail .aop--pager .pager-link--prev a {
  padding-left: 30px;
  display: block;
  font-family: "Francois One", sans-serif;
  font-size: 12px;
  color: #959EA7;
  letter-spacing: 0.01em;
  position: relative;
  padding-right: 4px;
}
.page--blog .section--detail .aop--pager .pager-link--prev a::before {
  left: 46px;
  transform-origin: right;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #959EA7;
  position: relative;
  top: 12px;
  transition: 0.3s;
  float: right;
  right: 0;
  left: 4px;
}
.page--blog .section--detail .aop--pager .pager-link--prev a::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;
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}

.page--info.category-7 .section-tit {
  margin: 0 0 90px;
}
.page--info.category-7 .form__select {
  position: absolute;
  right: 8%;
  margin-bottom: 30px;
  top: 205px;
}
.page--info.category-7 .form__select select {
  border: none;
  font-family: "Francois One", sans-serif;
  border-bottom: 2px solid;
  border-radius: 0;
  font-size: 14px;
  padding-bottom: 0.3em;
}
.page--info.category-7 .block--info-nav {
  top: 170px;
}
.page--info.category-7 .list--info li {
  position: relative;
  margin: 0 0 40px;
}
.page--info.category-7 .list--info .thumb {
  display: none;
}
.page--info.category-7 .list--info .tit {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}
.page--info.category-7 .list--info .date {
  font-family: "Overpass", sans-serif;
  color: #959EA7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.page--info.category-5 .section-tit,
.page--info.category-18 .section-tit {
  margin: 0 0 90px;
}
.page--info.category-5 .form__select,
.page--info.category-18 .form__select {
  position: absolute;
  right: 8%;
  margin-bottom: 30px;
  top: 205px;
}
.page--info.category-5 .form__select select,
.page--info.category-18 .form__select select {
  border: none;
  font-family: "Francois One", sans-serif;
  border-bottom: 2px solid;
  border-radius: 0;
  font-size: 14px;
  padding-bottom: 0.3em;
}
.page--info.category-5 .block--info-nav,
.page--info.category-18 .block--info-nav {
  top: 170px;
}
.page--info.category-5 .list--info li,
.page--info.category-18 .list--info li {
  position: relative;
  margin: 0 0 40px;
}
.page--info.category-5 .list--info .thumb,
.page--info.category-18 .list--info .thumb {
  display: none;
}
.page--info.category-5 .list--info .tit,
.page--info.category-18 .list--info .tit {
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}
.page--info.category-5 .list--info .date,
.page--info.category-18 .list--info .date {
  font-family: "Overpass", sans-serif;
  color: #959EA7;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

@media screen and (max-width: 981px) and (min-width: 756px) {
  .page--info.category-7 .form__select {
    top: calc(18vh + 14vw);
  }
  .page--info.category-7 .block--info-nav {
    top: calc(12vh + 14vw);
  }
  .page--info.category-5 .form__select,
  .page--info.category-18 .form__select {
    top: calc(18vh + 14vw);
  }
  .page--info.category-5 .block--info-nav,
  .page--info.category-18 .block--info-nav {
    top: calc(12vh + 14vw);
  }
}
.page--blog.category- .ph .dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--blog.category- .ulizahtml5.uliza-device-mobile {
  font-size: 10px;
  width: 100% !important;
}
.page--blog.category- .block--video video {
  width: 100%;
}

.page--home.shubabu {
  color: #000;
}
.page--home.shubabu .header, .page--home.shubabu footer {
  display: none;
}
.page--home.shubabu .section--detail {
  padding: 40px 0 0;
  opacity: 1;
  transform: none;
}
.page--home.shubabu .fcAll .contentInner .section--info {
  transform: translateY(0);
  opacity: 1;
}
.page--home.shubabu .fcAll .contentInner .section--fcvideo .list--fcvideo {
  transform: translateY(0);
  opacity: 1;
}
.page--home.shubabu .fcAll .contentInner .section--fcblog1 {
  transform: translateY(0);
  opacity: 1;
}
.page--home.shubabu .fcAll .contentInner .section--fcblog2 {
  transform: translateY(0);
  opacity: 1;
}
.page--home.shubabu .fcAll .contentInner .section--magazine {
  transform: translateY(0);
  opacity: 1;
}
.page--home.shubabu .background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  background-attachment: fixed;
  overflow: scroll;
}
.page--home.shubabu .background:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background: url(/static/sbr/artist_photo/bg_7d7fb3533d8f71db41273bcd9cb1c7f7.jpg) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease;
  opacity: 0.2;
}
.page--home.shubabu .fclogo {
  width: 50%;
  margin: 0 auto 40px;
  transition: all 0.3s ease 0.6s;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.page--home.shubabu .fclogo img {
  width: 100%;
}
.page--home.shubabu .btn {
  text-align: center;
  position: relative;
}
.page--home.shubabu .btn .btn--main {
  background: #fff;
  color: #050505;
  font-family: "Francois One", sans-serif;
  border-radius: 0;
  width: 100%;
}
.page--home.shubabu .section--blog {
  margin: 0 0 35px;
}
.page--home.shubabu .section--blog:last-of-type {
  margin-bottom: 80px;
}
.page--home.shubabu .section--blog .blog-tit,
.page--home.shubabu .section--blog .tit,
.page--home.shubabu .section--blog .date {
  color: #fff;
}
.page--home.shubabu .section--blog .blog-tit {
  font-size: 10px;
  margin-bottom: 38px;
  letter-spacing: 0.15em;
}
.page--home.shubabu .section--blog .tit {
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 0.08em;
}
.page--home.shubabu .section--blog .date {
  font-family: "Overpass", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.page--home.shubabu .section--blog .thumb {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.page--home.shubabu .section--blog .thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #32363b;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 60%;
  z-index: 1;
}
.page--home.shubabu .section--blog .thumb img {
  height: 200px;
  background-size: contain;
  z-index: 20;
}
.page--home.shubabu .section--blog .thumb .blurBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(3px);
  background-size: cover;
  transform: scale(1.1);
}
.page--home.shubabu .section--blog .contents--list li {
  position: relative;
  margin-bottom: 20px;
  transition: all 0.8s ease 0.7s;
}
.page--home.shubabu .section--blog .contents--list li:last-of-type {
  margin-bottom: 0;
}
.page--home.shubabu .section--blog .contents--list li:last-child {
  transition-delay: 0.9s;
}
.page--home.shubabu .section--blog .contents--list li.new::before, .page--home.shubabu .section--blog .contents--list li.new:after {
  position: absolute;
}
.page--home.shubabu .section--blog .contents--list li.new::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #FD5651 transparent transparent transparent;
  z-index: 2;
}
.page--home.shubabu .section--blog .contents--list li.new::after {
  content: "NEW";
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: #fff;
  z-index: 3;
  top: 6px;
  left: 3px;
  transform: rotate(-45deg);
}
.page--home.shubabu .section--blog .contents--list .txt-wrap {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 85%;
  z-index: 2;
}
.page--home.shubabu .section--menu {
  margin: 0;
}
.page--home.shubabu .section--menu .list--menu {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}
.page--home.shubabu .section--menu .list--menu li {
  transition: all 1.2s ease 0.8s;
}
.page--home.shubabu .section--menu .list--menu li:not(:last-of-type) {
  margin-bottom: 16px;
}
.page--home.shubabu .section--menu .list--menu li:nth-child(1) {
  transition-delay: 0.8s;
}
.page--home.shubabu .section--menu .list--menu li:nth-child(2) {
  transition-delay: 0.9s;
}
.page--home.shubabu .section--menu .list--menu li:nth-child(3) {
  transition-delay: 1s;
}
.page--home.shubabu .section--menu .list--menu li:nth-child(4) {
  transition-delay: 1.1s;
}
.page--home.shubabu .section--menu .list--menu li:nth-child(5) {
  transition-delay: 1.2s;
}
.page--home.shubabu .section--menu .list--menu li:nth-child(6) {
  transition-delay: 1.3s;
}
.page--home.shubabu .section--menu .list--menu a {
  padding: 5px 0;
  color: #000;
}
.page--home.shubabu .fcAll .contentInner .date {
  margin: 0;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", YakuHanJP, -apple-system, BlinkMacSystemFont, Noto Sans JP, "Arial", Meiryo, "メイリオ", sans-serif;
}
.page--home.shubabu .fcAll .contentInner .list--information li a .tit {
  margin: 0;
}
.page--home.shubabu .whatsShubabu {
  padding-bottom: 3vw;
}

.body--app header, .body--app footer {
  display: none;
}
.body--app .section--list, .body--app .section--detail {
  padding-top: 50px;
}

.body--app.page--disco .form__select {
  top: 120px;
}

.body--app.page--faq .detail__btn {
  display: none;
}

.body--app.page--info.category-5 .form__select, .body--app.page--info.category-7 .form__select, .body--app.page--info.category-18 .form__select, .body--app.page--info.category-7 .form__select {
  top: 135px;
}
.body--app.page--info.category-5 .block--info-nav, .body--app.page--info.category-7 .block--info-nav, .body--app.page--info.category-18 .block--info-nav, .body--app.page--info.category-7 .block--info-nav {
  top: 100px;
}

.page--notice {
  background: #fff;
  color: #000000;
}
.page--notice .no-data {
  padding: 20px 5%;
  text-align: center;
}
.page--notice .list--info li {
  padding: 0 5%;
}
.page--notice .list--info li.new,
.page--notice .list--info li {
  width: auto;
  height: auto;
  font-size: 14px;
  background: none;
  line-height: 1.7;
  border-radius: 0px;
  text-align: left;
  font-weight: 400;
}
.page--notice .list--info li a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #000000;
  color: #000000;
}
.page--notice .list--info .new .date::after {
  content: "NEW";
  margin-left: 7px;
  color: #FD5651;
  font-weight: bold;
}

.commentArea {
  margin: 80px 0 0 0;
}
.commentArea input[type=submit],
.commentArea 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;
  cursor: pointer;
}
.commentArea input[type=submit]::-webkit-search-decoration,
.commentArea input[type=button]::-webkit-search-decoration {
  display: none;
}
.commentArea input[type=submit]::focus,
.commentArea input[type=button]::focus {
  outline-offset: -2px;
}
.commentArea .detail__btn input, .commentArea .btn input {
  color: #fff;
  letter-spacing: 1px;
  border: 1px solid;
  border-radius: 100px;
  margin: 10px 0 0;
  background: #414649;
  width: 100%;
  padding: 15px;
  font-size: 12px;
}
.commentArea textarea {
  width: 100%;
  font-size: 14px;
}
.commentArea .table_box dt {
  font-weight: 100;
  font-size: 12px;
  margin: 0 0 10px 0;
}
.commentArea .commentListTit {
  margin: 40px 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid;
  font-size: 15px;
}
.commentArea .commentList {
  margin: 0 0 50px 0;
}
.commentArea .commentList li {
  border-bottom: 1px solid #ddd;
  padding: 0 0 40px 0;
  margin: 0 0 40px;
}
.commentArea .commentList li .nick {
  font-size: 14px;
  font-weight: 600;
}
.commentArea .commentList li .nick_user {
  color: #ff7871;
}
.commentArea .commentList li .userBox {
  padding: 10px;
  border: 2px solid #ff7871;
}
.commentArea .commentList li .time {
  font-size: 13px;
}
.commentArea .commentList li .commet {
  font-size: 13px;
  margin: 0 0 15px 0;
}
.commentArea .commentList li:last-child {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.commentArea .commentList .btn.sub input {
  background: transparent;
  width: 200px;
  padding: 10px;
  font-size: 13px;
  border: 2px solid #000000;
  color: #000000;
  font-weight: bold;
}

.commentconfirm {
  width: 100%;
  margin: auto;
  padding: 30px 20px 20px 20px;
}
.commentconfirm input[type=submit],
.commentconfirm 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;
  cursor: pointer;
}
.commentconfirm input[type=submit]::-webkit-search-decoration,
.commentconfirm input[type=button]::-webkit-search-decoration {
  display: none;
}
.commentconfirm input[type=submit]::focus,
.commentconfirm input[type=button]::focus {
  outline-offset: -2px;
}
.commentconfirm .pageTit {
  display: none;
}
.commentconfirm .titArea .tit {
  text-align: center;
  color: #000000;
  font-size: 14px;
  border-bottom: 1px solid #000000;
  padding: 0 0 15px 0;
  margin: 0 0 30px 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 20px 0;
  margin: 0 0 20px 0;
  font-size: 15px;
}
.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 {
  color: #fff;
  letter-spacing: 1px;
  border: 1px solid;
  border-radius: 100px;
  margin: 10px 0 0;
  background: #414649;
  width: 100%;
  padding: 15px;
  font-size: 12px;
}

.commentcomplete {
  width: 100%;
  margin: auto;
  padding: 30px 20px 20px 20px;
}
.commentcomplete .pageTit {
  display: none;
}
.commentcomplete .titArea .tit {
  text-align: center;
  color: #000000;
  font-size: 14px;
  margin: 0 0 20px 0;
}
.commentcomplete .btn a {
  color: #fff;
  letter-spacing: 1px;
  border: 1px solid;
  border-radius: 100px;
  margin: 10px 0 0;
  background: #414649;
  width: 100%;
  padding: 15px;
  font-size: 12px;
  width: 100%;
  display: block;
}

.commentdelete {
  padding: 50px 0 0 0;
  width: 90%;
  margin: auto;
}
.commentdelete .pageTit {
  display: none;
}
.commentdelete .titArea .tit {
  text-align: left;
}
.commentdelete .btn a {
  background: #414649;
  display: block;
  width: 100%;
  margin: auto;
  color: #fff;
  border-radius: 100px;
  padding: 15px;
  font-size: 13px;
}

.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: 6%;
  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;
  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 .block--pager li span::after {
  right: 0;
  left: inherit;
  transform: rotate(135deg);
}
.page--blog .block--pager li.pager__item--newer span::after {
  right: 14px;
  left: inherit;
  transform: rotate(-45deg);
}

.page--movie.category-1 .section-tit {
  display: none;
}
.page--movie.category-1 .section-tit.ct1 {
  display: block;
  width: 100px;
  margin: 0 auto 10px;
}
.page--movie.category-1 .btnWeek a {
  display: none;
}
.page--movie.category-1 .btnWeek.ct1 a {
  display: block;
  width: 100%;
  margin: 10px auto 30px;
  border: 2px solid #000;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}
.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 .pageTit {
  display: none;
}
.page.page--movie.all .list--contents li {
  margin: 0 0 20px 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 {
  font-size: 10px;
  margin: 0 0 8px 0;
  text-align: center;
  font-weight: 300;
  background: #EF645D;
  padding: 1px;
  width: 80%;
  color: #fff;
  max-width: 200px;
}
.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 .section-tit {
  display: block;
  width: 100px;
  margin: 0 auto 10px;
}
.page.page--movie.all .btnWeek a {
  display: block;
  width: 100%;
  margin: 10px auto 30px;
  border: 2px solid #000;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  max-width: 300px;
}
.page.page--movie.all .categoryArea {
  background: #f7f7f7;
  padding: 15px;
  margin: 0 0 30px 0;
}
.page.page--movie.all .categoryArea .tit {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 10px 0;
}
.page.page--movie.all .categoryArea .btnList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.page.page--movie.all .categoryArea .btnList li {
  display: inline-block;
  width: 49%;
  margin: 0 0 10px 0;
}
.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: 7px;
  line-height: 1.5;
  font-size: 11px;
  color: #fff;
  transition: 0.4s;
  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_c a {
  background: #EF645D;
  border: 2px solid #EF645D;
}
.page.page--movie.all .categoryArea .btnList li .ct_d a {
  background: #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,
.page--movie.category-18 .section-tit.ct1 {
  display: none;
}
.page--movie.category-4 .btnWeek,
.page--movie.category-5 .btnWeek,
.page--movie.category-6 .btnWeek,
.page--movie.category-18 .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,
.page--movie.category-18 .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,
.page--movie.category-18 .list--contents .thumb::after {
  background: none;
}
.page--movie.category-4 .section-tit,
.page--movie.category-5 .section-tit,
.page--movie.category-6 .section-tit,
.page--movie.category-18 .section-tit {
  font-size: 23px;
  margin: 0 0 30px 0;
}

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

.page--bbs {
  background: transparent;
  /*****.block--parent***/
  /*****.block--post***/
}
.page--bbs .wrap {
  background: transparent;
}
.page--bbs footer {
  background: transparent;
}
.page--bbs .threadAll {
  display: block;
}
.page--bbs .thread1 {
  display: none;
}
.page--bbs .section--detail {
  width: 95%;
  margin: auto;
  padding: 100px 0;
}
.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: 100px auto 30px;
}
.page--bbs .block--parent .mainLogo {
  width: 95%;
  margin: 0 auto 20px;
}
.page--bbs .block--parent .mainTit {
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.page--bbs .block--parent .mainTit span {
  display: block;
  padding: 15px;
  font-size: 14px;
  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: 20px;
  background: rgba(0, 0, 0, 0.05);
}
.page--bbs .block--parent .lead {
  font-size: 13px;
  margin: 0 auto 20px;
  text-align: left;
}
.page--bbs .block--parent .date {
  font-size: 15px;
  color: #000;
  border: 2px solid;
  padding: 10px 10px 5px 10px;
  margin: 0 auto 10px;
  text-align: left;
  font-weight: bold;
  line-height: 1.5;
}
.page--bbs .block--post {
  margin: 0 auto 50px;
  width: 100%;
}
.page--bbs .block--post .form--post {
  display: none;
  padding: 20px;
  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 .block--post textarea {
  font-size: 12px;
}
.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 10px 0;
  position: relative;
}
.page--bbs .list--comment li .ph {
  margin: 0 auto 10px;
}
.page--bbs .list--comment li .ph img {
  width: auto;
  height: 143px;
  max-width: 100%;
  display: block;
  margin: auto;
  display: block;
  width: 100px;
  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;
}
.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 {
  font-size: 11px;
  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;
}
.page--bbs ul.block--pager li.pager__item--newer {
  margin-right: 1em;
}
.page--bbs ul.block--pager li.pager__item--newer a {
  color: #000;
}
.page--bbs ul.block--pager li.pager__item--newer a:after {
  content: "";
}
.page--bbs ul.block--pager li.pager__item--older {
  margin-left: 1em;
}
.page--bbs ul.block--pager li.pager__item--older a {
  color: #000;
}
.page--bbs ul.block--pager li.pager__item--older a:after {
  content: "";
}/*# sourceMappingURL=fanclub-sp-service.css.map */