@charset "utf-8";
/* ---------------------------------------
0.0 mixin
	0.1 colors
	0.2 typography
	0.3 spacer
	0.4 chevron
	0.5 flexbox
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 pagenation
3.0 layout
	3.1 base
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 discography
	4.5 wallpaper
	4.6 movie
	4.7 qa
	4.8 bbs
	4.9 faq
	4.10 support
-------------------------------------------- */
/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html,
body {
  -webkit-text-size-adjust: none;
  background: #fff;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
i {
  font-style: normal;
}
img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
::selection {
  background: #222;
  color: #fff;
}
::-moz-selection {
  background: #222;
  color: #fff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* 2.0 component
============================== */
.pc {
  display: none !important;
}
/* 2.1 button
------------------------------ */
.btn {
  text-align: center;
  margin: 1em 0;
}
.btn--main {
  color: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 75%;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  border-radius: 0;
  padding: 0 1.5em;
  cursor: pointer;
  background: #222;
  color: #fff;
  border: none;
}
.btn--sub {
  color: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  display: inline-block;
  min-width: 75%;
  text-align: center;
  text-decoration: none;
  line-height: 3.4;
  border-radius: 0;
  padding: 0 1.5em;
  cursor: pointer;
  background: transparent;
  color: #222;
  border: 1px solid;
}
.detail__btn,
.btn--past {
  display: block;
  position: relative;
  text-align: center;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  margin-top: 40px;
}
.detail__btn p,
.btn--past p {
  width: 70%;
  margin: 0 auto;
}
.detail__btn a,
.btn--past a {
  display: block;
  width: 100%;
  line-height: 50px;
  border: 0.5px solid #ddd;
}
.btn--past {
  margin: 2em auto;
}
/* 2.2 form
------------------------------ */
.form--post dt {
  margin: 3em 0 1em;
}
.form--post dd {
  margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #888;
  padding: 0.5em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
input[type="text"].form__error:focus,
input[type="tel"].form__error:focus,
input[type="email"].form__error:focus,
input[type="password"].form__error:focus,
input[type="number"].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.input--half {
  width: 50% !important;
}
.input--quarter {
  width: 25% !important;
}
/* textarea */
textarea {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #888;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select select {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #888;
  padding: 0.5em;
  padding-right: 1.5em;
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.form__select::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #888;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: 0.75em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #f33;
}
.form__checkbox label p {
  padding-left: 1.6em;
}
.form__checkbox label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__checkbox label p::after {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  left: 0.2em;
  top: 70%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #eb6972;
  border-color: #eb6972;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #f33;
}
.form__radio label p {
  padding-left: 1.6em;
}
.form__radio label p::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__radio :checked ~ p::before {
  border-color: #eb6972;
  border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #f33;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
  content: '';
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #ddd;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  right: 0;
  top: 50%;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #eb6972;
  border-color: #eb6972;
}
.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;
}
/* uliza player */
.ulizahtml5 .vjs-control::before {
  font-family: VideoJS!important;
}
/* 2.3 list
------------------------------ */
/*  information */
.list--information a {
  display: block;
}
.list--information a * {
  -webkit-transition: none;
  transition: none;
}
.list--information.horizontal {
  margin: 0 0 20px;
}
.list--information.horizontal li {
  width: 48%;
  float: left;
  margin: 0 4% 2em 0;
}
.list--information.horizontal li:nth-child(even) {
  margin-right: 0;
}
.list--information.horizontal li:nth-child(2n+1) {
  clear: left;
}
.list--information.horizontal .new .thumb::after {
  content: 'UP';
  position: absolute;
  top: -10px;
  right: -5px;
  display: inline-block;
  width: 34px;
  line-height: 30px;
  border-radius: 30px;
  text-align: center;
  background: #fff;
  color: #eb6972;
  border: 2px solid;
  font-weight: bold;
  font-size: 0.85em;
  z-index: 2;
}
.list--information.horizontal .thumb {
  position: relative;
  margin: 0 0 5px;
  border: 1px solid #ddd;
  line-height: 0;
}
.list--information.horizontal .thumb img {
  display: block;
  width: 100%;
  background-image: url(/static/creephyp/fanclub/common/noimage.jpg);
  border: 1px solid #ddd;
}
.list--information.horizontal .list__txt {
  padding: 0.5em 0 0;
  position: relative;
  z-index: 1;
}
.list--information.horizontal .tit {
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}
.list--information.horizontal .date {
  font-size: 10px;
  margin: 0;
}
.page--info .list--information.horizontal li {
  width: 100%;
  float: none;
  margin: 0 0 20px;
}
.page--info .list--information.horizontal .thumb {
  position: static;
  width: 100%;
  height: auto;
  margin: 0 0 10px;
  float: none;
  line-height: 0;
}
.page--info .list--information.horizontal .thumb img {
  width: 100%;
}
.list--information.vertical {
  margin: 0 0 20px;
}
.list--information.vertical a {
  border-bottom: 0.5px solid #ddd;
  line-height: 25px;
  padding: 10px 0 15px;
}
.list--information.vertical .new .tit::after {
  content: 'UP';
  color: #eb6972;
  font-weight: bold;
  font-size: 0.85em;
  margin-left: 5px;
}
.list--information.vertical .date {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0.5em 0 0;
  position: relative;
  top: 4px;
}
.list--information.vertical .date .week {
  font-size: 12px;
  padding: 0 0 0 0.5em;
}
.list--information.vertical .category {
  color: #ccc;
  font-size: 12px;
  line-height: 1.6;
  display: inline-block;
  vertical-align: -3px;
}
.list--information.vertical .tit {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 5px 0 0;
  position: relative;
}
.list--contents li {
  float: left;
  width: 48%;
  margin: 0 4% 10px 0;
}
.list--contents li .thumb {
  line-height: 0;
}
.list--contents li img {
  width: 100%;
}
.list--contents li:nth-child(even) {
  margin: 0;
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 6% 20px 6%;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.block--pager li {
  width: 33.3%;
  width: calc(33.33333333%);
  float: left;
  position: relative;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
}
.block--pager a,
.block--pager span {
  display: block;
  position: relative;
  height: 20px;
  line-height: 20px;
  color: #000;
}
.block--pager span {
  opacity: 0;
}
.block--pager .pager__item--top,
.block--pager .pager__item--number {
  text-align: center;
  color: #888;
}
.block--pager .pager__item--newer a {
  padding-left: 15px;
}
.block--pager .pager__item--older a {
  text-align: right;
  padding-right: 15px;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
  z-index: 2;
}
.block--pager .pager__item--newer a:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid #666;
  border-top: none;
  border-right: none;
  margin: -0.35em 0 0;
  position: absolute;
  right: auto;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0.25em;
  margin: -0.4em 0 0;
}
.block--pager .pager__item--older a:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid #666;
  border-top: none;
  border-right: none;
  margin: -0.35em 0 0;
  position: absolute;
  right: 0.25em;
  top: 50%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin: -0.4em 0 0;
}
.block--pager .pager__item--newer a:after,
.block--pager .pager__item--older a:after {
  color: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: absolute;
  top: -2px;
}
/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local('YuGothic-Medium'), /* PostScript Name = localの正式な指定方法 */ local('Yu Gothic Medium'), /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ local('YuGothic-Regular');
  /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local('YuGothic-Bold'), /* PostScript Name = localの正式な指定方法 */ local('Yu Gothic');
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
html,
body {
  min-height: 100vh;
}
body {
  position: relative;
  background-color: #fff;
  font-family: fot-klee-pro, Helvetica, Arial, 'Yu Gothic', MyYuGothicM, YuGothic, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
a {
  color: #222;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.center {
  text-align: center;
}
/* 3.2 header
------------------------------ */
.header {
  width: 100%;
  height: 60px;
  padding: 0 3%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  mix-blend-mode: exclusion;
}
.header h1 {
  width: 75%;
  height: 40px;
  top: 10px;
  position: relative;
}
.header h1 a {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat left / contain;
  background-image: url(/static/creephyp/fanclub/common/logo--official.png);
}
.header h1 a.top--fc {
  display: none;
}
.header .btn--nav {
  width: 30px;
  height: 20px;
  position: absolute;
  right: 3%;
  top: 20px;
  cursor: pointer;
}
.header .btn--nav span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header .btn--nav span:nth-of-type(1) {
  top: 0;
  left: -5px;
}
.header .btn--nav span:nth-of-type(2) {
  top: 9px;
}
.header .btn--nav span:nth-of-type(3) {
  top: 18px;
  left: -5px;
}
.header .list--social {
  visibility: hidden;
  position: relative;
  right: 0;
  top: 10px;
  color: #222;
  font-size: 20px;
  text-align: right;
}
.header .list--social li {
  display: inline-block;
}
.header .list--social a {
  color: #777;
  display: block;
  padding: 5px;
}
.header .list--social a svg {
  fill: #777;
  width: 20px;
  position: relative;
  top: 2px;
}
.page--member .header h1 a {
  background-image: url(/static/creephyp/fanclub/common/logo--fc.png);
}
.page--member .header h1 a.top--fc {
  display: block;
}
.page--member .header h1 a.top--official {
  display: none;
}
.drawer {
  width: 100%;
  height: 100%;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
}
.drawer .inner {
  overflow: scroll;
  height: 100%;
}
.drawer .tit {
  min-width: 50vw;
  font-size: 24px;
  letter-spacing: 0.3em;
  padding: 0 5vw;
  margin: 0 0 10px;
  color: #fff;
  opacity: 0;
  white-space: nowrap;
}
.drawer .tit img {
  width: 46vw;
}
.drawer .tit svg {
  width: 46vw;
  fill: #fff;
}
.drawer .g-nav {
  width: 0;
  color: #222;
  padding: 40px 0;
}
.drawer .g-nav .tit a {
  text-indent: 0;
}
.drawer .g-nav ul {
  min-width: 100vw;
  padding: 20px 5vw;
  opacity: 0;
  left: -10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.drawer .g-nav li {
  width: 50%;
  margin-bottom: 1.8em;
}
.drawer .g-nav li a {
  height: 7.7vw;
}
.drawer .g-nav li.g-nav__news a {
  background-image: url(/static/creephyp/fanclub/common/title/title-info.png);
}
.drawer .g-nav li.g-nav__media a {
  height: 10vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-media.png);
}
.drawer .g-nav li.g-nav__home a {
  background-image: url(/static/creephyp/fanclub/common/title/title-home.png);
}
.drawer .g-nav li.g-nav__live a {
  height: 10vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-live.png);
}
.drawer .g-nav li.g-nav__video a {
  height: 7vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-video.png);
}
.drawer .g-nav li.g-nav__profile a {
  height: 9vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-profile.png);
}
.drawer .g-nav li.g-nav__discography a {
  height: 12vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-discography.png);
}
.drawer .g-nav li.g-nav__goods a {
  height: 8vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-goods.png);
}
.drawer .g-nav li.g-nav__blog a {
  background-image: url(/static/creephyp/fanclub/common/title/title-blog.png);
}
.drawer .g-nav li.g-nav__futochan a {
  height: 12vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-futochan.png);
}
.drawer .g-nav li.g-nav__futotube a {
  height: 12vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-futotube.png);
}
.drawer .g-nav li.g-nav__jidori a {
  height: 11vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-jidori.png);
}
.drawer .g-nav li.g-nav__archive a {
  background-image: url(/static/creephyp/fanclub/common/title/title-archive.png);
}
.drawer .g-nav li.g-nav__photo a {
  height: 12vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-photo.png);
}
.drawer .g-nav li.g-nav__fanletter a {
  background-image: url(/static/creephyp/fanclub/common/title/title-fanletter.png);
}
.drawer .g-nav li.g-nav__mc a {
  background-image: url(/static/creephyp/fanclub/common/title/title-mc_koe.png);
}
.drawer .g-nav li.g-nav__bbs a {
  height: 8.5vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-bbs.png);
}
.drawer .g-nav li.g-nav__wallpaper a {
  height: 8.5vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-wallpaper.png);
}
.drawer .g-nav li.g-nav__fanmail a {
  height: 8.5vw;
  background-image: url(/static/creephyp/fanclub/common/title/title-fanmail.png);
}
.drawer .g-nav li.g-nav__mail a {
  background-image: url(/static/creephyp/fanclub/common/title/title-from.png);
}
.drawer .g-nav li.regist {
  float: none;
  width: 100%;
  margin: 0 0 10px;
  line-height: 40px;
}
.drawer .g-nav li.regist a:nth-child(2) {
  padding: 0 0.5em 0 1em;
}
.drawer .g-nav a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  transition-duration: 1s;
  text-indent: -9999em;
  background: no-repeat left / contain;
}
.drawer .g-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: #222;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.drawer .g-nav .list--social {
  width: 90%;
  min-width: unset;
  justify-content: center;
  border-top: 0.5px solid #fff;
  margin: 0 auto;
  padding-top: 20px;
}
.drawer .g-nav .list--social li {
  display: inline-block;
  width: auto;
  margin-right: 25px;
}
.drawer .g-nav .list--social li:last-child {
  margin-right: 0;
}
.drawer .g-nav .list--social a {
  font-size: 22px;
  text-indent: 0;
}
.drawer .g-nav .list--social svg {
  fill: #fff;
  width: 22px;
  position: relative;
  top: 2px;
}
.drawer .nav--free {
  background: #222;
  position: relative;
  left: 0;
  padding-top: 20px;
  padding-bottom: 0;
}
.drawer .nav--member {
  background: #eb6972;
  position: relative;
  top: 0;
  left: 0;
  transition-delay: 0.1s;
}
.drawer .nav--member li a {
  height: 9.8vw;
}
.menuopen h1 {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.menuopen header .btn--nav span {
  background: #fff;
}
.menuopen header .btn--nav span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}
.menuopen header .btn--nav span:nth-of-type(2) {
  width: 0;
  left: 50%;
}
.menuopen header .btn--nav span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}
.menuopen header .list--social {
  display: none;
}
.menuopen .drawer {
  opacity: 1;
  pointer-events: auto;
}
.menuopen .drawer .g-nav {
  width: 100%;
}
.menuopen .drawer .g-nav .tit {
  opacity: 1;
}
.menuopen .drawer .g-nav ul {
  opacity: 1;
  left: 0;
}
/* 3.3 footer
------------------------------ */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px 5%;
}
footer a {
  opacity: 0.6;
}
footer .list--support {
  display: none;
  margin: 0 0 20px;
  padding: 20px 0;
  border-top: 0.5px solid #ddd;
  border-bottom: 0.5px solid #ddd;
}
footer .list--support li {
  width: 50%;
  float: left;
  text-align: left;
  border: none;
  padding: 0;
}
footer .list--support a {
  font-weight: 500;
  display: block;
  font-size: 11px;
  padding: 10px 0;
}
footer .list--social {
  border-top: 0.5px solid rgba(130, 130, 130, 0.5);
  margin: 30px 0 20px 0;
  padding: 20px 0 0;
}
footer .list--social li {
  display: inline-block;
  padding: 0 10px;
}
footer .list--social a {
  display: block;
  font-size: 24px;
  line-height: 1.8;
}
footer .list--social svg {
  fill: #222;
  width: 24px;
  position: relative;
  top: 2px;
}
footer .logo {
  display: none;
  width: 160px;
  margin: 0 auto;
  opacity: 0.5;
}
footer .logo svg {
  width: 160px;
  height: 29px;
  fill: #111;
}
footer .copyright {
  opacity: 0.5;
  font-size: 11px;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
.page--home footer .logo,
.page--home footer .list--support,
.page--home footer .list--social {
  display: block;
}
/* 4.0 page
============================== */
.page--home .loading,
.page--faq .loading {
  display: none;
}
body:not(.page--home) .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  background: #fff;
  -webkit-transition: none;
  transition: none;
}
/*  4.1 parts
------------------------------ */
/* typography */
.tit--page {
  color: inherit;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0 0 1em;
}
.tit--section {
  color: inherit;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0 0 1em;
}
.tit--menu {
  color: inherit;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0 0 1em;
  opacity: 0.5;
}
.txt--lead {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0 0 1em;
}
.txt--basic {
  color: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 1em;
}
.txt--sub {
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.date {
  font-family: Helvetica, Arial, 'Yu Gothic', MyYuGothicM, YuGothic, -apple-system, BlinkMacSystemFont, sans-serif;
}
/* section */
.wrap {
  padding: 60px 0 130px;
}
section {
  padding: 20px 5%;
  position: relative;
}
section > * {
  position: relative;
  z-index: 1;
}
.dummy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
[class^="page--"] .section.section--list {
  padding-bottom: 60px;
}
/* keyvisual */
.page--home .section--keyvisual .block--keyvisual img.blur {
  display: none;
}
/* 4.2.0 alltop
------------------------------ */
.page--home.page--top-all .header h1 {
  width: 50%;
  height: 38px;
  top: 17px;
  opacity: 0.8;
}
.page--home.page--top-all .header h1 a {
  background-image: url(/static/creephyp/fanclub/common/new2021/artist_logo.svg);
}
.page--home.page--top-all .header h1 .list--social {
  top: -24px;
  width: 60%;
  left: 28%;
}
.page--home.page--top-all.menuopen .header h1 {
  opacity: 0;
}
.page--home.page--top-all .section--keyvisual {
  height: 78vw;
  margin-top: 100px;
}
.page--home.page--top-all .section--nav {
  padding: 15% 0 50px;
}
.page--home.page--top-all .section--nav .nav--top__list {
  padding: 0 6%;
}
.page--home.page--top-all .section--nav .nav--top__list li {
  position: relative;
}
.page--home.page--top-all .section--nav .nav--top__list li img {
  display: block;
  position: relative;
  width: 100% !important;
  left: 0 ;
}
.page--home.page--top-all .section--nav .nav--top__list li:first-child img {
  width: 80% !important;
  left: 5%;
}
.page--home.page--top-all .section--nav .nav--top__list li:last-child {
  margin-right: 0;
  margin-left: 0;
  position: relative;
}
.page--home.page--top-all .section--nav .nav--top__list li:last-child img {
  width: 100% !important;
  left: 19%;
}
.page--home.page--top-all .section--nav .nav--top__list li:last-child::before {
  content: '';
  display: block;
  width: 1px;
  height: 180%;
  background: #000;
  position: absolute;
  left: 0;
  top: -50%;
  opacity: 0.2;
}
.page--home.page--top-all .section--nav .nav--top__list li:last-child::before {
  left: 0;
}
.page--home.page--top-all .section--app {
  margin: 0 -5%;
}
.page--home.page--top-all .section--app .section-tit {
  text-indent: 0;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 5vw;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1;
  margin-bottom: -10px;
  position: relative;
  z-index: 10;
}
.page--home.page--top-all .section--app .block--app {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  padding: 40px 30%;
}
.page--home.page--top-all .section--app .block--app .block--app__item {
  width: 100%;
  margin-right: 0;
}
.page--home.page--top-all .section--app .block--app .block--app__item a {
  display: block;
  line-height: 0;
}
.page--home.page--top-all .section--app .block--app .block--app__item a img {
  width: 100%;
}
.page--home.page--top-all footer .list--support,
.page--home.page--top-all footer .list--social,
.page--home.page--top-all footer .logo {
  display: none;
}
/* 4.2 home
------------------------------ */
#appBg {
  display: none;
}
.page--home #appBg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
#key-visual-background {
  display: none;
}
/* section-tit */
.page--home .section-tit {
  margin-bottom: 20px;
  text-indent: -9999em;
}
.page--home.page--top-official .section--information .section-tit {
  background-image: url(/static/creephyp/fanclub/common/title/title-info_b.png);
}
.page--home.page--top-official .section--media .section-tit {
  height: 50px;
  background-image: url(/static/creephyp/fanclub/common/title/title-media_b.png);
}
.page--home.page--top-official .section--live .section-tit {
  height: 50px;
  background-image: url(/static/creephyp/fanclub/common/title/title-live_b.png);
}
.page--home.page--top-official .section--movie .section-tit {
  height: 35px;
  background-image: url(/static/creephyp/fanclub/common/title/title-video_b.png);
  margin-left: 0;
}
/* official */
.page--home.page--top-official section:nth-child(even) {
  background: #f7f7f7;
}
.page--home.page--top-official section:nth-child(even) .date {
  opacity: 1;
}
/* fc */
.page--home.page--top-fc .block-tit {
  text-indent: -9999em;
  background: no-repeat left / contain;
}
.page--home.page--top-fc .block-tit::before {
  display: none;
}
.page--home.page--top-fc .section--information .section-tit {
  background-image: url(/static/creephyp/fanclub/common/title/title--fc-news.png);
}
.page--home.page--top-fc .block--latest .block-tit {
  height: 40px;
  background-image: url(/static/creephyp/fanclub/common/title/title--fc-contents.png);
  margin-bottom: 50px;
}
.page--home.page--top-fc .block--blog .block-tit {
  height: 50px;
  background-image: url(/static/creephyp/fanclub/common/title/title--top-blog.png);
}
.page--home .wrap {
  overflow: hidden;
}
.page--home.page--top-official .section--nav .nav--top__list li:last-child a,
.page--home.page--top-fc .section--nav .nav--top__list li:first-child a {
  opacity: 0.2;
}
.page--home.page--top-official .section--bnr {
  padding-top: 20vw;
}
.page--home.page--top-official footer .list--support,
.page--home.page--top-official footer .list--social {
  display: none;
}
.page--home.page--top-fc footer .list--support {
  margin-bottom: 40px;
}
.page--home.page--top-fc footer .list--social {
  display: none;
}
.page--home .section--nav {
  background: #fff;
  padding: 110px 0 30px;
}
.page--home .section--nav .nav--top__list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
}
.page--home .section--nav .nav--top__list li {
  width: 50%;
  margin-left: 0;
}
.page--home .section--nav .nav--top__list li a {
  display: block;
}
.page--home .section--nav .nav--top__list li img {
  display: block;
  position: relative;
  width: 67%;
  left: 2%;
}
.page--home .section--nav .nav--top__list li:last-child {
  margin-right: 0;
  margin-left: 0;
  position: relative;
}
.page--home .section--nav .nav--top__list li:last-child img {
  width: 80%;
  left: 34%;
}
.page--home .section--nav .nav--top__list li:last-child::before {
  content: '';
  display: block;
  width: 2px;
  height: 60%;
  background: #000;
  position: absolute;
  left: 0;
  top: 16%;
  opacity: 0.2;
}
.page--home .nav--login {
  width: 90%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 30px 0;
  opacity: 0;
  top: 40px;
}
.page--home .nav--login li {
  width: 50%;
}
.page--home .nav--login li.regist a {
  background: #eb6972;
}
.page--home .nav--login li.login a {
  background: #222;
}
.page--home .nav--login li a {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 50px;
  padding: 0 10px;
}
.page--home .section--information,
.page--home .section--media,
.page--home .section--live {
  padding: 40px 5%;
}
.page--home .section--media .list--information .date,
.page--home .section--live .list--information .date {
  font-size: 16px;
}
.page--home footer {
  position: relative;
}
.page--home header {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}
.page--home .wrap {
  position: relative;
  z-index: 2;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.page--home .wrap section {
  opacity: 0;
  position: relative;
  top: 40px;
  transition-duration: 0.6s;
}
.page--home .wrap section.inview {
  opacity: 1;
  top: 0;
}
.page--home .wrap .section--member {
  opacity: 1;
  top: 0;
}
section.inview::before {
  width: 100%;
  opacity: 1;
}
.section--member.inview::before {
  width: 100%;
  opacity: 1;
}
.section--member.inview .section-tit {
  opacity: 1;
}
.section--member.inview ul {
  opacity: 1;
}
.page--home .header h1 svg {
  fill: #777;
}
.page--home .header .list--social {
  visibility: visible;
  color: #777;
}
.page--home .header .list--social .sns-link svg {
  fill: #777;
}
.page--home .header .btn--nav span {
  background: #777;
}
.page--home.menuopen header .btn--nav span {
  background: #fff;
}
.page--home.menuopen header h1 svg {
  fill: #fff;
}
/* キービジュアル */
.page--home #key-visual-background-img {
  z-index: 1!important;
}
.page--home .section--keyvisual {
  display: block;
  height: 65vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 0 6%;
}
.page--home .section--keyvisual .block--keyvisual {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page--home .section--keyvisual .block--keyvisual img {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
}
.page--home .section--keyvisual .block--lyric {
  position: static;
  mix-blend-mode: difference;
}
.page--home .section--keyvisual .word {
  position: absolute;
  right: 4%;
  top: 20px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  line-height: 1.8em;
  white-space: nowrap;
  mix-blend-mode: difference;
}
.page--home .section--keyvisual .word p {
  opacity: 0;
  transition-duration: 2s;
}
.page--home .section--keyvisual .word p:nth-of-type(2) {
  transition-delay: 2s;
}
.page--home .section--keyvisual .word p:nth-of-type(3) {
  transition-delay: 3s;
}
.page--home .section--keyvisual .word p:nth-of-type(4) {
  transition-delay: 4s;
}
.page--home .section--keyvisual .word p:nth-of-type(5) {
  transition-delay: 5s;
}
.page--home .section--keyvisual .word p:nth-of-type(6) {
  transition-delay: 6s;
}
.page--home .section--keyvisual .word .name {
  display: block;
  font-size: 0.5em;
  padding: 1em 0 0;
}
.page--home .section--keyvisual .word .name::before {
  content: '';
  display: inline-block;
  width: 4em;
  height: 1px;
  background: #fff;
  margin: 0 0.5em 0 0;
  position: relative;
  top: -0.4em;
}
.page--home .section--keyvisual .scroll {
  width: 30px;
  height: 50px;
  color: #fff;
  border-radius: 15px;
  border: 2px solid;
  margin: 0 0 0 -15px;
  position: fixed;
  left: 50%;
  bottom: 60px;
  z-index: 0;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 4s;
  transition-delay: 4s;
}
.page--home .section--keyvisual .scroll::after {
  content: '';
  width: 2px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 13px;
  top: 6px;
  -webkit-animation: scroll 1.2s ease-out 0s infinite;
  animation: scroll 1.2s ease-out 0s infinite;
}
.page--home .section--keyvisual::before {
  content: none;
}
@-webkit-keyframes scroll {
  0% {
    height: 4px;
    top: 6px;
  }
  30% {
    height: 20px;
    top: 6px;
  }
  60% {
    height: 4px;
    top: 20px;
  }
  80% {
    height: 4px;
    top: 6px;
  }
}
@keyframes scroll {
  0% {
    height: 4px;
    top: 6px;
  }
  30% {
    height: 20px;
    top: 6px;
  }
  60% {
    height: 4px;
    top: 20px;
  }
  80% {
    height: 4px;
    top: 6px;
  }
}
.loaded .section--keyvisual {
  transition-delay: 0.2s;
  background: transparent;
}
.page--home header {
  opacity: 0;
  top: -100px;
  transition-duration: 0.6s;
  transition-delay: 0s;
}
.loaded.page--home header {
  opacity: 1;
  top: 0;
}
.section--keyvisual .scroll {
  opacity: 0;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
}
.loaded .section--keyvisual .scroll {
  opacity: 1;
  border: none;
  bottom: -25px;
}
.loaded.page--home .section--keyvisual .word p {
  opacity: 1;
}
.loaded.page--home .nav--login {
  opacity: 1;
  top: 0;
  transition: 0.4s 0.8s;
}
/* バナー */
.section--bnr {
  padding: 0 0 40px;
}
.section--bnr a {
  display: block;
  overflow: hidden;
}
.section--bnr .list--bnr .slick-slide {
  width: 50%;
}
.section--bnr .list--bnr .slick-slide img {
  width: 98%;
  margin: 0 auto;
}
.slick-slider {
  margin: 0;
  overflow: visible;
}
.slick-slider * {
  -webkit-transition: none;
  transition: none;
}
.slick-slider .slick-arrow {
  -webkit-appearance: none;
  display: block;
  width: 30px;
  height: 30px;
  background: #222;
  color: #fff;
  text-indent: -999px;
  margin: 0 0 0;
  border: none;
  position: absolute;
  top: 50%;
  z-index: 9;
  cursor: pointer;
}
.slick-slider .slick-arrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-left: 2px solid;
  position: absolute;
  left: 9px;
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-prev::before {
  left: 12px;
}
.slick-slider .slick-next {
  right: 0;
}
.slick-slider .slick-next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.slick-dots {
  bottom: -30px;
}
.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 8px;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}
.slick-dots li button::before {
  content: '';
  background: #222;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.section-tit {
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 16px;
  letter-spacing: 0.4em;
  line-height: 40px;
  margin: 0 0 30px;
  text-indent: -9999em;
  background: no-repeat left / contain;
}
.section--member .block--latest {
  padding-bottom: 50px;
}
.section--member .section-tit {
  font-size: 15vw;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0;
  padding: 0;
}
.section--member .section-tit img {
  width: 76%;
}
.section--member .section-tit span {
  display: block;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.1em;
  margin: -20px 0 10px 0;
}
.sub-tit {
  position: relative;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 20px;
  letter-spacing: 0.4em;
  line-height: 60px;
}
.sub-tit::before {
  content: '';
  display: block;
  background: #eee;
  height: 15px;
  width: 110px;
  position: absolute;
  left: -5.5%;
  bottom: 15px;
  z-index: -1;
}
.block-tit {
  position: relative;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 20px;
  letter-spacing: 0.4em;
  line-height: 80px;
  margin: 0 0 40px;
  color: #fff;
}
.block-tit::before {
  content: '';
  display: block;
  background: #222;
  height: 15px;
  width: 110px;
  position: absolute;
  left: -5.5%;
  bottom: 15px;
  z-index: -1;
}
.block--latest .block-tit::before {
  width: 170px;
}
.page-tit {
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 26px;
  margin: 0 0 20px;
  letter-spacing: 0.3em;
}
.list__more a {
  display: block;
  width: 240px;
  font-size: 14px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 50px;
  margin: 0 auto;
  position: relative;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
/* 写真とメッセージ */
.page--home .wrap .section--message {
  opacity: 1;
  padding: 60px 0;
  padding-right: 0;
}
.page--home .wrap .section--message .txt {
  position: absolute;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  line-height: 2.5em;
  white-space: nowrap;
  padding-bottom: 10px;
  font-size: 12px;
  mix-blend-mode: exclusion;
  color: #fff;
  margin: 0 auto;
  z-index: 2;
  top: 30px;
}
.page--home .wrap .section--message .ph {
  opacity: 0;
  width: 76%;
  left: 0;
  right: 0;
}
.page--home .wrap .section--message .ph img {
  width: 100%;
}
.page--home .wrap .section--message.photo-right .ph {
  float: right;
}
.page--home .wrap .section--message.photo-right .txt {
  left: 5%;
}
.page--home .wrap .section--message.photo-left .txt {
  right: 5%;
}
.page--home .wrap .section--message.inview .ph {
  opacity: 1;
}
.list--information.news .date,
.section--information .list__txt .date {
  margin: 0 0 5px;
  line-height: 1;
  font-size: 10px;
  font-weight: normal;
  opacity: 0.5;
}
.section--information {
  padding-bottom: 40px;
}
/* メディア */
.page--home .section--media {
  padding-bottom: 50px;
}
.page--home .section--media .list__more + .sub-tit {
  margin-top: 30px;
}
/* 動画 */
.page--home .section--movie {
  padding-top: 40px;
  padding-bottom: 80px;
}
.page--home .section--movie .thumb {
  width: 98%;
  background-size: cover;
  background-position: 50% 50%;
}
.page--home .section--movie .txt {
  display: none;
}
.page--home .section--movie .slick-list li {
  top: 0 !important;
}
.page--home .section--movie .slick-list li a {
  padding: 0;
}
.page--home .section--movie .slick-list,
.page--home .section--movie .slick-slider {
  overflow: visible;
}
.page--home .section--movie .slick-slider .slick-prev {
  left: -6%;
}
.page--home .section--movie .slick-slider .slick-next {
  right: -6%;
}
.page--home .section--movie .slick-slide img {
  width: 98%;
  margin: 0 auto;
}
/* 会員限定 */
.section--member .section-tit {
  opacity: 0;
  transition-delay: 1s;
  transition-duration: 0.6s;
}
.section--member .block-tit {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 60px;
}
.section--member .list--information.horizontal {
  margin: 0;
}
.section--member .list--information.horizontal .list__txt::before {
  content: none;
}
.section--member .list--information li {
  width: 49%;
  float: left;
  margin: 0 0 30px;
  position: relative;
}
.section--member .list--information li:nth-child(odd) {
  clear: left;
  margin-right: 2%;
}
.section--member .list--information a {
  position: relative;
}
.section--member .list--information .thumb {
  width: 100%;
  float: none;
  margin: 0 0 10px;
  left: 0;
  border: none;
}
.section--member .list--information .tit {
  color: #eb6972;
}
.section--member .list--information .txt {
  font-size: 12px;
  line-height: 1.5;
}
.section--member .list--information .date {
  opacity: 0.5;
}
.section--member .list--information .balloon {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 10px;
  background: #fff;
  color: #222;
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  border-radius: 50%;
  position: absolute;
  left: -3%;
  top: -10px;
  z-index: 10;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
.section--member .list--information .balloon.reguler {
  background: #fff;
  color: #222;
}
.section--member .list--blog li {
  float: left;
  width: 49%;
  position: relative;
}
.section--member .list--blog li:nth-child(odd) {
  clear: left;
  margin-right: 2%;
}
.section--member .list--blog a {
  display: block;
  padding: 10px 0;
}
.section--member .list--blog img {
  width: 100%;
  border: 1px solid #ddd;
}
.section--member .list--blog .date {
  font-size: 10px;
  margin: 5px 0 0;
  opacity: 0.5;
}
.section--member .list--blog .tit {
  color: #eb6972;
}
.section--member .list--blog .txt {
  font-size: 12px;
  line-height: 1.5;
}
.section--member .list--blog .new .thumb::after {
  content: 'UP';
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-block;
  width: 34px;
  line-height: 30px;
  border-radius: 30px;
  text-align: center;
  background: #fff;
  color: #222;
  border: 2px solid;
  font-weight: bold;
  font-size: 0.85em;
  z-index: 2;
}
.section--member ul {
  opacity: 0;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
.section--member .list--blog.contents {
  margin: 0 0 30px;
}
.section--member .list--blog.contents li:nth-child(3) a {
  border: none;
}
.block--blog {
  clear: both;
}
/* ポップアップ */
.modal-bg {
  -webkit-transition: none;
  transition: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}
.block--modal {
  -webkit-transition: none;
  transition: none;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 999;
}
.block--modal .btn--close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -40px;
  right: 0;
}
.block--modal .btn--close::before,
.block--modal .btn--close::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  display: block;
  background: #fff;
  height: 2px;
  width: 30px;
}
.block--modal .btn--close::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.block--modal .btn--close::after {
  -webkit-transform: rotate(45deg);
  ransform: rotate(45deg);
}
/* contents title
------------------------------ */
.page--info .section-tit,
.page--disco .section-tit,
.page--goods .section-tit,
.page--futokyakuphoto .section-tit,
.page--blog .section-tit,
.page--fanmail .section-tit {
  text-indent: -9999em;
  background: no-repeat left / contain;
  height: 50px;
  margin-top: 20px;
}
.page--info.category-1 .section-tit {
  height: 40px;
  background-image: url(/static/creephyp/fanclub/common/title/title-info_b.png);
}
.page--info.category-3 .section-tit {
  background-image: url(/static/creephyp/fanclub/common/title/title-media_b.png);
}
.page--info.category-8 .section-tit {
  background-image: url(/static/creephyp/fanclub/common/title/title-live_b.png);
}
.page--info.category-100001 .section-tit {
  height: 35px;
  background-image: url(/static/creephyp/fanclub/common/title/title-video_b.png);
}
.page--disco .section-tit {
  height: 55px;
  background-image: url(/static/creephyp/fanclub/common/title/title-discography_b.png);
  padding: 0 5% 0;
  margin-bottom: 35px;
  margin-left: 6%;
}
.page--goods .section-tit {
  height: 45px;
  background-image: url(/static/creephyp/fanclub/common/title/title-goods_b.png);
  margin-bottom: 20px;
}
.page--blog .section-tit {
  height: 45px;
  background-image: url(/static/creephyp/fanclub/common/title/title-blog_b.png);
  margin-bottom: 30px;
}
.page--futokyakuphoto .section-tit {
  background-image: url(/static/creephyp/fanclub/common/title/title-photo_b.png);
  margin-bottom: 30px;
}
.page--fanmail .section-tit {
  height: 45px;
  background-image: url(/static/creephyp/fanclub/common/title/title-fanmail_b.png);
  margin-bottom: 30px;
}
/*  4.3 information
------------------------------ */
[class^="page--"] .section {
  padding: 10px 5%;
  position: relative;
  top: 15px;
  opacity: 0;
  -webkit-transition: 0.5s all 0s ease;
  transition: 0.5s all 0s ease;
}
[class^="page--"] .section.show {
  opacity: 1;
  top: 0;
}
.info-tit {
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 0 0 20px;
}
.block--share {
  width: 48%;
  float: right;
  z-index: 10;
  margin-top: -10px;
}
.block--share li {
  display: inline-block;
  margin: 0 1em 0 0;
  font-size: 12px;
  color: #999;
  transition: none;
  -webkit-transition: none;
}
.block--share li a {
  display: block;
  font-size: 22px;
  color: #999;
}
.block--share li a * {
  -webkit-transition: none;
  transition: none;
  vertical-align: middle;
}
.block--share li svg {
  width: 20px;
  height: 20px;
  fill: #999;
}
.block--share li.facebook {
  width: 20px;
  height: 20px;
}
.block--share li.twitter {
  width: 20px;
  height: 20px;
}
.block--share li.lineIco {
  margin-right: 0;
}
[class^="page--"] .section--detail {
  padding: 20px 5%;
}
[class^="page--"] .section--detail .inner {
  max-width: 850px;
  margin: 0 auto;
}
[class^="page--"] .section--detail .date {
  margin: 0 0 40px;
  opacity: 0.5;
  font-size: 12px;
}
[class^="page--"] .section--detail .category {
  font-size: 12px;
  padding: 0 10px;
  margin: 0 0 0 0.5em;
}
[class^="page--"] .section--detail .txt a {
  text-decoration: underline;
  word-break: break-all;
}
.youtube {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%!important;
  height: 100%!important;
}
.block--category {
  margin: 0 0 20px;
}
.block--category.form__select {
  display: block;
  background: #222;
  color: #fff;
  padding: 5px;
}
.block--category.form__select::after {
  border-color: #fff;
}
.block--category.form__select select {
  width: 100%;
  border: none;
  font-size: 14px;
}
ul.block--category li {
  display: inline-block;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 12px;
  text-align: center;
  margin: 0 0 10px;
}
ul.block--category li a {
  display: block;
  min-width: 70px;
  padding: 2px 15px 3px;
  background: #222;
  color: #fff;
  border-radius: 20px;
}
ul.block--category li span {
  display: block;
  min-width: 70px;
  padding: 2px 15px 3px;
  background: #eb6972;
  color: #fff;
  border-radius: 20px;
}
.list--regular {
  margin: 0 0 30px;
  padding: 0 0 20px;
  border-bottom: 1px solid #aaa;
}
.list--regular li {
  margin: 0 0 10px;
}
.list--regular span {
  display: block;
  padding-top: 5px;
}
.page--info .block-tit {
  line-height: 1;
  margin: 0 0 20px;
  color: #222;
}
.page--info .block-tit::before {
  display: none;
}
.fixed_banner {
  position: fixed;
  opacity: 0;
  bottom: -100%;
  left: 5%;
  width: 90%;
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
  z-index: 99;
  font-size: 11px;
  text-align: center;
  line-height: 1.4em;
  font-weight: bold;
  border-radius: 10px;
  padding: 12px 2%;
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.2);
}
.fixed_banner .tit {
  font-size: 16px;
  line-height: 1.4em;
  margin: 0 0 2px;
}
.fixed_banner a {
  display: block;
  color: #fff;
}
.fixed_banner .btn--close {
  position: absolute;
  right: -8px;
  top: -8px;
  background: #222;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 20px;
}
.fixed_banner .btn--close::before,
.fixed_banner .btn--close::after {
  position: absolute;
  content: '';
  display: block;
  background: #fff;
  width: 11px;
  height: 2px;
  top: 10px;
  left: 5px;
}
.fixed_banner .btn--close::before {
  transform: rotate(-45deg);
}
.fixed_banner .btn--close::after {
  transform: rotate(45deg);
}
.loaded .fixed_banner {
  opacity: 1;
  bottom: 15px;
  transition-delay: 2.5s;
  transition-duration: 1s;
}
.page--info .section--detail .txt a {
  word-break: break-word;
}
.page--info.page--category8 .block--share + .date {
  clear: both;
}
/*  4.4 discography
------------------------------ */
.page--disco .disc-tit {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 8%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  overflow: hidden;
  z-index: 99;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  color: #fff;
  mix-blend-mode: exclusion;
}
.page--disco .disc-tit span {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
}
.page--disco.load .disc-tit span {
  -webkit-animation: titleShow 2.3s cubic-bezier(0.9, 0, 0.3, 1) 0.1s forwards;
  animation: titleShow 2.3s cubic-bezier(0.9, 0, 0.3, 1) 0.1s forwards;
  /*
		-webkit-animation: titleShow 1s cubic-bezier(0.9, 0, 0.3, 1) 0.1s forwards, titlehHide 1s cubic-bezier(0.9, 0, 0.3, 1) 1.3s forwards;
		animation: titleShow 1s cubic-bezier(0.9, 0, 0.3, 1) 0.1s forwards, titlehHide 1s cubic-bezier(0.9, 0, 0.3, 1) 1.3s forwards
		*/
}
.page--disco .section--list {
  padding: 10px 0;
}
.page--disco .section--list .category-tit {
  padding: 0 5%;
  position: relative;
  margin: 0 auto 10px;
  font-size: 16px;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
.page--disco .section--detail {
  -webkit-transition: 0.5s all 2.5s ease;
  transition: 0.5s all 2.5s ease;
}
.page--disco .section--detail * {
  transition: none;
  -webkit-transition: none;
}
.page--disco .horizontal.list--discography {
  margin-bottom: 30px;
  white-space: nowrap;
  overflow-x: scroll;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.page--disco .horizontal.list--discography li {
  display: inline-block;
  width: calc(100% / 3);
  line-height: 0;
  margin-right: 10px;
}
.page--disco .horizontal.list--discography li:first-child {
  margin-left: 7.5%;
}
.page--disco .horizontal.list--discography li img {
  width: 100%;
  background-size: contain;
  background-position: center bottom;
}
.page--disco .block--jacket {
  margin: 0 -5.5% 20px;
  text-align: center;
}
.page--disco .block--jacket img {
  width: 92%;
  margin: 0 auto 5px;
  border: 1px solid #fff;
}
.page--disco .block--jacket figcaption {
  font-size: 12px;
  margin-bottom: 20px;
}
.page--disco .block--detail .tit {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6em;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
.page--disco .block--detail .date {
  margin-bottom: 20px;
  font-size: 12px;
}
.page--disco .block--detail .block--comment {
  margin-bottom: 30px;
}
.page--disco .block--detail .block--comment a {
  color: inherit;
  text-decoration: underline;
}
.page--disco .block--detail .block--comment a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.page--disco .block--detail .block--track {
  margin-bottom: 15px;
}
.page--disco .block--detail .block--track .title {
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 5px;
  opacity: 0.5;
}
.page--disco .block--detail .block--track .list--track {
  margin-bottom: 15px;
  list-style: none;
}
.page--disco .block--detail .block--track .list--track .tie-up {
  font-size: 11px;
  padding-left: 1.5em;
}
.page--disco .detail__btn {
  mix-blend-mode: exclusion;
}
.page--disco .detail__btn a {
  color: #FFFFFF;
}
.page--disco .detail__btn a::before {
  background: #fff;
}
@-webkit-keyframes titleShow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(110%);
  }
  50% {
    -webkit-transform: translateY(0%);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(0%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-110%);
  }
}
@keyframes titleShow {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }
  50% {
    transform: translateY(0%);
    opacity: 1;
  }
  70% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-110%);
  }
}
@-webkit-keyframes titlehHide {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
  }
}
@keyframes titlehHide {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
  }
}
/*  4.5 wallpaper
------------------------------ */
.section-tit.member.wp {
  padding: 0;
}
/*  4.6 movie
------------------------------ */
.section-tit.member.ojitalk {
  padding: 20px 0;
}
.section-tit.member.ojitalk img {
  width: 80%;
}
.section-tit.member.futochan {
  padding: 20px 0;
}
.section-tit.member.futochan img {
  width: 70%;
}
.page--movie .section--detail .tit {
  margin: 0 0 10px;
}
.page--movie .section--detail .date {
  margin: 0 0 20px;
}
.page--movie .section--detail .block--player {
  text-align: center;
  margin: 0 0 20px;
}
.page--movie .section--detail .ulizahtml5.uliza-device-mobile {
  margin: 0 auto 30px;
}
.page--movie .section--detail .system_error {
  font-size: 11px;
  color: #c00;
}
.page--movie .section--detail .flash__player--accordion {
  padding: 20px 0 0;
}
.page--movie .section--detail .list--player {
  margin: 0 0 20px;
}
.page--movie .section--detail .list--player li {
  margin: 0 0 5px;
}
.page--movie .section--detail .list--player a {
  display: block;
  padding: 10px;
  border: 1px solid;
}
.page--movie .txt {
  margin: 0 0 2px;
}
/* ポイント消費 */
.page--point .tit {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.4em;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
.point-wrap {
  margin: 20px 0 5px;
}
.point-wrap .point-txt {
  font-size: 12px;
  margin: 0 10px 0 0 ;
  color: #888;
}
.point-wrap .point-numb,
.point-wrap .point-free {
  letter-spacing: 0.1em;
  font-size: 16px;
}
.point-wrap .point-numb {
  color: #eb6972;
}
.point-wrap .point-free {
  color: #222222;
}
.point-wrap .list--point {
  margin: 0 0 30px;
  padding: 20px 20px 15px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  border: 0.5px solid #ddd;
}
.point-wrap .list--point li {
  width: 50%;
  float: left;
  font-size: 12px;
  text-align: center;
  position: relative;
}
.point-wrap .list--point li > span {
  display: block;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-size: 15px;
  line-height: 2em;
}
.point-wrap .list--point li > span > span {
  font-size: 24px;
  margin: 0 3px 0 0;
}
.point-wrap .list--point .necessary > span > span {
  color: #eb6972;
}
.point-wrap .list--point li:last-child:after {
  content: '';
  height: 1px;
  width: 40px;
  font-size: 20px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: rotate(-68deg);
  -webkit-transform: rotate(-68deg);
  background: #ddd;
  display: block;
}
.point-wrap .txt--error {
  text-align: center;
  margin: 0 0 20px;
  color: #c00;
}
.page--movie.new-movie .header h1 a {
  background-image: url(/static/creephyp/fanclub/common/logo--fc.png);
}
.page--movie.new-movie.category-movie .latest-tit,
.page--movie.new-movie.category-movie .category-tit {
  margin-bottom: 10px;
}
.page--movie.new-movie.category-movie .block--category-list {
  margin-bottom: 30px;
  border-top: 1px solid #dedede;
  padding-top: 25px;
}
.page--movie.new-movie.category-movie .no-data {
  margin-bottom: 10px;
}
.page--movie.new-movie.category-movie .section--list .list--contents li {
  width: 48%;
  margin: 0 0 20px 0;
}
.page--movie.new-movie.category-movie .section--list .list--contents li .list__txt .date {
  margin: 0;
}
.page--movie.new-movie .wrap .section--list {
  padding: 10px 5%;
  width: 100%;
  max-width: none;
}
.page--movie.new-movie .wrap.movie-all .block--category-list {
  padding: 30px 0;
  border-top: 1px solid #d1d1d1;
}
.page--movie.new-movie .wrap.movie-all .category-tit {
  margin-bottom: 10px;
  font-weight: bold;
}
.page--movie.new-movie .wrap.movie-all .no-data {
  margin-bottom: 10px;
}
.page--movie.new-movie .wrap.movie-all .latest-tit {
  font-size: 1.3em;
  margin-bottom: 10px;
}
.page--movie.new-movie .wrap.movie-all .section--list .list--contents {
  gap: 0%;
}
.page--movie.new-movie .wrap.movie-all .section--list .list--contents li {
  width: 48%;
  margin-bottom: 15px;
}
.page--movie.new-movie .wrap .section--detail {
  padding: 20px 5%;
}
.page--movie.new-movie .wrap .section--detail .block--player {
  position: relative;
  top: 0;
}
.page--movie.new-movie .wrap .section--detail .area--movie .video-js .vjs-play-control {
  top: -19vw;
  left: 50%;
  transform: translateX(-50%);
}
.page--movie.new-movie .wrap .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
  margin: 0;
  transform: translate(-50%, -50%);
}
/*  4.7 qa
------------------------------ */
/*  4.8 bbs
------------------------------ */
.page--bbs .section-tit.member {
  background: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page--bbs .section-tit.member img {
  width: 92%;
}
.page--bbs .date {
  font-size: 0.8em;
}
.page--bbs .block--bbs-option {
  margin: 0 0 40px;
}
.page--bbs .block--bbs-option .searchForm {
  background: #fff;
  width: 100%;
  height: 36px;
  float: left;
  border: 1px solid #ddd;
  box-sizing: border-box;
  position: relative;
  border-radius: 5px;
}
.page--bbs .block--bbs-option .searchForm input[type=text] {
  color: #000;
  width: 100%;
  height: 36px;
  font-size: 16px;
  box-sizing: border-box;
  float: left;
  border: none;
  background: transparent;
}
.page--bbs .block--bbs-option .searchForm input[type=text].search:placeholder-shown {
  color: #ccc;
  font-size: 10px;
}
.page--bbs .block--bbs-option .searchForm input[type=text].search::-webkit-input-placeholder {
  color: #ccc;
  font-size: 10px;
}
.page--bbs .block--bbs-option .searchForm input[type=text].search:-moz-placeholder {
  color: #ccc;
  opacity: 1;
  font-size: 10px;
}
.page--bbs .block--bbs-option .searchForm input[type=text].search:-ms-input-placeholder {
  color: #ccc;
  font-size: 10px;
}
.page--bbs .block--bbs-option .searchForm input[type=submit] {
  font-family: FontAwesome;
  box-sizing: border-box;
  background-color: transparent;
  color: #ddd;
  font-size: 17px;
  padding: 9px;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 0;
}
.page--bbs .block--bbs-option .threadSearch {
  width: 60%;
  float: right;
}
.page--bbs .block--bbs-option .threadSort {
  float: left;
  width: 35%;
}
.page--bbs .block--bbs-option .select--sort {
  display: inline-block;
  position: relative;
}
.page--bbs .block--bbs-option .select--sort select {
  display: inline-block;
  width: 100%;
  position: relative;
  font-size: 12px;
  padding: 8px 20px 8px 5px;
  background: #fff;
  border: 1px solid #ddd;
}
.page--bbs .block--bbs-option .select--sort::before {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
  margin: -0.2em 0 0;
  position: absolute;
  transform: rotate(45deg);
  top: 50%;
  right: 20px;
  z-index: 2;
}
.page--bbs .comment {
  margin: 0 0 0 1em;
  color: #999;
  display: inline-block;
  line-height: 0;
  font-size: 0.8em;
  position: relative;
  top: -2px;
}
.page--bbs .comment i {
  margin-right: 5px;
}
.page--bbs [class^="form--"] dt > span {
  margin-left: 10px;
}
.page--bbs .list--thread li {
  position: relative;
  border-bottom: 1px solid #aaa;
}
.page--bbs .list--thread li:first-child {
  border-top: 1px solid #aaa;
}
.page--bbs .list--thread a {
  display: block;
  padding: 15px 0;
}
.page--bbs .list--thread a * {
  -webkit-transition: none;
  transition: none;
}
.page--bbs .list--thread .tit {
  margin: 0 0 0.4em;
  font-size: 16px;
  font-weight: bold;
}
.page--bbs .section--detail .tit {
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0 0 20px;
}
.page--bbs .section--detail .tit .comment {
  font-size: 0.7em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
.page--bbs .section--detail .block--parent {
  margin: 0 0 30px;
}
.page--bbs .section--detail .block--parent .txt {
  margin: 0 0 20px;
  font-size: 16px;
}
.page--bbs .section--detail .block--parent .date {
  margin: 0;
}
.page--bbs .section--detail .form--post {
  padding: 30px 0;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.page--bbs .section--detail .form--post li {
  margin: 0 0 10px;
}
.page--bbs .section--detail .form--post textarea {
  background: #fff;
}
.page--bbs .section--detail .form--post .btn {
  margin: 0;
}
.page--bbs .section--detail .form--post .user {
  font-size: 16px;
}
.page--bbs .section--detail .form--post .user i {
  margin-right: 10px;
  color: #999;
  font-size: 26px;
  vertical-align: middle;
}
.page--bbs .section--detail .form--post .notes {
  padding: 10px 0;
  font-size: 0.8em;
  line-height: 1.6em;
}
.page--bbs .section--detail .form--post .notes dt {
  font-weight: bold;
  margin: 0 0 5px;
}
.page--bbs .section--detail .form--post .notes li {
  margin: 0 0 0 1em;
  text-indent: -0.6em;
}
.page--bbs .section--detail.confirm .form--post {
  margin: 0 0 40px;
}
.page--bbs .section--detail.complete .txt {
  padding: 50px 0;
}
.page--bbs .section--detail .block--error {
  margin: 0 0 20px;
  color: #c00;
}
.page--bbs .block--user {
  margin: 0 0 10px;
}
.page--bbs .block--user .icon--user {
  display: inline-block;
  width: 50px;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 10px;
  vertical-align: middle;
}
.page--bbs .block--user .icon--user img {
  width: 100%;
  border-radius: 25px;
}
.page--bbs .block--user .name {
  font-weight: bold;
}
.page--bbs .list--comment li {
  border-bottom: 1px solid #aaa;
  padding: 15px 10px;
  position: relative;
}
.page--bbs .list--comment li .txt {
  margin: 0 0 10px;
}
.page--bbs .list--comment li .date {
  margin: 0;
}
.page--bbs .list--comment li .report-btn {
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 0.8em;
}
.page--bbs .list--comment li .report-btn a {
  color: #999;
}
.page--bbs .list--comment .artist-account {
  background: #ffd8db;
}
.page--bbs .form--confirm {
  margin: 0 0 40px;
  padding: 40px 0;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.page--bbs .form--confirm .btn {
  margin: 0;
}
.page--bbs .form--confirm .txt {
  margin: 0 0 20px;
}
.page--bbs .form--confirm dl {
  margin: 0 0 20px;
}
.page--bbs .form--confirm dt {
  margin: 0 0 10px;
}
.page--bbs .form--confirm dd {
  margin: 0 0 20px;
  font-size: 16px;
}
/*  4.9 faq
------------------------------ */
.tit--category {
  font-weight: bold;
  margin: 0 0 20px;
}
.section--list .list--faq,
.section--detail .list--faq {
  margin: 0 0 40px;
}
.section--list .list--faq li,
.section--detail .list--faq li {
  border-top: 1px solid #aaa;
}
.section--list .list--faq li:last-child,
.section--detail .list--faq li:last-child {
  border-bottom: 1px solid #aaa;
}
.section--list .list--faq a,
.section--detail .list--faq a {
  position: relative;
  display: block;
  padding: 15px 5% 17px 0;
}
.section--list .list--faq .tit,
.section--detail .list--faq .tit {
  padding-left: 20px;
}
.section--list .list--faq .txt,
.section--detail .list--faq .txt {
  margin: 0;
  padding-left: 20px;
  line-height: 1.4;
}
.section--list .list--faq .icon--q,
.section--detail .list--faq .icon--q {
  margin-right: 5px;
  font-weight: 700;
  opacity: 0.5;
  float: left;
}
.page--faq .searchBox {
  margin: 0 0 30px;
  text-align: center;
}
.page--faq .searchBox input {
  -webkit-appearance: none;
  outline: none;
  border: none;
  background: #222;
  color: #fff;
  font-size: 15px;
  line-height: 40px;
  box-sizing: border-box;
  width: 20%;
  border-radius: 0;
}
.page--faq .searchBox input[type="text"] {
  width: 78%;
  height: 40px;
  padding: 0 10px;
  background: #fff;
  color: #222;
  border: solid 1px #aaa;
  border-radius: 0;
}
.page--faq .searchBox input[type="text"]:placeholder-shown {
  color: #ccc;
}
.page--faq .searchBox input[type="text"]::-webkit-input-placeholder {
  color: #ccc;
}
.page--faq .searchBox input[type="submit"].pc {
  background: #222;
  padding: 7px 25px;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.section--detail .block--faq-detail {
  margin: 0 -5.5% 40px;
  padding: 25px 5%;
  background: #f8f8f8;
}
.section--detail .block--faq-detail dt {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #aaa;
}
.section--detail .block--faq-detail dt .txt {
  margin: 0;
  padding-left: 40px;
  font-size: 16px;
}
.section--detail .block--faq-detail dt .category {
  display: inline-block;
  margin: 0 0 5px;
  padding: 1px 8px 0;
  font-size: 12px;
  background: #eee;
  color: #999;
  border-radius: 20px;
}
.section--detail .block--faq-detail dd .txt {
  margin: 0;
  padding-left: 40px;
  font-size: 15px;
}
.section--detail .block--faq-detail dd .txt a {
  color: #eb6972;
  text-decoration: underline;
}
.section--detail .block--faq-detail span[class^="icon--"] {
  float: left;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
}
.section--detail .block--faq-detail .icon--q {
  background: #000;
  color: #fff;
}
.section--detail .block--faq-detail .icon--a {
  border: 1px solid;
  color: #000;
}
.page--faq .section--detail .block--contact {
  margin: 0 0 40px;
}
.page--faq .section--detail .block--contact .txt {
  margin: 0;
}
/*  4.10 support
------------------------------ */
.support-tit {
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 0 20px;
  padding: 0 8%;
  text-align: center;
}
.page--support .section {
  opacity: 1;
}
.page--support .section--detail .inner {
  max-width: 850px;
}
.page--support .section--detail .txt {
  margin: 0 0 20px;
}
.page--support .list--support dt {
  font-weight: bold;
  margin: 0 0 3px;
}
.page--support .list--support dd {
  margin: 0 0 20px;
}
.page--support .list--support dd:last-of-type {
  margin-bottom: 0;
}
/*  4.11 profile
------------------------------ */
.page--profile .artist-ph {
  position: relative;
  line-height: 0;
  margin: 0 -5.5% 30px;
}
.page--profile .artist-ph img {
  width: 100%;
}
.page--profile .list--member {
  margin: 0 0 40px;
  text-align: center;
}
.page--profile .list--member li:first-child {
  font-size: 10px;
}
.page--profile .list--member li {
  font-size: 13px;
  margin: 0 0 2px;
}
.page--profile .list--member li .part {
  font-size: 12px;
  line-height: 16px;
  padding: 0 0 0 6px;
}
.page--profile .list--member span.twitter {
  display: inline-block;
}
.page--profile .list--member span.twitter a {
  display: block;
  width: 15px;
  height: 15px;
}
.page--profile .list--member span.twitter svg {
  width: 100%;
  height: 100%;
}
.page--profile .list--member span.twitter a * {
  -webkit-transition: none;
  transition: none;
}
.page--profile .list--member span.twitter a:hover {
  color: #eb6972;
  opacity: 1;
}
.page--profile .list--member span.twitter a:hover svg {
  fill: #eb6972;
}
.page--profile .list--bio dt {
  margin: 0 0 5px;
}
.page--profile .list--bio dd {
  margin: 0 0 20px;
}
/*  4.12 goods
------------------------------ */
.page--goods .block-tit {
  color: #222;
  font-size: 16px;
  line-height: 1em;
}
.page--goods .block-tit::before {
  display: none;
}
.page--goods .shop-link {
  margin: -20px 0 20px;
  line-height: 60px;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  text-align: right;
}
.page--goods .shop-link a {
  padding: 0 0 0 3.5em;
}
.page--goods .shop-link a::before {
  content: '';
  display: inline-block;
  width: 3em;
  height: 1px;
  background: #222;
  vertical-align: 4px;
  margin-right: 5px;
}
.page--goods .list--goods li {
  float: left;
  width: 49%;
  margin: 0 2% 20px 0;
}
.page--goods .list--goods li a {
  display: block;
}
.page--goods .list--goods li img {
  width: 100%;
}
.page--goods .list--goods li:nth-child(even) {
  margin-right: 0;
}
.page--goods .list--goods .item {
  display: none;
}
.page--goods .list--goods .item.visible {
  display: block;
}
.page--goods .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 94%;
  max-height: 94%;
  padding: 50px 5% 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #fff;
  -webkit-transition: none;
  transition: none;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
.page--goods .popup .tit {
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0 0 20px;
}
.page--goods .popup .ph {
  width: 100%;
  margin: 0 auto 50px;
}
.page--goods .popup .ph img {
  width: 100%;
}
.page--goods .popup .close {
  width: 30px;
  height: 20px;
  position: fixed;
  right: 2%;
  top: 20px;
  cursor: pointer;
}
.page--goods .popup .close span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
}
.page--goods .popup .close span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}
.page--goods .popup .close span:nth-of-type(2) {
  width: 0;
  left: 50%;
}
.page--goods .popup .close span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 9px;
}
.popup-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
/*  4.13 fanmail
------------------------------ */
.page--fanmail .lead {
  margin: 0 0 40px;
}
.errorTxt {
  margin: 0 0 20px;
  color: #c00;
  font-weight: bold;
}
.section-tit {
  text-indent: 0;
}
.formList dt {
  margin: 0 0 5px;
  font-weight: bold;
}
.formList dd {
  margin: 0 0 20px;
}
/*  4.14 ブログ
------------------------------ */
.page--blog .section--detail {
  padding-bottom: 100px;
}
.page--blog .section--detail .ph {
  position: relative;
}
.page--blog .section--detail .txt * {
  font-family: fot-klee-pro, Helvetica, Arial, 'Yu Gothic', MyYuGothicM, YuGothic, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 13px!important;
}
.section-tit {
  text-indent: 0;
}
.section-tit.member {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 -5.5% 25px;
  padding: 40px 0 30px;
  line-height: 0;
}
.section-tit.jidori img {
  width: 500px;
}
.section-tit.jidori .ojisan {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 180px;
}
.section-tit.ozaki {
  background: no-repeat center bottom url(/static/creephyp/fanclub/common/new2021/thumb_ozaki.jpg);
  background-size: cover;
  padding: 0;
  text-indent: 0;
  height: auto;
}
.section-tit.ozaki img {
  opacity: 0;
}
.section-tit.kaonashi {
  background: no-repeat center bottom url(/static/creephyp/fanclub/common/new2021/thumb_kaonashi.jpg);
  background-size: cover;
  padding: 0;
  text-indent: 0;
  height: auto;
}
.section-tit.kaonashi img {
  opacity: 0;
}
.section-tit.ogawa {
  padding: 0;
  text-indent: 0;
  height: auto;
  background: #cab8aa;
}
.section-tit.staffblog {
  text-indent: 0;
  height: auto;
  padding: 0;
  margin-bottom: 0;
}
.section-tit.koizumi {
  background: no-repeat center bottom url(/static/creephyp/fanclub/common/new2021/thumb_koizumi.jpg);
  background-size: cover;
  padding: 0;
  text-indent: 0;
  height: auto;
}
.section-tit.koizumi img {
  opacity: 0;
}
/*  4.14 AOPブログ
------------------------------ */
.page--blog.page--aopblog .thumb {
  border: none;
}
.page--blog.page--aopblog .block--player {
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.page--blog.page--aopblog .block--player .vjs-icon-play:before,
.page--blog.page--aopblog .block--player .video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.page--blog.page--aopblog .block--player .video-js .vjs-play-control .vjs-icon-placeholder:before,
.page--blog.page--aopblog .block--player .vjs-icon-replay:before,
.page--blog.page--aopblog .block--player .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.page--blog.page--aopblog .block--player .vjs-icon-volume-high:before,
.page--blog.page--aopblog .block--player .video-js .vjs-mute-control .vjs-icon-placeholder:before,
.page--blog.page--aopblog .block--player .vjs-icon-fullscreen-enter:before,
.page--blog.page--aopblog .block--player .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.page--blog.page--aopblog .block--player .vjs-icon-circle:before,
.page--blog.page--aopblog .block--player .video-js .vjs-play-progress:before,
.page--blog.page--aopblog .block--player .video-js .vjs-volume-level:before,
.page--blog.page--aopblog .block--player .vjs-seek-to-live-control .vjs-icon-placeholder:before,
.page--blog.page--aopblog .block--player .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
}
.page--blog.page--aopblog .block--player .vjs-picture-in-picture-control.vjs-button:before {
  font-family: 'Material Symbols Outlined';
  font-size: 20px;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal .thumb img {
  background-image: url(/static/creephyp/fanclub/common/noimage_mc.jpg);
  border: none;
}
.page--blog.page--aopblog .moji .section-tit {
  height: 15vw;
  background-image: url(/static/creephyp/fanclub/common/new2021/title-blog_mc.png);
}
.page--blog.page--aopblog .koe .section-tit {
  height: 15vw;
  background-image: url(/static/creephyp/fanclub/common/new2021/title-blog_mc_koe.png);
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal li {
  float: none;
  width: 100%;
  margin: 0 0 15px 0;
  position: relative;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal .new .thumb::after {
  display: none;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal li.new::after {
  content: 'NEW';
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 30px;
  text-align: center;
  background: #eb6972;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.85em;
  z-index: 2;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal {
  margin: 0 auto;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information a {
  display: flex;
  padding: 15px;
  border: 1px solid #d8d8d8;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal .thumb {
  width: 40%;
  margin: 0;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal .title_wrap {
  width: 100%;
  padding: 0 0 0 0px;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal .date {
  margin-bottom: 2px;
  line-height: 1.2;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--information.horizontal .txt {
  font-size: 15px;
  line-height: 1.5;
}
.page--blog.page--aopblog .list--information.vertical a {
  border: none;
  border-bottom: 0.5px solid #ddd;
  line-height: 25px;
  padding: 10px 0 15px;
}
.page--blog.page--aopblog .pagingBox {
  text-align: center;
  margin-top: 40px;
}
.page--blog.page--aopblog .pagingBox ul {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.page--blog.page--aopblog .pagingBox ul li {
  margin-right: 20px;
  position: relative;
  margin-bottom: 10px;
}
.page--blog.page--aopblog .pagingBox ul li:last-child {
  margin-right: 0;
}
.page--blog.page--aopblog .pagingBox ul li.current::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #ec7079;
  z-index: -1;
  border-radius: 12px;
  transform: translate(-50%, -50%);
}
.page--blog.page--aopblog .pagingBox ul li.current {
  color: #fff;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--tabs li {
  border: none;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--tabs li.tabs__item--current {
  background: #ed737b;
  border: none;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--tabs li a {
  border: 0.5px solid #ddd;
  border-left: none;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--tabs li:first-of-type a {
  border-left: 0.5px solid #ddd;
}
.page--blog.page--aopblog:not(.page--hosokyaku) .list--tabs li.tabs__item--current a {
  color: #fff;
}
.icon_hosokyaku {
  width: min(9%, 40px);
  position: fixed;
  top: 1.75vh;
  left: min(76%, 800px);
  z-index: 10;
  pointer-events: none;
  line-height: 0;
  background: #fff;
  border-radius: 50%;
}
.nav--login_hosokyaku {
  max-width: 350px;
  margin: 0 auto 20px;
}
.nav--login_hosokyaku .regist.mypage a {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 45px;
  padding: 0 10px;
  background: #eb6972;
}
.nav--login_hosokyaku .regist_desc {
  font-size: 12px;
  padding-top: 3px;
  text-align: center;
}
/*  4.15 アンケート
------------------------------ */
.page--questionnaire .section-tit {
  font-size: 20px;
  line-height: 1.4em;
}
.page--questionnaire .icon--required::after {
  content: '*必須';
  color: #c00;
  margin-left: 10px;
  font-size: 12px;
}
.page--questionnaire li {
  list-style-type: none;
}
.form--confirm {
  padding-top: 20px;
}
.form--confirm dt {
  opacity: 0.5;
}
.form--confirm dd {
  margin: 0 0 20px;
}
/*  4.16 アプリ
------------------------------ */
/* アプリアイコンフォント */
.appicon:after {
  width: 50px;
  font-family: 'svgfont_1regular';
  font-size: 50px;
  line-height: 60px;
  position: absolute;
  padding: 0 0 0 6px;
}
/* 壁紙 */
.appicon.wp:after {
  content: 'a';
  color: #007FCC;
}
/* ライブ壁紙 */
.appicon.livewp:after {
  content: 'b';
  color: #E2007E;
}
/* フォトフレーム */
.appicon.pf:after {
  content: 'c';
  color: #87CC03;
}
/* カレンダー */
.appicon.cal:after {
  content: 'd';
  color: #EC6C00;
}
/* 電卓 */
.appicon.den:after {
  content: 'e';
  color: #00ADFD;
}
/* アラーム */
.appicon.alarm:after {
  content: 'f';
  color: #B6006F;
}
/* フォトブック */
.appicon.pb:after {
  content: 'g';
  color: #C7161E;
}
/* 時計ウィジェット */
.appicon.tw:after {
  content: 'i';
  color: #FAC604;
}
/* ツアーパンフ */
.appicon.tp:after {
  content: 'j';
  color: #E4135D;
}
/*  appli
------------------------------ */
.list--appli li a {
  display: block;
  padding: 15px 0;
  border-bottom: 0.5px solid #ddd;
}
.list--appli li:first-child a {
  border-top: 0.5px solid #ddd;
}
.list--appli li .appicon {
  float: left;
  width: 60px;
  height: 60px;
  border: 0.5px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.list--appli li .appicon img {
  width: 100%;
}
.list--appli li .thumb-tit {
  padding: 0 5% 0 75px;
  line-height: 1.5;
  position: relative;
  font-size: 13px;
}
.list--appli li .thumb-tit:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 0.5px solid #ddd;
  border-right: 0.5px solid #ddd;
  transform: rotate(45deg);
  margin-top: -5px;
  top: 50%;
  right: 0;
}
.list--appli li .tit {
  font-size: 16px;
  font-weight: bold;
}
.list--appli li .appicon.cal:after {
  text-align: center;
  line-height: 1.2;
  box-sizing: border-box;
}
/*  4.17 photo
------------------------------ */
.page--photo .block-text {
  padding: 20px;
  margin-bottom: 20px;
  background: #f7f7f7;
}
.page--photo .block-text a {
  text-decoration: underline;
}
.page--photo .list--contents .thumb img {
  background-size: contain;
}
.section-tit.fanletter {
  background: no-repeat center bottom url(/static/creephyp/fanclub/common/new2021/thumb_gyaku_fanletter.jpg);
  background-size: cover;
  padding: 0;
}
.section-tit.fanletter img {
  opacity: 0;
}
/* アンドロイド対策 */
.and-browser__5 .disc-tit {
  mix-blend-mode: normal!important;
}
.and-browser__5 .disc-tit {
  color: #000 !important;
}
p.btn_report_area {
  margin: 0em 0;
}
p.btn_report_area a.btn_report {
  display: block;
  width: 240px;
  background: #fff;
  font-size: 12px;
  border: 1px solid #eb6a72;
  text-align: center;
  line-height: 40px;
  margin: 0 auto 30px;
  position: relative;
  font-family: 'Crimson Text', "Sawarabi Mincho", 'Yu Mincho', serif;
  color: #EB6A72;
}
/* blog改修 */
[class^="page--"] .section.no-inview {
  opacity: 1;
  top: 0;
}
.page--blog .list--tabs {
  display: flex;
  display: webkit-flex;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.page--blog .list--tabs li {
  flex-grow: 1;
  text-align: center;
}
.page--blog .list--tabs li.tabs__item--current {
  position: relative;
}
.page--blog .list--tabs li.tabs__item--current::before {
  content: "";
  border-bottom: 1px solid;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page--blog .list--tabs li a {
  display: block;
  padding: 1em 0;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  letter-spacing: 0.3em;
  padding: 5px 0;
  font-size: 12px;
}
.page--blog .koe .list--tabs,
.page--blog .moji .list--tabs {
  border-bottom: none;
}
.page--blog .koe li.tabs__item--current::before,
.page--blog .moji li.tabs__item--current::before {
  display: none;
}
.page--blog .postcount {
  display: inline-block;
  position: absolute;
  top: auto;
  right: 0;
  opacity: 0.5;
}
.page--blog .block--year-detail {
  margin: 0 0 30px;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
}
.page--blog .block--year-heading {
  display: flex;
  display: webkit-flex;
  justify-content: space-between;
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: 0.1em;
}
.page--blog .block--year-heading li > * {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
}
.page--blog .block--year-heading .year-heading--prev > *::before,
.page--blog .block--year-heading .year-heading--next > *::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid #666;
  border-top: none;
  border-right: none;
  position: absolute;
  top: 50%;
  margin: -3px 0 0;
  pointer-events: none;
}
.page--blog .block--year-heading .year-heading--prev > *::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0.25em;
}
.page--blog .block--year-heading .year-heading--next > *::after {
  right: 0.25em;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.page--blog .list--select-month {
  display: flex;
  display: webkit-flex;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page--blog .list--select-month li {
  width: 24%;
  margin: 0.5vw 0;
  font-size: 12px;
}
.page--blog .list--select-month li a,
.page--blog .list--select-month li > span {
  display: block;
  padding: 8px 10px;
  text-align: center;
  border-radius: 2px;
  color: #fff;
}
.page--blog .list--select-month li a {
  background: #222;
}
.page--blog .list--select-month li > span {
  background: #cecece;
}
.page--blog .list--select-month li.current a,
.page--blog .list--select-month li.current > span {
  background: #eb6972;
}
.page--blog .list--select-month li .list__postcount {
  display: inline-block;
  margin: 0 0 0 0.25em;
}
.page--blog .list--select-month::before,
.page--blog .list--select-month::after {
  content: "";
  display: block;
  width: 24%;
}
.page--blog .list--select-month::before {
  order: 1;
}
.page--blog .blog-tit {
  margin-bottom: 30px;
  padding-bottom: 1em;
  border-bottom: 1px solid #ddd;
  color: inherit;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.page--blog .blog-tit a {
  display: inline-block;
}
.page--blog .blog-tit .link--back {
  position: relative;
  font-family: fot-klee-pro, 'Yu Mincho', serif;
  font-size: 12px;
  line-height: 1em;
}
.page--blog .blog-tit .link--back::before {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #888;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  right: auto;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: -0.1em;
  left: 0.2em;
  margin-right: 0.5em;
  border-width: 1px;
}
.page--blog .blog-tit .link--blog {
  position: absolute;
  right: 0;
  top: auto;
  opacity: 0.5;
}
.page--blog .block--player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0 auto 20px;
}
.page--blog .block--player .video-js .vjs-mute-control .vjs-icon-placeholder::before {
  font-family: VideoJS;
}
.page--blog .block--player .video-js .vjs-control-bar .vjs-icon-placeholder::before {
  font-family: VideoJS;
}
.page--blog .block--player .video-js .vjs-progress-holder .vjs-play-progress::before {
  font-family: VideoJS;
}
.page--blog .block--player .video-js .vjs-picture-in-picture-control.vjs-button::before {
  background: repeat-x center url(/static/creephyp/fanclub/common/icon_picture_in_picture.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 22px;
  font-size: 0;
}
.page--blog .block--pager ul {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page--blog .block--pager ul li {
  width: auto;
}
.page--blog .block--pager ul li.pager__item--newer {
  position: absolute;
  left: 15px;
}
.page--blog .block--pager ul li.pager__item--older {
  position: absolute;
  right: 15px;
}
.page--blog .block--pager ul li.pager__item--number {
  padding: 0 5px;
  font-size: 12px;
  width: auto;
}
.page--blog.page--archives .list--tabs .tabs__item--archive a {
  border-bottom: 1px solid;
}
/* aop-blog改修 細客*/
.page--blog.page--member.page--hosokyaku.page--hosokyaku--join .blog_main .nav--login_hosokyaku {
  position: relative;
  text-align: center;
  right: initial;
  margin: 30px auto 15px;
}
.page--blog.page--member.page--hosokyaku.page--hosokyaku--join .blog_main .nav--login_hosokyaku .regist.mypage a {
  display: inline-block;
  min-width: 320px;
  font-size: 16px;
  line-height: 3.4;
  padding: 0 1.5em;
  border: 1px solid #eb6972;
  margin: 0 auto;
}
.page--blog.page--member.page--hosokyaku.page--hosokyaku--join .blog_main .nav--login_hosokyaku .regist_desc {
  padding-top: 10px;
}
.page--blog.page--member.page--hosokyaku.page--hosokyaku--join .list--tabs li {
  display: none;
}
.page--blog.page--member.page--hosokyaku.page--hosokyaku--join .list--tabs li.tabs__item--new {
  display: block;
}
.page--blog.page--member.page--mc--join .blog_main .nav--login_hosokyaku {
  position: relative;
  text-align: center;
  right: initial;
  margin: 30px auto;
}
.page--blog.page--member.page--mc--join .blog_main .nav--login_hosokyaku .regist.mypage a {
  display: inline-block;
  min-width: 320px;
  font-size: 16px;
  line-height: 3.4;
  padding: 0 1.5em;
  border: 1px solid #eb6972;
  background: #fff;
  color: #eb6972;
  margin: 0 auto;
}
.page--blog.page--member.page--mc--join .blog_main .nav--login_hosokyaku .regist_desc {
  padding-top: 10px;
}
.page--blog.page--member.page--mc--join .list--tabs li {
  display: none;
}
.page--blog.page--member.page--mc--join .list--tabs li.tabs__item--new {
  display: block;
}
/* app */
.body--app .wrap {
  padding: 10px 0 60px;
}
/*  notice
------------------------------ */
.page--notice {
  background: #fff;
}
.page--notice .wrap {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}
.page--notice .wrap > .bg {
  background: #fff;
}
.page--notice .section--list .no-data {
  color: #000;
  opacity: 1;
}
.page--notice .section--list .list--info {
  border-top: 1px solid #dcdcdc;
}
.page--notice .section--list .list--info li a {
  color: #000;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #dcdcdc;
}
.page--notice .section--list .list--info li a .date {
  font-size: 10px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 5px 0 0;
  color: #000;
}
.page--notice .section--list .list--info li a .txt {
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
}
/* 太TUBE */
.btn_past_area {
  margin: 0em 0;
}
.btn_past_area .btn_past {
  display: block;
  width: 240px;
  background: #fff;
  font-size: 12px;
  border: 1px solid #222;
  text-align: center;
  line-height: 40px;
  margin: 0 auto 30px;
  position: relative;
  font-family: 'Crimson Text', "Sawarabi Mincho", 'Yu Mincho', serif;
  color: #222;
}
